@charset "utf-8";
/* CSS Document */
html, body {
	width: 100%;
	height: 100%;
}
body {
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	color: #666;
}
.nav {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
.nav > li {
	position: relative;
	display: block;
}
.nav > li > a {
	position: relative;
	display: block;
	padding: 10px 0px;
}
.nav > li > a:hover, .nav > li > a:focus {
	text-decoration: none;
	background-color: #eee;
}
.nav > li.disabled > a {
	color: #777;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
	color: #777;
	text-decoration: none;
	cursor: not-allowed;
	background-color: transparent;
}
a {
	color: inherit;
	text-decoration: none;
	transition: all 0.2s ease;
}
a:hover, a:focus {
	color: #111222;
	text-decoration: underline;
}
a:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
.btn {
	display: inline-block;
	/*padding: 6px 12px;*/
	margin-bottom: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	/*border-radius: 4px;*/
  /*modificado*/
	font-family: inherit;
	padding: 12px 12px;
	border-radius: 0;
	-moz-transition: background-color .2s ease-in-out;
	-webkit-transition: background-color .2s ease-in-out;
	-o-transition: background-color .2s ease-in-out;
	-ms-transition: background-color .2s ease-in-out;
	transition: background-color .2s ease-in-out;
}
.btn-default {
	color: #333;
	background-color: #fff;
	border-color: #ccc;
}
.btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
	color: #fff;
	/*modificado*/background-color: #999;
	border-color: #adadad;
}
.btn-sm, .btn-group-sm > .btn {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	/*modificado border-radius: 3px;*/
	border-radius: 0;
}
/*FORM*/

.form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 15px;
	line-height: 1.42857143;
	color: #555;
	background-color: #f7f7f7;
	background-image: none;
	border: 1px solid #eee;
	border-radius: 0;
	cursor: pointer;
	margin-bottom: 10px;
}
.form-control:hover {
	background-color: #fff;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(76, 76, 76 .1);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(76, 76, 76, .1);
}
.form-control:focus {
	border-color: transparent;
	background-color: #fff;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(76, 76, 76 .3);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(76, 76, 76, .3);
}
.input-lg {
	height: 36px;
	padding: 10px 16px;
	font-size: 14px;
	border-radius: 0;
}
.input-group-addon {
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1;
	color: #555;
	text-align: center;
	background-color: #fff;
	border: 2px solid #eee;
	border-radius: 0;
}
.panel {
	margin-bottom: 20px;
	background-color: transparent;
	border-bottom: 1px solid #eee;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.panel-body {
	padding: 15px;
}
.panel-heading {
	padding: 10px 0px;
	border-bottom: 1px solid transparent;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.lead {
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4;
}
.lead-op {
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.4;
}

@media (min-width: 768px) {
.lead {
	font-size: 13.5px;
	line-height: 1.4;
}
.lead-op {
	font-size: 20px;
	line-height: 1.4;
}
}
.close {
	float: right;
	/*margin-right:25px;*/
	font-size: 48px;
	font-weight: bold;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: .2;
}
.close:hover, .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
	opacity: .5;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .3;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 0;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
