/* AVMA CSS DIRECTORY
	- GLOBAL
	- Typography
	- Nav
	- Layout
	- Find an Agent Module Fixes
	- Footer Fixes
	- Contact Form
	- User Dashboard
	- Media Query Fixes
	- IE10
*/

/* GLOBAL */

body {
	font-family: "lexia", "Times New Roman", Arial, sans-serif;
	font-weight: 300;
	font-style: normal;
	color: #3e2b2e;
}

ul {
	list-style: none;
	margin: 0;
	line-height: 1.5em;
}

ul.triangle-list {
	padding: 1em 0 1em 2em;
}

ul.triangle-list li:before {
	content: "";
	border-color: transparent #fc6b00;
	border-style: solid;
	border-bottom: 4px solid #fc6b00;
	border-left: 4px solid transparent;
	display: block;
	height: 0;
	width: 0;
	left: -1em;
	top: 0.9em;
	position: relative;
}

a {
	color: #fc6b00;
}

a:active, a:focus, a:hover {
	color: #FF9E33;
}

a.disclaimer {
	border-bottom: none;
}

a.disclaimer:hover {
	color: #b04b00;
	text-decoration: underline;
}

.btn {
	white-space: normal;
}

.btn-default {
	color: #fc6b00;
	background-color: #fff;
	border-color: #fc6b00;
}

.btn-lg {
	border-radius: 6px;
}

.btn-sm {
	border-radius: 3px;
}

hr.spacer {
	margin: 0;
	border: 0;
}

hr {
    border-top: 1px solid #fc6b00;
    width: 75%
}

/* Typography */

h1,h2,h3,h4,h5 {
	font-family: "aaux-next";
	font-weight: 600;
	font-style: normal;
	color: #3e2b2e;
}

h3, h4 {
	
}

p {
	color: #3e2b2e;
}

.white {
	color: #fff;
}

.blue {
	color: #7accc8;
}

.orange {
	color: #fc6b00;
    font-size: 24px;
    font-weight:900;
}

.purple {
	color: #6e3047;
}

.green {
	color: #a3c13c;
}

.bg-blue {
	background-color: #7accc8;
	color: #fff;
	background-image: none;
}

.bg-orange {
	background-color: #fc6b00;
	color: #fff;
	background-image: none;
}

.bg-purple {
	background-color: #6e3047;
	color: #fff;
	background-image: none;
}

.bg-purple h3, .bg-purple p, .bg-purple a {
	color: #fff;
}

.bg-purple a:hover {
	text-decoration: underline;
}

.bg-purple a.btn:hover {
	text-decoration: none;
}

.bg-purple a.btn-default {
	color: #fc6b00;
}


.bg-green {
	background-color: #a3c13c;
	color: #fff;
	background-image: none;
}

.bg-cream {
	background-color: #ffffff;
	background-image: none;
}

.bg-white {
	background-color: #ffffff;
	background-image: none;
}

a.white {
	color: #fff;
}

a.white:hover {
	text-decoration: underline;
}

a.orange:hover {
	text-decoration: underline;
}

blockquote {
	font-size: 1.5em;
	line-height: 1.5em;
	margin: 0;
	padding: 0;
	color: #fc6b00;
}

.sig {
	padding-top: 1em;
	font-size: 1em;
	font-weight: bold;
	color: inherit;
}

.disclaimer {
	font-size: .8em;
	line-height: 1.5em;
}

.icon-magic {
	font-size: 1em;
	margin: 0;
  	padding: .175em 0;
  	border: none;
  	border-radius: none;
}

/* LAYOUT */

/* Rollover CSS */

.hover-content {
	margin-top: 50px;
	display: hidden;
	opacity: 0;
	transition: visibility 0s linear .5s, opacity .5s linear;
}

.well:hover .hover-content {
	visibility: visible;
	opacity: 1;
}

ul.hover-content li {
	padding-bottom: 4px;
}

/* Sweep To Top */
a.btn.btn-default, a.btn.btn-primary, button.btn.btn-primary {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
a.btn.btn-default:before, a.btn.btn-primary:before, button.btn.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fc6b00;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 5px;
}
a.btn.btn-default:hover, a.btn.btn-default:focus, a.btn .btn-default:active, a.btn.btn-primary:hover, a.btn.btn-primary:focus, a.btn .btn-primary:active, button.btn.btn-primary:hover, button.btn.btn-primary:focus, button.btn .btn-primary:active {
  color: white;
  border-color: #fff;
}

a.btn.btn-default:hover:before, a.btn.btn-default:focus:before, a.btn.btn-default:active:before, a.btn.btn-primary:hover:before, a.btn.btn-primary:focus:before, a.btn.btn-primary:active:before, button.btn.btn-primary:hover:before, button.btn.btn-primary:focus:before, button.btn.btn-primary:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

a.btn.btn-default:before {
  background: #fc6b00;
}

a.btn.btn-primary:before, button.btn.btn-primary:before {
	background: #7accc8;
}

.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fc6b00;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
  color: white;
}
.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

div.center-block {
	display: inline-block;
	text-align: center;
}

/* Contact Form */

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    color: #B94A4A;
}

.has-error .form-control {
	color:#B94A4A !important;
    border-color: #b94a48;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus{
	  color:#B94A4A !important;
    border-color: #b94a48;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control {
    border-color: #356635;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus{
    border-color: #356635;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .help-block, .has-success .control-label {
    color: #468847;
}

/* Media Query Fixes */

@media (max-width: 480px) {

	.row {
		margin: 0 auto;
		padding: 2em 0;
	}

	.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
		padding: 0;
	}
}

@media (min-width: 767px) {

	.left {
		text-align: left;
	}
	
	.right {
		text-align: right;
	}
}

@media (max-width: 320px) {
	
	h1 {
		font-size: 2em;
	}
	
}

@media (max-width: 240px) {
	
	h1 {
		font-size: 1.75rem;
	}
	
	h2 {
		font-size: 1.5rem;
	}
	
	h3 {
		font-size: 1.25rem;
	}
	
	footer {
		font-size: .5rem;
	}
}

/* IE 10 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	#drawer {
		overflow-y: scroll;
	}
}
