/*
	THEME standard is blue:
	@baseColor: #00-6699; --for bars with color, reverse text usually LOCAL: 006699
	@darkColor: #00-4268; --for color bars LOCAL: 004268
	@displayFontColor: #00-4269; --for fonts LOCAL: 004269

	@Red: #c72d2f; //leave this its for warnings

	//these are for colored areas like bars etc.
	@rowHighlight: #de-e6eb; LOCAL: dee6eb
	@rowHighlightMedium: #bd-c3cc; LOCAL: bdc3cc
	@rowHighlightDark: #80-8389; LOCAL 808389
	@rowHighlightBlack: #33-3333; --generally leave this a gray LOCAL: 333333
	
	Head-font: 'Times New Roman', Times, serif
	Book-font: Calibri, Optima, Verdana, Arial, sans-serif

	if using a google font, then put font-display: swap in the tag for the face
	//this will swap out a system font until the google font can be found
	also put in <link rel="dns-prefetch" href="https://ajax.googleapis.com" /> for the locationof the font cdn

*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300italic,400italic,600,600italic,700,300);


/*#region Global Classes and Element Styles */
html {
	height: 100%;
}

body {
	margin: 0px;
	height: 100%;
}

body, td, input, select, .bookfont {
	font: normal 14px 'Open Sans', Verdana, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6, .headfont {
	font-family: 'Open Sans', Verdana, Arial, sans-serif, serif;
}

ol, ul {
	margin: 0;
	padding: 0;
}

a {
	color: #191919;
	text-decoration: none;
}

	a:hover {
		text-decoration: underline;
	}

	a img {
		border: none;
	}
	/*a img:hover { opacity: 0.8; }*/
	a.togglediv {
		cursor: pointer;
	}

img {
	max-width: 100%;
}

.hidden {
	display: none;
}

.msg-addtocart {
	cursor: pointer;
}

label {
	color: #727272;
}

.error {
	color: red;
}

.bold-any {
	font-weight: bold;
}

.center-any {
	text-align: center;
}

.ital-any {
	font-style: italic;
}

hr {
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(148, 148, 148, 0.57), rgba(0, 0, 0, 0));
	;
}

@-webkit-keyframes hvr-pulse {
	25% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	75% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}

@keyframes hvr-pulse {
	25% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	75% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}

@-webkit-keyframes hvr-buzz {
	50% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}

	100% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}
}

@keyframes hvr-buzz {
	50% {
		-webkit-transform: translateX(3px) rotate(2deg);
		transform: translateX(3px) rotate(2deg);
	}

	100% {
		-webkit-transform: translateX(-3px) rotate(-2deg);
		transform: translateX(-3px) rotate(-2deg);
	}
}

/*#endregion*/

/*#region Master Page Styles */
.centerpage {
	max-width: 1024px;
	margin: 0px auto;
	overflow: hidden;
}

#header {
	padding-bottom: 15px
}

	#header a {
		white-space: nowrap;
		color: #191919;
	}

#header-logo {
	float: left;
	text-align: left;
	position: relative;
	z-index: 10;
	padding-top: 5px;
	margin-top: 10px;
	max-width: 350px;
}

#header-message {
	float: left;
	text-align: left;
	position: relative;
	z-index: 10;
	max-width: 350px;
}

#header-tools {
	text-align: right;
}

	#header-tools > div {
		margin-top: 10px;
	}

#header-nav-link a {
	margin-left: 7px;
	padding-right: 7px;
}

	#header-nav-link a:last-child {
		padding-right: 0px;
		border-right: none;
	}

#header-cart {
	margin: 15px 0px 5px;
	text-align: right;
	line-height: 32px;
}


#header-cart-icon {
	vertical-align: bottom;
	margin-right: 15px;
}

#header-cart .cartcount {
	color: white;
	background-color: #85BC3C;
	border-radius: 20px;
	position: relative;
	display: inline-block;
	z-index: 2;
	top: -13px;
	left: 50px;
	line-height: 24px;
	padding: 0px 5px;
	text-align: center;
}


.header-social {
	padding: 0px;
	margin-left: 10px;
	display: inline-block;
}

	.header-social img {
		width: 25px;
		vertical-align: middle;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		box-shadow: 0 0 1px rgba(0, 0, 0, 0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-osx-font-smoothing: grayscale;
	}

		.header-social img:hover {
			-webkit-animation-name: hvr-buzz;
			animation-name: hvr-buzz;
			-webkit-animation-duration: 0.3s;
			animation-duration: 0.3s;
			-webkit-animation-timing-function: linear;
			animation-timing-function: linear;
			-webkit-animation-iteration-count: infinite;
			animation-iteration-count: infinite;
		}

#header-banner {
	position: absolute;
	top: 35px;
	width: 450px;
	text-align: left;
}

#navbar {
	background-color: #000000;
	padding: 8px 0px;
	margin-bottom: 15px;
}

#search-form {
	display: inline-block;
	float: right;
	overflow: hidden;
	height: 32px;
	margin: 0px;
	padding: 0px 0px 0px 45px;
	border: none; /*background: white url(/images/search_background.png) left top no-repeat;*/
}

	#search-form input[type='text'] {
		width: 225px;
		border: 1px solid #25408F;
		vertical-align: top;
		margin: 1px 2px 0px 0px;
		padding: 5px 0px 5px 5px;
		height: 18px;
		font-size: 12px;
	}

	#search-form input[type='image'] {
		max-width: 31px;
		background-color: #85BC3C;
		padding: 0px 3px;
		vertical-align: baseline;
		margin: 0px 0px 0px -4px;
		border-radius: 5px;
	}

		#search-form input[type='image']:hover {
			-moz-opacity: 0.5;
			-o-opacity: 0.5;
			opacity: 0.5;
			filter: alpha(opacity=50);
		}

#search-result {
	margin-left: 200px;
	width: auto;
}

#navbar-links {
	display: block;
	vertical-align: top;
	text-align: center;
	background-color: #000000;
	line-height: 30px;
}

#advanced-search-bttn {
	background: linear-gradient(to bottom, #85BC3C 5%, #78bf1a 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#85BC3C', endColorstr='#78bf1a      ',GradientType=0);
	background-color: #85BC3C;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	color: #FDFDFD !important;
	font-size: 15px;
	padding: 6px 4px;
	text-decoration: none;
	text-shadow: 0px 1px 0px #263666;
	line-height: 32px;
	vertical-align: top;
}

.advanced-search-box {
	margin-left: 200px;
}

#navbar-links a {
	color: #FFFFFF;
	margin: 0px 10px;
	white-space: nowrap;
	font-size: 15px;
}

#navbar-links .separator {
	color: #ffffff;
}

#dropnav-container {
	position: relative;
	overflow: visible;
}

.dropnav {
	z-index: 1000;
	position: absolute;
	top: 8px;
	background-color: #939598;
	border: 1px solid #E0E0E0;
	border-top: none;
	right: 755px;
}

	.dropnav:nth-child(2) {
		right: 658px;
	}

	.dropnav:nth-child(3) {
		right: 545px;
	}

	.dropnav:nth-child(4) {
		right: 380px;
	}

	.dropnav:nth-child(5) {
		right: 318px;
	}

	.dropnav:nth-child(6) {
		right: 268px;
	}

	.dropnav:nth-child(7) {
		right: 110px;
	}
	/* dropdown allignment for clearence tab*/
	.dropnav:nth-child(8) {
		right: 40px;
	}

	.dropnav:last-child {
		right: 0px;
	}

	.dropnav li {
		vertical-align: top;
		zoom: 1;
		padding: 8px;
		width: 100%;
		font-size: 14px;
		list-style: none;
		position: relative;
	}

		.dropnav li ul:first-of-type {
			position: absolute;
			background-color: #a9a9a9;
			width: 180px;
			right: -165px;
			top: 0px;
			display: none;
			z-index: 99;
			box-shadow: 1px 1px 1px #d6d6d6;
		}

	.dropnav a {
		color: #FFFFFF;
	}

.category_intersectionlinks {
	background-color: #939598;
	padding: 10px 5px 10px 5px;
}

	.category_intersectionlinks span {
		margin: 15px;
		white-space: nowrap;
		font-weight: bold;
	}

	.category_intersectionlinks a {
		margin-right: 15px;
		white-space: nowrap;
		font-weight: bold;
		border-bottom: 1px solid #e6e6e6;
		border-right: 1px solid #e6e6e6;
		padding: 5px 10px;
		display: inline-block;
	}

#main {
	margin-bottom: 15px;
	clear: both;
}

#main-content {
	float: left;
	margin: 11px 15px;
	width: 810px;
}

	#main-content.addright {
		float: left;
		margin: 0px 15px;
		width: 610px;
	}

	#main-content.noright {
		margin-right: 0px;
		width: 810px;
	}

	#main-content.noleft {
		margin-left: 0px;
		width: 810px;
	}

	#main-content.noright.noleft {
		margin: 0px;
		width: auto;
		float: none;
	}

	#main-content.fullwidth {
		margin: 0px;
		width: 100%;
	}

	#main-content.pages {
		margin-left: 300px;
		max-width: 700px;
	}

		#main-content.pages ul {
			margin-left: 20px;
		}

.main-left {
	float: left;
	width: 175px;
}

.main-right {
	float: right;
	width: 175px;
}

#pnlSignup {
	text-align: center;
	margin-bottom: 20px;
	padding: 10px 0px;
	border-top: 2px solid #bbbbbb;
	border-bottom: 2px solid #bbbbbb;
}

	#pnlSignup > span {
		margin: 0px 10px;
		font-size: 16px;
		vertical-align: top;
		line-height: 32px;
		-ms-zoom: 1;
		zoom: 1;
	}

	#pnlSignup > input {
		font-size: 12px;
		vertical-align: middle;
	}

		#pnlSignup > input[type='text'] {
			padding: 7px;
			margin: 0px 10px;
			width: 200px;
		}

.footer-main-marketing {
	max-width: 300px;
	display: inline-block;
	margin: 10px;
}

#footer-text {
	margin: 10px 0px;
}

	#footer-text > div {
		vertical-align: top;
	}

#footer-copyright {
	text-align: center;
	font-size: 12px;
	line-height: 35px;
}

#site-seal {
	text-align: center;
}

#footer-nav {
	background: #000;
	color: white;
	margin-bottom: 0px;
	padding: 10px 375px 10px 375px;
	text-align: center;
}

	#footer-nav a {
		display: inline-block;
		padding: 0px 10px;
		color: #aaaaaa;
		font-size: 12px;
		line-height: 35px;
	}

		#footer-nav a:hover {
			color: #ffffff;
		}

#footer-links {
	margin: 0px;
	padding: 0px;
	background-color: #f5f5f5;
}

	#footer-links ul:first-child {
		font-weight: normal;
		color: #6d6d6d;
	}

	#footer-links ul {
		display: inline-block;
		*display: inline;
		-ms-zoom: 1;
		zoom: 1;
		margin: 12px 0px 14px 0px;
		padding: 0px 16px;
		vertical-align: top;
		text-align: left;
	}

	#footer-links li {
		list-style: none;
		line-height: 25px;
	}

#footer-social li:first-child {
	display: block;
	margin-bottom: 10px;
}

#footer-social li {
	display: inline-block;
	padding: 0px 5px;
}

#footer-social {
	width: 210px;
	margin: 0px auto;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}

	#footer-social a img:hover {
		-webkit-animation-name: hvr-pulse;
		animation-name: hvr-pulse;
		-webkit-animation-duration: 1s;
		animation-duration: 1s;
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		-webkit-animation-iteration-count: infinite;
		animation-iteration-count: infinite;
	}

#footer-links a {
	font-weight: normal;
	color: #a2a2a2;
}

.menu {
	background: #000;
	padding-left: 0px;
	margin-bottom: 0px;
}

	.menu li {
		list-style: none;
		display: inline-block;
		color: #aaaaaa;
	}

.title {
	font-weight: bold;
	color: #333333;
}

/*#endregion*/

/*#mobile menu style*/
.mobile-menu {
	display: none;
}

#mobile-menu-trigger {
	display: none;
}

/*#endregion*/

/*#region Tree Navigation Styles */
#treenav-trigger {
	display: none;
	font-size: 32px;
	text-align: center;
	background: url(/images/button_menu.png) no-repeat center right;
}

	#treenav-trigger.msg-exp-open {
		background: url(/images/button_menu_open.png) no-repeat center right;
	}

#treenav {
	min-height: 650px;
	text-align: left;
}

	#treenav .msg-exp-t {
		font-weight: bold;
		background: url(/images/plus.png) no-repeat;
		background-position: left center;
	}

		#treenav .msg-exp-t.msg-exp-open {
			background: url(/images/minus.png) no-repeat;
			background-position: left center;
		}

.treenav-heading {
	font-weight: bold;
	font-size: 20px;
	border-bottom: 2px solid #333333;
	padding: 5px;
	margin: 5px 5px 10px 5px;
}

.treenav-menu {
	background-color: #4e4e4e;
	background: rgba(133, 189, 60, 0.73);
	color: #191919;
	margin-bottom: 50px;
	padding: 5px;
}

	.treenav-menu a {
		line-height: 18px;
	}

.treenav-submenu {
	padding-left: 10px;
}

.treenav-item {
	background: url(/images/li-box.png) no-repeat;
	background-position: left center;
	margin-left: 7px;
	margin-bottom: 5px;
	padding-left: 17px;
	line-height: 16px;
}

.treenav-display {
	display: none;
}

#treenav-marketing {
	text-align: center;
}

	#treenav-marketing img {
		margin-bottom: 10px;
	}
/*#endregion*/

/*#region Tabbed Content DO NOT DELETE< JUSTE COMMENT OUT*/
.msg-tab-bar {
	padding-left: 10px;
}

.msg-tab {
	display: inline-block;
	padding: 0 10px;
	line-height: 30px;
	vertical-align: bottom;
	text-align: center;
	font-size: 17px;
	color: #fff;
	background-color: #939598;
	box-shadow: 0 -10px 10px -5px #939598 inset;
	max-width: 165px;
	min-width: 135px;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}

	.msg-tab.active {
		padding-top: 8px;
		margin-bottom: -1px;
		background: #383838;
		box-shadow: none;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}

	.msg-tab:first-child {
		border-top-left-radius: 10px;
	}

	.msg-tab:last-child {
		border-top-right-radius: 10px;
	}

	.msg-tab + .msg-tab {
		margin-left: -3px;
	}

		.msg-tab + .msg-tab.active {
			margin-left: -4px;
		}

	.msg-tab.active + .msg-tab {
		margin-left: -4px;
	}

.msg-tab-target {
	background-color: #FFFFFF;
	margin-bottom: 20px;
	border: 10px solid #383838
}

.msg-tab-alt {
	display: none;
}
/*#endregion*/

/*#region Home Page */
.home-row {
	clear: both;
	overflow: hidden;
	margin-bottom: 10px;
	text-align: center;
}

	.home-row > div {
		margin: 0px auto;
		padding: 0px;
		vertical-align: top;
	}

	.home-row .placardslider {
		max-width: 750px;
		border: none;
		box-shadow: none;
		margin: 0px;
	}

#home-featured {
	margin-right: 70px;
	float: left;
	margin-top: -20px;
	padding-bottom: 50px;
}

.main-right .vslider {
	width: 175px;
	margin: 0px;
	padding: 0px;
	border: none;
	box-shadow: none;
}

#home-featured h2 {
	color: #513B00;
	background: url(/images/line_background.png) center center repeat-x;
}

	#home-featured h2 span {
		padding: 0px 4px;
		background-color: white;
	}

.home-marketing {
	text-align: center;
	float: right;
	max-width: 175px;
}

.home-marketing-mobile {
	display: none;
}

.home-marketing img:first-child {
	margin-top: 0px;
}

.home-marketing img {
	margin: 10px 0px;
}

.adgrouping {
	float: right;
	width: 175px;
	margin: 0px;
	padding: 0px;
	border: none;
	box-shadow: none;
}


.campaign-terms {
	margin: 15px 5px;
}

.campaign-list-item {
	text-align: center;
	font-weight: bold;
	width: 20%;
	padding: 15px;
}

	.campaign-list-item img {
		max-width: 60%;
	}

.redeem-container {
	display: inline-block;
	margin-top: 40px;
}

	.redeem-container p {
		font-weight: bold;
		color: #006699;
	}

#txt_redeem-input {
	width: auto;
	height: 25px;
	margin-bottom: 20px;
	max-width: 200px;
}
/*#endregion*/
/*#region CMS*/

.cms-content{}
.cms-content a {text-decoration:underline;}

/*#endregion*/
/*#region List Pages */
.breadcrumb {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #85bd3c;
}

	.breadcrumb a, .breadcrumb span {
		white-space: nowrap;
		padding: 0px 3px;
	}
	.breadcrumb br {
		display:none;
	}

#list-header {
	overflow: hidden;
}

#list-pagecontrols {
	color: #333;
	line-height: 34px;
	margin: 20px 0px;
	overflow: hidden;
	padding-left: 20px;
}

#list-pagesort {
	white-space: normal !important;
}

#list-perpage, .list-pagenav {
	float: right;
	text-align: right;
	margin-left: 10px;
}

	#list-perpage a {
		cursor: pointer;
	}

#list-pagecontrols > div {
	clear: both;
}

#list-pagecontrols span {
	white-space: nowrap;
}

#list-pagecontrols label {
	white-space: nowrap;
	margin-right: 7px;
}

#list-pagecontrols select {
	font-size: 12px;
	border: 1px solid #191919;
	height: 24px;
	margin: 5px 0px 0px 5px;
	padding: 1px 0px 1px 2px;
}

.list-featured {
	background-color: #f9f3db;
	padding: 10px 20px 10px 20px;
	margin: 10px 0px;
}

.list-categoryheader {
	padding: 10px 20px 10px 20px;
	margin: 10px 0px;
	display: block;
	overflow: hidden;
}

.list-categoryHeader-pic {
	margin: 0px 10px 20px 0px;
	display: inline-block;
	min-width: 200px;
}

.list-categoryHeader-text {
}

.list-categoryHeader-blocks {
	width: 100%;
}

	.list-categoryHeader-blocks a {
		text-decoration: underline;
		color: #000001;
	}

.list-subcategories {
	background-color: #939598;
	padding: 10px 5px 10px 5px;
	margin-top: 10px;
}

.list-item-addtocart-bttn {
	backface-visibility: hidden;
	position: relative;
	width: 100px;
	height: 20px;
	cursor: pointer;
	line-height: 11px;
	white-space: nowrap;
	background: #102050;
	border: 0px solid #ffffff;
	padding: 15px 0px 4px 15px;
	color: #ffffff;
	text-align: left;
	font-size: 16px;
	font-family: 'Amiri',arial;
	margin-bottom: 15px;
	font-weight: 500;
	display: inline-block;
}

	.list-item-addtocart-bttn:hover {
		text-decoration: none;
		background: #67b5ed;
	}

	.list-item-addtocart-bttn > i {
		padding: 0px 0px 0px 0px;
		position: absolute;
		top: 12px;
		right: 10px;
		color: #67b6ee;
	}

		.list-item-addtocart-bttn > i:hover {
			color: #ffffff;
		}
/* adjust this widht to 3 col if you want to to that*/
.list-subcategories a {
	display: inline-block;
	width: 225px;
	padding: 5px 10px 5px 10px;
	margin: 0px 10px 5px 10px;
	color: white;
	background-color: #191919;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


#list-viewstyle-grid {
	text-decoration: underline;
	color: #000001;
}

#list-viewstyle-normal {
	text-decoration: underline;
	color: #000001;
}

.list-pagenav label {
	display: none;
}

.list-pagenav-num, .PagingLink {
	display: inline-block;
	padding: 2px 8px;
	background-color: #25408F;
	line-height: 14px;
	color: #fff
}

	.PagingNumber, .list-pagenav-num.active {
		color: #fff;
		background-color: #a0a0a0
	}

.product-list {
	margin-bottom: 15px;
}

	.product-list h1 {
	}

.list-item {
	overflow: hidden;
	margin-bottom: 15px;
}

.list-item-image {
	float: left;
	margin-bottom: 10px;
}

	.list-item-image img {
		max-width: 125px;
		vertical-align: top;
	}

.list-item-detail {
	margin: 0px 135px 15px 135px;
}

.list-item-title {
	margin: 0px;
	font-size: 20px;
	overflow: hidden;
	/*white-space: nowrap;*/
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

	.list-item-title a {
		color: #191919;
	}

.list-item-subtitle {
	color: #038f9c;
	margin: 0px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.list-item-byline {
	font-weight: normal;
	margin: 5px 0px 0px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	color: #25408F;
}

.list-item-description {
	overflow: hidden;
	font-weight: normal;
}

.list-item .more {
	font-weight: bold;
	font-style: italic;
}

.list-item-addtocart {
	float: right;
	width: 145px;
	margin-bottom: 10px;
	text-align: right;
}

.list-item-isbn {
}

.list-item-ProductType {
}

.list-item-otherFormats {
}

.list-item-hide {
	display: none;
}

.list-item-price {
	display: block;
	font-weight: bold;
	font-size: 18px;
}

.list-item-date {
	color: #ccc;
	font-weight: bold;
}

.list-grid {
	text-align: center;
	display: inline-block;
	vertical-align: bottom;
}

	.list-grid .list-item {
		-ms-zoom: 1;
		zoom: 1;
		text-align: center;
		width: 170px;
		margin: 5px;
		vertical-align: bottom;
	}

	.list-grid .list-item-image {
		float: none;
		margin-bottom: 10px;
	}

	.list-grid .list-item-detail {
		margin: 0px;
	}

	.list-grid .list-item-title {
		font-size: 14px;
	}

	.list-grid .list-item-subtitle {
		display: none;
	}

	.list-grid .list-item-byline {
		margin: 0px;
	}

	.list-grid .list-item-description {
		display: none;
	}

	.list-grid .list-item-addtocart {

	display: none;	
}


	.list-grid .list-item-price {
		display: none;
	}

	.list-grid .list-item-price-grid {
		display: none;
		font-weight: bold;
	}

	.list-grid .list-item-productType-grid {
		display: none;
		font-weight: bold;
	}

	.list-grid .list-item-productType {
		display: none;
	}

	.list-grid .list-item-more {
		display: none;
	}

	.list-grid br {
		display: none;
	}

	.list-grid .list-item-bookworkdsid {
		display: none;
	}

	.list-grid .list-item-title {
		display: block;
	}

	.list-grid .list-item-title-small {
		text-align: center;
		word-break: normal;
		white-space: pre-wrap;
		overflow: hidden;
		text-overflow: ellipsis;
		display: block;
		line-height: 20px;
		-webkit-box-orient: vertical;
		max-height: 60px;
		width: 135px;
	}

	.list-grid .list-item-autorenew {
		margin-top: -20px;
		font-size: 10px;
	}

.product-list.list-grid img {
	max-width: 125px;
}

.product-list.list-grid br {
	display: inline;
}

/*#endregion*/

/* default css button */

.css-button {
	-moz-box-shadow: inset 0px 1px 0px 0px #85bd3c;
	-webkit-box-shadow: inset 0px 1px 0px 0px #85bd3c;
	box-shadow: inset 0px 1px 0px 0px #84bd39;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #85BC3C), color-stop(1, #84bd39 ));
	background: -moz-linear-gradient(top, #85BC3C 30%, #84bd39 100%);
	background: -webkit-linear-gradient(top, #85BC3C 30%, #84bd39 100%);
	background: -o-linear-gradient(top, #85BC3C 30%, #84bd39 100%);
	background: -ms-linear-gradient(top, #85BC3C 30%, #84bd39 100%);
	background: linear-gradient(to bottom, #85BC3C 5%, #84bd39 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa800', endColorstr='#84bd39 ',GradientType=0);
	background-color: #ffa800;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #84bd39;
	display: inline-block;
	cursor: pointer;
	color: #ffffff;
	font-family: Arial,sans-serif;
	font-size: 11px;
	font-weight: normal;
	padding: 6px 14px;
	text-decoration: none;
	text-shadow: 0px 1px 0px #ABABAB;
}

	.css-button:hover {
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #84bd39 ), color-stop(1, #85BC3C));
		background: -moz-linear-gradient(top, #84bd39 30%, #85BC3C 100%);
		background: -webkit-linear-gradient(top, #84bd39 30%, #85BC3C 100%);
		background: -o-linear-gradient(top, #84bd39 30%, #85BC3C 100%);
		background: linear-gradient(to bottom, #84bd39 30%, #85BC3C 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#84bd39', endColorstr='#85BC3C',GradientType=0);
		background-color: #ffa800;
		text-decoration: none;
	}

	.css-button:active {
		position: relative;
		top: 1px;
		text-decoration: none;
	}

.css-button-large {
	font-size: 14px;
}


/*Wish List*/
#wishlist-add {
	margin-top: 10px;
}

#wishlist-remove {
	margin-top: 10px;
}

#wishlist-add-message {
	display: none;
}

#wishlist-remove-message {
	display: none;
}

#wishlist-form {
	margin-top: 10px;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	width: 100%;
}

.wishlist-form-element {
	margin: 10px;
}

.wishlist-result {
	font-size: 14px;
	padding: 20px;
	border: 1px solid #cccccc;
	width: 90%;
	margin: 10px 0px;
	display: block;
}

#wishlist-search-form {
	display: inline-block;
	float: left;
	overflow: hidden;
	height: 28px;
	margin: 0px;
	padding: 0px 0px 0px 45px;
	border: none;
	background: white url(/images/search_background.png) left top no-repeat;
}

	#wishlist-search-form input[type='text'] {
		width: 215px;
		border: 1px solid #aaaaaa;
		vertical-align: top;
		margin: 2px;
		padding: 3px;
		height: 17px;
		font-size: 16px;
	}

	#wishlist-search-form input[type='submit'] {
		margin-top: 4px;
		padding: 0px;
	}

/*#endregion*/

/*#region advanced search w filter
#search_refinements { border: solid 1px black; background-color: #f9f3db; max-width: 150px; padding: 10px;}
	*/

/*#endregion*/

/*#region Product Detail */
#product-cover {
	width: 225px;
	float: left;
	position: relative;
}

#product-cover-image {
	border: 1px solid #c5aa63;
	padding: 5px;
	max-width: 250px;
	max-height: 420px;
	margin-bottom: 15px;
}

#product_detail_cover img {}



#sample-image {
	max-width: 250px;
}

#product-social {
	height: 25px;
}

#product-info {
	margin-bottom: 62px;
	margin-left: 300px;
}

#product-title {
	color: #353535;
	margin: 0px;
}

#product-subtitle {
	color: #25408F;
	margin: 0px;
	font-size: 16px;
}

#product-byline {
	font-size: 14px;
	font-weight: normal;
	color: #25408F;
	font-weight: bold;
}

	#product-byline a {
		font-weight: bold;
		color: #25408F;
	}

#product-fields {
	margin: 10px 0px;
}

	#product-fields ul {
		display: inline-block;
		*display: inline;
		-ms-zoom: 1;
		zoom: 1;
		width: 250px;
		vertical-align: top;
	}

	#product-fields li {
		list-style: none;
	}

	#product-fields label {
		font-weight: bold;
		margin-right: 3px;
	}

#product-info label:after {
}

#product-buy {
	font-size: 18px;
	margin: 10px 0px;
}

	#product-buy > div {
		display: inline-block;
		*display: inline;
		-ms-zoom: 1;
		zoom: 1;
		vertical-align: top;
	}

#product-buy-us {
	width: 200px;
}

#product-buy-other {
	max-width: 695px;
	display: block;
	color: #c72d2f;
}

#product-buy label {
	display: block;
}

#product-buy-us .price {
	font-size: 32px;
	font-weight: bold;
	color: #777777;
}

#product-buy-other .sale-price {
	font-size: 32px;
	font-weight: bold;
}

#product-buy-other a {
	margin-right: 8px;
}

.product-format-type a {
	vertical-align: top;
}

.product-format-price {
	vertical-align: top;
}

#product-cart {
	margin: 15px 0px;
}

	#product-cart img {
		margin: 0px;
	}

	#product-cart input.msg-addtocart {
		vertical-align: top;
		line-height: 20px;
		margin: 0px;
	}

	#product-cart img.msg-addtocart {
		max-height: 26px;
	}

.product-request a {
	display: inline-block;
	-ms-zoom: 1;
	zoom: 1;
	vertical-align: top;
	margin: 12px;
	padding: 5px;
	color: white;
	background-color: #ffa800;
	white-space: nowrap;
}

#product-marketing {
	float: left;
	max-width: 295px;
	margin-top: 25px;
	text-align: left;
}

	#product-marketing img {
		margin-bottom: 10px;
	}

#product-content-samples div {
	min-width: 700px;
}

.product-format-detail {
	margin-bottom: 5px;
}

#product-content {
	margin-right: 250px;
	float: left;
}

.product-content-section {
	margin-bottom: 10px;
	padding: 25px;
	min-width: 600px;
}

	.product-content-section h3 {
		border-bottom: 2px solid #c5aa63;
		font-size: 20px;
	}

	.product-content-section ul {
		padding-left: 30px;
	}

	.product-content-section li {
	}

#product-sliders {
	text-align: center;
	float: left;
}

	#product-sliders h2 {
		color: #513B00;
		background: url(/images/line_background.png) center center repeat-x;
	}

		#product-sliders h2 span {
			padding: 0px 4px;
			background-color: white;
		}

#product-zoom {
	text-align: center;
	margin: auto;
}

	#product-zoom img {
		vertical-align: middle;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		box-shadow: 0 0 1px rgba(0, 0, 0, 0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-osx-font-smoothing: grayscale;
	}

		#product-zoom img:hover {
			-webkit-animation-name: hvr-pulse;
			animation-name: hvr-pulse;
			-webkit-animation-duration: 1s;
			animation-duration: 1s;
			-webkit-animation-timing-function: linear;
			animation-timing-function: linear;
			-webkit-animation-iteration-count: infinite;
			animation-iteration-count: infinite;
		}

.msg-tab-alt {
	display: none;
}

#fblike {
	height: 25px;
	float: left;
}

#twitterlike {
	height: 25px;
	float: left;
	margin-left: 15px;
}

#product-content-bio {
	overflow: auto;
}

#author-bio {
}

	#author-bio p {
		display: inline-block;
	}

	#author-bio img {
		max-width: 200px;
		float: left;
		margin: 5px 20px 0px 0px;
	}

#author-bio-page {
}

#author-image {
	display: inline-block;
	float: left;
	margin-right: 10px;
}

	#author-image img {
		max-width: 315px;
		margin-bottom: 40px;
		margin-top: 5px;
	}

#wishlist-item {
	list-style: none;
	padding-top: 10px;
	padding-bottom: 10px;
}

.campaign_input_container {
	background-color: #6D6D6D;
	overflow: hidden;
	color: white;
	width: 100%;
	display: inline-flex;
	align-content: center;
	align-items: center;
	min-height: 35px;
	padding: 15px;
}

#btn_newcampaign {
	background-color: #fee715;
	color: #212121;
	padding: 3px 8px;
	margin: 2px 0px 0px 5px;
}

#txt_promo {
	padding: 0 10px;
}

#txt_newcampaign, #txt_newpromotion {
	height: 25px;
	vertical-align: baseline;
	margin-left: 80px;
}

#btn_newpromotion {
	background-color: #fee715;
	color: #212121;
	padding: 3px 8px;
	margin: 2px 0px 0px 5px;
}

.campaign-error {
	color: red;
	font-weight: bold;
}

.promotion-error {
	color: red;
	font-weight: bold;
}

/*subscription offers styling*/
.offers-container {
	margin: 20px 0px;
	background: #eeeeee;
	padding-top: 10px;
	padding-bottom: 10px;
	display: -ms-flexbox;
	display: flex;
	min-height: 100px;
	-webkit-box-shadow: 3px 3px 4px -2px rgba(148,148,148,0.72);
	-moz-box-shadow: 3px 3px 4px -2px rgba(148,148,148,0.72);
	box-shadow: 3px 3px 4px -2px rgba(148,148,148,0.72);
	position: relative;
}

	.offers-container > div {
		-ms-zoom: 1;
		zoom: 1;
		vertical-align: top;
		flex: 1 1 auto;
		padding: 0 20px;
		width: 25%;
		text-align: right;
	}

.offers-desc {
	margin: 12px 0px;
	font-weight: bold;
	font-size: 17px;
	text-align: left !important;
	line-height: 22px;
}

.offers-price {
	font-weight: bold;
	font-size: 40px;
	margin: -5px 0px 20px 0px;
	text-align: left !important;
}

.offers-terms {
	font-size: 15px;
	line-height: 18px;
	text-align: left;
	color: #ff8857;
	margin-top: 10px;
}

.offers-renewal {
	font-weight: normal;
	margin-top: 15px;
	font-size: 15px;
}

.offers-add-cart {
	margin: 15px 0px;
	text-align: center !important;
	font-weight: bold;
}

#offers-popular {
	position: relative;
	right: -44px;
}

#offers-popular-mobile {
	display: none;
}

.renewal-info {
	border-width: 1px;
	border-color: rgb(16, 32, 80);
	-moz-border-radius: 50%;
	border-radius: 50%;
	border-style: solid;
	text-align: center;
	display: inline-block;
	height: 15px;
	width: 15px;
	line-height: 16px;
	z-index: 200;
}


/* bulk price and order notes (shorNotes)*/
#bulk-pricing {
	background-color: #e1e9f6;
	border-radius: 15px;
	padding: 5px 14px;
	max-width: 200px;
}

#product-ordernotes {
	text-align: left;
	width: 100%;
	border-collapse: collapse;
}

	#product-ordernotes tr {
		border-bottom: 1px solid #fff;
	}

	#product-ordernotes td {
		white-space: nowrap;
		line-height: 1.5em;
	}

		#product-ordernotes td:last-child {
			text-align: right;
			overflow: hidden;
		}

.product-format-header {
}

.product-format-detail {
}

.product-format-type {
	text-align: left;
}

.product-format-price {
}

.product-format-add {
}


/*#region Quick Order */
#qo-heading {
	line-height: 30px;
	margin: 0px;
	background-color: #ffa800;
	color: white;
	font-size: 16px;
	font-weight: normal;
	text-align: center;
}

#qo-headertext {
	color: black;
	padding: 0px 40px;
	text-align: center;
}

#quickorder {
	width: 100%;
	border-collapse: collapse;
}

	#quickorder tr {
		border-bottom: 2px solid #ffa800; /*height: 44px;*/
	}

		#quickorder tr:nth-child(even) {
			background-color: #f9f3db;
			border-color: #c5aa63;
		}

	#quickorder th {
		text-align: right;
		color: black;
		font-weight: normal;
	}

		#quickorder th:first-child {
			text-align: left;
		}

	#quickorder td {
		padding: 10px;
		text-align: right;
		color: #513B00;
		font-size: 15px;
	}

		#quickorder td:first-child {
			text-align: left;
		}

	#quickorder input {
		width: 40px;
	}

#qo-buttons {
	text-align: center;
	margin: 10px 0px 5px 0px;
}

	#qo-buttons a {
		display: inline-block;
		margin: 10px;
		padding: 5px;
		width: 100px;
		color: white;
		background-color: #ec9301;
		border-radius: 15px;
		box-shadow: 1px 2px #c5aa63;
	}

#qo-notes {
	text-align: center;
	font-style: italic;
}
/*#endregion*/

/*#region Order Pad */
.msgop {
}

#msgop-items {
	width: 100%;
}

	#msgop-items .vCartBookSearchTemplate {
		display: none;
	}

	#msgop-items tr {
		vertical-align: top;
	}

	#msgop-items td {
		text-align: center;
	}

		#msgop-items td.vCartBookSIdSearch {
			width: 85px;
		}

	#msgop-items input.vCartBookSIdSearchInput {
		width: 100%;
	}

	#msgop-items .vCartBookSIdSearchList {
		position: absolute;
		background: white;
		padding: 5px;
		box-shadow: 1px 1px 2px #c5aa63;
	}

		#msgop-items .vCartBookSIdSearchList:empty {
			display: none;
		}

	#msgop-items input.vCartBookSIdSearchTitleInput {
		width: 95%;
	}

	#msgop-items .vCartBookSearchBookPriceLabel:before {
		content: '$';
	}

	#msgop-items td.vCartBookSIdQuantity input {
		width: 45px;
		text-align: right;
	}
/*#endregion*/

/*#region advanced search w filter*/

#asearch-filter-trigger {
	display: none;
	font-size: 32px;
	text-align: center;
	background: url(/images/button_menu.png) no-repeat center right;
}

	#asearch-filter-trigger.msg-exp-open {
		background: url(/images/button_menu_open.png) no-repeat center right;
	}

#asearch-filter {
	min-height: 250px;
	text-align: left;
	margin-bottom: 0px;
}

	#asearch-filter .treenav-heading {
		margin-bottom: 10px;
	}

.asearch-filter-section {
	margin: 5px;
	font-size: 12px;
	color: black;
}

	.asearch-filter-section > span {
		display: block;
	}

#asearch-filter-button {
	margin: 15px;
}

#asearch-marketing {
	text-align: center;
}

	#asearch-marketing img {
		margin-bottom: 10px;
	}

/*#endregion*/

/*#region Sliders */

/* General */
.placardslider .flex-control-nav {
	bottom: 5px;
	z-index: 5;
}

.placardslider .flex-control-paging li a {
	background: rgba(255, 255, 255, 0.5);
}

	.placardslider .flex-control-paging li a.flex-active {
		background: rgba(255, 255, 255, 0.9);
	}

.placardslider .flex-direction-nav a {
	color: rgba(255, 255, 255, 0.8);
}

.vslider .slides li {
	height: 284px;
}

.vslider .slides img {
	margin-bottom: 10px;
}

.vslider-nav {
	display: none;
}

.vslider:hover .vslider-nav {
	display: block;
}

.vslider-nav img {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 50%;
	margin-left: -16px;
}

	.vslider-nav img.prev {
		top: 0;
	}

	.vslider-nav img.next {
		bottom: 0;
	}

.slider-pane {
	white-space: nowrap;
}

.slider-leftnav, .slider-rightnav {
	position: absolute;
	top: 0px;
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 32px;
}

.slider-leftnav {
	left: 4px;
	background: url('/images/prev.png') center 85px no-repeat;
}

.slider-rightnav {
	right: 4px;
	background: url('/images/next.png') center 85px no-repeat;
}

.slider-window {
	display: inline-block;
	overflow: hidden;
	z-index: 0;
	*display: block;
	-ms-zoom: 1;
	zoom: 1;
	width: 100%;
}

.slider-item {
	display: inline-block;
	margin: 0px -3px 0px 0px;
	*display: block;
	-ms-zoom: 1;
	zoom: 1;
	vertical-align: top;
}

	.slider-item img {
		max-height: 220px;
	}

	.slider-item .description {
		overflow: hidden;
		-ms-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
	}

/* Specific (per site or per slider) */
.productslider {
	width: 670px;
	position: relative;
	padding: 0px 40px;
	margin: 0px auto;
}

	.productslider .slider-item {
		width: 158px;
		padding: 5px;
		text-align: center;
		vertical-align: baseline;
	}

	.productslider .title a {
		overflow: hidden;
		-ms-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		font-weight: bold;
		max-width: 130px;
		display: inline-block;
	}

	.productslider .byline {
		overflow: hidden;
		-ms-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		font-size: 12px;
	}

	.productslider .date {
		color: #c5aa63;
		font-size: 12px;
	}

	.productslider .price {
		font-weight: bold;
		color: #25408F;
	}

	.productslider .retailprice {
		text-decoration: line-through;
		margin-right: 5px;
	}

	.productslider .saleprice {
		color: #c72d2f;
	}

/*#endregion*/

/* Media queries included here to reduce load time by reducing HTTP requests. */

@media screen and (min-width: 1024px) {
	#treenav {
		display: block !important;
	}
}

@media screen and (max-width: 1023px) {
	.centerpage {
		margin: 0px 12px;
	}

	#header-links a {
		display: inline-block;
		border-right: 1px solid #85bd3c;
		border-bottom: 1px solid #85bd3c;
		padding: 2px 5px;
		margin-top: 3px;
	}

	#header-links .separator {
		display: none;
	}

	#header-message {
		float: none;
		margin: auto;
	}

	#navbar {
		text-align: center;
		background: #000000;
	}

	#search-form {
		float: none;
	}

	#navbar-links {
		float: none;
	}

	#main-content, .main-left, .main-right {
		float: none;
		margin: 0px 0px 15px 0px;
		width: auto !important;
	}

		#main-content.pages {
			margin-left: 0px;
			max-width: none;
		}

	.main-right {
		text-align: center;
	}

		.main-right .vslider {
			display: none;
		}

	#treenav-trigger {
		display: block;
	}

	#treenav {
		display: none;
		min-height: 0px;
		background-color: transparent;
		padding: 0px;
	}

		#treenav, #treenav a {
			color: white;
			text-shadow: 1px 1px 0px #ffa800;
		}

	.treenav-heading {
		display: none;
	}

	.treenav-menu {
		color: white;
		margin-bottom: 5px;
		background: rgba(23, 23, 23, 0.73);
	}

	.treenav-submenu {
		padding: 0px 10px;
		margin: 0px 4px;
		border-left: 1px solid #929292;
		border-right: 1px solid #929292;
	}

		.treenav-submenu .treenav-item {
			margin-left: 5px;
		}

	.treenav-item {
		margin: 1px 0px;
		padding: 10px;
		text-align: center;
		font-size: 18px;
		border-bottom: 1px solid #000000;
		background-color: #232323;
		background-image: none;
		background-image: linear-gradient(#f9f3db, #ffa800);
		background-image: -ms-linear-gradient(top, #f9f3db0%, #ffa800 0%);
		background-image: url(/images/li-box.png);
		background-position: right center;
	}

		.treenav-item.msg-exp-t {
			background-image: url(/images/arrowr.png);
			background-position: right center;
		}

			.treenav-item.msg-exp-t.msg-exp-open {
				background-image: url(/images/arrowd.png);
				background-position: right center;
				background-repeat: no-repeat;
			}

		.treenav-item:hover {
			background: #5771bf;
		}

	#treenav-trigger {
		display: none;
	}

	.mobile-menu a {
		color: #ffffff;
	}

	#treenav .msg-exp-t {
		font-weight: bold;
		font-size: 18px;
		background-color: #ffa800;
		background-image: url(/images/arrowr.png);
		background-image: url(/images/arrowr.png), linear-gradient(#dee6eb, #006699);
		background-image: url(/images/arrowd.png), -ms-linear-gradient(top, #dee6eb0%, #006699 0%);
		background-position: right center;
	}

		#treenav .msg-exp-t.msg-exp-open {
			background-color: #ffa800;
			background-image: url(/images/arrowd.png);
			background-image: url(/images/arrowd.png), linear-gradient(#dee6eb, #006699);
			background-image: url(/images/arrowd.png), -ms-linear-gradient(top, #dee6eb0%, #006699 0%);
			background-position: right center;
		}

	#pnlSignup {
		text-align: center;
		margin: 10px 0px;
		padding: 10px 0px;
		border-top: 2px solid #cecece;
		border-bottom: 2px solid #cecece;
	}

		#pnlSignup > span {
			display: block;
			margin: 0px 10px;
			font-size: 16px;
			vertical-align: top;
			line-height: 32px;
			-ms-zoom: 1;
			zoom: 1;
		}

		#pnlSignup > input {
			font-size: 12px;
			vertical-align: top;
		}

			#pnlSignup > input[type='text'] {
				padding: 7px;
				margin: 0px 10px;
				width: 200px;
			}

	#footer-nav a {
		padding: 10px;
	}

	.home-row .vslider {
		display: none;
	}

	.home-marketing img {
		margin: 10px;
	}
}

@media screen and (max-width: 768px) {
	#header-logo {
		float: none;
		text-align: center;
	}

	#header-tools {
		text-align: center;
	}

	#header-banner {
		position: static;
		top: 35px;
		width: auto;
		text-align: center;
	}

	#header-cart {
		text-align: center;
	}

	.home-marketing {
		display: none;
	}

	.home-marketing-mobile {
		display: none;
		text-align: center;
	}

		.home-marketing-mobile img {
			max-width: 50%;
		}

	.advanced-search-box {
		margin-left: 0px;
	}

	#navbar-links {
		background-color: transparent;
	}

		#navbar-links a {
			background-color: #b9b9b9;
			box-shadow: 2px 2px 2px #545454;
			margin: 3px 0px;
			padding: 5px;
		}

		#navbar-links .separator {
			display: none;
		}

	#footer-links ul {
		border: none;
	}

	#footer-copyright, #footer-text-links {
		float: none;
		text-align: center;
	}

	#footer-nav {
		padding: 0px;
	}

	.list-item-image, .list-item-addtocart {
		float: none;
		display: inline-block;
		*display: inline;
		-ms-zoom: 1;
		zoom: 1;
		vertical-align: top;
		text-align: center;
		margin-right: 20px;
	}

	.list-item-detail {
		margin: 0px;
	}

	.list-subcategories {
		display: block;
	}

	.product-content-section {
		min-width: 400px;
	}

	#product-content-samples div {
		min-width: 400px;
	}

	#product-marketing {
		float: none;
		max-width: none;
		text-align: center;
	}

		#product-marketing img {
			margin: 10px;
		}

	#product-content {
		margin-right: 0px;
		float: none;
	}

	#product-cover {
		width: auto;
		float: none;
		text-align: center;
		margin-bottom: 15px;
	}

	#product-cover-image {
		max-width: none;
		max-height: 300px;
		margin-bottom: 15px;
	}

	#product-social {
		margin-left: 10px;
		vertical-align: top;
	}

	#product-info {
		margin-left: 0px;
		min-height: 0px;
	}

	.productslider {
		width: 405px;
		padding: 0px 25px;
	}

		.productslider .slider-item {
			width: 98px;
			display: inline-table;
		}

	#bulk-pricing {
		display: inline-block;
		float: none;
		background-color: #E9E5E5;
		padding: 5px;
		border-radius: 5px;
		width: 220px;
		margin: 10px 0px;
	}

	#footer-marketing {
		text-align: center;
	}

	#mobile-menu-trigger {
		display: block;
		background: #0c0c0c;
	}

	.treenav-item.msg-exp-t span {
		display: block !important;
	}

	.treenav-item span {
		display: block !important;
	}

	#navbar span {
		display: none;
	}

	#mobile-menu-trigger {
		font-size: 32px;
		text-align: center; /*background: url(/images/button_menu.png) no-repeat center right;*/
	}
	/*#mobile-menu-trigger.msg-exp-open { background: url(/images/button_menu_open.png) no-repeat center right; }*/
	#fake-menu {
		text-align: right;
		margin: -9px 15px -8px 0px;
		color: white;
		background: #0f160e;
	}
}

@media screen and (max-width: 480px) {
	#header-cart label, #header-cart .separator {
		display: none;
	}

	#header-cart a {
		margin: 4px;
	}

	#home-featured {
		display: none;
	}

	#search-form {
		height: auto;
		padding: 0px 0px 0px 0px;
	}

	#search-result {
		margin-left: 0px;
	}

	#search-form input[type='text'] {
		width: 175px;
	}

	.list-item {
		text-align: center;
	}

	.list-item-detail {
		text-align: left;
	}

	#product-content-samples div {
		min-width: 300px;
	}

	.home-marketing {
		display: block;
		float: none;
	}

	.home-row .placardslider {
		display: none;
	}

	#product-cart {
		text-align: left;
	}

	.product-request {
		display: block;
	}

	.productslider {
		width: 100%;
		padding: 0px;
	}

		.productslider .slider-leftnav, .productslider .slider-rightnav {
			display: none;
		}

		.productslider .slider-pane {
			white-space: normal;
			margin-left: 0px !important;
		}

	#product-social {
		margin-left: 0px;
	}

	.msg-tab-bar {
		display: none;
	}

	.msg-tab-alt {
		display: block;
		text-align: center;
	}

	.msg-tab-target {
		display: block !important;
		min-width: auto;
	}

	#wishlist-item-details {
		margin-left: 0px;
	}

	#newsletter_select {
		min-height: auto;
	}

	.offers-container {
		display: inline-block;
	}

		.offers-container > div {
			padding: 0 0;
		}

	.offers-desc {
		width: 200px;
		display: inline-block;
		float: left;
		max-width: none;
	}

	.offers-price {
		float: right;
		width: 137px;
	}

	.offers-add-cart {
		width: 50%;
		margin: 0 auto;
	}

	.campaign_input_container {
		background-color: #6D6D6D;
		overflow: hidden;
		color: white;
		width: auto;
		display: inline-flex;
		align-content: center;
		align-items: center;
		min-height: 35px;
		padding: 15px;
	}
}

@media screen and (max-width: 375px) {
	.list-grid .list-item {
		width: 155px !important;
	}
}

@media screen and (max-width: 320px) {
	.list-grid .list-item {
		width: 130px !important;
	}
}
