/* --------------------------------------------------
   Table of Contents
-----------------------------------------------------

:: GENERAL STYLES
	:: Layout
	:: Typography
	:: Header
	:: Primary Navigation
	:: Secondary Navigation
	:: Main
	:: Utility Navigation
	:: Footer
	:: Buttons
	:: Lists
	:: Misc

:: MODULE STYLES
	:: Error View
	:: Slider
	:: Search Results
	:: Values
	:: Quote Widget
	:: Loading Overlay

:: ADDITIONAL GRIDS
	:: Grid Override
	:: Grid Left/Right
	:: Grid 1
	:: Grid 4
	:: Grid 7

*/

/* :: GENERAL STYLES -------------------- */

/* -----------------------------------------
   :: Layout
----------------------------------------- */

#wrap {
	padding: 10px 0;
}

.container {}

.row {
	width: auto;
}

@media only screen and (max-width: 979px) {

	#wrap {
		padding: 0;
	}

	.container {
		padding: 0;
	}

	.row {
		max-width: none;
	}

}

/* -----------------------------------------
   :: Typography
----------------------------------------- */

body {
	color: #333333;
}

h1, h2, h3, h4, h5, h6 {
	color: #333333;
}

h2 {
	font-size: 16px;
}

p {
	font-size: 12px;
	line-height: 1.5;
	margin: 0 0 18px;
}

a, a:active, a:hover, a:visited {
	color: #017dc7;
}

a:hover {
	text-decoration: underline;
}

/* -----------------------------------------
   :: Header
----------------------------------------- */

#header-content {
	background: #e6e6e6; /* Old browsers */
	background: -moz-linear-gradient(top, #e6e6e6 0%, #e1e1e1 30%, #cfcfcf 77%, #cacaca 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6e6e6), color-stop(30%,#e1e1e1), color-stop(77%,#cfcfcf), color-stop(100%,#cacaca)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e6e6e6 0%,#e1e1e1 30%,#cfcfcf 77%,#cacaca 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e6e6e6 0%,#e1e1e1 30%,#cfcfcf 77%,#cacaca 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #e6e6e6 0%,#e1e1e1 30%,#cfcfcf 77%,#cacaca 100%); /* IE10+ */
	background: linear-gradient(top, #e6e6e6 0%,#e1e1e1 30%,#cfcfcf 77%,#cacaca 100%); /* W3C */
	border: 1px solid #bcbcbc;
}

#branding {
	text-align: right;
}

@media only screen and (max-width: 650px) {
	#title {
		text-align: center;
	}

	#branding {
		text-align: center;
	}
}

/* -----------------------------------------
   :: Primary Navigation
----------------------------------------- */

#primary-navigation {
	background: #eaeaea;
	border-top: 1px solid #f5f5f5;
	min-height: 35px;
	-webkit-box-shadow:  0 0 2px 1px rgba(0, 0, 0, 0.2);
			box-shadow:  0 0 2px 1px rgba(0, 0, 0, 0.2);
	margin: 0 auto;
	max-width: 995px;
}

#primary-navigation ul > li {
	color: #616161;
	font-size: 14px;
	font-weight: bold;
	line-height: 35px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 0;
	position: relative;
	height: 35px;
}

#primary-navigation ul > li.selected > span {
	background: url('../img/pixel_3799d3.png') 0 0 repeat-x #017dc7;
	border: 1px solid #0e6ba2;
	border-bottom: none;
	color: #fff;
	display: block;
	width: 100%;
	height: 100%;
	-webkit-box-shadow:  0px -1px 5px 1px rgba(0, 0, 0, 0.2);
			box-shadow:  0px -1px 5px 1px rgba(0, 0, 0, 0.2);
	clip: rect(-10px, 1000px, 42px, -10px);
	padding: 5px 5px 1px 5px;
	position: absolute;
	top: -5px;
	left: -5px;
	z-index: 3;
}

#primary-navigation ul > li.complete > span {
	background: url('../Images/checkmark.png') right center no-repeat;
	color: #5bb33b;
	padding: 0 15px;
}

@media only screen and (max-width: 979px) {
	#primary-navigation {  max-width: none; }
	#primary-navigation ul > li.selected > span { padding-left: 0; padding-right: 0; }
}

@media only screen and (max-width: 730px) {
	#primary-navigation ul > li {
		font-size: 12px;
	}
}

@media only screen and (max-width: 650px) {
	#primary-navigation {
		display: none;
	}
}

/* -----------------------------------------
   :: Secondary Navigation
----------------------------------------- */

.secondary-nav {
	background: url('../img/pixel_3799d3.png') 0 0 repeat-x #017dc7;
	border: 1px solid #0e6ba2;
	min-height: 20px;
	-webkit-box-shadow:  0px -1px 5px 1px rgba(0, 0, 0, 0.2);
			box-shadow:  0px -1px 5px 1px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 2;
	color: white;
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
	margin: 0 auto;
	width: auto;
	max-width: 1005px;
	padding: 5px 0;
}

.secondary-nav a:first-child {
	margin-left: 15px;
}

.secondary-nav a {
	color: #fff;
	text-decoration: none;
}

.secondary-nav a:hover,
.secondary-nav a:active {
	text-decoration: underline;
}

.secondary-nav a:active {
	position: relative;
	top: 1px;
}

@media only screen and (max-width: 979px) {
	.secondary-nav {
		max-width: none;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media only screen and (max-width: 650px) {
	.secondary-nav {
		text-align: center;
		font-size: 14px;
	}

	.secondary-nav a:first-child {
		margin-left: 0;
	}
}

/* -----------------------------------------
   :: Main
----------------------------------------- */

.content-block {
	margin: 15px;
}

#main {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

#main > .row {
	background-color: #fff;
	border: 1px solid #bcbcbc;
	border-top: none;
	border-bottom: none;
	position: relative;
}

#main-content {
	height: 100%;
	position: relative;
	overflow: hidden;
}

#main-content .row {
	overflow: hidden;
}

#main-content .column,
#main-content .columns {
	margin-bottom: -2000px;
	padding-bottom: 2000px;
	min-height: 225px;
}

#mobile_select_list {
	display: none;
}

@media only screen and (max-width: 650px) {
	#main-content .column,
	#main-content .columns {
		margin-bottom: 0px;
		padding-bottom: 0px;
		min-height: 1px;
	}

	#select_lists {
		display: none;
	}

	#mobile_select_list {
		display: block;
	}
}

/* -----------------------------------------
   :: Utility Navigation
----------------------------------------- */

#utility-navigation {
	background: #eaeaea;
	border-top: 1px solid #f5f5f5;
	-webkit-box-shadow:  0 0 2px 1px rgba(0, 0, 0, 0.2);
			box-shadow:  0 0 2px 1px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 2;
	padding: 5px 0 10px;
	margin: 0 auto;
	max-width: 995px;
}

#utility-navigation ul > li {
	margin-bottom: 0;
}

.utility-more {
	text-align: right;
	font-weight: bold;
	font-size: 14px;
}

.utility-more .text-button {
	font-size: 14px;
}

#utility-nav {
	display: none;
}

@media only screen and (max-width: 979px) {
	#utility-navigation {
		max-width: none;
		border-left: 1px solid #BCBCBC;
		border-right: 1px solid #BCBCBC;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media only screen and (max-width: 650px) {
	.utility-more {
		text-align: left;
		margin-top: 15px;
	}

	.utility-more .text-button {
		display: block;
		line-height: 20px;
	}
}

/* -----------------------------------------
   :: Footer
----------------------------------------- */

#footer-content {
	background-color: #e4e4e4;
	border: 1px solid #bcbcbc;
	border-top: none;
	color: #616161;
	font-size: 11px;
	line-height: 14px;
	position: relative;
	z-index: 1;
}

#footer-content .content-block {
	min-height: 1px;
}

#footer-content p {
	font-size: 11px;
	margin-bottom: 5px;
}

/* -----------------------------------------
   :: Buttons
----------------------------------------- */

.button {
	background: #2f8a42; /* Old browsers */
	background: -moz-linear-gradient(top, #a6d894 0%, #76c25c 5%, #5aa757 42%, #429843 47%, #358c42 63%, #308741 74%, #308741 95%, #2f8a42 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a6d894), color-stop(5%,#76c25c), color-stop(42%,#5aa757), color-stop(47%,#429843), color-stop(63%,#358c42), color-stop(74%,#308741), color-stop(95%,#308741), color-stop(100%,#2f8a42)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #a6d894 0%,#76c25c 5%,#5aa757 42%,#429843 47%,#358c42 63%,#308741 74%,#308741 95%,#2f8a42 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #a6d894 0%,#76c25c 5%,#5aa757 42%,#429843 47%,#358c42 63%,#308741 74%,#308741 95%,#2f8a42 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #a6d894 0%,#76c25c 5%,#5aa757 42%,#429843 47%,#358c42 63%,#308741 74%,#308741 95%,#2f8a42 100%); /* IE10+ */
	background: linear-gradient(top, #a6d894 0%,#76c25c 5%,#5aa757 42%,#429843 47%,#358c42 63%,#308741 74%,#308741 95%,#2f8a42 100%); /* W3C */
	border: 1px solid #2b9145;
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
			border-radius: 10px;
	-webkit-box-shadow:  1px 1px 3px 0px rgba(0, 0, 0, 0.2);
			box-shadow:  1px 1px 3px 0px rgba(0, 0, 0, 0.2);
	color: #fff;
	cursor: pointer;
	display: inline;
	font-weight: bold;
	font-size: 11px;
	line-height: 15px;
	padding: 3px 25px;
	outline: 0;
	overflow: visible;
	text-align: center;
	text-transform: uppercase;
	font-family: "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, "Lucida Grande", sans-serif;
	width: auto;
}

.button:hover,
.button:focus {
	background: #2f8a42; /* Old browsers */
	background: -moz-linear-gradient(top, #a6d894 0%, #76c25c 5%, #5aa757 42%, #429843 47%, #358c42 63%, #308741 74%, #308741 95%, #2f8a42 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a6d894), color-stop(5%,#76c25c), color-stop(42%,#5aa757), color-stop(47%,#429843), color-stop(63%,#358c42), color-stop(74%,#308741), color-stop(95%,#308741), color-stop(100%,#2f8a42)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #a6d894 0%,#76c25c 5%,#5aa757 42%,#429843 47%,#358c42 63%,#308741 74%,#308741 95%,#2f8a42 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #a6d894 0%,#76c25c 5%,#5aa757 42%,#429843 47%,#358c42 63%,#308741 74%,#308741 95%,#2f8a42 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #a6d894 0%,#76c25c 5%,#5aa757 42%,#429843 47%,#358c42 63%,#308741 74%,#308741 95%,#2f8a42 100%); /* IE10+ */
	background: linear-gradient(top, #a6d894 0%,#76c25c 5%,#5aa757 42%,#429843 47%,#358c42 63%,#308741 74%,#308741 95%,#2f8a42 100%); /* W3C */
	border: 1px solid #2b9145;
	text-decoration: underline;
}

.button:active {
	position: relative;
	top: 1px;
	-webkit-box-shadow:  0px 0px 1px 0px rgba(0, 0, 0, 0.2);
			box-shadow:  0px 0px 1px 0px rgba(0, 0, 0, 0.2);
}

.button.grey,
.button.grey:hover,
.button.grey:focus {
	background: #f3f3f3; /* Old browsers */
	background: -moz-linear-gradient(top, #f3f3f3 0%, #fcfcfc 6%, #f5f3f3 41%, #dddddd 94%, #d8d8d8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3f3f3), color-stop(6%,#fcfcfc), color-stop(41%,#f5f3f3), color-stop(94%,#dddddd), color-stop(100%,#d8d8d8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f3f3f3 0%,#fcfcfc 6%,#f5f3f3 41%,#dddddd 94%,#d8d8d8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f3f3f3 0%,#fcfcfc 6%,#f5f3f3 41%,#dddddd 94%,#d8d8d8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #f3f3f3 0%,#fcfcfc 6%,#f5f3f3 41%,#dddddd 94%,#d8d8d8 100%); /* IE10+ */
	background: linear-gradient(top, #f3f3f3 0%,#fcfcfc 6%,#f5f3f3 41%,#dddddd 94%,#d8d8d8 100%); /* W3C */
	border: 1px solid #adacac;
	color: #616161;
}

.button[type="submit"] {
	margin-top: 10px;
	margin-bottom: 10px;
}

.button.arrow:after {
	background: url('../img/button_arrow.gif') top left no-repeat;
	content: "";
	display: block;
	width:  8px;
	height: 7px;
	position: absolute;
	top: 7px;
	right: 8px;
}

.grey.button.arrow:after {
	background: url('../img/button_arrow_grey.gif') top left no-repeat;
}

.dropdown.button {
	padding: 2px 6px;
}

.text-button {
	cursor: pointer;
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
}

.text-button.more {
	background: url('../img/button_sprites.png') 0 0 no-repeat;
	display: inline-block;
	padding: 0 0 0 20px;
}

.text-button.back {
	background: url('../img/button_sprites.png') 0 -20px no-repeat;
	padding: 2px 0 2px 20px;
}

.text-button.action {
	background: url('../img/button_sprites.png') right -40px no-repeat;
	padding: 2px 20px 2px 0;
}

@media only screen and (max-width: 650px) {
	button.button,
	input.button[type="submit"] {
		font-size: 12px;
		line-height: 16px;
		padding: 10px 35px;
		width: auto;
	}

	button.button.arrow:after,
	input.button[type="submit"].arrow:after {
		top: 15px;
	}
}

/* -----------------------------------------
   :: Lists
----------------------------------------- */

.select-list .menu {
	margin-bottom: 0;
	padding-bottom: 5px;
}

.select-list .menu > li > ul {
	margin: 0;
	padding: 0;
}

.select-list .menu > li > ul > li {
	padding: 0;
	margin: 0;
	cursor: pointer;
}

.select-list .menu > li > ul > li > a {
	display: block;
	padding: 2px 10px;
	margin: 0;
	-webkit-transition-property: background;
	   -moz-transition-property: background;
		 -o-transition-property: background;
			transition-property: background;
	-webkit-transition-duration: 0.25s;
	   -moz-transition-duration: 0.25s;
		 -o-transition-duration: 0.25s;
			transition-duration: 0.25s;
	-webkit-transition-timing-function: linear;
	   -moz-transition-timing-function: linear;
		 -o-transition-timing-function: linear;
			transition-timing-function: linear;
}

.select-list .menu > li > ul > li > a:hover {
	background: #d5d5d5;
	text-decoration: none;
}

.select-list .column,
.select-list .columns {
	padding: 5px 0;
	margin-bottom: 0;
}

#mobile_select_list .list-node-toggle {
	background: #f5f5f5; /* Old browsers */
	background: -moz-linear-gradient(top, #f5f5f5 0%, #eaeaea 3%, #e8e8e8 24%, #e0dede 69%, #dedbdb 97%, #cecdcd 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(3%,#eaeaea), color-stop(24%,#e8e8e8), color-stop(69%,#e0dede), color-stop(97%,#dedbdb), color-stop(100%,#cecdcd)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f5f5f5 0%,#eaeaea 3%,#e8e8e8 24%,#e0dede 69%,#dedbdb 97%,#cecdcd 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f5f5f5 0%,#eaeaea 3%,#e8e8e8 24%,#e0dede 69%,#dedbdb 97%,#cecdcd 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #f5f5f5 0%,#eaeaea 3%,#e8e8e8 24%,#e0dede 69%,#dedbdb 97%,#cecdcd 100%); /* IE10+ */
	background: linear-gradient(top, #f5f5f5 0%,#eaeaea 3%,#e8e8e8 24%,#e0dede 69%,#dedbdb 97%,#cecdcd 100%); /* W3C */
	border-top: 1px solid #bcbcbc;
	color: #616161;
	font-size: 16px;
	font-weight: bold;
	line-height: 30px;
	padding: 5px 20px;
	margin: 0;
	cursor: pointer;
}

#mobile_select_list .list-node-toggle:hover,
#mobile_select_list.active .list-node-toggle {
	background: #fbfbfb; /* Old browsers */
	background: -moz-linear-gradient(top, #fbfbfb 0%, #f6f6f6 3%, #f0efef 97%, #adadad 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fbfbfb), color-stop(3%,#f6f6f6), color-stop(97%,#f0efef), color-stop(100%,#adadad)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fbfbfb 0%,#f6f6f6 3%,#f0efef 97%,#adadad 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fbfbfb 0%,#f6f6f6 3%,#f0efef 97%,#adadad 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fbfbfb 0%,#f6f6f6 3%,#f0efef 97%,#adadad 100%); /* IE10+ */
	background: linear-gradient(top, #fbfbfb 0%,#f6f6f6 3%,#f0efef 97%,#adadad 100%); /* W3C */
	font-weight: bold;
}

#mobile_select_list ul {
	background: #fff;
	color: #616161;
	margin: 0;
	overflow: auto;
}

#mobile_select_list ul li {
	margin: 0;
}

#mobile_select_list ul li a {
	cursor: pointer;
	display: block;
	padding: 10px 20px;
	-webkit-transition-property: background;
	   -moz-transition-property: background;
		 -o-transition-property: background;
			transition-property: background;
	-webkit-transition-duration: 0.25s;
	   -moz-transition-duration: 0.25s;
		 -o-transition-duration: 0.25s;
			transition-duration: 0.25s;
	-webkit-transition-timing-function: linear;
	   -moz-transition-timing-function: linear;
		 -o-transition-timing-function: linear;
			transition-timing-function: linear;
}

#mobile_select_list ul li a:hover {
	background: #d5d5d5;
	text-decoration: none;
}

/* -----------------------------------------
   :: Misc
----------------------------------------- */

.odd {
	background: #f7f7f7;
}

.hidden {
	display: none;
}

.handset-only {
	display: none;
}

.tablet-handset-only {
	display: none;
}

.tablet-only {
	display: none;
}

.desktop-tablet-only {
	display: block;
}

.desktop-only {
	display: block;
}

@media only screen and (max-width: 480px) {
	.handset-only {
		display: block;
	}

	.desktop-only {
		display: none;
	}

	.desktop-tablet-only {
		display: none;
	}
}

@media only screen and (max-width: 650px) {
	.tablet-handset-only {
		display: block;
	}

	.desktop-only {
		display: none;
	}
}

@media only screen and (min-width: 481px) and (max-width: 650px) {
	.tablet-only {
		display: block;
	}

	.desktop-only {
		display: none;
	}
}

@media only screen and (min-width: 481px) {
	.desktop-tablet-only {
		display: block;
	}
}

/* :: MODULE STYLES ----------------------- */

/* -----------------------------------------
   :: Welcome View
----------------------------------------- */

#welcome-view {
	display: none;
}

/* -----------------------------------------
   :: Error View
----------------------------------------- */

#error-view {
	display: none;
}

/* -----------------------------------------
   :: Slider
----------------------------------------- */

.vp-slider {
	display: none;
}

/* -----------------------------------------
   :: Search Results
----------------------------------------- */

#VehicleSearchResults_loading {
	display: none;
}

#divVehicleSearchResults {
	border: 1px solid #bcbcbc;
	border-top: none;
}

#vehicle-search-results-container table {
	border: none;
	width: 100%;
	margin-bottom: 0;
}

#VehicleSearchResults_data tr {
	cursor: pointer;
	-webkit-transition-property: background;
	   -moz-transition-property: background;
		 -o-transition-property: background;
			transition-property: background;
	-webkit-transition-duration: 0.25s;
	   -moz-transition-duration: 0.25s;
		 -o-transition-duration: 0.25s;
			transition-duration: 0.25s;
	-webkit-transition-timing-function: linear;
	   -moz-transition-timing-function: linear;
		 -o-transition-timing-function: linear;
			transition-timing-function: linear;
}

#VehicleSearchResults_data tr:hover {
	background: #d5d5d5;
}

#VehicleSearchResults_data tr td {
	color: #017DC7;
}

.select-list .menu > li > ul > li > a:hover {
	background: #d5d5d5;
}

table thead tr td {
	border: medium none;
	color: #333333;
	padding: 9px 10px;
	vertical-align: top;
}

/* -----------------------------------------
   :: Values
----------------------------------------- */

#vehicle_details {
	display: none;
	padding: 0 20px;
}

#vp-value-header {
	padding: 20px 0 10px 0;
}

#vp-value-image {
}

#vp-value-image img {
	margin-top: 20px;
}

#vp-value-image span {
	display: block;
	font-size: 10px;
	line-height: 12px;
	text-align: center;
}

#vp-value-title {
	color: #000;
	font-size: 24px;
	line-height: 30px;
}

#vp-value-subtitle {
	font-size: 16px;
	line-height: 22px;
}

#vp-value-average {
	color: #017dc7;
	font-size: 30px;
	line-height: 30px;
}

#usd-notification {
	display: none;
	font-size: 11px;
	line-height: 11px;
}

#vp-value-valuationtools {
}

#vp-value-quote {
	padding: 45px 0 0 0;
	text-align: right;
}

#vp-value-stats {
	margin-top: 15px;
}

#vp-value-label {
}

#vp-value-notes {
	display: none;
	font-size: 12px;
}

#vp-value-values {
	position: relative;
	clear: both;
	height: 225px;
}

.condition-label-wrap {
	border-left: 1px solid #fff;
	color: #111;
	cursor: pointer;
	font-size: 18px;
	line-height: 40px;
	position: relative;
}

#main-content .condition-label-wrap {
	margin: 0;
	padding: 0;
	min-height: 0;
}

.vp-value-condition.active .condition-label-wrap:after {
	top: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.vp-value-condition.active .condition-label-wrap:after {
	border-top-color: #017dc7;
	border-width: 10px;
	left: 50%;
	margin-left: -10px;
}


.vp-value-condition:first-child .condition-label-wrap {
	border-left: none;
}

.vp-value-condition.active .condition-label-wrap {
	background: #017DC7;
	color: #fff;
}

.condition-label {
	border: 1px solid #017dc7;
	color: #017dc7;
	width: 15px;
	font-size: 14px;
	line-height: 15px;
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;
}

.vp-value-condition.active .condition-label {
	border: 1px solid #fff;
	color: #fff;
}

.vp-value-condition.active .condition-label {
	left: -1px;
	top: -1px;
}

.vp-value-price {
	border-right: 5px solid #fff;
	text-align: center;
	font-size: 22px;
}

.vp-value-description-label {
	color: #017dc7;
	font-size: 14px;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 50px;
	display: none;
}

.vp-value-condition.active .vp-value-description-label {
	display: block;
}

.vp-value-description {
	position: absolute;
	left: 0;
	top: 70px;
	display: none;
}

.vp-value-condition.active .vp-value-description {
	display: block;
}

.condition-label-wrap.active .vp-value-description-label {
	display: block;
}

.vp-loading {
	display: none;
}

@media only screen and (min-width: 651px) and (max-width: 820px) {

	.vp-value-price {
		font-size: 16px;
	}
}

@media only screen and (max-width: 650px) {

	#vp-value-values {
		height: auto;
	}

	#vp-value-image {
		text-align: center;
	}

	.vp-value-price {
		border: 1px solid #017DC7;
		font-size: 26px;
		margin: 0 0 10px 0;
	}

	.vp-value-description-label {
		margin: 10px 0;
		position: static;
		top: 0;
		left: 0;
	}

	.vp-value-description {
		position: static;
		top: 0;
		left: 0;
	}
}

/* -----------------------------------------
   :: Quote Widget
----------------------------------------- */

#hia-quote button { 
	margin:0;
	padding:0;
}

#hia-quote div { 
	margin:0;
	padding:0;
}

#hia-quote button:hover {
	cursor: pointer;
}

#hia-quote /* Ad Wrapper */ {
	background-color: #fff;
	margin: 20px 0 10px;
	padding: 3px;
	border: 1px solid #CBCBCB;
}

#hia-quote-wrapper {
	color:#595858 !important;
	font: 12px/11px Arial,Helvetica,sans-serif !important; 
	margin: 0 auto !important;
	outline: 0 none;
	overflow: hidden;
	text-align: center;
	background: rgb(247,247,247); /* Old browsers */
	background: -o-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(242,242,242,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(242,242,242,1) 100%); /* IE10+ */
	background: -moz-linear-gradient(top,  rgba(247,247,247,1) 0%, rgba(242,242,242,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,247,247,1)), color-stop(100%,rgba(242,242,242,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(242,242,242,1) 100%); /* Chrome10+,Safari5.1+ */
	background: linear-gradient(to bottom,  rgba(247,247,247,1) 0%,rgba(242,242,242,1) 100%); /* W3C */
}

#hia-quote .title {
	font-weight: bold;
	line-height:15px;
	padding: 5px 0;
	text-transform: uppercase;
	border-bottom: solid 1px #d4d4d4;
	margin: 0 auto 5px;
	width: 98%;
}

#hia-quote .body {
	position: relative;
	text-transform: uppercase;
	font-weight: bold;
}

#hia-quote .ymm {
	color: #017DC7;
	font-size: 18px;
	line-height: 100%;
	padding: 2px 0;
	margin-bottom: 5px;
}

#hia-quote .value {
	padding:0 0 5px;
	margin-bottom:2px;
}

#hia-quote .Premium-wrapper {
	margin-left: -20px;
	overflow: hidden;
	color:#017dc7;
}

#hia-quote .price {
	font-size:16px;
	padding: 10px 0;
	color: #000;
	background-color: #D6D6D6;
}

#hia-quote .price span.amount {
	font-size: 50px;
	line-height: 100%;
}

#hia-quote .currency-symbol, .amount {
	text-shadow: 2px 1px 0px rgba(255,255,255,0.8);
	filter: dropshadow(color=#fff, offx=2, offy=1);
}

#hia-quote .price span.currency-symbol {
	font-size: 35px;
	margin-right: 1px;
	vertical-align: 10px;
}

#hia-quote .price-per-year {
	display: block;
	margin: 5px 0 0 5px;
}

#hia-quote .btm {
	padding-top: 15px;
}

#hia-quote #your-quote-link {
	color: #fff;
	margin: 10px 0;
}

#hia-quote #disclaimer {
	font-size: 9px;
	line-height: 110%;
	padding: 3px;
	margin-top: 15px;
}

/* -----------------------------------------
   :: Preconfig Link
----------------------------------------- */

#preconfig_wrap {
	position: relative;
	display: none;
	text-align: center;
	margin: 10px 0;
}

#preconfig_link {
	background: url('../img/link_icn.png') left center no-repeat;
	padding: 0 0 0 15px;
}

/* -----------------------------------------
   :: Loading Overlay
----------------------------------------- */

#default-screen .column,
#default-screen .columns {
	min-height: 225px;
}

#loading-overlay {
	display: block;
	background: #f7f7f7;
	opacity: 0.75;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	position: absolute;
}

#loading-overlay img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -64px 0 0 -64px;
}

/* :: ADDITIONAL GRIDS ----------------------- */

/* -----------------------------------------
   :: Grid Overrides
----------------------------------------- */

.select-year-list .column,
.select-year-list .columns {
	text-align: center;
}

.select-year-list .grid-1 .column,
.select-year-list .grid-1 .columns {
	text-align: left;
}

@media only screen and (max-width: 650px) {
	.column,
	.columns {
		width: auto !important;
	}
}

/* -----------------------------------------
   :: Grid Left/Right
----------------------------------------- */

.column-left {
	float: left;
	width: 67.75%;
}

.column-right {
	float: right;
	margin-left: 2%;
	width: 30%;
}

@media only screen and (max-width: 650px) {
	.column-left,
	.column-right {
		float: none;
		margin: 0;
		width: 100%;
	}
}

/* -----------------------------------------
   :: Grid 1
----------------------------------------- */

.grid-1 .column,
.grid-1 .columns {
	margin-left: 0;
	padding: 0;
}

.grid-1 [class*="column"] + [class*="column"]:last-child { float: left; }
.grid-1 [class*="column"] + [class*="column"].end { float: left; }

.grid-1.row .one { width: 100%; }

@media only screen and (max-width: 650px) {
}

/* -----------------------------------------
   :: Grid 2
----------------------------------------- */

.grid-2 .column,
.grid-2 .columns {
	margin-left: 0;
	padding: 0;
}

.grid-2 [class*="column"] + [class*="column"]:last-child { float: left; }
.grid-2 [class*="column"] + [class*="column"].end { float: left; }

.grid-2.row .one { width: 49.9%; }

@media only screen and (max-width: 650px) {
}

/* -----------------------------------------
   :: Grid 3
----------------------------------------- */

.grid-3 .column,
.grid-3 .columns {
	margin-left: 0;
	padding: 0;
}

.grid-3 [class*="column"] + [class*="column"]:last-child { float: left; }
.grid-3 [class*="column"] + [class*="column"].end { float: left; }

.grid-3.row .one { width: 33.3%; }

@media only screen and (max-width: 650px) {
}

/* -----------------------------------------
   :: Grid 4
----------------------------------------- */

.grid-4 .column,
.grid-4 .columns {
	margin-left: 0;
	padding: 0;
}

.grid-4 [class*="column"] + [class*="column"]:last-child { float: left; }
.grid-4 [class*="column"] + [class*="column"].end { float: left; }

.grid-4.row .one { width: 24.7%; }

@media only screen and (max-width: 650px) {
}

/* -----------------------------------------
   :: Grid 5
----------------------------------------- */

.grid-5 .column,
.grid-5 .columns {
	margin-left: 0;
	padding: 0;
}

.grid-5 [class*="column"] + [class*="column"]:last-child { float: left; }
.grid-5 [class*="column"] + [class*="column"].end { float: left; }

.grid-5.row .one { width: 19.9%; }

@media only screen and (max-width: 650px) {
}

/* -----------------------------------------
   :: Grid 6
----------------------------------------- */

.grid-6 .column,
.grid-6 .columns {
	margin-left: 0;
	padding: 0;
}

.grid-6 [class*="column"] + [class*="column"]:last-child { float: left; }
.grid-6 [class*="column"] + [class*="column"].end { float: left; }

.grid-6.row .one { width: 16.6%; }

@media only screen and (max-width: 650px) {
}

/* -----------------------------------------
   :: Grid 7
----------------------------------------- */
.grid-7 .column,
.grid-7 .columns {
	margin-left: 0;
	padding: 0;
}

.grid-7 [class*="column"] + [class*="column"]:last-child { float: left; }
.grid-7 [class*="column"] + [class*="column"].end { float: left; }

.grid-7.row .one       { width: 14.22%; }

@media only screen and (max-width: 650px) {
}

@media only screen and (min-width: 35em) {
}

.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; }
.ir br { display: none; }
.hidden { display: none !important; visibility: hidden; }
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

@media print {
	* { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } 
	a, a:visited { text-decoration: underline; }
	a[href]:after { content: " (" attr(href) ")"; }
	abbr[title]:after { content: " (" attr(title) ")"; }
	.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } 
	pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
	thead { display: table-header-group; } 
	tr, img { page-break-inside: avoid; }
	img { max-width: 100% !important; }
	@page { margin: 0.5cm; }
	p, h2, h3 { orphans: 3; widows: 3; }
	h2, h3 { page-break-after: avoid; }
}