/*
 * jquery.selectBoxIt.css 3.8.1
 * Author: @gregfranko
 * Common CSS Properties
  ---------------------
  *These properties will be applied to any themes that you use
*/
/* SelectBoxIt container */
.selectboxit-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
  font: 13.33px; font-family: 'Open Sans', sans-serif;
  /* Prevents text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  outline: none;
  white-space: nowrap;
}
/* Button */
.selectboxit-container .selectboxit {
  width: 211px; /* Width of the dropdown button */
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  position: relative;
}
/* Height and Vertical Alignment of Text */
.selectboxit-container span, .selectboxit-container .selectboxit-options a {
  height: 23px; /* Height of the drop down */
  line-height: 23px; /* Vertically positions the drop down text */
  display: block;
}
/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
  outline: 0;
}
/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: default;
}
/* Button Text */
.selectboxit-text {
  text-indent: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
}
.selectboxit .selectboxit-option-icon-container {
  margin-left: 5px;
}
/* Options List */
.selectboxit-container .selectboxit-options {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 100%;  /* Minimum Width of the dropdown list box options */
  *width: 100%;
  margin: 0px;
  padding: 0px;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 9999999999999;
  border-radius: 6px;
  text-align: left;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
/* Individual options */
 .selectboxit-option .selectboxit-option-anchor{
  padding: 0 2px;
}
/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
  text-decoration: none;
}
/* Individual Option Optgroup Header */
.selectboxit-option, .selectboxit-optgroup-header {
/*  text-indent: 5px;*/ /* Horizontal Positioning of the select box option text */
/*  margin: 0;*/
text-indent: 0px;
margin-left: 0px;
  list-style-type: none;
}
/* The first Drop Down option */
.selectboxit-option-first {
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}
/* The first Drop Down option optgroup */
.selectboxit-optgroup-header + .selectboxit-option-first {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
/* The last Drop Down option */
.selectboxit-option-last {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
/* Drop Down optgroup headers */
.selectboxit-optgroup-header {
  font-weight: bold;
}
/* Drop Down optgroup header hover psuedo class */
.selectboxit-optgroup-header:hover {
  cursor: default;
}
/* Drop Down down arrow container */
.selectboxit-arrow-container {
  /* Positions the down arrow */
  width: 30px;
  position: absolute;
  right: 0;
}
/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
}
/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
  top: 30%;
}
/* Drop Down individual option icon positioning */
.selectboxit-option-icon-container {
  float: left;
}
.selectboxit-container .selectboxit-option-icon {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
/* Drop Down individual option icon positioning */
.selectboxit-option-icon-url {
  width: 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  float: left;
}
.selectboxit-rendering {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}
/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {
  background-color: inherit;
}
/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {
  background-position: -64px -16px;
}
/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn {
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
}
.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
 color: #234A63;
  background-color: #e6e6e6;
}
.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
 color: #234A63;
  text-decoration: none;
  background-position: 0 -15px;
}
.selectboxit-default-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.selectboxit-list {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.selectboxit-list .selectboxit-option-anchor {
 color: #234A63;
}
.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  color: #ffffff;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-size: cover;
  background-repeat: repeat-x;
}
.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
  color: #999999;
}
/* custom change for selectboxit plugin */
.selectboxit-options .selectboxit-option .selectboxit-option-anchor {
    min-height: 23px;
    height: auto;
} 
.selectboxit-optgroup-option { padding-left: 5px; }
/*end custom change for selectboxit plugin */
/* end selectboxit plugin */
/* start smint sticky nav plugin */
/* smint css for product details nav plugin */
.clear {
	clear: both;
}
.wrap {
	width: 100%;
	max-width: 1600px;
	min-width: 960px;
/*	z-index: 10;*/
	position: relative;
	margin: 0 auto;
	padding: 0;

}
.section {
	width: 100%;
	min-width: 1000px;
	position: relative;
	margin: 0 auto;
	padding: 0 0 0px 0;
	min-height: 100px;
}
.s4 { min-height: 500px; }
.inner {
	width: 1000px;
	margin: 0 auto;
	position: relative;
	min-height: 50px;
	padding:0px 0px 20px 0px;
	font-size: 18px;
	font-family: 'Open Sans', sans-serif;
	font-size: inherit;
	font-weight: normal;
	color: #234A63;
}
.inner li { color:#234A63; list-style-type: disk; list-style-image:none; font-size:14px;}
.inner:after {
	  content: "";
	  display: table;
	  clear: both;
}
.inner p { margin: 10px; } 
.subMenu {
	height: 65px;
	z-index: 1000;
	width: 100%;
/*	background: #E0E0E0;*/
background: #CCCCCC;
	border-top: medium solid #234A63;
	border-bottom: medium solid #234A63;
}
.subMenu .inner {
	padding:0;
	font-weight: 400;
	margin: 0 auto;
	
}
.subNavBtn {
	display: block;
	height: 43px;
	width: 18%;
	float: left;
	margin: 0px 0px 0 0;
	text-decoration: none;
	font-size: 18px;
	padding: 22px 0.8% 0 0.8%;
	text-align: center;
	color: #fff;
	font-family: 'Open Sans', sans;
}
.subMenu a:hover {
	background:#999999;
}
#productBottomContainer .subMenu a:link, #productBottomContainer .subMenu a:visited {  
   text-decoration: none;
    color: inherit;
    font-size: 18px;
	font-family: 'Open Sans', sans;
}
.active {
	background: #999999;
}
.end {
	margin: 0;
}
/* SECTIONS */
.productSectionTitleFrame {
    width: 100%;
    height: 50px;
	background-color:#f5f5f5;
    display: table;
	margin-bottom: 25px;
}
.productSectionTitleFrame div{
text-align:center;
font-family: 'Open Sans', sans-serif;
color: #234A63;
font-size: 18px;
font-weight: bold;
display:table-cell;
vertical-align:middle;
width:inherit;
}
.s3 a {
	color: #fff;
}
.s2, .s4, .s6  { background: #FCFCFC; }
/* end smint */ 
/* start product page 2015 */
table.borders, table.borders tr, table.borders td{
border-width: thin;
border-color: inherit;
border-style:solid;
}
.centerText { text-align:center; }
.twenty { font-size: 20px; }
#productMain a:link, #productMain a:visited,#hsDiscounts a:link, #hsDiscounts a:visited, input.hssubmitqt { color: inherit; font: inherit; text-decoration: underline; font-size: inherit; }
#productMain a:hover, #hsDiscounts a:hover, input.hssubmitqt:hover { color: #25AAE1; font: inherit; text-decoration: underline; font-size: inherit; }
#productMain a.linkGlow:link, #productMain a.linkGlow:visited { color: inherit; font: inherit; text-decoration: none; font-size: inherit; }
#productMain a.linkGlow:hover { color: #25AAE1; background-color: inherit; text-decoration: none; }
#productBottomContainer a.inner:hover {color: inherit; }
#productMain a.selectboxit-option-anchor:hover { font-size: inherit; font-family: inherit; color: #FFF; text-decoration:none;}
#productMain li.selectboxit-disabled a:hover { color: #999999;}
#productMain select, .productCartContainer p,.productCartContainer div, .inner p, .inner div, .inner li { font-family: 'Open Sans', sans-serif; }
#productMain td { font-family: 'Open Sans', sans-serif;  }
#productMain .fourteenpx { font-size:14px; }
#productTopContainer{
 width: 1000px;
 margin: 0px auto;
 padding: 0px 0px;
}
#productTopContainer:after {
	  content: "";
	  display: table;
	  clear: both;
	  margin-bottom: 25px;
}
.productPicBox { 
 display:inline-block;
 width: 310px;
 overflow:hidden;
 margin-top: 12px;
}
/* start highslide  gallery */
 .zoomout .highslide-image {
	cursor: url(../highslide/graphics/zoomout.cur), pointer !important; 
	}
	.zoomout .highslide-caption {
		width: auto;
		background: #343434;
		color: white;
	}
	.zoomin .highslide-image {
	cursor: url(../highslide/graphics/zoomin.cur), pointer !important;
	}
	.highslide-image {
	/*	border: 1px solid #BDBDBD;*/
	border: 0px;
	}
	
	.highslide-controls .highslide-close {
		display: none;
	}
	.highslide-controls .highslide-full-expand {
		display: none;
	}
	.highslide-full-expand {
		visibility: hidden
	}
	.highslide-caption {
		padding: .5em 0;
		background: none;
		text-align: center;
		width: 300px;
		font-weight: bold;
	}
	.highslide-caption a {
		color: gray;
		font-weight: normal;
	}
	.closebutton {
		top: 0;
		left: 0;
	}
	.highslide-number {
		color: silver;
	}

	.highslide-thumbstrip-horizontal img { height: 60px; border: 1px solid #BDBDBD; margin:5px; }
	.highslide-thumbstrip-horizontal .highslide-marker { top: 77px; }
	.highslide-thumbstrip-horizontal .highslide-scroll-up div { display: none; margin: 0; padding:0 }
	/* Remove header with MOVE/CLOSE text */
	.you-tube .highslide-header {
		display: none;
	}
	/* Remove footer */
	.you-tube .highslide-footer {
		display: none;
	}
	/* Change background-color for the HTML expander */
	.you-tube .highslide-html {
		background-color: #111;
	}
	.you-tube .highslide-html-content {
		padding: 0;
	}  
/* end highslide gallery */
.productDescBox {
 display: inline-block;
 vertical-align:top;
 width: 370px;
 margin-left: 25px;
 margin-top: 12px;
 min-height: 380px;
font-family: 'Open Sans', sans-serif; 
color:#3d3d3d;
 }
.productDescBox h1{ 
    font-family: inherit;
    color: #234A63;
    font-size: 30px;
    font-style:inherit;
 }
.productPartNum { font-size:16px; color: #234A63; font-family: inherit; min-height: 22px;}
.productMarketInfo { font-size: 16px; color: #234A63; font-family: inherit; padding-top: 10px; }
.productHighlightBox { padding: 10px 13px; font-size: 12px; color:  #234A63; font-family:inherit;  border: thin solid #234A63; margin-top: 15px; }
.productFeedBack { font-size: 16px; color: #234A63; font-family: inherit; padding-top: 15px;}
.productGotQuestions {  font-size: 22px; color: #234A63; font-family: inherit; padding-top: 20px; text-align:center; font-weight:100; }
.productCartBox {
 display:inline-block;
 vertical-align:top;
 width: 260px;
 margin-left: 25px;
 margin-top: 12px;
}
.productCartContainer
{ 
    margin:0px;
	padding: 15px 5px;
	border: #EEEEEE medium solid;
	/*background-color:#FF3399;*/
	display: table;
	color: #234A63;
	 border-radius: 7px;
	
 }
.productCartContainer .cell { padding:5px 5px; }
.productCartContainer select { color: #234A63; }
.productCartContainer select[required] option { color: #234A63;}
.productCartContainer select[required] option:first-child { color: red;}
/*.productCartContainer a:link,  .productCartContainer a:visited { 
     text-decoration: none;
    color: #234A63;
    font-size: 0.9em;
}*/
.productCartContainer a:hover {
    color: #25AAE1;
    background-color: inherit;
}
#productAddToCartContainer, .productAccAddToCartContainer { display:table-cell; text-align:right; border-collapse:collapse;}
#productAddToCartContainer label, .productAccAddToCartContainer label { 
    float:left;
    text-align: right;
    white-space: nowrap;
    width: 110px;
	margin-right: 20px;
}
#productAddToCartContainer .row > div:first-child {min-width:16px;}
#productAddToCartContainer p, #productBottomContainer .productAccAddToCartContainer p { margin-top: 5px; font-size:16px;}
#productAddToCartContainer select, .productAccAddToCartContainer select {width: 213px; height:25px; } 
#productAddToCartContainer img, .productAccAddToCartContainer img { vertical-align: middle; }
#productAddToCartContainer input, #productAddToCartContainer select, .productAccAddToCartContainer input, .productAccAddToCartContainer select { border-radius: 7px; } 
#productAddToCartContainer textarea, .productAccAddToCartContainer textarea { resize:vertical; }
.productAddToCartButton {
    padding: 10px;
    cursor: pointer;
    color: white;
    background-color:#EF601F;
    font: normal 18px 'Open Sans', sans-serif;
    border-radius: 5px;
    text-align: center;
	margin: 12px 0px;
	width: 100%;
	border: 0px;
}
.productTextOpt, #productBottomContainer div.productTextOpt { font-size:9px; }
.productSelOpt { padding: 3px 5px 3px 0px;}
#hsDiscounts{ font-family: 'Open Sans', sans-serif; color: #234A63; }
input.hssubmitqt { border: none; background-color: #fff; cursor: pointer; }
#productBottomContainer p, #productBottomContainer div { font-size: 16px; }
#productBottomContainer h1 { font: bold 26px 'Open Sans',sans-serif; color:inherit; margin-top:5px;}
#productBottomContainer .productSelOpt span,  #productBottomContainer .productSelOpt li {font-size:13.33px;}
.productAccContainer { margin: 0px auto; overflow:hidden }
.productAccFrame { width: 1000px; margin: 0px auto 20px auto; border-bottom:#999999 thin solid; padding-bottom: 10px;}
#productBottomContainer .productAccTitle { display:inline-block; width: 740px; text-align:left; font-size: 24px; }
#productBottomContainer .productAccPart { display:inline-block; width: 250px; text-align:left;  padding-left: 10px; font-size:18px;}
.productAccPicBox{ display:inline-block; width: 200px;  height: 150px; margin-top: 10px; text-align:center; line-height: 150px; } 
#productBottomContainer .productAccDescBox { display:inline-block; width: 470px; vertical-align:top; margin-left:32px; margin-top: 10px; font-size:16px;  }
#productBottomContainer .largeGreyTitle { font-size: 22px; color: #234A63; font-weight: 400;}  /* #A0A0A0; */
#productBottomContainer .largeWhiteTitle { font-size: 22px; color:#FFFFFF; }
.productAccCartBox { display:inline-block; width: 260px; vertical-align:top;  margin-left:33px; margin-top: 10px;}

.hspopup p, .hspopup div { font-family:'Open Sans', sans-serif; color: #234A63; font-size:16px; }
.hspopup ul li { color:#234A63; list-style-type: disk; list-style-image:none; font-size:14px; font-family:'Open Sans', sans-serif;}
.hspopup ol li { color:#234A63; list-style-type: decimal; list-style-image:none; font-size:14px; font-family:'Open Sans', sans-serif;}

.hspopup .small { font-size: 14px; }
.hspopup p { margin:10px; }
.hspopup td, .hspopup caption { font-family: 'Open Sans', sans-serif; color: #234A63; }
/* privatevue from style.css */
/**** Clearfix ****/
.clearfix:before,
.clearfix:after { content:""; display:table; }
.clearfix:after { clear:both; }
.clearfix { zoom:1; }
.pvwrapper{
	width:960px;
	margin:0 auto;
}
.left-column {
	width:560px;
	float:left;
}
.right-column {
	width:350px;
	float:right;
}
blockquote{quotes:none}
blockquote:before,blockquote:after{content:none}
.quotes blockquote {
	margin:0 0 19px 0;
	padding:1px 0 0 30px;
	background:url(../privatevue/images/quotes.png) no-repeat;
}
.checkmarkgreen {
background:url(../privatevue/images/bullet_v.gif) no-repeat;
background-position:center;
}
.quotes blockquote p {
	font-style:italic;
	font-size: 14px;
	margin-bottom:10px;
	margin-left:0px;
}
.quotes blockquote small {
	font-size:12px;
	line-height:16px;
	color:#888;
}
.reasons {
	font-size:16px;
	line-height:20px;
}
.reasons ul {
	padding:1px 0 0 0;
	margin:0;
	list-style:none;
}
.reasons ul li {
	padding:0 0 0 25px;
	margin:0 0 15px 0;
	background:url(../privatevue/images/bullet_v.gif) no-repeat 0 2px;
}
/* end privatevue */
/* end product 2015 */
