/* ------------------------------------------------------------ */
/* -------------------------GENERAL---------------------------- */
/* ------------------------------------------------------------ */

html, body {
	height: 100%;
}

html {
	background-color: #ececec;
	background-position:top;
	background-repeat:repeat-x;
}

/*Opera Fix*/
body:before {
	content:"";
	height:100%;
	float:left;
	width:0;
	margin-top:-32767px;
}

body {
	font-size:12px;
	color:#333;
	font-family: Arial, Helvetica, sans-serif;
	text-shadow:none;
	background-color: #0C2536;
}

a {
	color: #0054A6;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1 {
	font-size: 20px;
}

h2 {
	font-size: 18px;
}

select {
	text-align:left;
	font-weight:bold;
	padding:5px;
	border:1px solid #BFBFBF;
}

label {
	font-size:12px;
	font-weight:bold;
}

input {
	font-weight:bold;
	text-align:left;
	border:1px solid #BFBFBF;
	padding:5px;
}

input[type="image"] {
	border:0px;;
}

input[type="submit"] {
	background-color:#d30c06;
	color:white;
	min-width:100px;
	text-align:center;
	cursor:pointer;
}

.float_left {
	float:left;
}

.float_right {
	float:right;
}

.container_12 {
	overflow:hidden;
}

.link_title {
	margin: 0px;	
	margin-bottom: 10px;
	font-size: 18px;
	padding:0px;
	color:#164879;
	font-weight:bold;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

button, .button, .button_green, .button_grey {
	color:white;
	min-width:50px;
	vertical-align:middle;
	cursor:pointer;
	text-align: center;
	height:25px;

	padding: 5px 14px;
	margin-bottom: 10px;
	
	font-weight: bold;
	text-shadow: #1B1C1E 1px 1px 1px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: none; /*1px solid #7e0704;*/
	background-color: #d30c06;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#d30c06), to(#7e0704));
	background-image: -webkit-linear-gradient(top, #d30c06, #7e0704);
	background-image: -moz-linear-gradient(top, #d30c06, #7e0704);
	background-image: -o-linear-gradient(top, #d30c06, #7e0704);
	background-image: -ms-linear-gradient(top, #d30c06, #7e0704);
	background-image: linear-gradient(top, #d30c06, #7e0704);
	background-repeat: repeat-x;
}

.button_green {
	border-color: #476f13;
	background-color: #76b820;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#76b820), to(#476f13));
	background-image: -webkit-linear-gradient(top, #76b820, #476f13);
	background-image: -moz-linear-gradient(top, #76b820, #476f13);
	background-image: -o-linear-gradient(top, #76b820, #476f13);
	background-image: -ms-linear-gradient(top, #76b820, #476f13);
	background-image: linear-gradient(top, #76b820, #476f13);
	background-repeat:repeat-x;
}

.button_grey {
	background-color: #EEE;
	background-image: url('/media/lockdown/images/buttons/gray_button_bg.jpg');
	color: #555;
	text-shadow: #CCC 1px 1px 1px;
	border: 1px solid #777
}

button:hover, .button:hover {
	color: #EDEDED;
	background-color: #f20f07;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f20f07), to(#a60805));
	background-image: -webkit-linear-gradient(top, #f20f07, #a60805);
	background-image: -moz-linear-gradient(top, #f20f07, #a60805);
	background-image: -o-linear-gradient(top, #f20f07, #a60805);
	background-image: -ms-linear-gradient(top, #f20f07, #a60805);
	background-image: linear-gradient(top, #f20f07, #a60805);
	background-repeat:repeat-x;
	text-decoration: none;
}

.button_green:hover {
	color: #EDEDED;
	background-color: #76b820;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#76b820), to(#61971a));
	background-image: -webkit-linear-gradient(top, #76b820, #61971a);
	background-image: -moz-linear-gradient(top, #76b820, #61971a);
	background-image: -o-linear-gradient(top, #76b820, #61971a);
	background-image: -ms-linear-gradient(top, #76b820, #61971a);
	background-image: linear-gradient(top, #76b820, #61971a);
	background-repeat:repeat-x;
	text-decoration: none;
}

.button_grey:hover {
	color: #222;
	background-color: #DDD;
	background-image:url('/media/lockdown/images/buttons/gray_button_bg_hover.jpg');
	background-repeat:repeat-x;
	text-decoration: none;
}

a.button, a.button_green, a.button_grey {
	line-height: 25px;
}

input[type="submit"]:focus {
	background-color:#C76737;
}

input:focus, select:focus {
	background-color:#FFFFE7;
	border:1px solid #114575;
}

.hidden {
	display:none;
}
.center {
	text-align:center;
}
.input_error{
	border:1px solid #AF2020;
}
/* ------------------------------------------------------------ */
/* --------------------------FORM------------------------------ */
/* ------------------------------------------------------------ */

.form_item {
	padding:7px;
	padding-left:15px;
}

.form_item label {
	height:25px;
	display:inline-block;
	width:175px;
	text-align:right;
	padding-right:5px;
}

label.error {
	width:auto;
	text-align:left;
	padding-left:5px;
	font-weight:bold;
}

/* ------------------------------------------------------------ */
/* --------------------------TABLE----------------------------- */
/* ------------------------------------------------------------ */

table {
	background-color:white;
	border:1px solid #E0E1E2;
}

thead {
	font-size:16px;
	border-bottom:1px solid #E0E1E2;
	font-weight:bold;
	background-color:#114575;
	color:white;
}

/* Redeclare the background color of the thead with a descendant th */
/* to overcome a bug in ie7 where the transparent background from */
/* reset.css is inherited, see: */
/* http://www.dgibson.net/blog/article.cfm/articleid=11/CSS-Overcoming-background-transparent-In-IE */
thead th {
	background-color:#114575;
}

th {
	padding:5px;
}

tfoot {
	font-size:16px;
	border-top:1px solid #E0E1E2;
}

td {
	padding:5px;
	border:1px solid #E0E1E2;
	vertical-align:top;
}

.table_cell_left_align {
	text-align:left;
}

.table_cell_center_align {
	text-align:center;
}

.table_cell_right_align {
	text-align:right;
}

.table_cell_top_align {
	vertical-align:top;
}

.table_cell_middle_align {
	vertical-align:middle;
}

.table_cell_bottom_align {
	vertical-align:bottom;
}

.table_cell_currency {
	text-align:right;
	vertical-align:middle;
}

/* ------------------------------------------------------------ */
/* --------------------------NOTICE---------------------------- */
/* ------------------------------------------------------------ */

.noticebox {
	font-weight:bold;
	font-size:14px;
	margin:10px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:15px;
	text-align:center;
	border:1px solid #D7D7D7;
	padding:10px;
	background-color:#FFFFFF;
	border-radius: 5px;
}

.error, .notice, .success {border:1px solid #ddd;}
.error {background:#FBE3E4;color:#8a1f11;border-color:#FBC2C4;}
.notice {background:#FFF6BF;color:#514721;border-color:#FFD324;}
.success {background:#E6EFC2;color:#264409;border-color:#C6D880;}
.error a {color:#8a1f11;}
.notice a {color:#514721;}
.success a {color:#264409;}

.error_box {
	padding:15px;
	margin:10px;
	background-color:#F7F7F7;
	font-size:14px;
	font-weight:bold;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	border:1px solid #114575;
}

/* ------------------------------------------------------------ */
/* --------------------------LAYOUT---------------------------- */
/* ------------------------------------------------------------ */

#content_wrapper {
	background-color: #ECECEC;
	padding-bottom: 10px;
}

#search_advanced a{
	color: white;
	text-shadow: none;
}

#featured_producer_box {
	font-size: 11px;
	padding-left: 16px;
}

#account_header {
	text-align: right;
	font-weight: bold;
	color: white;
	height:35px;
}

#account_header_content {
	vertical-align:middle;
	line-height: 35px;
}

#account_header_container {
	background-color:#1A1A1A;	
	-moz-box-shadow: 0px 0px 10px #000;
	-webkit-box-shadow: 0px 0px 10px #000;
	box-shadow: 0px 0px 10px #000;
	margin-bottom:10px;
	position: fixed;
	z-index: 100;
	width: 100%;
}

#account_header_container_container {
	background-color:#0c2536;
	overflow:hidden;
}

#account_header_container a {
	color: white;
	text-shadow: none;
	font-size: 11px;
}

.account_header_user_links {
	float:right;
}
.account_header_user_links a {
	text-decoration: none;
}
.account_header_user_links a:hover {
	text-decoration: underline;
}

#header_social_icons {
	float:right;
	padding-top: 10px;
	margin-right: 10px;
}

#header_social_icons img {
	padding-right: 3px;
}

#content_header {
	line-height:25px;
	vertical-align:middle;
}

ul.topnav {  
	list-style: none outside none;
}  
ul.topnav li {  
	float: left;
	list-style: none outside none;
	text-indent: 0px;
	border-right: 1px solid #222;
	border-left: 1px solid #333;
	margin: 0px;
}  
ul.topnav li a {
	display: block;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 10px;
}
ul.topnav li a:hover {
	text-decoration: none;
}  
ul.topnav li:hover{  
	background: #292929;
	text-decoration: none;
}
ul.topnav li span { /*--Drop down trigger styles--*/  
	width: 17px;
	height: 35px;
	float: left;
}  
ul.topnav li span.subhover {
	background-position: center bottombottom;
	cursor: pointer;
} /*--Hover effect for trigger--*/
ul.topnav li ul.subnav {
	list-style: none;
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/  
	background: #1A1A1A;
	margin: 0;
	padding: 0;
	margin-left: -2px;
	display: none;
	float: left;
	border: 1px solid #111;
	z-index: 10;
	
	-moz-box-shadow: 2px 2px 10px #000;
	-webkit-box-shadow: 2px 2px 10px #000;
	box-shadow: 2px 2px 10px #000;
	overflow:hidden;
}  
ul.topnav li ul.subnav li {
	margin: 0;
	padding: 0;
	padding-left:10px;
	padding-right:10px;
	border-top: 1px solid #222;
	border-bottom: 1px solid #333;
	clear: both;
	width:100%;
	background-color:#1A1A1A;
}
ul.topnav li ul.subnav li img {
	padding-right: 10px;
}
ul.topnav li ul.subnav li a {  
	display: block;
	text-decoration: none;
	text-align: left;
}
html ul.topnav li ul.subnav li a:hover {
	text-decoration: none;
}
ul.topnav li ul.subnav li:hover { /*--Hover effect for subnav links--*/  
	background: #292929;
	text-decoration: none;
}

#content_container {
	padding-top: 15px;
	background:#ececec;
	overflow:auto;
	margin-bottom: 15px;
}

#content {
	background-color:#ececec;
	overflow:hidden;
	position: relative;
}

#content #page_header {
	margin-bottom: 10px;
}

#header {
	color: white;
	padding-top:10px;
	
	background: #0c2536; /* Old browsers */
	background: -moz-linear-gradient(top,  #0c2536 20%, #071217 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,#0c2536), color-stop(100%,#071217)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #0c2536 20%,#071217 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #0c2536 20%,#071217 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #0c2536 20%,#071217 100%); /* IE10+ */
	background: linear-gradient(top,  #0c2536 20%,#071217 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c2536', endColorstr='#071217',GradientType=0 ); /* IE6-9 */
}

#featured_products {
	background:#ececec;
	margin-bottom: 10px;
}

/* Footer */

#footer {
	background:#0C2536;
	color: white;
	border-top:5px #E0E1E2 solid;
	text-align:center;
	padding:15px 0;
	position: relative;
	overflow:hidden;
	clear:both;
}

#footer a {
	text-shadow: none;
}

#footer a, #footer a:visited {
	color: #EEE;
}

#footer #site, #footer #products, #footer #other, #footer #social, #footer #subscribe
{
	float: left;
	width: 188px;
	text-align: left;
}

#footer ul {
	list-style: none;
	margin-bottom: 20px;
}

#footer ul li {
	line-height: 20px;
	margin: 0;
}
#footer h4 {
	font-size: .9em;
	text-transform: uppercase;
	font-weight: normal;
	color: #999;
}

#footer #scp { 
		clear: both;
		height: 140px;
		margin: 30px auto 30px;
		width: 900px
	}

#footer #scp ul li {
	position: relative;
	display: inline-block;
	padding: 0;
	margin: 15px 15px;
}
#footer #scp ul li a, #footer #scp ul li span {
	/* float: left; */
	position: relative;
	background: transparent url('../images/footer-circle.png?refresh=20150113') no-repeat scroll 0 0;
	height: 0;
	display: block;
	overflow: visible;
	white-space: nowrap;
	margin: 0 12px;
	text-align: center;
}
#footer #scp ul li a { width: auto; padding-top: 36px; color: #999; }
#footer #scp ul li a:hover { color: white; }
#footer #scp ul li a.whm { background-position: center 0; }
#footer #scp ul li a.sp { background-position: center -36px; }
#footer #scp ul li a.pd { background-position: center -72px; }
#footer #scp ul li a.csc { background-position: center -108px; }
#footer #scp ul li a.cst { background-position: center -144px; }
#footer #scp ul li a.cs { background-position: center -180px; }
#footer #scp ul li a.cj { background-position: center -216px; }
#footer #scp ul li a.whk { background-position: center -252px; }
#footer #scp ul li a.vy { background-position: center -288px; }
#footer #scp ul li a.ss { background-position: center -324px; }
#footer #scp ul li a.cmb { background-position: center -360px; }
#footer #scp ul li a.wmt { background-position: center -396px; }
#footer #scp ul li a.pbk { background-position: center -431px; }

#footer .copy {
	font-size: 0.9em;
	color: #999;
	clear: both;
}

#register_success
{
	border:2px solid #114575;
	padding:10px;
	background-color:#F7F7F7;
	margin-bottom:20px;
}

#register_success_links div a
{
	font-size: 14px;
}

#register_success_links div
{
	margin-bottom: 10px;
}

/* ------------------------------------------------------------ */
/* ---------------------------TABS----------------------------- */
/* ------------------------------------------------------------ */

.tab_container {
	overflow: hidden;
	height: 30px;
	vertical-align: middle;
	line-height: 30px;
	font-weight:bold;
	color:#0C2536;
	font-size: 12px;
	margin-top: 10px;
}

.tab_container a {
	color: #000;
	text-shadow: none;
}

.tab_container li {
	width: 114px;
	text-align: center;
	background: #b0d0eb; /* Old browsers */
	background: -moz-linear-gradient(top,  #b0d0eb 0%, #95aac4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b0d0eb), color-stop(100%,#95aac4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #b0d0eb 0%,#95aac4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #b0d0eb 0%,#95aac4 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #b0d0eb 0%,#95aac4 100%); /* IE10+ */
	background: linear-gradient(top,  #b0d0eb 0%,#95aac4 100%); /* W3C */
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.tab_container ul.topnav li:hover {
	background: #c2d8ea; /* Old browsers */
	background: -moz-linear-gradient(top,  #c2d8ea 0%, #b1c8e6 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c2d8ea), color-stop(100%,#b1c8e6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #c2d8ea 0%,#b1c8e6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #c2d8ea 0%,#b1c8e6 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #c2d8ea 0%,#b1c8e6 100%); /* IE10+ */
	background: linear-gradient(top,  #c2d8ea 0%,#b1c8e6 100%); /* W3C */
}

.tab_container ul.topnav li {
	border-right: 1px solid #A3BAD6;
	border-left: 1px solid #768DA6;
	padding-left:0px;
	padding-right:0px;
}

.tab_container ul.topnav li a {
	padding-left:10px;
	padding-right:10px;
	text-shadow: #c2d8ea 1px 1px 1px;
}

.tab_container ul.topnav li ul.subnav {
	margin-left: 0;
	border: 0px solid #111;
	-moz-box-shadow: 0px 0px 0px #000;
	-webkit-box-shadow: 0px 0px 0px #000;
	box-shadow: 0px 0px 0px #000;
}

.tab_container ul.topnav li ul.subnav li {
	border-top: 1px solid #A3BAD6;
	border-bottom: 1px solid #768DA6;
	-webkit-border-top-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-topright: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	background: #c2d8ea; /* Old browsers */
	background: -moz-linear-gradient(top,  #c2d8ea 0%, #b1c8e6 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c2d8ea), color-stop(100%,#b1c8e6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #c2d8ea 0%,#b1c8e6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #c2d8ea 0%,#b1c8e6 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #c2d8ea 0%,#b1c8e6 100%); /* IE10+ */
	background: linear-gradient(top,  #c2d8ea 0%,#b1c8e6 100%); /* W3C */
	padding-left:0px;
	padding-right:0px;
}

.tab_container ul.topnav li ul.subnav li:hover {
	background: #c2d8ea; /* Old browsers */
	background: -moz-linear-gradient(top,  #c2d8ea 0%, #c3d2e5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c2d8ea), color-stop(100%,#c3d2e5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #c2d8ea 0%,#c3d2e5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #c2d8ea 0%,#c3d2e5 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #c2d8ea 0%,#c3d2e5 100%); /* IE10+ */
	background: linear-gradient(top,  #c2d8ea 0%,#c3d2e5 100%); /* W3C */
}

.tab_container ul.topnav li.seasonal {
	border-right: 1px solid #7e0704;
	border-left: 1px solid #7e0704;
	background-color: #d30c06;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#d30c06), to(#7e0704));
	background-image: -webkit-linear-gradient(top, #d30c06, #7e0704);
	background-image: -moz-linear-gradient(top, #d30c06, #7e0704);
	background-image: -o-linear-gradient(top, #d30c06, #7e0704);
	background-image: -ms-linear-gradient(top, #d30c06, #7e0704);
	background-image: linear-gradient(top, #d30c06, #7e0704);
}

.tab_container ul.topnav li.seasonal:hover {
	background-color: #f20f07;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f20f07), to(#a60805));
	background-image: -webkit-linear-gradient(top, #f20f07, #a60805);
	background-image: -moz-linear-gradient(top, #f20f07, #a60805);
	background-image: -o-linear-gradient(top, #f20f07, #a60805);
	background-image: -ms-linear-gradient(top, #f20f07, #a60805);
	background-image: linear-gradient(top, #f20f07, #a60805);
}

.tab_container ul.topnav li.seasonal a {
	color: #fafafa;
	text-shadow: #1B1C1E 1px 1px 1px;
}

.tab_container ul.topnav li.selected, .tab_container ul.topnav li.selected:hover {
	background: #ececec;
	border-right: 1px solid #ececec;
	border-left: 1px solid #999;
}

.tab_container ul.topnav li.selected a {
	color: #0A0A0A;
	text-shadow: #ececec 0 0 0;
}

.number_one_image {
	padding:0px 2px 0px 0px;
	margin-top:3px;
}

#slider-wrapper {
	border: 1px solid #CCC;
	background-color: #F7F7F7;
	padding: 9px;
	width:600px;
}

#carousel_wrapper {
	border: 1px solid #CCC;
	background-color: #F7F7F7;
	margin: 10px 0;
	padding: 9px;
	width:600px;
	overflow:hidden;
	clear:both;
}
#spotlight_timer_text {
	color:white;
	text-align: center;
	font-size:14px;
}
#spotlight_timer {
	font-family:"Arial Black";
	color:white;
	text-align: center;
}
#spotlight_video {
	background-color: #1B1C1E;
	color: white;
	padding:10px;
}
#spotlight_next {
	background-color: #1B1C1E;
	color: white;
	padding:10px;
}
#spotlight_image {
	text-align:center;
	padding:5px;
	padding-bottom:10px;
}
#spotlight_title {
	font-size:25px;
	font-family:"Arial Black";
	color:white;
	text-align: center;
	line-height:28px;
}
#spotlight_title a {
	color:white ! important;
}
.sub_lib_header {
	font-size:25px;
	font-family:"Arial Black";
	color:white ! important; 
}

.sub_lib_header a {
	color:white ! important;
}
#black_carousel_wrapper {
	background-color: #1B1C1E;
	padding:0px 10px 0px 10px;
	width:600px;
	overflow:hidden;
	clear:both;
}

#black_carousel_wrapper .jcarousel-item-horizontal a, #spotlight_image a  {
	color:#2E9AFE;
	font-weight:bold;
}

#spotlight_image span a  {
	font-size: 14px;
}

.homepage_header_box {
	background-color:white; 
	padding-right:10px; 
	display:inline-block;
}
/* ------------------------------------------------------------ */
/* -------------------------BUTTONS---------------------------- */
/* ------------------------------------------------------------ */

#home_embossed {
	background-color: #ececec;
	width: 100px;
	height: 40px;
}

.cart_button {
	background-color: #3D9606;
	background-image: url('/media/lockdown/images/buttons/green_button_bg.jpg');
	background-repeat: repeat-x;
	min-width: 60px;
	float: right;
	padding-right: 10px;
	padding-left: 10px;
	margin-left:10px;
	-webkit-border-radius: 5px;  
	-moz-border-radius: 5px;  
	border-radius: 5px;  
	height: 26px;
	margin-top: 3px;
	line-height: 26px;
	padding-top: 2px;
}

.cart_button:hover {
	background-image: url('/media/lockdown/images/buttons/green_button_bg_hover.jpg');
	text-decoration:none;
}

.cart_icon_left {
	background-image:url('/media/lockdown/images/cart_sprite_left.png');
	background-repeat:no-repeat;
	height:22px;
	width:14px;
	float:left;
	margin-top: 1px;
}

.cart_icon_middle {
	background-image:url('/media/lockdown/images/cart_sprite_middle.png');
	height:22px;
	float:left;
	width: auto;
	text-align: center;
	line-height: 11px;
	padding-right:2px;
	margin-top: 1px;
}

.cart_icon_right {
	background-image:url('/media/lockdown/images/cart_sprite_right.png');
	background-repeat:no-repeat;
	height:22px;
	width:8px;
	float:left;
	margin-top: 1px;
}

/* ------------------------------------------------------------ */
/* -------------------------PRODUCT---------------------------- */
/* ------------------------------------------------------------ */

.product_title {
	font-weight:bold;
	color:#333;
}

.thumbnail {
	width:160px;
	display:inline-block;
	background-image:url('http://sermonspicethumbnails.s3.amazonaws.com/noimage.jpg');
	background-repeat: no-repeat;
	background-position: center;
	margin-left:auto;
	margin-right:auto;
}

.thumbnail_banner {
	left: 0;
	margin-top:-6px;
	border: solid 1px #CCC;
	border-top: none;
}

.featured_product {
	width:160px;
	height:90px;
	display:block;
	padding-left:11px;
	padding-right:11px;
	margin-bottom:10px;
}

.featured_product img {
	width:160px;
	height:90px;
}


#featured_products_content {
	border: 1px solid #CCC;
	background: #F7F7F7;
	width: 918px;
	padding: 10px;
	height: 130px;
}

#page_header h1 {
	float:left;
}
#page_header h2 {
	clear:both;
}

.product-list.list-unstyled p.product-price del {
	display:block;
}

.product_sorting_dropdown {
	float:right;
	padding-top:8px;
}
.product_sorting_dropdown_container {
	text-align:left;
	font-weight:bold;	
	display:table;
}
.product_sorting_dropdown_title {
	text-align:left;
	font-weight:bold;
	font-size:13px;
	padding-left:3px;
	padding-bottom:3px;
	display:table;
}
#featured_products .top_product{
	margin-left:5px;
	margin-right:5px;
}

.homepage_ad, .category_ad {
	margin: 0 auto 15px;
}

.homepage_products.top_product {
	margin-left:5px;
	margin-right:5px;
}

.inside_sidebar {
	border: 1px solid #CCC;
	background-color: #F7F7F7;
	padding: 10px;
	margin-bottom:15px;
	clear:both;
}

.inside_sidebar h2{
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.inside_sidebar_ad {
	margin-bottom: 15px;
}

.inside_sidebar_ad img, .homepage_ad img, .category_ad img {
	display: block;
}

.side_banner { 
	overflow:hidden;
	width: 280px
  
}

#seo_sidebar {
	background-color: #F7F7F7;
	border: solid 1px #CCC;
}

#seo_sidebar h4 {
	padding-left:5px;
	background-color: #D8D8D8;
}

#seo_sidebar p {
	padding: 5px;
}

/* TOP TEN PRODUCTS */

#top_ten {
   clear:both;
   display:table;
}

#top_ten h2 {
	text-align: center;
}

#top_product_wrap {
	width:278px;
	height:51px;
	margin-bottom: 5px;
}

#top_product_wrap a#top_product_thumb {
	float:left;
}

#top_product_wrap a#top_product_thumb img {
	display: block;
}

#top_product_wrap a#top_product_box {
	display: block;
	background: #C5D7E4 url('/media/lockdown/images/number1_topselling.png') no-repeat 5px 3px;
	font-size: 12px;
	font-weight:bold;
	height: 34px;
	width: 132px;
	margin-left: 95px;
	padding-left: 46px;
	padding-right: 5px;
	padding-top: 17px;
	color: #333;
}

#top_ten .top_product {
	width:90px;
	height:90px;
	margin-right: 4px;
	margin-bottom: 3px;
	text-align:center;
	z-index:-1;
	line-height: 15px;
}

#top_ten .top_product_4, #top_ten .top_product_7, #top_ten .top_product_10 {
	margin-right: 0;
}

#top_ten .top_product .top_product_title {
	color: #333
}

.top_product_label {
	width:90px;
	display:block;
	line-height:13px;
	padding-left:1px;
	padding-right:1px;
	padding-top: 5px;
	z-index:0;
	top:-5px;
	margin-left:auto;
	margin-right:auto;
}

#products_wrap {
	border:1px solid #CCC;
	padding:10px;
	background-color: #F7F7F7;
	width: 598px;
	overflow:hidden;

}

/* Social Nav */

#search_box_container ul.social_nav {
	height: 42px
}

#search_box_container ul.social_nav li {
	float: right;
	margin: 0 0 0 10px;
	list-style: none;
	vertical-align: middle;
}

#search_box_container ul.social_nav li.twitter a, #search_box_container ul.social_nav li.facebook a {
	display: block;
	padding: 0;
	margin: 0;
	height: 30px;
	width: 30px;
	text-indent: -9999px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
}

#search_box_container ul.social_nav li.facebook a {
	background: #d40201 url('../images/facebook.png') no-repeat top center;
}

#search_box_container ul.social_nav li.twitter  a {
	background: #d40201 url('../images/twitter.png') no-repeat top center;
}

/* ------------------------------------------------------------ */
/* -------------------------SEARCH----------------------------- */
/* ------------------------------------------------------------ */

#search_box input:focus {
	color:#000;
	text-align:left;
	background-color: white;
}

#q {
	height:30px;
	width:220px;
	font-size:14px;
	font-weight:bold;
	color: #3a3a3a;
	background-color: white;
	line-height: 30px;
	padding: 0 10px;
	margin: 0;
	position: relative;
	border: 0px solid white;
	float: left;
	display: block;
	-moz-border-radius: 3px 0 0 3px;
	-webkit-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}

#search_box select {
	height:34px;
	font-size:14px;
	line-height:32px;
	font-weight:bold;
	padding:5px;
}

#search_topic {
	float:left;
}

input#search_button {
	display: block;
	vertical-align:middle;
	cursor:pointer;
	height:30px;
	width:38px;
	min-width:34px;
	color: #000;
	display: block;
	float: left;
	border: 1px solid #bebebe;
	font-size: 14px;
	-moz-border-radius: 0 3px 3px 0;
	-webkit-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	background-color: #bebebe;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 252, 252)), to(rgb(202, 202, 202)));
	background-image: -webkit-linear-gradient(top, rgb(252, 252, 252), rgb(202, 202, 202));
	background-image: -moz-linear-gradient(top, rgb(252, 252, 252), rgb(202, 202, 202));
	background-image: -o-linear-gradient(top, rgb(252, 252, 252), rgb(202, 202, 202));
	background-image: -ms-linear-gradient(top, rgb(252, 252, 252), rgb(202, 202, 202));
	background-image: linear-gradient(top, rgb(252, 252, 252), rgb(202, 202, 202));
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#fcfcfc', EndColorStr='#cacaca');
}

#filter_search {
	padding:10px;
	background: #fcfff4; /* Old browsers */
	background: -moz-linear-gradient(top, #fcfff4 8%, #dfe5d7 96%, #b3bead 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(8%,#fcfff4), color-stop(96%,#dfe5d7), color-stop(100%,#b3bead)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fcfff4 8%,#dfe5d7 96%,#b3bead 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fcfff4 8%,#dfe5d7 96%,#b3bead 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #fcfff4 8%,#dfe5d7 96%,#b3bead 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfff4', endColorstr='#b3bead',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #fcfff4 8%,#dfe5d7 96%,#b3bead 100%); /* W3C */
}

#criteria_wrap {
	border: 1px solid #CCC; 
	padding: 0; 
	margin-bottom: 15px; 
	background-color: #F7F7F7;
}

.box_title {
	margin: 5px 0 0 5px;
}

.box_wrap, .box_border {
	padding: 10px;
	border: solid 1px #CCC;
	background-color: #F7F7F7;
	overflow:hidden;
	margin-bottom: 10px;
}

.box_wrap_subs {
	border: solid 1px #d7d7d7;
	overflow:hidden;
	height:auto; 
	margin-top:10px;
	background-color: #113C4F;
	padding-bottom:10px;
}

.center_button
{
	margin: 0 auto;
}

#search_advanced {
	float:right;
	font-weight:bold;
	margin-right:10px;
}

#search_sermonatch_logo {
	float:right;
	margin-right:95px;
	margin-left:10px;
}

.ad_top_banner{
	margin-top: 15px;
}

.search_autocomplete_title {
	font-weight:bold;
}

.search_autocomplete_subtitle {
	color:gray;
	font-size:10px;
}

.search_autocomplete_product {
	
}

.search_autocomplete_producer {
	
}

.search_autocomplete_category {
	
}

.search_autocomplete_tag {
	
}

.autocomplete_type_li_change {
	margin-top:20px;
	padding-top:20px;
	border-top:1px solid #CCCCCC;
}

.autocomplete_type_a_change {
	margin-top:20px;
	padding-top:20px;
}

#matching_producers {
	background-color: white;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #D7D7D7;
}

#matching_producers p {
	font-weight: bold;
	font-size: 13px;
	padding-bottom: 0px;
	padding-top: 0px;
}
#matching_producers ul {
	list-style: none outside none;
}
#matching_producers ul li {
	margin-left: 10px;
	margin-bottom:5px;
}

#hd_overlay {
	position: absolute;
	height:45px;
}

.product_button {
	text-align:center;
	font-weight:bold;
	background-color:#FFFFFF;
	font-size:12px;
	color:#0E4375;
	cursor:pointer;
	vertical-align:middle;
	border:1px solid #878787;
	padding:5px;
	padding-left:10px;
	padding-right:10px;
	min-width:75px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	display: inline-block;
}

.product_button.gray_button {
	background-color: #E3E3E3;
	background-image:url('/media/lockdown/images/buttons/gray_button_bg.jpg');
	background-repeat:repeat-x;
}

.product_button.gray_button:hover {
	background-color: #E3E3E3;
	background-image:url('/media/lockdown/images/buttons/gray_button_bg_hover.jpg');
	background-repeat:repeat-x;
}

.subscription_plan_title {
	font-weight:bold;
	color:white;
	font-size:14px;
}
.subscription_plan_price {
	font-weight:bold;
	color:white;
}
.subscription_plan_price_whole {
	font-size: 35px;
	line-height: 35px;
}
.subscription_plan_price_decimal {
	font-size: 20px;
	vertical-align: top;
	line-height: 25px;
}
.autocomplete_product {
	cursor:pointer;
	margin-bottom:5px;
	overflow:hidden;
}
.autocomplete_category, .autocomplete_producer, .autocomplete_tag {
	cursor:pointer;
	padding-top: 2px;
	padding-bottom: 2px;
	overflow:hidden;
}
.autocomplete_product:hover, .autocomplete_category:hover, .autocomplete_producer:hover, .autocomplete_tag:hover{
	background-color:#ECECEC;
}

.privacy_policy > ol {
	list-style-type: decimal;
}
.privacy_policy ol > li {
	margin-top: 10px;
}
.privacy_policy ul {
	margin-top: 10px;
}
.privacy_policy > ol > li > span {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	text-decoration: underline;
}
.privacy_policy > ol > li > ol {
	list-style-type: lower-alpha;
}
.privacy_policy > ol > li > ol > li > ol{
	list-style-type: lower-roman;
}
.privacy_policy > ol > li > ol > li > span {
	display: inline;
	margin-right: 5px;
	font-weight: bold;
	font-style: italic;
}
.privacy_policy > ol > li > ol > li > p {
	display: inline;
}
.privacy_policy > ol > li > ol > li > p ~ p {
	display: block;
}
.privacy_policy > ol.terms_of_use > li span {
	text-transform: uppercase;
}