body {
  background: #D9E1E8;
  margin: 0 auto;
  padding: 0;
  font-family: OpenSans-Regular, Helvetica, sans-serif;
}
div#wrapper {
  width: 1280px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

@font-face {
    font-family: OpenSans-Regular;
    src: url('fonts/OpenSans-Regular.eot'); /* IE9 Compat Modes */
    src: url('fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'), 
         url(fonts/OpenSans-Regular.ttf) format('truetype');
}
@font-face {
    font-family: OpenSans-Semibold;
    src: url('fonts/OpenSans-Semibold.eot'); /* IE9 Compat Modes */
    src: url('fonts/OpenSans-Semibold.eot?#iefix') format('embedded-opentype'), 
         url(fonts/OpenSans-Semibold.ttf) format('truetype');
}

.purple-bg {
	  background-color: #79579A !important;
}
#new-form-style {
    list-style: none;
    list-style-position: outside;
    margin: 35px 0px 35px 20px;
    font-family: OpenSans-Regular;
    font-size: 13px;
}
#new-form-style ul {
    margin: 0;
    padding: 0;
}
#new-form-style .form-line {
    padding-top: 5px;
    padding-bottom: 5px;
  	 padding-left: 0;
    padding-right: 0;
    margin: 0;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    clear: both;
    display: block;
}
#new-form-style .form-radio-item-wrapper {
    display:inline-block;
}

#new-form-style .form-label-left {
    width: 190px !important;
    float: left;
    display: inline-block;
    text-align: left;
    padding: 0px;
    white-space: normal;
    font-family: OpenSans-Semibold;
    color: #353535;
    line-height: 26px;
    height: 28px;
}

#new-form-style .form-required {
    color: transparent;
}

#new-form-style .form-textbox {
    padding: 1px 7px 1px 7px;
    margin-left: 0;
    border: 1px solid #e1e1e1;
    font-size: 13px;
    line-height: 25px;
    box-shadow: none;
    border-radius: 3px;
    background: #f7f7f7;
    width: 210px;
}
#new-form-style .form-drop-down {
    padding: 6px 7px 4px 7px;
    margin-left: 0;
    border: 1px solid #e1e1e1;
    font-size: 13px;
    line-height: 25px;
    box-shadow: none;
    border-radius: 3px;
    background: #f7f7f7;
    width: 226px;
}

:focus {
    outline: 0;
}
#new-form-style .form-radio-item,
#new-form-style .form-checkbox-item {
	 float: left;
	 margin-top: 5px;
    margin-bottom: 0;
    margin-right: 11px;
}
#new-form-style .form-radio-item label, #new-form-style .form-checkbox-item label {
    margin-left: 3px;
}
#new-form-style button.form-submit-button {
	 background: #f78f1f;
    border: none;
    border-radius: 3px;
    padding: 7px 23px;
    color: #fff;
    font-family: OpenSans-Semibold;
    text-transform: uppercase;
    font-size: 17px;
    box-shadow: 0px 3px 0px #c17019;
    cursor: pointer;
    -webkit-transition-property: color, background;
    -webkit-transition-duration: 0.5s, 0.5s;
    -webkit-transition-timing-function: linear, ease-in;
    margin-top: 20px;
}
#new-form-style button.form-submit-button:hover {
	 background: #f7661f;	
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset !important;

}

#new-form-style input[type=radio].css-checkbox {
	position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

#new-form-style input[type=radio].css-checkbox + label.css-label {
	padding-left:24px;
	height:19px; 
	display:inline-block;
	line-height:19px;
	background-repeat:no-repeat;
	background-position: 0 0;
	vertical-align:middle;
	cursor:pointer;
}
#new-form-style input[type=radio].css-checkbox:checked + label.css-label {
	background-position: 0 -19px;
}
#new-form-style label.css-label {
	background-image:url(../images/css-radio.png);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
			
/* CHECKBOX STYLE */
#new-form-style .squared-check {
	width: 20px;
   margin: 1px 0 0 0;
   position: relative;
   float: left;
}

#new-form-style .squared-check label {
	cursor: pointer;
	position: absolute;
   width: 19px;
   height: 19px;
   top: 3px;
   border-radius: 2px;
	-webkit-box-shadow: inset 0px 2px 1px #9B9B9B;
	-moz-box-shadow: inset 0px 2px 1px #9B9B9B;
	box-shadow: inset 0px 2px 1px #9B9B9B;
	background: #ebebeb;
   border: none;
}

#new-form-style .squared-check label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
	width: 9px;
	height: 5px;
	background: transparent;
	top: 4px;
	left: 4px;
	border: 3px solid #f78f20;
	border-top: none;
	border-right: none;

	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#new-form-style .squared-check label:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	opacity: 0.5;
}

#new-form-style .squared-check input[type=checkbox]:checked + label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}

.clearfix {
	clear: both;
}
.new-dropdown-style {
	float: left;
}


li.form-line.subtitle-new-f h3 {
  color: #b3b3b3;
  text-align: center;
  text-transform: uppercase;
  font-family: OpenSans-Regular;
  font-size: 15px;
  font-weight: normal;
  margin: 0 15px;
  display: inline-block;
}
.line-subtitle1 {
   width: 28.2%;
   background: #b3b3b3;
   height: 1px;
   display: inline-block;
   margin: 6px 0;
}
.line-subtitle2 {
   width: 43%;
   background: #b3b3b3;
   height: 1px;
   display: inline-block;
   margin: 6px 0;
}
li.form-line.subtitle-new-f {
	width: 416px !important;
	margin: 15px 0 !important;
}

.new-dropdown-style select {
	padding: 5px 7px 5px 7px;
   margin-left: 0;
   border: 1px solid #e1e1e1;
   font-size: 13px;
   line-height: 25px;
   box-shadow: none;
   border-radius: 3px;
   background: #f7f7f7;
   width: 226px;
}

#error-message {
  background: #fbfbfb url(../images/error.png) 362px center no-repeat;
  width: 437px;
  margin-left: 20px;
  margin-bottom: 40px;
  position: relative;
}
#success-message {
  background: #fbfbfb url(../images/success.png) 362px center no-repeat;
  width: 437px;
  margin-left: 20px;
  margin-bottom: 40px;
  min-height: 78px;
  position: relative;	
}
#success-message p {
  color: #93c01f;
  font-family: OpenSans-Semibold;
  font-size: 14px;
  padding: 31px 20px;
}
#error-message ul {
  padding: 18px 15px;
}
#error-message li {
  color: #e43838;
  font-family: OpenSans-Semibold;
  font-size: 14px;
  line-height: 22px;
  padding: 0;
  list-style-position: inside;
}
.error-message-top, .success-message-top {
  position: absolute;
  top: -12px;
}
.error-message-bottom, .success-message-bottom {
  position: absolute;
  bottom: -12px;
}

#error-input {
  background: url(../images/error-new.png) center left no-repeat;
  color: #e43838;
  font-family: OpenSans-Semibold;
  font-size: 13px;
  line-height: 22px; 
  padding-left: 30px;
  margin-left: 20px;
  margin-top: 5px;
  margin-bottom: 5px;  
}
#success-input {
  background: url(../images/success-new.png) center left no-repeat;
  color: #93c01f;
  font-family: OpenSans-Semibold;
  font-size: 13px;
  line-height: 22px; 
  padding-left: 30px;
  margin-left: 20px;
  margin-top: 5px;
  margin-bottom: 5px;   
}

.space11 {
	height: 11px;
}
/* ************************** HEADER ***************************** */

#nav-line-wrapper {
   background: #093a7f;
   height: auto;
   margin-top: 4px;
}
#weekly-email-alerts {
  float: left;
  width: 230px;
  margin-left: 20px;
  font-size: 13px;
  background: url(../images/email-alert.png) 0px 0px no-repeat;
  color: #B1B8D2;
  padding-left: 32px;
  line-height: 23px;
  margin-top: 16px;
}
.new-logo {
  	float: left;
  	margin: 6px 0 0 20px;	
}
.follow-us {
	float: right;
}
#header-right {
  	float: right;
  	width: 434px;
  	margin-right: 20px;
  	margin-top: 10px;
}
.follow-us p {
  float: left;
  margin: 3px 8px 0 0px;
  line-height: 19px;
  color: #8d8d8d;
  font-family: OpenSans-Regular;
  font-size: 13px;
}

#social-icons-top {
	float: left;
	width: 138px;
	height: 25px;
}
#auction-field {
	border-top: 1px solid #EFEFEF;
   padding-top: 10px;
   margin-top: 11px;
}
#auction-field .form-textbox {
    padding: 1px 7px 1px 7px;
    margin-left: 0;
    border: 1px solid #e1e1e1;
    font-size: 13px;
    line-height: 25px;
    box-shadow: none;
    border-radius: 3px 0px 0px 3px;
    background: #f7f7f7;
    width: 155px;
    float: left;
    min-height: 25px;
}
#auction-field button {
	 background: #f78f1f;
    border: 1px solid #f78f1f;
    border-radius: 0px 3px 3px 0px;
    padding: 1px 12px;
    line-height: 25px;
    color: #fff;
    font-family: OpenSans-Semibold;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition-property: color, background;
    -webkit-transition-duration: 0.5s, 0.5s;
    -webkit-transition-timing-function: linear, ease-in;
    float: left;
}
#auction-field h6 {
	 text-align: right;
    margin: 4px 0px 0px 0px;
}
#auction-field h6 a {
  	 color: #093a7f;
    text-decoration: none;
    font-size: 13px;
    font-style: italic;
    font-family: OpenSans-Semibold;
    font-weight: normal;
    margin: 0;
    opacity: 1;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;       
}
#auction-field h6 a:hover {
	 opacity: 0.5;	
}
#auction-field button:hover {
	 background: #f7661f;	
}

#auction-field input[type=radio].css-checkbox {
	position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}
#auction-field input[type=radio].css-checkbox + label.css-label {
	padding-left:24px;
	height:19px; 
	display:inline-block;
	line-height:19px;
	background-repeat:no-repeat;
	background-position: 0 0;
	vertical-align:middle;
	cursor:pointer;
	color: #8d8d8d;
	font-family: OpenSans-Regular;
	font-size: 13px;
}
#auction-field input[type=radio].css-checkbox:checked + label.css-label {
	background-position: 0 -19px;
}
#auction-field label.css-label {
	background-image:url(../images/css-radio.png);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
#auction-field .form-radio-item-wrapper {
	float: left;
   margin-right: 20px;
}
#blogspot-new {
	background: url(../images/social.png) 0px 0px no-repeat;
}
#facebook-new {
	background: url(../images/social.png) -25px 0px no-repeat;
}
#twitter-new {
	background: url(../images/social.png) -50px 0px no-repeat;
}
#youtube-new {
	background: url(../images/social.png) -75px 0px no-repeat;
}
#linkedin-new {
	background: url(../images/social.png) -100px 0px no-repeat;
}

.social-top {
	width: 24px;
   height: 24px;
   display: inline-block;
   opacity: 1;
   transition: opacity .25s ease-in-out;
   -moz-transition: opacity .25s ease-in-out;
   -webkit-transition: opacity .25s ease-in-out;   
}
.social-top:hover {
	 opacity: 0.5;
}

div#content-column-1 {
    float: left;
    margin: 5px 0 0 11px;
    width: 143px;
}
div#content-column-2 {
    float: left;
    margin: 10px 0 0 21px;
    overflow: hidden;
    padding: 0 0 40px;
    width: 775px;
}
div#content-column-2-top {
    background: transparent url("/images/homepage/interactive_background.png") repeat-y scroll 0 0;
    float: left;
    width: 775px;
}
div#content-column-2 p {
    line-height: 17px;
}

div#interactive-map {
    background-color: #eff8fc;
    float: left;
    height: 350px;
    width: 522px;
}
div#interactive-map a#advanced-search {
    float: left;
    height: 25px;
    margin: 299px 0 0 403px;
    width: 113px;
}
div#rotating-banner {
    float: left;
    height: 205px;
    margin: 0 0 0 10px;
    overflow: hidden;
    padding: 0;
    width: 242px;
}
div#right-column-items {
    border-top: 13px solid #fff;
    float: left;
    margin: 0 0 0 10px;
    width: 242px;
}
div#right-column-items p {
    font-size: 10px;
    font-weight: bold;
    line-height: 12px;
    margin: 4px 0 0;
    padding: 0;
}
div#right-column-items a {
    color: #333;
    margin: 0;
    padding: 0;
    text-decoration: none;
}
div#right-column-items a:hover {
    text-decoration: underline;
}
div#right-column-item-1, div#right-column-item-2 {
    float: left;
    margin: 0 22px 0 0;
    width: 65px;
}
div#right-column-item-3 {
    float: left;
    margin: 0;
    width: 65px;
}
div#featured-listings-wrapper {
    border: 1px solid #dae1e8;
    clear: both;
    float: left;
    height: 137px;
    margin: 10px 0 13px;
    overflow: hidden;
    padding: 10px 10px 10px 7px;
    width: 755px;
}
div#featured-listings-wrapper h2 {
    color: #093a7f;
    font-size: 11px;
    margin: 0 0 0 3px;
    padding: 0;
    text-transform: uppercase;
}
div#featured-listings-wrapper ul {
    list-style: outside none none;
    margin: 9px 15px 0 28px;
    padding: 0;
}
div#featured-listings-wrapper ul li {
    float: left;
    margin: 0 10px 0 0;
}
div#featured-listings-wrapper ul a {
    float: left;
    height: 114px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    width: 167px;
    z-index: 100;
}
div#featured-listings-wrapper ul a:hover {
    background: #f78f20 none repeat scroll 0 0;
    z-index: 200;
}
div#featured-listings-wrapper ul a span {
    display: none;
}
div#featured-listings-wrapper ul a:hover span {
    background: #f78f20 none repeat scroll 0 0;
    bottom: 0;
    color: #fff;
    display: block;
    font-size: 10px;
    font-weight: bold;
    left: 0;
    padding: 5px 15px 5px 0;
    position: absolute;
    text-align: right;
    width: 157px;
}
div#featured-listings-wrapper img {
    border: 0 none;
}
div#featured-listings-controller {
    margin: 0;
    padding: 0;
    position: relative;
    width: 752px;
}
div#featured-listings-controller a#arrow-left {
    left: 0;
    position: absolute;
    top: 52px;
}
div#featured-listings-controller a#arrow-right {
    position: absolute;
    right: 0;
    top: 52px;
}


ul#featuredlist 
{
    
}

ul#featuredlist li {
	margin: 0; padding: 0px;
	position: relative;  /* Set the absolute positioning base coordinate */
	width: 167px;
	height: 114px;
}

ul#featuredlist li img {
	width: 167px; height: 114px; /* Set the small thumbnail size */
	-ms-interpolation-mode: bicubic; /* IE Fix for Bicubic Scaling */
	border: 0px solid #ddd;
	padding: 0px;
	background: #f0f0f0;
	position: absolute;
	left: 0; top: 0;
}
ul#featuredlist li img.hover {
	/* background:url(thumb_bg.png) no-repeat center center; */ /* Image used as background on hover effect
	border: none; /* Get rid of border on hover */
}

div#largerThumbnail1 a {
    text-decoration: none;
}
div#largerThumbnail1 a span {
    display: none;
}
div#largerThumbnail1 a:hover span {
    background: #f78f20 none repeat scroll 0 0;
    bottom: 0;
    color: #fff;
    display: block;
    font-size: 10px;
    font-weight: bold;
    left: 0;
    padding: 5px 5px 5px 0;
    position: absolute;
    text-align: right;
    width: 200px;
}
div#largerThumbnail2 a {
    text-decoration: none;
}
div#largerThumbnail2 a span {
    display: none;
}
div#largerThumbnail2 a:hover span {
    background: #f78f20 none repeat scroll 0 0;
    bottom: 0;
    color: #fff;
    display: block;
    font-size: 10px;
    font-weight: bold;
    left: 0;
    padding: 5px 5px 5px 0;
    position: absolute;
    text-align: right;
    width: 200px;
}
div#largerThumbnail3 a {
    text-decoration: none;
}
div#largerThumbnail3 a span {
    display: none;
}
div#largerThumbnail3 a:hover span {
    background: #f78f20 none repeat scroll 0 0;
    bottom: 0;
    color: #fff;
    display: block;
    font-size: 10px;
    font-weight: bold;
    left: 0;
    padding: 5px 5px 5px 0;
    position: absolute;
    text-align: right;
    width: 200px;
}
div#largerThumbnail4 a {
    text-decoration: none;
}
div#largerThumbnail4 a span {
    display: none;
}
div#largerThumbnail4 a:hover span {
    background: #f78f20 none repeat scroll 0 0;
    bottom: 0;
    color: #fff;
    display: block;
    font-size: 10px;
    font-weight: bold;
    left: 0;
    padding: 5px 5px 5px 0;
    position: absolute;
    text-align: right;
    width: 200px;
}



#new-menu {
  background: #093a7f;
  margin: 0;
  padding: 0;
  line-height: 1;
  position: relative;
  float: right;
}
#new-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
#new-menu ul:after,
#new-menu:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
#new-menu ul li {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}
#new-menu ul li a {
  text-decoration: none;
  display: block;
  margin: 0;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#new-menu ul li ul {
  position: absolute;
  left: -9999px;
  top: auto;
}
#new-menu ul li ul li {
  max-height: 0;
  position: absolute;
  -webkit-transition: max-height 0.4s ease-out;
  -moz-transition: max-height 0.4s ease-out;
  -ms-transition: max-height 0.4s ease-out;
  -o-transition: max-height 0.4s ease-out;
  transition: max-height 0.4s ease-out;
  background: #ffffff;
}
#new-menu ul li ul li.has-sub:after {
  display: block;
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background: #000000;
  z-index: 1;
  top: 13px;
  right: 15px;
}
#new-menu.align-right ul li ul li.has-sub:after {
  right: auto;
  left: 15px;
}
#new-menu ul li ul li.has-sub:before {
  display: block;
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  border: 3px solid transparent;
  border-left-color: #ffffff;
  z-index: 2;
  top: 15px;
  right: 15px;
}
#new-menu.align-right ul li ul li.has-sub:before {
  right: auto;
  left: 15px;
  border-left-color: transparent;
  border-right-color: #ffffff;
}
#new-menu ul li ul li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  color: #000;
  letter-spacing: 0;
  display: block;
  width: 170px;
  padding: 11px 10px 11px 20px;
}
#new-menu ul li ul li:hover > a,
#new-menu ul li ul li.active > a {
  color: #4cb6ea;
}
#new-menu ul li ul li:hover:after,
#new-menu ul li ul li.active:after {
  background: #4cb6ea;
}
#new-menu ul li ul li:hover > ul {
  left: 100%;
  top: 0;
}
#new-menu ul li ul li:hover > ul > li {
  max-height: 72px;
  position: relative;
}
#new-menu > ul > li {
  float: left;
}
#new-menu.align-center > ul > li {
  float: none;
  display: inline-block;
}
#new-menu.align-center > ul {
  text-align: center;
}
#new-menu.align-center ul ul {
  text-align: left;
}
#new-menu.align-right > ul {
  float: right;
}
#new-menu.align-right > ul > li:hover > ul {
  left: auto;
  right: 0;
}
#new-menu.align-right ul ul li:hover > ul {
  right: 100%;
  left: auto;
}
#new-menu.align-right ul ul li a {
  text-align: right;
}
#new-menu > ul > li:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  z-index: 0;
  background: #447ab4;
  -webkit-transition: height .2s;
  -moz-transition: height .2s;
  -ms-transition: height .2s;
  -o-transition: height .2s;
  transition: height .2s;
}
#new-menu > ul > li.has-sub > a {
  padding-right: 40px;
}
#new-menu > ul > li.has-sub > a:after {
  display: block;
  content: "";
  background: #ffffff;
  height: 12px;
  width: 12px;
  position: absolute;
  border-radius: 13px;
  right: 14px;
  top: 16px;
}
#new-menu > ul > li.has-sub > a:before {
  display: block;
  content: "";
  border: 4px solid transparent;
  border-top-color: #4cb6ea;
  z-index: 2;
  height: 0;
  width: 0;
  position: absolute;
  right: 16px;
  top: 21px;
}
#new-menu > ul > li > a {
  color: #ffffff;
  padding: 20px 20px;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  z-index: 2;
  position: relative;
  font-family: OpenSans-Regular;
}
#new-menu > ul > li:hover:after,
#new-menu > ul > li.active:after {
  height: 100%;
}
#new-menu > ul > li:hover > a,
#new-menu > ul > li.active > a {
  color: #ededed;
}
#new-menu > ul > li:hover > a:after,
#new-menu > ul > li.active > a:after {
  background: #000000;
}
#new-menu > ul > li:hover > a:before,
#new-menu > ul > li.active > a:before {
  border-top-color: #ffffff;
}
#new-menu > ul > li:hover > ul {
  left: 0;
}
#new-menu > ul > li:hover > ul > li {
  max-height: 72px;
  position: relative;
}
#new-menu #menu-button {
  display: none;
}
#new-menu > ul > li > a {
  display: block;
}
#new-menu > ul > li {
  width: auto;
}
#new-menu > ul > li > ul {
  width: 170px;
  display: block;
}
#new-menu > ul > li > ul > li {
  width: 170px;
  display: block;
}


/* ---------------------------------------------
 Menu Nav
--------------------------------------------- */


.menu-nav-left {
  margin: 0 auto;
  padding: 0;
  width: 350px;
}

.menu-nav-left li { list-style: none; }

.menu-nav-left li a {
  display: table;
  margin-top: 1px;
  padding: 10px 10px;
  width: 96%;
  background: #447bb4;
  text-decoration: none;
  text-align: left;
  vertical-align: middle;
  color: #fff;
  overflow: hidden;
  -webkit-transition-property: background;
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-out;
  transition-property: background;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
  font-size: 13px;
}
.menu-nav-left.nav-myb4a li a {
  background: #79579A;
}

.menu-nav-left > li:first-child a { margin-top: 0; }

.menu-nav-left li a:hover {
  background: #225284;
  -webkit-transition-property: background;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
.menu-nav-left.nav-myb4a li a:hover {
	background: #54485F;
}
.menu-nav-left li ul {
  margin: 0;
  padding: 0;
}

.menu-nav-left li li a {
  display: block;
  margin-top: 0;
  padding: 0 10px;
  height: 0;
  background: #97B5D3;
  color: #fff;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.menu-nav-left.nav-myb4a li li a {
  background: #C4B6D2;	
}
.menu-nav-left > li:hover li a {
  display: table;
  margin-top: 1px;
  padding: 10px;
  width: 96%;
  height: 1em;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.menu-nav-left > li:hover li a:hover {
  background: #ddd;
  -webkit-transition-property: background;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-property: background;
  transition-duration: 0.2s;
  color: #000;
  transition-timing-function: ease-out;
}

#menu_box {
	display: none;
}

#new-container-right {
	width: 1070px;
  	float: left;
}

#login-bar
{
    text-align: right; padding-right: 5px; padding-top: 5px; text-decoration: none;
    font-weight: bold; font-size: 10pt; height: 20px; 
}

#login-bar a
{
    text-decoration: none;
}


@media all and (max-width: 800px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  #new-menu > ul {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.35s ease-out;
    -moz-transition: max-height 0.35s ease-out;
    -ms-transition: max-height 0.35s ease-out;
    -o-transition: max-height 0.35s ease-out;
    transition: max-height 0.35s ease-out;
  }
  #new-menu > ul > li > ul {
    width: 100%;
    display: block;
  }
  #new-menu.align-right ul li a {
    text-align: left;
  }
  #new-menu > ul > li > ul > li {
    width: 100%;
    display: block;
  }
  #new-menu.align-right ul ul li a {
    text-align: left;
  }
  #new-menu > ul > li > ul > li > a {
    width: 100%;
    display: block;
  }
  #new-menu ul li ul li a {
    width: 100%;
  }
  #new-menu.align-center > ul {
    text-align: left;
  }
  #new-menu.align-center > ul > li {
    display: block;
  }
  #new-menu > ul.open {
    max-height: 1000px;
    border-top: 1px solid rgba(110, 110, 110, 0.25);
  }
  #new-menu ul {
    width: 100%;
  }
  #new-menu ul > li {
    float: none;
    width: 100%;
  }
  #new-menu ul li a {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 12px 20px;
  }
  #new-menu ul > li:after {
    display: none;
  }
  #new-menu ul li.has-sub > a:after,
  #new-menu ul li.has-sub > a:before,
  #new-menu ul li ul li.has-sub:after,
  #new-menu ul li ul li.has-sub:before {
    display: none;
  }
  #new-menu ul li ul,
  #new-menu ul li ul li ul,
  #new-menu ul li ul li:hover > ul,
  #new-menu.align-right ul li ul,
  #new-menu.align-right ul li ul li ul,
  #new-menu.align-right ul li ul li:hover > ul {
    left: 0;
    position: relative;
    right: auto;
  }
  #new-menu ul li ul li,
  #new-menu ul li:hover > ul > li {
    max-height: 999px;
    position: relative;
    background: none;
  }
  #new-menu ul li ul li a {
    padding: 8px 20px 8px 35px;
    color: #ffffff;
  }
  #new-menu ul li ul ul li a {
    padding: 8px 20px 8px 50px;
  }
  #new-menu ul li ul li:hover > a {
    color: #000000;
  }
  #new-menu #menu-button {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 15px 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    cursor: pointer;
  }
  #new-menu #menu-button:after {
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 22px;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    right: 20px;
    top: 16px;
  }
  #new-menu #menu-button:before {
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 22px;
    border-top: 2px solid #ffffff;
    right: 20px;
    top: 26px;
  }
}
/* ************************** END HEADER ***************************** */

/* ************************** FOOTER ********************************* */
footer {
	border-top: 1px solid #ddd;
   border-bottom: 1px solid #ddd;
   margin-top: 30px;
}
#footer-menu {
   float: left;
   width: 217px;
}
#additional-info-footer {
  	float: left;
  	width: 702px;
  	border-left: 1px solid #ddd;
  	padding-left: 40px;
}
.footer-col {
	width: 165px;
   float: left;
   padding-bottom: 35px;
}
.footer-col h3 {
	color: #f78f1f;
   font-family: OpenSans-Semibold;
   font-size: 15px;
   text-transform: uppercase;
   font-weight: normal;
   margin: 60px 0 30px 0;
}
.footer-col ul {
	padding: 0;
}
.footer-col li {
	list-style-type: none;
	line-height: 21px;
}
.footer-col li a {
	color: #959595;
	font-size: 12px;
	font-family: OpenSans-Regular;
	text-decoration: none;
}

.footer-col.footer-col2 {
   width: 200px;
}
#footer-txt {
	color: #757575;
  	font-size: 12px;
  	font-family: OpenSans-Regular;
  	text-decoration: none;
  	text-align: center;
  	margin: 25px 0;
}
#footer-txt p {
	margin: 7px;
}

.footer-logo {
	margin-left: 28px;
   margin-top: 11px;
   opacity: 1;
   transition: opacity .25s ease-in-out;
   -moz-transition: opacity .25s ease-in-out;
   -webkit-transition: opacity .25s ease-in-out;    
}
.footer-logo:hover {
   opacity: 0.5;	
}
#footer-menu ul {
	margin: 7px 0;
}
#footer-menu li {
	list-style-type: none;
	line-height: 21px;	
}
#footer-menu li a {
	color: #959595;
	font-size: 12px;
	font-family: OpenSans-Regular;
	text-decoration: none;	
	text-transform: uppercase;
}
.footer-col li a:hover, #footer-menu li a:hover {
	color: #447ab4;
}

/* ************************** END FOOTER ***************************** */

#nav-left-side {
	width: 170px;
   background: #fbfbfb;
   border-right: 1px solid #ddd;
   border-bottom: 1px solid #ddd;
   margin-top: 15px;
   float: left;
   margin-right: 30px;
}

#nav-left-side h4 {
  color: #fff;
  margin: 0;
  font-family: OpenSans-Semibold;
  font-weight: normal;
  font-size: 12px;
  padding-left: 37px;
  padding-top: 9px;
  padding-bottom: 9px;
  text-transform: uppercase;
}
#nav-left-side ul {
	padding: 0;
	margin: 0;
}
#nav-left-side ul li {
  list-style-type: none;
  padding-left: 20px;
  font-size: 12px;
  line-height: 16px;
  border-bottom: 1px solid #ddd;
  min-height: 30px;
}
#nav-left-side ul li:last-child {
	border-bottom: none;
}
#nav-left-side ul li:hover {
  background: #fff;
  color: #447bb4;
}
#nav-left-side ul li a:hover {
  color: #447bb4;
}
#nav-left-side ul li a {
	color: #606060;
   text-decoration: none;
   font-size: 12px;
   display: block;
   line-height: 14px;
   font-family: OpenSans-Semibold;
   padding: 8px 0px; 
}
h4.specialty-channels-nav {
	background: #447bb4 url(../images/specialty-channels-nav.png) 9px 9px no-repeat;
}
h4.categories-nav {
	background: #447bb4 url(../images/categories-nav.png) 10px 8px no-repeat;
}
h4.help-nav {
	background: #447bb4 url(../images/help-nav.png) 10px 7px no-repeat;
}
h4.summary-nav {
	background: #447bb4 url(../images/summary-nav.png) 13px 11px no-repeat;
}
h4.buyers-nav {
	background: #447bb4 url(../images/buyers-nav.png) 7px 5px no-repeat;
}
h4.sellers-nav {
	background: #447bb4 url(../images/sellers-nav.png) 11px 7px no-repeat;
}
.share-placeholder {
  border-top: 1px solid #ddd;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 21px;
}

#squared-check {
	display: none;
}
/* ************************* MEDIA QUERIES *************************** */

@media only screen and (min-width: 768px) and (max-width: 959px) {

#new-container-right {
    width: 529px;
    float: left;
}
div#wrapper {
	width: 93%;
}
.new-logo {
	width: 184px;
}
#new-menu {
	width: 209px;
}
#weekly-email-alerts {
	margin-top: 10px;
}
#new-menu #menu-button {
	color: transparent;
}
#new-menu > ul.open {
    max-height: 1000px;
    border-top: medium none;
    position: absolute;
    background: none repeat scroll 0% 0% rgb(9, 58, 127);
}
#nav-line-wrapper {
	height: 44px;
}
#new-menu > ul > li:hover > a,
#new-menu > ul > li.active > a {
  color: #efefef;
}
#new-menu > ul > li:hover,
#new-menu > ul > li.active {
  background-color: #447ab4;
}
#footer-menu {
    float: none;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
#footer-menu ul {
    margin: 0px;
    float: right;
    width: 67%;
    padding-left: 0;
}
#footer-menu li {
    list-style-type: none;
    line-height: 21px;
    float: none;
    display: inline-block;
    margin: 51px 20px;
}
#footer-menu li a {
	font-size: 14px;
}
.footer-logo {
    margin-left: 44px;
    margin-bottom: 19px;
}
#additional-info-footer {
	border-left: none;
	padding-left: 27px;
}
}
@media only screen and (min-width: 507px) and (max-width: 767px) {
#new-container-right {
    width: 100%;
    float: none;
}

.menu-nav-left {
    margin: 25px auto 43px auto;
    padding: 0px;
    width: 93%;
}
#menu_box {
	display: block;
}
#nav-left-side {
	display: none;
}
div#wrapper {
	width: 93%;
}
.new-logo {
	width: 184px;
	float: none;
	margin: 15px auto 5px auto;
	display: block;
}
#new-menu {
	width: 202px;
}
#weekly-email-alerts {
	margin-top: 10px;
	width: 200px;
}
#new-menu #menu-button {
	color: transparent;
}
#new-menu > ul.open {
    max-height: 1000px;
    border-top: medium none;
    position: absolute;
    background: none repeat scroll 0% 0% rgb(9, 58, 127);
    z-index: 11111;
}
#nav-line-wrapper {
	height: 44px;
}
#new-menu > ul > li:hover > a,
#new-menu > ul > li.active > a {
  color: #efefef;
}
#new-menu > ul > li:hover,
#new-menu > ul > li.active {
  background-color: #447ab4;
}
#footer-menu {
    float: none;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
.footer-logo {
	margin-left: 19px;
	margin-bottom: 10px;
	width: 120px;
}
#additional-info-footer {
	border-left: none;
	padding-left: 27px;
}
#header-right {
	margin: 0 auto;
	float: none;
	width: 410px;
}
.follow-us {
    float: none;
    width: 210px;
    margin: 0 auto;
}
#auction-field .form-textbox {
	width: 131px;
}
#new-menu > ul > li > a {
	font-size: 13px;
}
#error-message {
    background: url("../images/error.png") no-repeat scroll 344px center #FBFBFB;
    width: 92%;
    margin-left: 20px;
    margin-bottom: 40px;
    position: relative;
}
#success-message {
    width: 92%;
    background: url("../images/success.png") no-repeat scroll 344px center #FBFBFB;	
}
.error-message-top, .success-message-top,
.error-message-bottom, .success-message-bottom {
	width: 100%;
}
#footer-menu ul {
	margin: 24px 0px 7px;
	float: right;
	width: 70%;
	padding-left: 0px;
}
#footer-menu li {
	list-style-type: none;
	line-height: 21px;
	display: inline-block;
	padding: 15px 2.5%;
}
#additional-info-footer {
	float: none;
	width: 100%;
}
.footer-col {
	padding-bottom: 0;
}
.footer-col h3 {
	margin: 23px 0px 0;
}
}

@media only screen and (min-width: 320px) and (max-width: 506px) {

#new-container-right {
    width: 100%;
    float: none;
}
label#label_27.form-label-left {
	height: 1px;
}

.menu-nav-left {
    margin: 25px auto 43px auto;
    padding: 0px;
    width: 100%;
}
#menu_box {
	display: block;
}
#nav-left-side {
	display: none;
}
div#wrapper {
	width: 93%;
}
.new-logo {
	width: 184px;
	float: none;
	margin: 15px auto 5px auto;
	display: block;
}
#new-menu {
	width: 100%;
	float: none;
}
#new-menu #menu-button::before, #new-menu #menu-button::after {
	right: 0;
	margin-right: auto;
	margin-left: auto;
	left: 0;
}
#weekly-email-alerts {
	width: 189px;
	float: none;
	padding-top: 10px;
	margin: 0 auto;
	background: url("../images/email-alert.png") no-repeat scroll 0px 11px transparent;
}
#new-menu #menu-button {
	color: transparent;
}
#new-menu > ul.open {
    max-height: 1000px;
    border-top: medium none;
    position: absolute;
    background: none repeat scroll 0% 0% rgb(9, 58, 127);
    z-index: 11111;
}
#nav-line-wrapper {
	height: auto;
	padding-bottom: 20px;
}
#new-menu > ul > li:hover > a,
#new-menu > ul > li.active > a {
  color: #efefef;
}
#new-menu > ul > li:hover,
#new-menu > ul > li.active {
  background-color: #447ab4;
}
#footer-menu {
    float: none;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
.footer-logo {
	margin: 10px auto;
	float: none;
	display: block;
}
#additional-info-footer {
	border-left: none;
	padding-left: 0;
}
#header-right {
	margin: 0 auto;
	float: none;
	width: 296px;
}
.follow-us {
    float: none;
    width: 210px;
    margin: 0 auto;
}
#auction-field .form-textbox {
	width: 184px;
	margin-left: 20px;
}
#new-menu > ul > li > a {
	font-size: 13px;
}
#error-message {
    background: url("../images/error.png") no-repeat scroll 214px center #FBFBFB;
    width: 92%;
    margin-left: 20px;
    margin-bottom: 40px;
    position: relative;
}
#success-message {
    width: 92%;
    background: url("../images/success.png") no-repeat scroll 214px center #FBFBFB;	
}
.error-message-top, .success-message-top,
.error-message-bottom, .success-message-bottom {
	width: 100%;
}
#footer-menu ul {
	margin: 0;
	float: none;
	width: 100%;
	text-align: center;
	padding: 0 0 15px 0px;
}
#new-form-style .squared-check label {
	left: 174px;
	top: -26px
}
#additional-info-footer {
	float: none;
	width: 100%;
}
.footer-col {
	padding-bottom: 0;
}
.footer-col h3 {
	margin: 23px 0px 0;
}
#auction-field .form-radio-item-wrapper {
    float: none;
    margin-right: 0;
    width: 199px;
    margin: 0px auto 15px auto;
}
#auction-field h6 {
	text-align: center;
}
#new-form-style .form-label-left {
	width: 100% !important;
	float: none;
	display: block;
	text-align: left;
}
#new-form-style .form-textbox {
	width: 94% !important;	
}
.new-dropdown-style {
    float: none;
}
#new-form-style {
	width: 86%;
	margin: 0 auto;
}
.new-dropdown-style select {
	width: 100%;
}
li.form-line.subtitle-new-f {
	width: 100% !important;	
}
.line-subtitle1 {
	width: 14.9%;
}
.line-subtitle2 {
	width: 38.6%;
}
#footer-txt {
	font-size: 11px;
}
.footer-col, .footer-col.footer-col2 {
	width: 100%;
	float: none;
	text-align: center;
	border-bottom: 1px solid #ddd;
}
li.form-line.subtitle-new-f h3 {
	font-size: 14px;
}
#footer-txt {
	line-height: 21px;
}
}
@media only screen and (min-width: 800px) and (max-width: 959px) {
	#weekly-email-alerts {
		width: 188px;
	}
	#new-menu {
    width: 67%;
	}
	#new-menu > ul > li > a {
		padding: 15px 13px;
		font-weight: normal;
		letter-spacing: 0;	
	}
}


/* styles for validation helpers */
.field-validation-error {
    color: #e80c4d;
    font-weight: bold;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #e80c4d;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #e80c4d;
    font-weight: bold;
    font-size: 1.1em;
}

.validation-summary-valid {
    display: none;
}