/*********** CSS RESET **********/

* {
	margin: 0;
	padding: 0;
	outline: none;
	text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow:none;
    text-rendering: optimizeLegibility;
}

html {
    margin: 0 !important;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
}
ol, ul {
	list-style: none;
}
a img {
	border: none;
}
a:active {
	outline: none;
}
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
	border: 0;
	margin: 0;
	padding: 0;
}
input[type="submit"], 
input[type="reset"], 
input[type="button"], 
input[type="text"], 
input[type="password"], 
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

/*********** GLOBAL STYLES **********/

body {
	overflow-x: hidden;
    background: #fff;
    font-size:14px;
	font-family: "open-sans",sans-serif;
	color: #545454;
}
.master-wrapper-page {
    margin: 0px auto;
}
h1,h2,h3,h4,h5,h6 {
	color: #333;
}
a {
	color: inherit;
	cursor: pointer;
}
a img {
	opacity: 0.99; /*firefox scale bug fix*/
    max-width: 100%;
}

table {
	width: 100%;
	border-collapse: collapse;
}
input[type="button"], input[type="submit"],
button, .button-1, .button-2 {
	font-family: Arial, Helvetica, sans-serif;
	cursor: pointer;
}
input[type="text"], input[type="password"] {
	border: 1px solid #999;
	background: #fff;
	padding: 7px;
	font-size: 13px;
	color: #333;
}
textarea {
	border: 1px solid #999;
	background: #fff;
	padding: 6px;
	font-size: 13px;
	color: #333;
}
select {
	border: 1px solid #999;
	background: #fff;
	padding: 2px;
	font-size: 13px;
	color: #333;
}
script {
    display: none !important;
}
input[type="text"]:focus, input[type="password"]:focus,
textarea:focus, select:focus {
	border: 1px solid #666;
}
input[type="checkbox"],
input[type="radio"] {
	vertical-align: middle;
}
.required, .message-error,
.field-validation-error,
.not-available-status,
.password-error {
	font-size: 11px;
	color: #c00;
}

.category-description ul,
.manufacturer-description ul,
.full-description ul,
.topic-html-content ul,
.topic-page ul,
.post-body ul,
.news-body ul {
	margin: 12px 0;
	padding-left: 36px;
	list-style: disc;
}
.category-description ol,
.manufacturer-description ol,
.full-description ol,
.topic-html-content ol,
.topic-page ol,
.post-body ol,
.news-body ol {
	margin: 12px 0;
	padding-left: 36px;
	list-style: decimal;
}
.category-description p,
.manufacturer-description p,
.full-description p,
.topic-html-content p,
.topic-page p,
.post-body p,
.news-body p {
	margin: 10px 0;
}
.category-description img,
.manufacturer-description img,
.full-description img,
.topic-html-content img,
.topic-page img,
.post-body img,
.news-body img {
	max-width: 100%;
    height: auto;
}


/*********** GLOBAL FORMS & GLOBAL TABLES ***********/

.fieldset, .section {
	position: relative;
	margin-bottom: 25px;
}
.fieldset .title,
.section .title {
	margin-bottom: 10px;
    text-transform: uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #545454;
}
.form-fields {
	position: relative;
    border: none;
    padding: 0px;
    color: #333;
}
.inputs {
	margin: 8px 0;
    position: relative;
    font-size: 0;
}
    .inputs * {
        font-size: 12px;
    }
.inputs:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}
.inputs > * {
    vertical-align: middle;
}
.inputs label {
	width: 100%;
    text-align: left;
    margin-top: 6px;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    vertical-align: middle;
    display:inline-block;
}
.inputs input[type="text"],
.inputs input[type="password"] {
	width: 312px;
}
input[type="text"],
input[type="password"],
textarea, select {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
}
.inputs select {
	padding: 6px;
}
.inputs textarea {
	width: 312px;
	height: 150px;
}
.inputs .field-validation-valid {
	font-size: 11px;
	color: #690;
}

.inputs .option-list {
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}
    .inputs .option-list li {
        float: left;
    }
    .inputs .option-list label {
        width: auto;
    }

.captcha-box {
	margin-bottom: 15px;
	text-align: center;
	line-height: 0; /*MOZ line-height bug fix*/
}
.captcha-box > div {
	display: inline-block;
}


/*********** BAR NOTIFICATION & JQUERY POPUPS  ***********/

.bar-notification {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 28px;
	box-shadow: 0 1px 2px #666;
	line-height: 28px;
	color: #fff;
	opacity: 0.95;
	filter: alpha(opacity=95);
}
.bar-notification.success {
	border-bottom: 1px solid #bd2;
	background: #9b0;
}
.bar-notification.error {
	border-bottom: 1px solid #f55;
	background: #f00;
}
.bar-notification > * {
	float: left;
}
.bar-notification .content {
	margin-left: 10px;
}
.bar-notification .content a {
	color: #fff;
	text-decoration: underline;
}
.bar-notification .close {
	float: right;
	width: 16px;
	height: 16px;
	margin: 5px;
	border: 1px solid #666;
	background: #fff url('../img/close.png') center no-repeat;
	box-shadow: inset 0 0 1px #999;
	cursor: pointer;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.bar-notification .close:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}

.ui-dialog {
	z-index: 1001;
	border: 1px solid #ccc;
	box-shadow: 0 1px 2px #ddd;
	background: #fff;
}
.ui-dialog-titlebar {
	border: 1px solid #fff;
	border-bottom: 1px solid #bbb;
	overflow: hidden;
	background: #ddd url('../img/headpad.png') top repeat-x;
	padding: 10px;
	font-weight: bold;
	color: #333;
	text-shadow: 1px 1px #f6f6f6;
}
.ui-dialog-titlebar span {
	float: left;
	line-height: 18px;
	text-transform: uppercase;
}
.ui-dialog-titlebar button {
	float: right;
	width: 16px;
	height: 16px;
	border: 1px solid #666;
	overflow: hidden;
	background: #fff url('../img/close.png') center no-repeat;
	box-shadow: inset 0 0 1px #999;
	text-indent: 999px;
	opacity: 0.6;
	filter: alpha(opacity=60);
}
.ui-dialog-titlebar button:hover {
	opacity: 0.9;
	filter: alpha(opacity=90);
}
.ui-dialog-content {
	height: auto !important;
	padding: 10px;
	line-height: 18px;
}
.ui-dialog-content .topic-html-content {
    margin: 10px 0 0;
}
.ui-dialog-content .topic-html-content-body {
    max-height: 200px;
    overflow-y: scroll;
}
.ui-dialog-content .topic-html-content p {
    margin: 0;
}
.ui-dialog-buttonset {
    padding: 10px;
    text-align: right;
}
.ui-dialog-buttonset button {
	min-width: 60px;
	border: 1px solid #bbb;
	margin-left: 5px;
	background: #eee;
	padding: 5px;
	color: #333;
	text-shadow: 1px 1px #eee;
}
.ui-dialog-buttonset button:hover {
	background: #ddd;
}

.eu-cookie-bar-notification {
	position: fixed;
    top: 50%;
	left: 50%;
	z-index: 1002;
	width: 450px;
	max-width: 95%;
	height: 180px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: -90px 0 0 -225px;
    border: 1px solid #bbb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2), inset 0 0 0 1px #fff;
    background: #fff url('../img/noise.png') repeat;
    padding: 20px;
	text-align: center;
}
.eu-cookie-bar-notification .text {
	margin-bottom: 20px;
	line-height: 20px;
}
.eu-cookie-bar-notification button {
	min-width: 60px;
	margin: 10px 0;
	border: 1px solid #000;
	background: #333;
	box-shadow: inset 0 0 1px #ccc;
	padding: 5px;
	font-size: 14px;
	color: #fff;
}
.eu-cookie-bar-notification button:hover {
	border-color: #111;
	background: #555;
}
.eu-cookie-bar-notification a {
	display: block;
	font-weight: bold;
	color: #333;
}
.eu-cookie-bar-notification a:hover {
	text-decoration: underline;
}


/*********** HEADER & NAVIGATION ***********/

.admin-header-links {
	height: 35px;
	margin-bottom: 0px;
    margin-top:-15px;
	background: none;
	text-align: center;
}
.admin-header-links a {
    display: inline-block;
   /* border: 1px solid #222;
    background: #666;*/
    margin: 8px 12px 0;
	font-weight: bold;
    color: #333;
}
.admin-header-links a:hover {
	/*background: #777;*/
	text-decoration: underline;
}

.header-line {
    width: 990px;
    background: url('../img/header-line.png') no-repeat center top;
	padding: 3px 0 0;
    margin: 0 auto 1px;
}

.mobile-menu
{
    display: none;
}

.header-links-wrapper {
    position: relative;
    text-align: right;
    float:right;
    margin:5px 0;
}
.header-links-wrapper span,
.header-links-wrapper a {
	display: inline-block;
	font-size: 12px;
	line-height: 32px;
	color: #545454;
    text-transform:uppercase;
    font-weight:300;
    font-family: "brandon-grotesque",sans-serif;
}
.header-links-wrapper a:hover,
.header-links-wrapper a:hover span {
	text-decoration: underline;
}
.header-links li {
    display: inline-block;
	margin: 0;
}

.header-links li:first-child span
{
    display:inline-block;
    padding-left:8px;
    padding-bottom:4px;
    vertical-align:middle;
}

.header-links .cart-qty {
	background: url('../img/icon3.png') left 10px no-repeat;
	padding-left: 20px;
}

.flyout-cart {
    display: none;
    position: absolute;
    top: 31px;
    left: 55%;
    z-index: 99999;
    width: 300px;
    margin-left: -150px;
    background: #fff;
    text-align: left;
}
.flyout-cart.active {
	display: block;
}
.mini-shopping-cart {
	box-shadow: 0 0 3px rgba(0,0,0,0.4);
	padding: 10px;
	font-size: 11px;
}
.mini-shopping-cart * {
	line-height: normal !important;
}
.mini-shopping-cart a {
	font-weight: bold;
	color: #333 !important;
}
.mini-shopping-cart a:hover {
	color: #000;
	text-decoration: underline;
}
.mini-shopping-cart .count {
	padding: 5px 0;
	color: #333;
}
.mini-shopping-cart .items{
	margin-bottom: 10px;
	background: #fff;
}
.mini-shopping-cart .item {
	border-bottom: 1px dotted #ccc;
	overflow: hidden;
	padding: 8px;
}
.mini-shopping-cart .item.first {
	border-top: 1px dotted #ccc;
}
.mini-shopping-cart .item .picture {
	float: left;
	width: 50px;
	text-align:center;
}
.mini-shopping-cart .item .picture a {
	display: block;
}
.mini-shopping-cart .item .product {
	margin-left: 56px;
}
.mini-shopping-cart .item .name {
	margin-bottom: 8px;
}
.mini-shopping-cart .item .attributes {
	margin: 0;
}
.mini-shopping-cart .item .price span,
.mini-shopping-cart .item .quantity span {
	color: #000;
}
.mini-shopping-cart .totals {
	margin-bottom: 10px;
	text-align: right;
	font-size: 12px;
	color: #333;
}
.mini-shopping-cart .totals strong {
	color: #c00;
}
.mini-shopping-cart .buttons {
	text-align:right;
}
.mini-shopping-cart input[type="button"] {
	display: inline-block;
	border: 1px solid #999;
	background: #bbb;
	box-shadow: inset 0 0 1px #fff;
	padding: 5px 10px;
	text-align: center;
	color: #fff;
}
.mini-shopping-cart input[type="button"]:hover {
	border-color: #888;
	background: #999;
}

.master-wrapper-content {
    padding: 15px;
    background: #fff;
    width: 990px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.header {
	margin-bottom: 20px;
}
.header:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}
.header-logo {
	float: left;
    line-height: 0;
    margin-top: 0;
}
.header-logo a {
	display: inline-block;
	line-height: 0; /*MOZ line-height bug fix*/
}
.header-selectors-wrapper {
	float: right;
	margin: 5px 0 15px;
}
.header-selectors-wrapper > div {
	float: right;
	margin-left: 15px;
}

/* custom selectors start */
.new_select {
    background: #fff url('../img/custom-selector.png') no-repeat right center;
    width: 98px !important;
    height: 22px;
    border: 1px solid #999;
    cursor: pointer;
    z-index: 1003 !important;
}
.new_select > span {
    display: block;
    line-height: 22px;
    padding: 0 24px 0 4px;
}
.styleSelect_item {
    top: 22px !important;
    left: -1px !important;
    width: 100%;
    border: 1px solid #aaa;
}
.styleSelect_item ul {
    background: #fff;
}
.styleSelect_item li span {
    line-height: 18px;
    padding: 2px 2px 2px 5px;
}
.styleSelect_item li span:hover {
	background: #ddd;
}
/* custom selectors end */

.language-list {
	vertical-align: middle;
    line-height: 0;
    max-width: 455px;
}
.language-list li {
    display: inline-block;
    margin: 0 2px;
}
.language-list a {
    position: relative;
	display: block;
    width: 24px;
    height: 24px;
    line-height: 0;
}
.language-list img {
    position: absolute;
	width: 18px;
    height: 12px;
    top: 50%;
    left: 50%;
    margin-left: -9px;
    margin-top: -6px;
}

.search-box {
	float: right;
    clear: right;
    margin-right:-8px;
    margin-top: 30px;
}

.search-box ul
{
    list-style:none;
    padding:0;
}

.search-box ul li
{
    display:inline-block;
    text-transform:uppercase;
    font-size:13px;
    font-weight:300;
    font-family: "brandon-grotesque",sans-serif;
    float:left;
    margin-right:8px;
    height:24px;
    line-height:24px;
}

.search-box ul li:first-child span
{
    display:inline-block;
    padding-left:8px;
    padding-bottom:4px;
    vertical-align:middle;
}

.search-box form:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}
.search-box input.search-box-text {
	float: left;
	width: 120px !important;
	height: 24px;
	border-color: #999;
	padding: 0 6px;
	line-height: 20px;
    border:solid 1px #eee;
    margin-right:4px;
}
.search-box input.search-box-text:focus {
	border-color: #666; /*override*/
}
#instant-search-categories {
	float: left;
	width: 95px;
    height: 32px;
    margin: 0 0 0 -1px;
    padding: 6px;
}
.search-box .search-box-button {
	float: left;
	width: 70px;
	height: 24px;
	border: none;
	overflow: hidden;
	background: #313d71;
    font-size:11px;
    font-family: "brandon-grotesque",sans-serif;
    text-transform:uppercase;
    color:#fff;
}
.search-box .search-box-button:hover {
	background-color: #3b4987;
}
/*Default Autocomplete start*/
.ui-helper-hidden-accessible {
	display: none;
}
.ui-autocomplete.ui-menu.ui-widget.ui-widget-content {
	z-index: 1002 !important;
    width: 334px !important;
	margin-top: -1px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    background: #fff;
    border: 1px solid #999;
    border-top: none;
}
.ui-autocomplete.ui-menu.ui-widget.ui-widget-content li {
	border-top: 1px solid #ccc;
}
.ui-autocomplete.ui-menu.ui-widget.ui-widget-content a {
	display: block;
	padding: 8px;
	font-size: 11px;
	color: #666;
}
.ui-autocomplete.ui-menu.ui-widget.ui-widget-content a:hover,
.ui-autocomplete.ui-menu.ui-widget.ui-widget-content .ui-state-focus {
	background: #eee;
	color: #000;
	cursor: pointer;
}
.ui-autocomplete.ui-menu.ui-widget.ui-widget-content img {
	vertical-align: middle;
	margin-right: 5px;
}
/*Default Autocomplete end*/

.header-menu {
	position: relative;
	z-index: 1001;
	margin: 0px -15px -5px;
	display: block;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
	background: none;
}
.header-menu:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}
.header-menu .top-menu {
    xdisplay: table-row;
}
.header-menu > ul > li 
{
	display: inline-block;
    float:left;
}
.header-menu > ul > li > a,
.header-menu > ul > li > span 
{
    display: inline-block;
	position: relative;
	padding: 5px 15px;
	text-align: center;
    white-space: nowrap;
    cursor: pointer;
    font-size:15px;
    font-family: "brandon-grotesque",sans-serif;
    text-transform:uppercase;
    font-weight:700;
}

.header-menu > ul > li > a > em
{
    font-weight:300;
    font-style:italic;
    font-size:13px;
    text-transform:lowercase;
}

.header-menu > ul > li > a > span
{
    font-weight:300;    
    font-size:13px;
}

.header-menu > ul > li > a > i
{
    font-size:16px;
    padding-left:3px;
}

.header-menu > ul > li:hover > a,
.header-menu > ul > li:hover > span 
{	
	border-left-color: transparent;
	background: none; /*fallback*/
}

.menu-title {
    display: none;
}

.header-menu .sublist {
    display: none;
    position: absolute;
	top: 42px;
    z-index: 1;
	min-width: 200px;
    border-top: 1px solid #aaa;
    box-shadow: 0 1px 5px rgba(0,0,0,0.15), inset 0 0 0 1px #ddd;
    background: #fff;
	padding: 8px 0;
}
.header-menu .sublist.active {
	display: block;
}
.header-menu .sublist li {
    position: relative;
}
.header-menu .sublist li a {
	display: block;
    background: url('../img/arrow.png') 15px center no-repeat;
	padding: 8px 16px 8px 24px;
	color: #333;
}
.header-menu .sublist li:hover > a {
	background-color: #f0f0f0;
}
.header-menu .sublist .sublist {
	top: -8px;
	left: 100%;
	border-top: none;
	box-shadow: 0 1px 5px rgba(0,0,0,0.15)
}

/*********** HOME BANNER ***********/

.home-banner
{
    width:100%;
    max-width:1300px;
    margin: 0 auto;
    border-top:solid 4px #313d71;
    position:relative;
}

.home-banner .slider-wrapper 
{
    margin-bottom: 0px;
}

.home-banner .home-banner-slogan
{
    width: 360px;
    background:rgba(0,0,0,0.6);
    position:absolute;
    bottom:0;
    left:50%;
    -webkit-transform: translateX(-50%);
    -moz-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
    -o-transform:translateX(-50%);
    transform:translateX(-50%);
    color:#fff;
    z-index:6000;
    text-align:center;
    padding-bottom:10px;
}

.home-banner .home-banner-slogan p
{
    font-size:16px;
    font-family: "brandon-grotesque",sans-serif;
    text-transform:uppercase;
    font-weight:700;
    width: 500px;
    margin: 15px auto 15px;
}

.home-banner .home-banner-slogan p.home-welcome
{
    width:190px;
    font-size:14px;
    background: url(../img/home-banner-title-bg.png) left center no-repeat, url(../img/home-banner-title-bg.png) right center no-repeat;
    margin-bottom: 10px;
}


/*********** HOME BOXES ***********/

.homebox-grid
{
    overflow:hidden;

}

.homebox
{
    width:470px;
    float:left;
    margin:0 0 20px 20px;
    background: url(../img/homebox-title-bg.png) 0px 16px repeat-x;
}

.homebox:first-child
{
    margin:0 0 20px 0px;
}

.homebox p
{
    font-weight:600;
    margin-bottom:10px;
}

.homebox .homebox-title p
{
    font-size:25px;
    font-family: "brandon-grotesque",sans-serif;
    text-transform:uppercase;
    font-weight:700;
    display:inline-block;
    background:#fff;
    padding-right:10px;
}

.homebox .homebox-title sup
{
    font-size:14px;
    display:inline-block;
    padding-bottom:0px;
    background: url(../img/homebox-title-bg.png) left bottom repeat-x;
}

.homebox p.homebox-subtitle
{
    font-size:16px;
    font-family: "brandon-grotesque",sans-serif;
    text-transform:uppercase;
    font-weight:700;    
    color:#313d71;
    margin-top:5px;
    margin-bottom:10px;
}

.homebox img
{
    float:right;
    margin-top:5px;
    margin-left:10px;
}

.homebox .learn-btn
{
    display:inline-block;
    padding:5px 20px;
    font-size:12px;
    text-transform:uppercase;
    background:#313d71;
    color:#fff;
    margin-top:5px;
}

.homebox .learn-btn:hover
{
    background:#273059;
}


/*********** FOOTER ***********/

.footer {
	padding: 0;
    background: none;
}
.footer-upper {
    width: 960px;
    margin: 0 auto 20px;
    border-top:solid 1px #eee;
    padding-top:15px;
}
.footer-upper:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;        
}
.footer-block {
    float: left;
    width: 24.7%;
    margin-left: 0.4%;
}
.footer-block:first-child {
	margin-left: 0;
}
.footer-block h3 {
    font-size:12px;
    font-family: "brandon-grotesque",sans-serif;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:10px; 
}

.footer-block p
{
    font-size:12px;
    margin-bottom:15px;
    font-weight:600;
}

.footer-block p a
{
    color:#313d71;
}

.footer-block ul 
{	
    padding: 0px;	
}
.footer-block li a 
{
    display: block;
	background: none;
	padding: 0;
    color:#545454;	
    font-size:12px;
    font-weight:600;
}
.footer-block li a:hover {
	text-decoration: underline;
}

.footer-block-first li {
    padding: 6px 0 6px 32px;
}
.footer-block-first li.phone {
	background: url('../img/icon-phone.png') no-repeat left center;
}
.footer-block-first li.mobile {
	background: url('../img/icon-cellphone.png') no-repeat left center;
}
.footer-block-first li.email {
	background: url('../img/icon-email.png') no-repeat left center;
}

.footer-block li a span
{
    display:inline-block;
    width:11px;
    text-align:center
}

.footer-lower {
	overflow: hidden;
    width: 990px;
    margin: 0 auto;
}
.footer-lower h3 {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: normal;
	color: #333;
}
.accepted-payment-methods {
	float: left;
}
.accepted-payment-methods ul {
	overflow: hidden;
}
.accepted-payment-methods li {
	float: left;
	width: 49px;
	height: 30px;
	margin-left: 10px;
	border: 1px solid #fff;
	background: url('../img/payment_sprite.png') no-repeat;
}
.accepted-payment-methods li:first-child {
	margin-left: 0;
}
.accepted-payment-methods .method1 {
	background-position: 0 0;
}
.accepted-payment-methods .method2 {
	background-position: -49px 0;
}
.accepted-payment-methods .method3 {
	background-position: -98px 0;
}
.accepted-payment-methods .method4 {
	background-position: -147px 0;
}
.accepted-payment-methods .method5 {
	background-position: -196px 0;
}
.accepted-payment-methods .method6 {
	background-position: -245px 0;
}

.subscribe-to-newsletter {
	position: relative;
	width: 242px;
	margin: auto;
}
.newsletter-email {
	overflow: hidden;
}
.newsletter-email input[type="text"] {
	float: left;
	width: 210px;
	height: 32px;
	padding: 0 6px;
	line-height: 28px;
}
.newsletter-email input[type="button"] {
	float: left;
	width: 32px;
	height: 32px;
	border: none;
	overflow: hidden;
	background: #333 url('../img/icon5.png') center no-repeat;
	text-indent: 999px;
}
.newsletter-email input[type="button"]:hover {
	background-color: #444;
}
.newsletter-validation,
.newsletter-result-block {
	position: absolute;
	top: 0;
	right: 0;
	width: 138px;
	height: 28px;
	overflow: hidden;
	line-height: 28px;
	color: #333;
}
.newsletter-validation .please-wait {
	display: none !important;
}

.bottom {
	min-height: 35px;
}
.bottom .center {
	width: 960px;	
	margin: auto;
}
.footer-disclaimer 
{
	float: left;	
    color: #545454;
    font-size:10px;
    line-height: 35px;
}

.footer-disclaimer img
{
    padding-right:5px;
}

.footer-powered-by {
	float: right;
	color: #545454;
	font-size: 10px;
	line-height: 35px;
}
.footer-powered-by a {
	color: #545454;
	text-decoration: underline;
}
.footer-powered-by a:hover {
	color: #444;
}

.footer-tax-shipping {
    width: 270px;
    margin: 0 auto;
	text-align: center;
}
.footer-tax-shipping a {
	text-decoration: underline;
}

.footer-store-theme {
    width: 250px;
    margin: auto;
    text-indent: -9999px;
    position: relative;
    padding-top: 40px;
}
.footer-store-theme select {
	position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    margin-left: -75px;
    margin-top: -12px;
}
.footer-store-theme select:focus {
    color: #000;
}



/*********** LEFT/RIGHT COLUMNS ***********/

.master-wrapper-main {
	min-height: 415px;
}
.master-wrapper-main:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}

.column2-wrapper
{
    margin-top: 5px;
    border-top: solid 1px #313d71;
    padding-top: 15px;
}

.side-2 {
	width: 220px;
	float: left;
}
.center-2 {
    float: right;
    width: 725px;
}
.block {
	margin-bottom: 20px;
}
.block .title {
	margin-bottom: 0px;
    background: #333;
    padding: 10px 15px 10px 10px;
    font-size: 16px;
    color: #fff;
}
.block .title strong {
	font-weight: normal;
}
.block .listbox {
	border: 1px solid #ddd;
	background: #fff;
}
.block .listbox:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
     line-height: 0;
}
.listbox .list > li {
    border-top: 1px solid #ddd;
}
.listbox .list > li:first-child {
	border-top: none;
}
.listbox .list > li > a {
	display: block;
	position: relative;
	background: url('../img/bullet4.png') 12px center no-repeat;
	padding: 10px 15px 10px 25px;
	font-size: 14px;
	color: #444;
}
.listbox .list > li.active > a,
.listbox .list > li > a.active {
	z-index: 1;
	width: 180px;
	margin: -1px 0 0 -1px;
	border-top: 1px solid #999; 
	border-bottom: 1px solid #999;
	background:	#bbb;
	padding-top: 12px;
	padding-bottom: 12px;
	color: #fff; 
}
.listbox .list > li > a:hover {
	z-index: 1;
	background-color: #eee;
	box-shadow: inset 0 0 1px #fff;
}
.listbox .list > li.active > a:hover,
.listbox .list > li > a.active:hover {
	background-color: #bbb;
	box-shadow: none;
}
.listbox .sublist {
	background: #f6f6f6;
	padding: 8px 10px 12px 30px;
}
.listbox .sublist .sublist {
	padding-left: 15px;
}
.listbox .sublist a {
	display: block;
	padding: 5px;
	color: #444;
}
.listbox .sublist a:before {
	content: "-";
	margin-right: 5px;
}
.listbox .sublist a:hover {
	color: #000;
    font-weight: bold;
}
.listbox .sublist > li.active > a {
	font-size: 13px;
	font-weight: bold;
	color: #000;
}

.block-popular-tags .listbox,
.block-poll .listbox {
    border: 1px solid #ddd;
    margin-top: 1px;
}
.listbox .tags {
	overflow: hidden;
	padding: 15px 10px 0;
}
.listbox .tags li {
    float: left;
    margin-right: 5px;
    height: 32px;
    overflow: hidden;
}
.listbox .tags a {
    display: block;
    color: #444;
    line-height: 32px;
}
.listbox .tags a:hover {
	color: #000;
	text-decoration: underline;
}
.listbox .view-all {
	border-top: 1px solid #ddd;
	padding: 10px;
	text-align: right;
}
.listbox .view-all a {
	color: #444;
}
.listbox .view-all a:hover {
	color: #000;
	text-decoration: underline;
}
.poll {
	padding-top: 15px;
}
.poll strong {
	display: block;
	margin-bottom: 10px;
	padding: 0 10px;
	color: #333;
}
.todays-poll-box strong {
	font-size: 16px;
}
.poll-options, .poll-results {
	margin-bottom: 10px;
	padding: 0 10px;
}
.poll-options li, .poll-results li {
	padding: 3px 0;
}
.poll-options li:hover {
	color: #000;
}
.poll .buttons, .poll-total-votes {
	border-top: 1px solid #ddd;
	padding: 10px;
	text-align: right;
}
.poll .buttons input {
	border: none;
	background: none;
	color: #444;
}
.poll .buttons input:hover {
	color: #000;
	text-decoration: underline;
}
.poll .please-wait {
}
.poll .poll-vote-error {
	color: #c00;
}
.poll-total-votes {
	display: block;
	margin-top: 15px;
	text-align: right;
}

.page {
	clear: both;
}

.page-title {
	margin-bottom: 15px;
}
.page-title h1 {
	font-size: 25px;
    font-weight: 400;
    font-family: "brandon-grotesque",sans-serif;
    text-transform: uppercase;
}

/********** CATEGORY PAGE **********/

.breadcrumb {
margin-top: 5px;
margin-bottom: 20px;
border-top: solid 1px #313d71;
padding-top: 15px;
}

.page-title + .breadcrumb {
    margin-top: -10px;
}
.breadcrumb ul {
	overflow: hidden;
}
.breadcrumb li {
	float: left;
	margin-left: 5px;
}

.breadcrumb li:first-child {
	margin-left: 0px;
}

.breadcrumb li * {
	color: #545454;
	text-transform: uppercase;
    font-size:11px;
}
.breadcrumb strong {
	color: #333;
}
.breadcrumb a:hover,
.breadcrumb a:hover span {
	text-decoration: underline;
}

.product-selectors {
	margin-bottom: 25px;
	background: #eee url('../img/block-pointer.png') no-repeat right center;
	padding: 8px;
    display:none;
}
.product-selectors:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}
.product-selectors > div {
	float: left;
	margin-right: 20px;
}
.product-selectors > div > span {
	font-style: italic;
}
.product-selectors select {
	min-width: 50px;
	margin-left: 5px;
	text-transform: lowercase;
	color: #444;
}
.product-viewmode {
	display: none;
}

.category-description,
.manufacturer-description,
.vendor-description {
	margin-bottom: 20px;
	padding: 0 5px;
	line-height: 18px;
}
.category-description strong,
.manufacturer-description strong,
.vendor-description strong {
	color: #333;
}

.product-filters-wrapper {
	display: none;
}

.item-grid
{
    margin:0 -15px;
    overflow:hidden;
}

.item-grid:after,
.product-grid:after,
.manufacturer-grid:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}
.item-box {
    float: left;
    width: 25%;
    margin: 0 0 30px;
    padding: 0 15px;
    background: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.item-box:nth-child(4n+1)
{
    clear:left;
}


.item-box .product-item,
.item-box .category-item,
.item-box .sub-category-item,
.item-box .manufacturer-item {
    position: relative;
    border: none;
	overflow: hidden;
    -webkit-transition: border .1s ease-in-out;
    -moz-transition: border .1s ease-in-out;
    transition: border .1s ease-in-out;
}

.item-box .product-item
{
    xheight:290px;
}

.item-box .product-title{
    
}

.item-box .title {
    position: absolute;
    top: 105px;
    left: 0;
    z-index: 1;
	border-top: 1px solid #fff;
    background: rgba(255,255,255,0.6);
    box-shadow: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align:center;
    -webkit-transition: background 300ms ease-out;
    -moz-transition: background 300ms ease-out;
    -o-transition: background 300ms ease-out;
    transition: background 300ms ease-out;
}

.item-box:hover .title, .item-box:focus .title
{
    background: rgba(255,255,255,0.95);
}

.item-box .product-title a
{
    display: block;
    overflow: hidden;
    font-size: 14px;
    font-family: "brandon-grotesque",sans-serif;
    text-transform:uppercase;
    font-weight:500;   
    padding: 10px 10px;
    color:#1b1b1b;    
    text-align:center;
}

.item-box .title a 
{
    display: block;
    overflow: hidden;
    font-size: 14px;
    font-family: "brandon-grotesque",sans-serif;
    text-transform:uppercase;
    font-weight:500;   
    padding: 10px 10px;
    color:#1b1b1b;
}

.item-box .title a span
{
    display:inline-block;
    font-size: 11px;
    padding-top:15px;
}

.item-box .picture {
	overflow: hidden;
    text-align:center;
    height:164px;
}
.item-box .picture a {
	display: block;
    position: relative;
    height:100%;
}
.item-box .picture img {
	position: relative;	
	width: auto;
    height:100%;
	margin: auto;
}

.home-page .item-box .picture img {
    height: auto;
    min-height: 100%;
    min-width: 100%;
}

.item-box .details {
    position: absolute;
    bottom: -191px;
    left: 1px;
    width: 99.2%;
    height: 188px;
    opacity: 0;
    box-shadow: 0 0 0 1px #fff;
    background: rgba(255,255,255,0.75);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 2;
}
.item-box:hover .details {
	bottom: 0 !important;
    opacity: 1;
}
.item-box .description {
	overflow: hidden;
	padding: 10px 10px 5px;
	color: #333;
}
.item-box .description a {
    display: block;
    height: 85px;
}
.item-box .product-rating-box {
	display: none;
}
.item-box .add-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
}
.item-box .prices,
.item-box .buttons {
	padding: 4px 10px;
	text-align: center;
}
.item-box .buttons {
    font-size: 0;
}
.item-box .old-price {
	
    font-family: "brandon-grotesque",sans-serif;
	font-size: 12px;
	color: #666;
	text-decoration: line-through;
    display:block;
    line-height: 1;
    margin-bottom: -3px;
}
.item-box .actual-price {    
    color: #333;
    display:block;
    font-family: "brandon-grotesque",sans-serif;
    font-size: 22px;
    font-weight: 500;
}
.tax-shipping-info {
    display: block !important;
}
    .tax-shipping-info a {
        color: #333;
        text-decoration: underline;
    }
.item-box input[type="button"],
.item-box .buynow-button {
	display: inline-block;
	border: 1px solid #000;
	background: #333;
	box-shadow: inset 0 0 1px #ccc;
	padding: 5px 15px;
	text-align: center;
	font-size: 16px;
	color: #fff;
}
.item-box input[type="button"]:hover,
.item-box .buynow-button:hover {
	border-color: #111;
	background: #555;
}

.home-page .item-box,
.cross-sells .item-box {
    width: 33.33333%;
    margin: 0;
    margin-bottom:20px;
}
.home-page .item-box:nth-child(4n+1),
.cross-sells .item-box:nth-child(4n+1) {
	margin-left: 0;
    clear: none;
}
.home-page .item-box:nth-child(3n+1),
.cross-sells .item-box:nth-child(3n+1)  {
    margin: 0;
    margin-bottom:20px;
    clear: left;
}

.home-page .item-box .picture
{
    height:218px;
}

.sub-category-grid {
	margin-bottom: 20px;
}

.product-grid {
	margin-bottom: 10px;
}

.home-page-category-grid
{
    margin-top:15px;
}

.product-grid .title,
.home-page-category-grid .title {
    margin-bottom: 15px;
    padding-left: 2px;
    font-size: 25px;
    color: #333;
}

.related-products-grid .title
{
    text-align:center;
    position:relative;
    margin-bottom:30px;
}

.related-products-grid .title strong
{
    display:inline-block;
    padding:2px 10px;
    background: #fff;
    position:relative;
    z-index: 5;
    font-size: 15px;
    text-transform:uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight:700 !important;
}

.related-products-grid .title hr
{
    position:absolute;
    z-index: 2;
    top:21px;
    width: 100%;
}

.product-grid .title strong,
.home-page-category-grid .title strong {
	font-weight: normal;
}
.product-grid a:hover img {
	opacity: 0.99 !important;
}

.cross-sells {
	margin-top: 30px;
}

.link-rss {
	float: right;
	width: 20px;
	height: 20px;
	overflow: hidden;
	background: url('../img/social_sprite.png') -197px center no-repeat;
	text-indent: 999px;
}

.pager {
	margin-bottom: 10px;
	overflow: hidden;
}
.pager ul {
	float: left;
}
.pager li {
	float: left;
	margin: 0 4px;	
}
.pager li * {
    float: left;
    width: 24px;
    height: 23px;
    border: 1px solid #999;
    overflow: hidden;
    background: #bbb;
    text-align: center;
    font-size: 12px;
    line-height: 23px;
    color: #fff;
}
.pager li *:hover,
.pager li span {
	border-color: #222;
	background: #444;
}
.pager li span {
	cursor: default;
}
.pager li.previous-page *,
.pager li.next-page *,
.pager li.first-page *,
.pager li.last-page * {
	background-position: center;
	background-repeat: no-repeat;
	text-indent: 999px;
}
.pager li.previous-page * {
	background-image: url('../img/prev.png');
}
.pager li.next-page * {
	background-image: url('../img/next.png');
}
.pager li.first-page * {
	background-image: url('../img/prev_first.png');
}
.pager li.last-page * {
	background-image: url('../img/next_last.png');
}


/********** LOOKBOOK PAGE **********/

.lb-content
{
    margin-top: 5px;
    border-top: solid 1px #313d71;
    padding-top: 15px;    
    padding-bottom: 0px;
}

.lb-box
{
    position:relative;
    margin-bottom: 30px;
}

.lb-point
{
    position:absolute;
    color:#fff;
    font-size:20px;
    line-height:1;
}

.lb-point i
{
    text-shadow: 0px 0px 2px #000;
    cursor:pointer;
}

.lb-point .lb-product-box
{
    background:#fff;
    padding:30px 20px 20px;
    color:#424242;
    position:absolute;
    text-align:center;    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    width:240px;
}

.lb-point.point-up .lb-product-box
{
    bottom: 30px;
    left:50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.lb-point.point-down .lb-product-box
{
    top: 30px;
    left:50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.lb-point.point-left .lb-product-box
{
    right: 30px;
    top:50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lb-point.point-right .lb-product-box
{
    left: 30px;
    top:50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lb-close
{
    position:absolute;
    top:5px;
    right:5px;
    line-height:1;
    cursor:pointer;
}

.lb-close i
{
    text-shadow:none;
}

.lb-point .lb-product-box img
{
    max-width:200px;
    max-height:150px;
}

.lb-point .lb-product-box .lb-product-name
{
    display: block;
    overflow: hidden;
    font-size: 14px;
    font-family: "brandon-grotesque",sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 0px;
    color: #1b1b1b;
    text-align: center;
}

.lb-point .lb-product-box a
{
    display:block;
    height: 34px;
    line-height:30px;
    border: 1px solid #000;
    background: #333;
    padding: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    margin-top: 0px;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.lb-point .lb-product-box a:hover
{
    border-color: #111;
    background: #555;
}


/********** PRODUCT PAGE **********/

.product-essential {
	margin-bottom: 30px;
}

.grouped-product-details-page .product-essential {
	margin-bottom: 0px;
}

.product-essential:after,
.product-details:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}

.gallery {
	float: left;
	width: 620px;
	margin-bottom: 20px;
}

.gallery .picture {
	position: relative;
	width: 620px;
	overflow: hidden;
	background: #fff;
}
    /*.gallery .picture:before {
        content: " ";
        display: block;
        padding-top: 100%;
    }*/
.gallery .picture img
{
    position:relative;
    max-width: 100%;
	max-height: 100%;
	margin: auto;
}

.gallery .picture-thumbs img,
.variant-picture img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}
.gallery .picture-thumbs {
	overflow: hidden;
}
.gallery .picture-thumbs a {
	position: relative;
	float: left;
	width: 100px;
	height: 100px;
	margin: 12px 0 0 12px;
	border: 1px solid #bbb;
	overflow: hidden;
	background: #fff;
}
.gallery .picture-thumbs a:nth-child(3n+1) {
	margin-left: 0;
}

/*Default Zoom start*/
#lbOverlay {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	cursor: pointer;
}
#lbCenter, #lbBottomContainer {
	position: absolute;
	z-index: 9999;
	overflow: hidden;
	background-color: #fff;
}
.lbLoading {
	background: #fff url('../img/loading.gif') no-repeat center;
}
#lbImage {
	position: absolute;
	left: 0;
	top: 0;
	border: 10px solid #fff;
	background-repeat: no-repeat;
}
#lbPrevLink, #lbNextLink {
	display: block;
	position: absolute;
	top: 0;
	width: 50%;
}
#lbPrevLink {
	left: 0;
}
#lbPrevLink:hover {
	background: url('../img/prevlabel.gif') no-repeat 0 15%;
}
#lbNextLink {
	right: 0;
}
#lbNextLink:hover {
	background: url('../img/nextlabel.gif') no-repeat 100% 15%;
}
#lbBottom {
	font-size: 10px;
	color: #666;
	line-height: 1.4em;
	text-align: left;
	border: 10px solid #fff;
	border-top-style: none;
}
#lbCloseLink {
	display: block;
	float: right;
	width: 66px;
	height: 22px;
	background: url('../img/closelabel.gif') no-repeat center;
	margin: 5px 0;
	outline: none;
}
#lbCaption, #lbNumber {
	margin-right: 70px;
}
#lbCaption {
	font-weight: bold;
}
#fancybox-wrap {
    z-index: 10010 !important;
}
/*Default Zoom end*/

.product-details-page .overview {
    position: relative;
    float: right;
    width: 310px;
    margin-bottom: 20px;
}
.overview .product-name 
{	
}
.overview .product-name h1 {
	font-size: 30px;
	color: #333;
    text-transform:uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight:700;
}
.overview .short-description,
.variant-overview .variant-description {
	margin-bottom: 15px;
	line-height: 18px;
}
.overview .buttons,
.back-in-stock-subscription,
.download-sample {
	overflow: hidden;
	margin-bottom: 15px;
    display:none;
}
.overview .buttons div {
	float: left;
	margin-left: 10px;
}
.overview .buttons div:first-child {
	margin-left: 0;
}
.overview .add-to-wishlist-button,
.variant-overview .add-to-wishlist-button,
.overview .add-to-compare-list-button,
.overview .email-a-friend-button,
.back-in-stock-subscription .subscribe-button,
.download-sample-button a {
	display: inline-block;
    float: left;
    border: 1px solid #999;
    background: #bbb;
    box-shadow: inset 0 0 1px 0 #fff;
    padding: 5px 10px;
    color: #fff;
}
.overview .add-to-wishlist-button:hover,
.variant-overview .add-to-wishlist-button:hover,
.overview .add-to-compare-list-button:hover,
.overview .email-a-friend-button:hover,
.back-in-stock-subscription .subscribe-button:hover,
.download-sample-button a:hover {
	border-color: #888;
	background: #999;
}
.overview .sku, .variant-overview .sku,
.overview .gtin, .variant-overview .gtin,
.product-details-page .free-shipping,
.product-details-page .product-vendor {
	margin: 8px 0;
}

.overview .sku
{
    margin: 0;
    margin-top:-6px;
    line-height:1;
    text-transform:uppercase;
    font-size:11px;
}

.overview .stock,
.variant-overview .stock,
.overview .manufacturers {
	margin-bottom: 10px;
}
.overview span.value,
.variant-overview span.value {
	
}
.overview .free-shipping,
.variant-overview .free-shipping {
	width: 80px;
    height: 80px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #ab0;
    border-radius: 40px;
	background: #bc0;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
	padding-top: 16px;
	text-align: center;
    font-size: 16px;
	color: #fff; 
	cursor: default;  
}
.overview .manufacturers a {
	color: #333;
	font-weight: bold;
	text-decoration: underline;
}
.overview .manufacturers a:hover {
	color: #000;
}
.product-no-reviews,
.product-reviews-overview {
	margin-bottom: 20px;
}
.product-no-reviews a {
	text-decoration: underline;
}
.product-no-reviews a:hover,
.product-review-links a:hover {
	color: #333;
	text-decoration: underline;
}
.product-review-box {
	margin-bottom: 5px;
}
.product-review-box .rating {
	width: 55px;
	height: 12px;
	background: url('../img/rating1.gif') repeat-x;
}
.product-review-box .rating div {
	height: 12px;
	background: url('../img/rating2.gif') repeat-x;
}

.attributes dl {
	overflow: hidden;
}
.attributes dt {
	float: left;
	clear: left;
	width: 85px;
	margin-right: 10px;
	background: #ddd url('../img/bullet4.png') 95% center no-repeat;
	padding: 4px;
	color: #333;
	font-weight: bold;
	white-space: nowrap;
}
.attributes dd {
	float: left;
	max-width: 280px;
	margin-bottom: 12px;
}
.attributes li {
	margin: 3px 0;
}
.attributes select {
	min-width: 70px;
	max-width: 270px;
}
.color-squares {
	overflow: hidden;
}
.color-squares li {
	float: left;
	margin: 0 10px 0 0;
}
.color-squares .color-container {
	float: left;
	border: 1px solid #666;
}
.color-squares .color {
	display: block;
	width: 20px;
	height: 20px;
	border: 1px solid #fff;
    cursor:pointer;
}
.color-squares .selected-value .color {
	border: 1px solid #666;
}
.color-squares li input {
	position: relative;
	z-index: -1;
	float: left;
	margin: 6px 0 0 -18px;
}

.overview .prices {
	margin: 30px 0 15px;
	overflow: hidden;
}

.variant-overview .prices {
	margin: 0;
	overflow: hidden;
    float:left;
    width:20%;
}

.overview .prices > div {
	float:left;
	clear:left;
	margin-bottom: 2px;
}

.variant-overview .prices > div {
	float:right;
	clear:right;
	margin-bottom: 0px;
    line-height: 45px;
    text-align:right;
}

.overview .old-product-price,
.variant-overview .old-product-price {
	margin-right: 15px;
	color: #666;
	font-size: 14px;
	line-height: 1;
	text-decoration: line-through;
}
.overview .product-price,
.variant-overview .product-price {
	color: #333;
    text-transform:uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-size:28px;
    font-weight:500;
    line-height:1;
}

.variant-overview .product-price span
{
    line-height:0.9;
    display:inline-block;
}

.variant-overview .product-price span.grouped-from
{
    font-size:13px;
}

.customer-entered-price {
	margin: -10px 0 20px; /*change if the empty "price" div is removed*/
	border: 1px solid #ddd;
	background: #f6f6f6;
	overflow: hidden;
	padding: 10px;
}
.customer-entered-price .price-input {
	float: left;
	margin-right: 10px;
}
.customer-entered-price .enter-price-input {
	width: 50px;
	border-color: #ccc;
}
.customer-entered-price .price-range {
	float: left;
	line-height: 26px;
	color: #333;
	font-weight: bold;
}

.overview .add-to-cart {
	margin-bottom: 20px;
}
.overview .add-to-cart-panel {
	overflow: hidden;
    border-top:solid 1px #eee;
    padding-top:15px
}

.variant-overview .add-to-cart-panel {
	overflow: hidden;
}

.overview .add-to-cart-panel > * {
	float: left;
	margin-right: 5px;
}

.variant-overview .add-to-cart-panel > * {
	float: none;
}

.overview .add-to-cart-panel .ajax-cart-button-wrapper
{
    float:none;
    display:block;
}

.overview .qty-label, .variant-overview .qty-label {
    line-height: 36px;
    text-transform:uppercase;
}
.overview .qty-input, .variant-overview .qty-input {
    width: 80px;
    height: 36px;
    background: #fff;
    padding: 0 6px;
    text-align: center;
	font-size: 16px;
}

.ajax-cart-button-wrapper 
{
display: block !important;
}

.overview .add-to-cart-button,
.variant-overview .add-to-cart-button,
.variant-overview .product-box-detail-button {
    height: 42px;
    border: 1px solid #000;
    background: #333;
    padding: 0 24px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    width:100%;
    margin-top:15px;
}
.overview .add-to-cart-button:hover,
.variant-overview .add-to-cart-button:hover {
	border-color: #111;
	background: #555;
}
.overview .add-to-cart .add-to-wishlist-button {
	display: none; /*removes the old button*/
}

.phone-order-btn
{
    display: block;
    height: 42px;
    line-height: 42px;
    border: 1px solid #000;
    background: #333;
    padding: 0 24px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    margin-top: 30px;
    text-align:center;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor:pointer;
}

.phone-order-btn:hover
{
    border-color: #111;
	background: #555;
}

.full-description {
	clear: both;
	margin-bottom: 20px;
	line-height: 20px;
}

.product-essential > .readmore-js-toggle
{
    display:none;
}

.product-collateral {	
	xpadding-bottom: 20px;
}
.product-collateral .title {
	margin-bottom: 10px;
	font-size: 13px;
	color: #333;
}

.tier-prices {
	margin-bottom: 20px;
}
.tier-prices .prices-header {
	margin-bottom: 5px;
	font-size: 18px;
	color: #333;
}
.tier-prices .prices-header strong {
	font-weight: normal;
}
.tier-prices td {
	border: 1px solid #bbb;
	background: #f6f6f6;
	padding: 5px;
}
.tier-prices .field-header {
	min-width: 100px;
}
.tier-prices .item-quantity {
	color: #333;
}
.tier-prices .item-price {
	color: #c00;
}

.product-variant-list
{
    padding-top:30px;
    margin:0;
    border-top: solid 1px #313d71;
}

.product-variant-list .product-variant-title
{
    font-size: 22px;
    color: #333;
    text-transform: uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
}

.product-variant-line
{
    padding: 0px 0 30px;
	margin-bottom: 30px;	
    border-bottom:solid 1px #fafafa;
    width:100%;
    float:none;
    clear:none;
    overflow:hidden;
}

.variant-picture {
	position: relative;
	width: 100%;
	height: 220px;
	border: 1px solid #bbb;
	overflow: hidden;
	background: #fff;
}
.variant-overview {
    width: 100%;
}
.variant-overview .variant-name {
	margin-bottom: 0px;
	font-size: 18px;
	color: #333;
    width:30%;
    float:left;
    line-height:60px;
    font-weight:700;
}

.variant-overview .variant-name span
{
    display: inline-block;
    line-height:1.2;
    vertical-align:middle
}

.variant-overview .attributes dl {
	overflow: hidden;
}
.variant-overview .attributes dt {
	float: none;
	width: 100%;
	margin-right: 0px;
	background: #ddd url('../img/bullet4.png') 95% center no-repeat;
	padding: 4px;
	color: #333;
	font-weight: bold;
	white-space: nowrap;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.variant-overview .attributes dd {
	float: none;
	max-width: 100%;
	margin-bottom: 12px;
}
.variant-overview .attributes li {
	margin: 3px 0;
}
.variant-overview .attributes select {
	min-width: 70px;
	width: 100%;
}

.variant-overview .add-to-wishlist-button {
	clear: both;
	margin-top: 15px;
}

.variant-overview .product-specs-box {
	width:50%;
    float:left;
    margin-bottom:0;
}

.variant-overview .product-specs-box table.data-table {
	margin-bottom:0;
}

.variant-overview .product-specs-box table.data-table td
{
    border:none;
    border-right: solid 1px #eee;
    text-align:center;
    width:33.33333%
}

.variant-overview .product-specs-box table.data-table td:first-child
{
    width:33.33333%
}

.variant-overview .product-specs-box table.data-table td:last-child
{
    border-right: none;
}

.variant-overview .product-specs-box table.data-table td.spec-name
{
    font-weight:700;
}

.variant-overview .product-specs-box table.data-table td.spec-value
{
    font-weight:400;
}

/*Jquery Tabs start*/
.ui-tabs {
	margin-bottom: 20px;
}

.ui-tabs .ui-tabs-nav {
	overflow: hidden;
    margin:0 -7px 15px;
}
.ui-tabs .ui-tabs-nav li {
	margin-left: 2px;
    display:inline-block;
    padding:0px 7px;
}
.ui-tabs .ui-tabs-nav li:first-child {
	margin-left: 0;
}
.ui-tabs .ui-tabs-nav li a {
    display: block;
    color: #bbb;
    padding:2px 0px;
    font-size: 12px;
    text-transform: uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight: 500;
    border-bottom:solid 3px #bbb;
    -webkit-transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
    -moz-transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
    -o-transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
}
.ui-tabs .ui-tabs-nav li a:hover,
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,
.ui-tabs .ui-state-active.ui-tabs-active a {
	color: #313d71;
	text-shadow: none;
    border-bottom:solid 3px #313d71;
}
.ui-tabs .ui-tabs-panel {    
    background: #fff;
    padding: 0px;
    overflow:hidden;
}

.ui-tabs .full-description
{
    padding-bottom:20px;
}

.ui-tabs .full-description *:first-child
{
    margin-top:0;
}

.readmore-js-toggle
{
    display: block;
    width: 100%;
    padding-top: 35px;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0.5) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(255,255,255,0.5) 0%,rgba(255,255,255,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
    margin-top: -30px;
    z-index: 100;
    position: relative;
    color:#333;
    font-weight:700;
    text-transform:uppercase;
    text-decoration:underline;
    font-size:13px;
}

.ui-tabs .productTabs-body
{
    font-size: 13px;
}

.ui-tabs .ui-tabs-panel p {
	margin-bottom: 10px;
	line-height: 18px;
	color: #545454;
    font-size: 13px;
}

.ui-tabs .ui-tabs-panel li {
	color: #545454;
    font-size: 13px;
}

.ui-tabs .ui-tabs .write-review {
    margin-bottom: 0;
}
.ui-tabs .ui-tabs-hide {
	display: none;
}
/*Jquery Tabs end*/

.product-specs-box {
	margin-bottom: 20px;
}

.product-tags-box {
}
.product-tags-list ul, .tags ul {
	overflow: hidden;
}
.product-tags-list li, .tags li {
	float: left;
    margin: 0 2px;
}
.product-tags-list li.separator,
.tags li.separator {
	margin-right: 8px;
}
.product-tags-list a:hover,
.tags a:hover {
	color: #333;
	text-decoration: underline;
}
.product-tags-all-page ul,
.vendor-list-page ul {
	overflow: hidden;
}
.product-tags-all-page li,
.vendor-list-page li {
	float: left;
    margin: 0 5px 5px 0;
    color: #333;
}
.product-tags-all-page li a,
.vendor-list-page a {
	display: block;
	height: 26px;
	border: 1px solid #ddd;
	overflow: hidden;
	background: #fff;
	padding: 5px 15px;
	line-height: 26px;
}
.product-tags-all-page li a:hover,
.vendor-list-page li a:hover {
	border-color: #ccc;
	background: #eee;
	text-shadow: 1px 1px 0 #eee;
	text-decoration: none;
}
.vendor-list-page li a {
	text-transform: uppercase;
}

.giftcard {
	margin-bottom: 20px;
	overflow: hidden;
}
.giftcard div {
	float: left;
	clear: both;
	margin: 8px 0;
}
.giftcard label {
	float: right;
	margin-left: 20px;
    line-height: 30px;
	color: #333;
}
.giftcard input {
	width: 328px;
	border-color: #bbb;
}
.giftcard textarea {
	width: 328px;
	height: 150px;
	border-color: #bbb;
}
.giftcard input:focus,
.giftcard textarea:focus {
	border-color: #888;
}

.callback-cover
{
    position:fixed;
    top:0;
    left:0;
    background:rgba(0,0,0,0.6);
    z-index:5;
    width:100%;
    height:100%;
    display:none;
}

.callback-box
{
    position:fixed;
    top:50%;
    left:50%;
    background:#fff;
    z-index:10;
    width:600px;
    height:300px;
    -webkit-transform:translate(-50%, -50%);
    -moz-transform:translate(-50%, -50%);
    -ms-transform:translate(-50%, -50%);
    -o-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    padding:30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display:none;
}

.callback-box .callback-title
{
    width:100%;
    position:relative;
    margin-bottom:15px;
}

.callback-box .callback-title p
{
    font-size: 20px;
    color: #333;
    text-transform: uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight: 700;
}

.callback-box .callback-title .cb-close
{
    position: absolute;
    padding:5px;
    top: 0;
    right: 0;
    cursor: pointer;
}

.callback-box .contact-title
{
    font-size: 20px;
    color: #333;
    text-transform: uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.callback-box .contact-details
{
    width: 50%;
    float:left;
    border-right: solid 1px #eee;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 30px;
}

.callback-box .contact-tel
{
    font-size: 24px;
    color: #313d71;
    margin: 10px 0;
    font-weight: 700;
}

.callback-box .contact-details table
{
    width: 90%;
}

.callback-box .contact-details table td
{
    padding:0;
}

.callback-box .contact-details table td:first-child
{
    font-weight:700;
}

.callback-box .callback-link
{
    width: 50%;
    float:left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
}

.callback-box .callback-link a
{
    display: block;
    height: 42px;
    line-height: 42px;
    border: 1px solid #273058;
    background: #313d71;
    padding: 0 24px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    margin-top: 15px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.callback-box .callback-link a:hover
{
    border: 1px solid #273058;
    background: #273058;
}


/********** PRODUCT REVIEWS **********/

.product-reviews-page h1 a {
	font-weight: normal;
	font-style: italic;
	color: #444;
}
.product-reviews-page h1 a:before,
.product-reviews-page h1 a:after {
	content: "''"
}
.product-reviews-page h1 a:hover {
	text-decoration: underline;
}
.product-reviews-page .page-body {
    padding: 0 5px;
}
.product-reviews-page .title {
	display: none;
}
.write-review {
	margin-bottom: 25px;
}
.write-review .form-fields {
	margin-bottom: 15px;
}
.ui-tabs .form-fields {
	background: #f9f9f9;
}
.write-review textarea {
	vertical-align: top;
}
.write-review .inputs:nth-child(2) label,
.write-review .inputs:nth-child(2) span {
	line-height: 30px;
}
.write-review .review-rating {
	overflow: hidden;
}
.write-review .review-rating label {
	display: inline-block;
	width: 172px;
	margin-right: 10px;
	text-align: right;
	color: #333;
}
.write-review .review-rating ul {
	display: inline-block;
	position: relative;
	width: 314px;
}
.write-review .review-rating li {
	text-align: center;
	cursor: default;
}
.write-review .review-rating li.first {
	position: absolute;
	top: 0;
	left: 0;
	line-height: 16px;
	color: #c00;
}
.write-review .review-rating li.last {
	position: absolute;
	top: 0;
	right: 0;
	line-height: 16px;
	color: #690;
}
.ui-tabs .inputs label,
.ui-tabs .review-rating label {
	width: 164px;
}
.write-review .captcha-box {
	margin-top: 15px;
	margin-bottom: 0;
}
.write-review .buttons {
	text-align: center;
}
.write-review .button-1 {
    border: 1px solid #666;
    background: #777;
	box-shadow: inset 0 0 1px #ccc;
	padding: 6px 24px;
	font-size: 16px;
    line-height: 18px;
	text-transform: uppercase;
	color: #fff;
}
.write-review .button-1:hover {
    border: 1px solid #777;
    background: #888;
}

.product-reviews-page .result,
.product-reviews-page .message-error {
	margin-bottom: 20px;
}
.ui-tabs .product-reviews-page .message-error {
	margin-bottom: 10px;
}

.product-review-item {
	margin-bottom: 25px;
}
.product-review-item .review-item-head {
	margin-bottom: 10px;
	overflow: hidden;
	background: #eee url('../img/block-pointer.png') right center no-repeat;
	padding: 5px 20px 5px 10px;
}
.product-review-item .review-title {
    float: left;
    padding: 3px 0;
    font-size: 13px;
    color: #333;
    text-transform: uppercase;
}
.product-review-item .product-review-box {
	float: right;
	margin: 5px;
}
.product-review-item .review-text {
	margin-bottom: 15px;
	line-height: 20px;
}
.product-review-item .review-info {
	margin-bottom: 5px;
}
.product-review-item .review-info a,
.product-review-helpfulness .vote {
	font-weight: bold;
	color: #000;
	text-decoration: underline;
	cursor: pointer;
}
.product-review-item .review-info a:hover,
.product-review-helpfulness .vote:hover {
	text-decoration: none;
}
.product-review-helpfulness .question {
	margin-right: 5px;
	font-style: italic;
	color: #000;
}
.product-review-helpfulness .result {
	margin-left: 10px;
	color: #000;
}



/********** WISHLIST & COMPARE LIST **********/

.wishlist-content {
	margin-bottom: 20px;
}
.wishlist-content .message-error {
	margin-bottom: 10px;
}
.wishlist-content .button-2,
.compare-products-table .button-2,
.compare-products-table-mobile .button-2 {
	display: inline-block;
	margin-right: 5px;
    border: 1px solid #999;
    background: #bbb;
	box-shadow: inset 0 0 1px #fff;
	padding: 5px 10px;
	color: #fff;
}
.wishlist-content .button-2:hover,
.compare-products-table .button-2:hover,
.compare-products-table-mobile .button-2:hover {
	border-color: #888;
	background: #999;
}
.wishlist-page .share-info a {
	display: block;
	margin-top: 5px;
	font-weight: bold;
	color: #000;
}
.wishlist-page .share-info a:hover {
	text-decoration: underline;
}

.compare-products-page {
	position: relative;
	overflow: hidden;
}
.compare-products-page img {
	max-width: 100%;
}
.compare-products-page .clear-list {
	position: absolute;
	top: 12px;
	right: 12px;
	font-weight: bold;
	color: #000;
}
.compare-products-page .clear-list:hover {
	text-decoration: underline;
}
.compare-products-table .overview p:first-child {
	margin-bottom: 10px;
}
.compare-products-table .overview p:last-child {
	position: relative;
	max-width: 200px;
	height: 200px;
	margin: 0 auto;
	overflow: hidden;
}
.compare-products-table .overview img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}
.compare-products-table .product-name td {
	background: #f6f6f6;
}
.compare-products-table .product-price td {
	color: #c00;
}
.compare-products-table .product-price td:first-child {
	color: #666;
}
.compare-products-table a {
	font-weight: bold;
	color: #333;
}
.compare-products-table a:hover {
	color: #000;
	text-decoration: underline;
}



/*********** TOPICS ***********/

.topic-page .page-title
{
    margin-top: 5px;
    margin-bottom: 20px;
    border-top: solid 1px #313d71;
    padding-top: 15px;
}

.topic-html-content {
	margin-bottom: 20px;
}
.home-page .topic-html-content {
	margin-bottom: 25px;
}
.topic-html-content-title {
	margin-bottom: 15px;
}
.topic-html-content-title h2 {
    font-size: 25px;
    font-weight: normal;
    color: #333;
}
.topic-html-content-body {
	line-height: 22px;
	color: #444;
}
.topic-html-content a,
.topic-page a {
	color: #333;
	text-decoration: underline;
}
.topic-html-content a:hover,
.topic-page a:hover {
	color: #000;
}
.topic-html-content strong,
.topic-page strong {
	color: #333;
}
.topic-page .page-body {
	padding: 0 5px;
	line-height: 18px;
}

.enter-password-title {
	padding: 5px 0;
	font-size: 13px;
	font-weight: bold;
	color: #c00;
}
.enter-password-form {
	overflow: hidden;
	padding: 5px 0;
}
.enter-password-form input[type="password"] {
	float: left;
	width: 250px;
	height: 30px;
	margin-right: -1px;
	padding: 0 6px;
}
.enter-password-form input[type="submit"] {
	float: left !important;
	width: auto !important;
	height: 30px !important;
	border: 1px solid #666 !important;
	background: #777 !important;
	box-shadow: inset 0 0 1px #ccc !important;
	padding: 0 24px !important;
	font-size: 16px !important;
	color: #fff !important;	
}
.enter-password-form input[type="submit"]:hover {
	border-color: #777 !important;
	background: #888 !important;
}
.password-error {
	padding: 5px 0;
}



/*********** CONTACT, CALLBACK & EMAIL A FRIEND ***********/


.callback-page
{
    margin-top: 5px;
    border-top: solid 1px #313d71;
    padding-top: 15px;
}

.map-wrapper
{
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 10px;
    border-top: solid 4px #313d71;
}

#map
{
    width:100%;
    height: 600px;
}

.map-popup-wrapper
{
    display: none;
}

#infobox
{
    background: url(../img/map-storefront.jpg) top center no-repeat #fff;
    padding:225px 0px 0px;  
    width:420px;
    -webkit-box-shadow: 0px 0px 20px #888;
	-moz-box-shadow: 0px 0px 20px #888;
	box-shadow: 0px 0px 20px #888; 
}

#infobox p
{
    font-size:14px;
    margin-bottom:10px;
}

#infobox p a
{
    color:#313d71;
    font-weight: 700;
}

#infobox .infobox-content
{
    padding:15px;
    position:relative;
}

.contact-page .page-body,
.email-a-friend-page .page-body {
	padding: 0;
}

.email-a-friend-page .form-fields {
	margin-bottom: 15px;
}

.contact-page .form-fields, .callback-page .form-fields
{
    margin: -20px -15px 0;
}

.contact-page .inputs-left, .contact-page .inputs-right, .callback-page .inputs-left, .callback-page .inputs-right
{
    float: left;
    width: 50%;
    padding:0 15px;
    margin:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.inputs label.cf-label
{
	display:block;
	font-size:15px;
	font-weight:700;
	margin-top:15px;
    text-align:left;
    width: 100%;
    line-height: 1.8;
    font-family: "open-sans",sans-serif;
}

.inputs input[type="text"].cf-input
{
    float: none;
	display:block;
	width:100%;
	border:solid 1px #ccc;
	border-radius:2px;
	-webkit-appearance: none;
	-webkit-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	-moz-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	-ms-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	-o-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	padding:5px;
	font-size:15px;
    font-family: "open-sans",sans-serif;
}

.inputs input[type="text"].cf-input:focus
{
	border:solid 1px #ccc;
	border-radius:2px;
	-webkit-appearance: none;
	-webkit-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	-moz-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	-ms-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	-o-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	outline:none;
    font-size:15px;
    font-family: "open-sans",sans-serif;
}

.inputs select.cf-input-dd
{
    float: none;
	display:block;
	width:100%;
	border:solid 1px #ccc;
	border-radius:2px;
	-webkit-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	-moz-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	-ms-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	-o-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	padding:5px;
	font-size:15px;
    font-family: "open-sans",sans-serif;
}

.inputs select.cf-input-dd:focus
{
	border:solid 1px #ccc;
	border-radius:2px;
	-webkit-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	-moz-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	-ms-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	-o-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	outline:none;
    font-size:15px;
    font-family: "open-sans",sans-serif;
}

textarea.cf-large-input
{
	display:block;
	width:100%;
	border:solid 1px #ccc;
	border-radius:2px;
	-webkit-appearance: none;
	-webkit-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	-moz-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	-ms-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	-o-box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	box-shadow: inset 0px 0px 6px rgba(0,0,0,.1);
	padding:5px;
	font-size:15px;
	resize:none;
	height:256px;
    font-family: "open-sans",sans-serif;
}

textarea.cf-large-input:focus
{
	border:solid 1px #ccc;
	border-radius:2px;
	-webkit-appearance: none;
	-webkit-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	-moz-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	-ms-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	-o-box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	box-shadow: inset 0px 0px 6px rgba(0,0,0,.2);
	outline:none;
    font-size:15px;
}

.contact-page .inputs:last-child label, .callback-page .inputs:last-child label,
.email-a-friend-page .inputs:last-child span {
	xline-height: 30px;
}

.contact-page .input-box, .callback-page .input-box {
	display: block;
}

.contact-page textarea, .callback-page textarea,
.email-a-friend-page textarea {
	vertical-align: top;
}
.contact-page .buttons, .callback-page .buttons,
.email-a-friend-page .buttons {
    padding: 15px 0;
	text-align: left;
    clear: both;
}
.contact-page .button-1, .callback-page .button-1,
.email-a-friend-page .button-1 {
    height: 36px;
    border: none;
    background: #313d71;
    box-shadow: none;
    padding: 0px 40px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight: 700;
    color: #fff;
    border-radius: 0px;
}
.contact-page .button-1:hover, .callback-page .button-1:hover,
.email-a-friend-page .button-1:hover {
	border: none;
    background: #3b4987;
}
.email-a-friend-page .title {
	margin-bottom: 15px;
}
.email-a-friend-page .title h2 {
	font-size: 20px;
	font-weight: normal;
	color: #333;
}
.email-a-friend-page .title a:hover {
	text-decoration: underline;
}



/********** REGISTRATION, LOGIN, ACCOUNT PAGES  **********/

.registration-page, .login-page
{
    margin-top: 5px;   
    border-top: solid 1px #313d71;
    padding-top: 30px;
}

.registration-page .page-body,
.login-page .page-body,
.password-recovery-page .page-body {
	padding: 15px 0;
}
.registration-page .inputs label,
.login-page .inputs label,
.password-recovery-page .inputs label {
	width: 100%; /*one column page*/
    text-align:left;
    margin-top: 6px;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}
.registration-page .gender,
.account-page .gender {
	display: inline-block;
    margin-right: 5px;
}
.registration-page .gender label,
.account-page .gender label {
	width: auto;
	vertical-align: middle;
    margin-bottom:0;
    margin-top: 0;
}
.registration-page select,
.account-page select {
	width: 96px;
}
.registration-page select + select,
.account-page select + select {
	margin-left: 14px;
}
select#CountryId,
select#StateProvinceId,
select#TimeZoneId {
    width: 312px;
}
#check-availability-button {
	border: 1px solid #999;
	background: #bbb;
	box-shadow: inset 0 0 1px #fff;
	padding: 6px 12px;
	font-size: 12px;
	text-transform: none;
}
#check-availability-button:hover {
	border-color: #888;
	background: #aaa;
	box-shadow: inset 0 0 1px #fff;
}
#username-availabilty {
    position: absolute;
	margin: -20px 0 0 10px;
    font-size: 11px;
    color: #000;
}
.accept-privacy-policy {
	margin-bottom: 20px;
	text-align: center;
}
.accept-privacy-policy a {
	font-weight: bold;
	color: #333;
}
.accept-privacy-policy a:hover {
	text-decoration: underline;
}
.registration-page .buttons,
.login-page .buttons,
.password-recovery-page .buttons,
.account-page .buttons,
.return-request-page .buttons {
	margin-bottom: 15px;
	text-align: left;
}
.registration-page .button-1,
.login-page .button-1,
.registration-result-page .button-1,
.password-recovery-page .button-1,
.account-page .button-1,
.account-page .button-2,
.return-request-page .button-1 {
    height: 36px;
    border: none;
    background: #313d71;
    box-shadow: none;
    padding: 0px 40px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight: 700;
    color: #fff;
    border-radius: 0px;
}
.registration-page .button-1:hover,
.registration-result-page .button-1:hover,
.login-page .button-1:hover,
.password-recovery-page .button-1:hover,
.account-page .button-1:hover,
.account-page .button-2:hover,
.return-request-page .button-1:hover {	
	border: none;
	background: #3b4987;
}

.registration-result-page .page-body {
	padding: 0 5px;
}
.registration-result-page .result {
	margin-bottom: 15px;
	color: #690;
}

.login-page .customer-blocks {
	margin: 0 -15px 30px;
    overflow:hidden;
}
.login-page .title {
	margin-bottom: 10px;
	text-transform: uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #545454;
}
.login-page .new-wrapper, .login-page .returning-wrapper {
	margin-bottom: 30px;
    float:left;
    width:50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding:0 15px;
}

.login-page .new-wrapper .inner-wrapper {
    border: none;
	padding: 0px;
}
.login-page .new-wrapper .text {
	margin-bottom: 20px;
	line-height: 18px;
}
.login-page .inputs.reversed {
	margin-bottom: 20px;
	text-align: left;
}
.login-page .inputs.reversed .forgot-password
{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
    margin-top: 2px;
    display:inline-block;
}

.login-page .inputs.reversed * {
	width: auto;
}

.login-page .inputs.reversed label
{
    margin-bottom:0;
    margin-left:3px;
    margin-top: 2px;
}

.login-page .inputs.reversed input {
	margin-left: 0px;
	vertical-align: middle;
}
.login-page a:hover {
	color: #000;
	text-decoration: underline;
}
.external-authentication {
    overflow: hidden;
    text-align: center;
}
fieldset.facebook-login-block {
	border: 0;
	float: none !important;
	display: inline-block !important;
}

.password-recovery-page .tooltip {
	margin-bottom: 20px;
}
.password-recovery-page .result {
	font-weight: bold;
	color: #000;
}

.account-page .page-body {
	padding: 0 5px;
}
.address-list-page .info,
.order-list-page .info {
	border-bottom: 1px solid #ddd;
	padding: 15px 0px;
	line-height: 18px;
}
.address-list-page .buttons,
.order-list-page .buttons {
	position: absolute;
	top: 45px;
	right: 20px;
}
.address-list-page .buttons input,
.order-list-page .buttons input {
	border: 1px solid #999;
	background: #bbb;
	box-shadow: inset 0 0 1px #fff;
	padding: 4px 12px;
	font-size: 12px;
	text-transform: none;
}
.address-list-page .buttons input:hover,
.order-list-page .buttons input:hover {
	border-color: #888;
	background: #aaa;
	box-shadow: inset 0 0 1px #fff;
}
.address-list-page .add-button {
	margin: -10px 0 15px;
	text-align: center;
}

.edit-address {
    position: relative;
    margin-bottom: 20px;
    padding: 0px;
    color: #333;
}

.edit-address .inputs input[type="text"]
{
    width:100%;
}

.edit-address select {
	width: 100%;
	margin-right: 0;
}

.edit-address .inputs .input-validation-error
{
    border-color:#ff0000;
    background: #fbdada;
}

.downloadable-products-page .page-body,
.back-in-stock-subscription-list-page .page-body {
	box-shadow: none;
	background: none;
	padding: 0;
}
.back-in-stock-subscription-list-page .description {
	margin-bottom: 20px;
}

.reward-points-overview,
.reward-points-history .title {
    margin: 0 0 15px;
}

.avatar-page .page-body {
	overflow: hidden;
}
.avatar-page .message-error {
	margin-bottom: 10px;
}
.avatar-page .fieldset {
	margin-bottom: 15px;
	border: 1px solid #ddd;
	overflow: hidden;
	padding: 15px;
	color: #333;
}
.avatar-page .image {
	float: left;
	margin-right: 15px;
	border: 1px solid #bbb;
	background: #fff;
	padding: 10px;
}
.avatar-page .info {
	float: left;
}
.avatar-page .buttons {
	float: right;
}
.avatar-page input[type="submit"] {
	text-transform: none;
}

.forum-subscriptions-page .description {
	margin-bottom: 10px;
}

.return-request-page tr > * {
	text-align: left;
}
.return-request-page tr > *:last-child {
	text-align: center;
}
.return-request-page td select {
	min-width: 50px;
}
.return-request-page .inputs label {
	width: 90px;
	line-height: 30px;
}
.return-request-page .inputs select {
	width: 300px;
}
.return-request-page textarea {
	width: 500px;
	vertical-align: top;
}
.return-request-page .buttons {
	margin-bottom: 10px;
}

.return-request-list-page .details {
	border: 1px solid #ddd;
	padding: 15px;
}
.return-request-list-page a {
	font-weight: bold;
	color: #333;
}
.return-request-list-page a:hover {
	text-decoration: underline;
}
.return-request-list-page .comments {
	margin-top: 15px;
	color: #333;
}


/********** SHOPPING CART & CHECKOUT **********/

.order-progress {
    margin-top: 5px;
    margin-bottom: 20px;
    border-top: solid 1px #313d71;
    padding-top: 25px;
}
.order-progress ul {
	overflow: hidden;
	text-align: center;
}
.order-progress li {
	display: inline-block;
	width: auto;    
}
.order-progress a {
	display: block;
	background: url('../img/circle.png') right center no-repeat;
	color: #000;
    padding:0 25px 0 45px
}
.order-progress li.active-step a {
	cursor: pointer;
    background: url('../img/check.png') right center no-repeat;
}
.order-progress li.active-step.current-step a {
	cursor: pointer;
    background: url('../img/arrow-down.png') right center no-repeat;
}
.order-progress li.inactive-step a {
	opacity: 0.5;
	filter: alpha(opacity=50);
	cursor: default;
}
.order-progress li.active-step a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);}

.shopping-cart-page .message-error {
	margin-bottom: 10px;
}

.checkout-page .pickup-in-store
{
    clear: both;
}

/*global buttons start*/
.shopping-cart-page .button-2,
.checkout-page .button-2,
.order-details-page .page-title a,
.order-details-page .return-items-button {
    border: 1px solid #999;
    background: #bbb;
	box-shadow: inset 0 0 1px #fff;
    padding: 5px 10px;
    color: #fff;
}
.shopping-cart-page .button-2:hover,
.checkout-page .button-2:hover,
.order-details-page .page-title a:hover {
	border-color: #888;
	background: #999;
}
.shopping-cart-page .button-1,
.checkout-page .button-1,
.order-details-page .button-1,
.button-2.order-completed-continue-button {
    height: 36px;
    border: none;
    background: #313d71;
    box-shadow: none;
    padding: 0px 40px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight: 700;
    color: #fff;
    border-radius: 0px;
}
.shopping-cart-page .button-1:hover,
.checkout-page .button-1:hover,
.order-details-page .button-1:hover,
.button-2.order-completed-continue-button:hover {
    border: none;
    background: #3b4987;
}
.remove-discount-button,
.remove-gift-card-button {
	width: 16px;
	height: 16px;
	border: 1px solid #bbb;
	background: #fff url('../img/close.png') center no-repeat;
	margin-left: 5px;
	cursor: pointer;
}
.remove-discount-button:hover,
.remove-gift-card-button:hover {
	border-color: #666;
}
/*global buttons end*/

.shopping-cart-page .buttons {
	margin-bottom: 20px;
	text-align: right;
}
.shopping-cart-page .selected-checkout-attributes {
	display: none;
}
.checkout-attributes {
	margin-top: 20px;
	overflow: hidden;
}
.checkout-attributes dl {
	float: right;
	text-align: left;
}
.checkout-attributes dl > * {
	float: left;
}
.checkout-attributes dt {
	margin: 0 10px;
	line-height: 20px;
	font-weight: bold;
	color: #333;
}
.checkout-attributes dt:first-child {
	margin-left: 0;
}
.checkout-attributes li {
	padding: 3px 0;
}
.checkout-attributes li input {
	vertical-align: middle;
}

.cart-footer {
    overflow: hidden;
}

.cart-footer .totals {
	float: right;
	width: 260px;
    font-family: "brandon-grotesque",sans-serif;
}
.cart-footer .total-info {
	margin-bottom: 20px;
	background: #fff;
	padding: 0px;
	border: none;
}
.checkout-page .total-info {
	margin-bottom: 0;
}

.cart-total tr:last-child {
	border-bottom:solid 1px #ddd;
    border-top:solid 1px #ddd;
}

.cart-total td {
	padding: 4px;
    font-size:15px;
}

.cart-total td.cart-total-right {
	text-align:right
}

.cart-total td:first-child {
	max-width: 100px;
}
.cart-total .product-price {
	color: #000;
}
.cart-total .order-total {
	font-size: 18px;
	color: #313d71;
}
.terms-of-service {
 	margin-bottom: 20px;
}
.terms-of-service a {
 	color: #000;
}
.terms-of-service a:hover {
	text-decoration: underline;
}

.terms-of-service .read {
 	cursor:pointer;
}

#cboxLoadedContent > #terms-text
{
    display: block !important;
    padding:15px;
}

.cart-footer .checkout-button {
	height: 42px;
    border: 1px solid #000;
    background: #333;
    padding: 0 24px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
}
.cart-footer .checkout-button:hover {
	border-color: #111;
	background: #555;
    box-shadow: none;
}

.cart-footer .cart-collaterals {
	float: left;
	width: 675px;
}

.cart-footer .sagepay-cart {
float: left;
max-width: 100%;
}

.cart-footer .cart-collaterals > div {
	min-height: 190px;
    border: 1px solid #ddd;
	padding: 10px;
}
.cart-footer .title {
	margin-bottom: 5px;
	color: #333;
}
.cart-footer .hint {
	margin-bottom: 5px;
	font-size: 11px;
}
.cart-footer .deals {
	float: left;
	width: 260px;
    display: none;
}
.cart-footer .deals div {
	overflow: hidden;
}
.cart-footer .deals > div:first-child {
	margin-bottom: 10px;
}
.cart-footer .deals input[type="text"] {
	float: left;
	width: 150px;
}
.cart-footer .deals .button-2 {
	float: left;
	margin-left: -1px;
	font-size: 11px;
    padding: 8px 12px;
}
.cart-footer .deals .message {
	margin-top: 5px;
	font-size: 11px;
	color: #000;
}
.cart-footer .deals .current-code {
	margin-top: 5px;
	color: #690;
}
.cart-footer .shipping {
	float: right;
	width: 360px;
}
.cart-footer .shipping .inputs label {
	width: 100px;
}
.cart-footer .shipping .inputs [type="text"] {
    width: 240px;
}
.cart-footer .shipping select {
	width: 240px !important;
}
.cart-footer .shipping .button-2 {
	float: right;
    margin-right: 7px;
}
.cart-footer .shipping-results {
	margin-top: 15px;
	border-top: 1px solid #bbb;
	padding: 10px 0 0;
	font-style: italic;
}
.cart-footer .shipping-results li {
	margin: 5px 0;
}
.cart-footer .shipping-results strong {
	color: #333;
}

.shopping-cart-page .addon-buttons {
    width: 260px;
    float: right;
    text-align: left;
    margin: 10px 0 0;
}

.checkout-page .buttons {
	margin-bottom: 20px;
	text-align: left;
}

.checkout-page .selected-checkout-attributes {
	padding-right: 5px;
	text-align: right;
	font-size: 13px;
	font-weight: bold;
	text-transform: capitalize;
	color: #333;
}

.checkout-page .address-grid {
	border: none;
    overflow: hidden;
    background: #fff;
    padding: 0px;
    padding-bottom: 0;
}
.checkout-page .address-item {
    float: left;
    width: 24.25%;
    margin-left: 1%;
    margin-bottom: 1%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.checkout-page .address-item:nth-child(4n+1) {
    clear: both;
	margin-left: 0;
}
.checkout-page .address-item .select-button {
	margin-bottom: 10px;
}
.checkout-page .address-item input[type="button"] {
	width: 100%;
}
.checkout-page .address-item ul {
	padding: 2px;
}
.checkout-page .address-item li {
	line-height: 18px;
}
.checkout-page .address-item li.name {
	margin-bottom: 5px;
	color: #333;
}
.checkout-page .address-item li.country {
	margin-top: 5px;
	color: #333;
	font-weight: bold;
	text-transform: uppercase;
}
.checkout-page .enter-address {
	border: none;
}
.checkout-page .edit-address {
	width: 100%;
	margin: 0 auto;
}

.edit-address .inputs-section {
width: 50%;
padding-right: 15px;
padding-bottom: 15px;
float: left;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

.checkout-page .edit-address label {
	width: 100%;
    text-align: left;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}
.checkout-page .edit-address .inputs,
.checkout-page .edit-address span {
	text-align: left;
}

.edit-address span 
{
    display: none !important;
}

.shipping-method .method-list {
	margin-bottom: 30px;
	padding: 0px;
    border: none;
}

.payment-method .method-list {
	margin: 0 -15px 15px;
	padding: 0px;
    border: none;
    display:block;
    overflow:hidden;
}

.shipping-method .method-list li {
	margin-top: 15px;
}

.shipping-method .method-list li:first-child {
	margin-top: 0;
}

.payment-method .method-list li {
	margin-top: 0px;
    display:block;
    float:left;
    width:50%;
    padding:0 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align:center;
}

.shipping-method .method-list li div {
	display: block;
	margin-right: 0;
	vertical-align: middle;
}

.payment-method .method-list li div {
	display: inline-block;
	xmargin-right: 10px;
	vertical-align: middle;
}

.shipping-method .method-list li label {
	vertical-align: middle;
	color: #333;
	font-weight: bold;
}

.payment-method .method-list li label {
	display:block;
    cursor:pointer;
}

.shipping-method .method-description {
	margin-top: 5px;
}
.payment-info .info {
	margin-bottom: 15px;
    border: none;
	padding: 0px;
	line-height: 20px;
}
.confirm-order .buttons {
	margin-bottom: 20px;
	background: none;
	padding: 5px;
    text-align:center;
}
.order-review-data {
	display: table;
	width: 100%;
	margin-bottom: 30px;
    border: none;
	border-spacing: 0px;
}
.order-review-data ul {
	display: table-cell;
}
.order-review-data li {
	line-height: 18px;
}
.order-review-data .title {
    margin: 15px 0 10px;
    color: #333;
}
.order-review-data .title:first-child {
	margin-top: 0;
}

.order-completed p
{
    margin:10px 0;
}

.order-completed p.order-number
{
    font-weight:700;
}

.order-completed p a
{
    color:#ed058d;
}

.order-completed input
{
    margin-top:20px;
}

.order-completed .details {
	margin-bottom: 15px;
    border: none;
	padding: 0px;
}
.order-completed .details a {
	display: block;
	margin-top: 5px;
	font-weight: bold;
	color: #333;
}
.order-completed .details a:hover {
	text-decoration: underline;
}

.opc .step-title {
	margin-bottom: 1px;
	overflow: hidden;
	background: #eee url('../img/block-pointer.png') no-repeat right center;
	padding: 10px;
}
.opc .active .step-title,
.opc .active .step-title:hover {
	background-color: #333 !important;
}
.opc .allow .step-title,
.opc .allow .step-title * {
	cursor: pointer;
}
.opc .allow .step-title:hover {
	background-color: #e6e6e6;
}
.opc .step-title * {
	float: left;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: normal;
	color: #333;
	text-shadow: 1px 1px 0 #fff;
	cursor: default;
}
.opc .active .step-title * {
	color: #fff;
	text-shadow: none;
}
.opc .step-title span {
	margin-right: 10px;
}
.opc .step {
	margin: 10px 0;
    border: 1px solid #ddd;
	padding: 15px;
}
.opc .section {
	margin-bottom: 15px;
}
.opc .section > label {
	display: block;
	margin-bottom: 15px;
}
.opc .edit-address {
	width: auto; /*RESET*/
	margin: 0; /*RESET*/
}
.opc .edit-address label {
	width: 275px;
}
.opc .buttons {
	margin-bottom: 0; /*RESET*/
	text-align: left; /*RESET*/
}
.opc .back-link {
	padding: 5px;
}
.opc .back-link small {
	display: none;
}
.opc .back-link a:before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 8px;
	margin-right: 5px;
	background: url('../img/bullet7.png') center no-repeat;
}
.opc .back-link a {
	font-weight: bold;
	font-style: italic;
	color: #333;
}
.opc .back-link a:hover {
	color: #000;
	text-decoration: underline;
}
.opc .method-list,
.opc .payment-info .info {
	margin-bottom: 0; /*RESET*/
	box-shadow: none; /*RESET*/
	background: none; /*RESET*/
}
.opc .order-review-data {
	box-shadow: none; /*RESET*/
	border-spacing: 0; /*RESET*/
}
.opc .order-review-data ul {
	padding: 10px;
}
.opc .selected-checkout-attributes {
	margin-bottom: 15px;
	text-align: right;
	color: #333;
}
.opc .cart-footer {
	margin-bottom: 15px;
	box-shadow: none; /*RESET*/
	padding: 0; /*RESET*/
}
.opc #checkout-step-confirm-order .buttons {
	text-align: right;
}

.order-details-page .page-body {
    overflow: hidden;
	padding: 0 5px;
}
.order-details-page .page-title {
	overflow: hidden;
}
.order-details-page .page-title h1 {
	float: left;
	line-height: 28px;
}
.order-details-page .page-title a {
	float: right;
	margin-left: 10px;
}
.order-details-page .order-overview {
	margin-bottom: 20px;
    border: 1px solid #ddd;
	background: #f6f6f6;
	padding: 15px;
}
.order-details-page .order-overview .order-details span {
    display: block;
}
.order-details-page strong {
	color: #333;
}
.order-details-area {
	margin-bottom: 20px;
	border-bottom: 1px dotted #ccc;
	overflow: hidden;
	padding: 0 10px 20px;
}
.order-details-area ul {
	padding: 1px;
}
.order-details-area .title {
	margin: 15px 0 10px;
}
.order-details-area .title:first-child {
	margin-top: 0;
}

.order-details-page .checkout-attributes {
	margin: 20px 0 15px;
	text-align: right;
	color: #333;
}
.order-details-page .actions {
	text-align: right;
}
.order-details-page .total-info {
	float: right;
}
.order-details-page .shipments {
	clear: both;
}

.shipment-overview {
    font-size: 0;
}
    .shipment-overview ul {
        display: inline-block;
        vertical-align: middle;
        font-size: 12px;
        width: 50%;
        padding: 10px 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        min-height: 155px;
    }
        .shipment-overview ul li:first-child {
            margin: 0 0 5px;
        }


/*********** SEARCH & SITEMAP ***********/

.search-page
{
    margin-top: 5px;
    border-top: solid 1px #313d71;
    padding-top: 15px;
}

.search-input {
	padding: 0;
}
.search-input .inputs.reversed {
	
}
.search-input .inputs.reversed label {
	
}

.basic-search {
	margin-bottom: 15px;
	
}
.basic-search label {
	
}
.basic-search input[type="text"]
{
}

.search-input .basic-search .inputs.reversed 
{
	display:none;
}

.advanced-search {
	display: none !important;
}
.advanced-search .inputs label {
	
}
.advanced-search select {
	
}
.advanced-search .price-range {
	display: inline-block;
	width: 300px;
	margin-bottom: 15px;
	text-align: center;
	text-transform: lowercase;
}
.advanced-search .price-range input {
	width: 50px;
	margin: 3px;
}

.search-input .buttons {
	margin-bottom: 5px;
	text-align: left;
}
.search-input .button-1 {
    height: 36px;
    border: none;
    background: #313d71;
    box-shadow: none;
    padding: 0px 40px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "brandon-grotesque",sans-serif;
    font-weight: 700;
    color: #fff;
    border-radius: 0px;
}
.search-input .button-1:hover {
	border: none;
    background: #3b4987;
}
.search-input .warning {
	display: block;
	margin-top: 10px;
	text-align: center;
	font-weight: normal;
	color: #c00;
}
.search-results {
	margin-top: 25px;
}
.search-results .result {
	display: block;
	text-align: center;
	font-weight: normal;
	color: #c00;
}
.search-results .product-list:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}

.sitemap-page .page-body {
	padding: 0 5px;
}
.sitemap-page .entity {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
}
.sitemap-page .entity-title {
	margin-bottom: 10px;
}
.sitemap-page .entity-title h2 {
	font-size: 13px;
	color: #333;
}
.sitemap-page .entity-body {
	line-height: 24px;
}
.sitemap-page a:before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 10px;
	background: url('../img/bullet4.png') 5px center no-repeat;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.sitemap-page a {
	display: block;
}
.sitemap-page a:empty {
	display: none;
}
.sitemap-page a:hover {
	background: #f6f6f6;
	color: #000;
}
.sitemap-page a:hover:before {
	opacity: 1;
	filter: alpha(opacity=100);
}



/********** BLOG & NEWS **********/




.year strong {
	display: block;
	width: 180px;
	margin: -1px 0 0 -1px;
	border-top: 1px solid #999; 
	border-bottom: 1px solid #999;
	background: url('../img/bullet5.png') 12px center no-repeat;
	background: url('../img/bullet5.png') 12px center no-repeat,
				url('../img/block-pointer.png') no-repeat right top;
	background-color: #bbb;
	padding: 12px 15px 12px 25px;
	font-size: 14px;
	color: #fff;
	cursor: default;
}

.block-popular-blogtags .tags {
	padding: 12px 10px 15px;
}
.blog-page .post,
.news-items .item,
.blogpost-page .page-body,
.news-item-page .page-body {
	margin-bottom: 25px;
	padding: 0 5px;
}
.post-head, .news-head {
	margin-bottom: 15px;
	border-bottom: 1px solid #ddd;
	overflow: hidden;
	padding-bottom: 10px;
}
.post-title, .news-title {
	float: left;
	max-width: 550px;
	font-size: 18px;
	color: #333;
}
.post-title:hover,
.news-title:hover {
	color: #000;
}
.post-date, .news-date {
	float: right;
	font-size: 13px;
	line-height: 22px;
	font-style: italic;
	color: #333;
}
.blogpost-page .post-date,
.news-item-page .news-date {
	float: none;
	color: #999;
}
.post-body, .news-body {
	margin-bottom: 20px;
	line-height: 20px;
	font-size: 13px;
	color: #444;
}
.blog-page .tags,
.blogpost-page .tags {
	margin-bottom: 15px;
	overflow: hidden;
}
.blog-page .tags label,
.blogpost-page .tags label {
	float: left;
	margin-right: 5px;
	padding: 3px;
	color: #333;
	font-weight: bold;
	text-shadow: 1px 1px 0 #fff;
}
.blog-page .tags ul,
.blogpost-page .tags ul {
	float: left;
}
.blog-page .tags li.separator,
.blogpost-page .tags li.separator {
	margin-right: 0;
	visibility: hidden;
    width: 0;
}
.blog-page .tags a,
.blogpost-page .tags a {
	display: inline-block;
	border: 1px solid #ddd;
	padding: 3px 5px;
}
.blog-page .tags a:hover,
.blogpost-page .tags a:hover {
	border-color: #ccc;
	background: #eee;
	text-decoration: none;
}
.blog-details a:hover {
	color: #000;
	text-decoration: underline;
}

.new-comment {
	margin-bottom: 15px;
}
.new-comment .title {
	margin-bottom: 10px;
}
.new-comment .notifications {
	margin-bottom: 10px;
}
.new-comment .result {
	font-style: italic;
}
.new-comment form {
	padding: 15px;
	border: 1px solid #ddd;
}
.new-comment .form-fields {
	margin-bottom: 15px;
	overflow: hidden;
    border: 0;
	padding: 0;
}
.new-comment .inputs {
	margin: 0 0 10px;
}
.new-comment .inputs label {
	display: none;
}
.new-comment textarea {
	width: 100% !important;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.new-comment .field-validation-error {
	display: block;
	margin-top: 10px;
	text-align: center;
}
.new-comment .buttons {
	text-align: center;
}
.new-comment .button-1 {
    border: 1px solid #666;
    background: #777;
	padding: 6px 24px;
	font-size: 16px;
    line-height: 18px;
	text-transform: uppercase;
	color: #fff;
}
.new-comment .button-1:hover {
    border: 1px solid #777;
    background: #888;
	box-shadow: inset 0 0 1px 0 #ccc;
}

.comment-list {
	margin-bottom: 20px;
}
.comment-list .title {
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: bold;
	color: #333;
}
.blog-comment, .news-comment {
	margin-bottom: 15px;
	border-bottom: 1px dotted #ccc;
	overflow: hidden;
	padding-bottom: 15px;
}
.comment-info {
	float: left;
	width: 100px;
	margin-right: 10px;
}
.comment-info .username {
	display: block;
	margin-bottom: 10px;
	background: #eee;
	padding: 5px;
	font-weight: bold;
	color: #333;
	text-shadow: 1px 1px 0 #fff;
}
.comment-info a.username:hover {
	background: #e6e6e6;
	color: #000;
}
.comment-info .avatar {
	position: relative;
	width: 98px;
	height: 98px;
	border: 1px solid #ccc;
	margin-bottom: 10px;
	overflow: hidden;
	text-align: center;
}
.comment-info .avatar img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}
.comment-content {
	float: left;
	width: 600px;
}
.comment-time {
	margin-bottom: 10px;
	font-size: 13px;
	line-height: 25px;
	font-style: italic;
	color: #999;
}
.comment-title {
	margin-bottom: 5px;
	color: #333;
}
.comment-body {
	margin-bottom: 10px;
	line-height: 20px;
	color: #444;
}

.news-items .item {
	overflow: hidden;
}
.news-details {
	margin-bottom: 10px;
	line-height: 20px;
	color: #444;
}
.news-items .read-more {
	float: right;
	border: 1px solid #999;
	background: #bbb;
	box-shadow: inset 0 0 1px #fff;
	padding: 5px 10px;
	color: #333;
	text-shadow: 1px 1px 0 #ddd;
}
.news-items .read-more:hover {
	border-color: #888;
	background: #999;
}

.news-item-page .inputs:first-child label {
	display: inline-block;
}

.news-list-homepage .title {
	margin-bottom: 15px;
	font-size: 28px;
	color: #333;
}
.news-list-homepage .title strong {
	font-weight: normal;
}
.news-list-homepage .news-items .item {
	padding: 2px;
}
.news-list-homepage .view-all {
	text-align: right;
}
.news-list-homepage .view-all a:hover {
	color: #000;
}



/************* FORUMS + PROFILE&INBOX *************/




.forums-main-page .topic-html-content-title h2 {
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
}
.forums-main-header:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}
.current-time {
	float: left;
	line-height: 30px;
}
.forum-search-box {
	float: right;
}
.forum-search-box .basic {
	overflow: hidden;
}
.forum-search-box-text,
.forum-search-text {
	float: left;
	width: 280px;
	height: 30px;
	padding: 0 6px !important;
	color: #444;
}
.forum-search-box-button,
.forum-search-button {
	float: left;
	width: 30px;
	height: 30px;
	border: none;
	overflow: hidden;
	background: #333 url('../img/icon4.png') center no-repeat;
	text-indent: 999px;
}
.forum-search-box-button:hover,
.forum-search-button:hover {
	background-color: #444;
}
.forum-search-box .advanced {
	padding: 5px;
	text-align: right;
}
.forum-search-box .advanced a:hover {
	color: #333;
	text-decoration: underline;
}
.forums-table-section-title {
	overflow: hidden;
	margin-bottom: 10px;
}
.forums-table-section-title > a,
.forums-table-section-title strong {
	float: left;
	font-size: 16px;
	font-weight: normal;
	text-transform: uppercase;
	font-style: normal;
}
.forums-table-section-title span {
	float: right;
}
.forums-table-section-title .view-all {
	margin-right: 10px;
	line-height: 24px;
}
.forums-table-section th {
	text-align: left;
}
.forums-table-section .image div {
	width: 24px;
	height: 24px;
	margin: auto;
	background: url('../img/folder1.png') center no-repeat;
}
.forums-table-section .image div.post-annoucement {
	background: url('../img/folder2.png') center no-repeat;
}
.forums-table-section .image div.poststicky {
	background: url('../img/folder3.png') center no-repeat;
}
/*forum main page end*/

.forum-search-page .basic-search {
	margin-bottom: 0;
}
.forum-search-page .basic-search div:first-child {
	width: 450px;
	margin: auto;
	overflow: hidden;
}
.forum-search-page .basic-search div:first-child * {
	float: left;
}
.forum-search-page .basic-search div:last-child {
	margin-top: 10px;
	text-align: center;
}
.forum-search-page .advanced-search {
	margin: 15px 0 0;
}
.forum-search-page .advanced-search .inputs label {
	width: 290px;
}
.forum-search-page .search-error {
	padding: 15px;
	text-align: center;
	color: #c00;
}
.forum-search-page .search-results {
	margin: 0 0 15px;
}

.forum-breadcrumb {
	float: left;
	max-width: 630px;
}
.pager.upper {
	display: none;
}
.pager.lower {
	float: right;
}
.pager.lower a /*because of missing classes*/ {
	width: auto;
	padding: 0 8px;
}

.forum-page .forum-top {
	margin-bottom: 15px;
	overflow: hidden;
}
.forum-page .forum-info {
	position: relative;
	margin-bottom: 15px;
}
.forum-page .forum-name {
	font-size: 18px;
    text-transform: uppercase;
	color: #333;
}
.forum-page .link-rss {
	position: absolute;
	top: 5px;
	right: 0;
}
.forum-page .actions {
	background: #eee;
	padding: 10px;
}
.forum-page .actions a {
	margin-right: 10px;
	padding-left: 20px;
	color: #000;
}
.forum-page .actions a:hover {
	text-decoration: underline;
}
.forum-page .newtopic {
	background: url('../img/forum_icon4.png') left center no-repeat;
}
.forum-page .watch-forum {
	background: url('../img/forum_icon5.png') left center no-repeat;
}

.forum-topic-page .topic-name {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: normal;
    text-transform: uppercase;
	color: #333;
}
.forum-topic-page .topic-header {
	margin-bottom: 15px;
	overflow: hidden;
	background: #eee;
	padding: 10px;
}
.forum-topic-page .manage {
	float: right;
}
.forum-topic-page .manage a {
	margin-left: 10px;
	padding-left: 20px;
	color: #000;
}
.forum-topic-page .manage a:hover {
	text-decoration: underline;
}
.forum-topic-page .edit-topic-link-button,
.forum-topic-page .edit-post-link-button {
	background: url('../img/forum_icon1.png') left center no-repeat;
}
.forum-topic-page .delete-topic-link-button,
.forum-topic-page .delete-post-link-button {
	background: url('../img/forum_icon2.png') left center no-repeat;
}
.forum-topic-page .move-topic-link-button {
	background: url('../img/forum_icon3.png') left center no-repeat;
}

.forum-topic-page .topic-options {
	float: left;
}
.forum-topic-page .topic-options a {
	margin-right: 10px;
	padding-left: 20px;
	color: #000;
}
.forum-topic-page .topic-options a:hover {
	text-decoration: underline;
}
.forum-topic-page .reply-topic-link-button {
	background: url('../img/forum_icon4.png') left center no-repeat;
}
.forum-topic-page .watch-topic-link-button {
	background: url('../img/forum_icon5.png') left center no-repeat;
}

.forum-posts {
    clear: both;
    margin-bottom: 15px;
    padding: 0 5px;
}
.forum-post {
	margin-bottom: 20px;
	border-bottom: 1px dotted #ccc;
	overflow: hidden;
	padding: 5px 0 15px;
}
.forum-post .post-info,
.profile-info-box .user-details {
	float: left;
	width: 190px;
}
.forum-post .manage {
	float: none; /*RESET*/
	overflow: hidden;
	margin-bottom: 10px;
}
.forum-post .manage a {
	float: left;
	margin: 0 5px 0 0;
	border: 1px solid #aaa;
	background-color: #bbb;
	box-shadow: inset 0 0 1px 0 #fff;
	padding: 5px 5px 5px 25px;
}
.forum-post .manage a:hover {
	background-color: #ccc;
	text-decoration: none;
}
.forum-post .edit-post-link-button,
.forum-post .delete-post-link-button {
	background-position: 5px center;
}
.forum-post .user-info {
	padding-right: 10px;
}
.forum-post .username {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #000;
}
.forum-post a.username:hover {
	text-decoration: underline;
}
.forum-post .avatar,
.profile-info-box .avatar {
	margin-bottom: 10px;
	border: 1px solid #bbb;
	padding: 10px 0;
	text-align: center;
	line-height: 0;
}
.forum-post .user-stats {
	margin-bottom: 10px;
	font-size: 11px;
}
.forum-post .user-stats span {
	margin-left: 5px;
	color: #000;
}
.forum-post .pm-link-button,
.profile-info-box .pm-link-button {
	display: inline-block;
	border: 1px solid #999;
	background: #bbb;
	box-shadow: inset 0 0 1px #fff;
	padding: 5px 10px;
	color: #333;
	text-shadow: 1px 1px 0 #ddd;
}
.forum-post .pm-link-button:hover,
.profile-info-box .pm-link-button:hover {
	border-color: #888;
	background: #999;
}
.forum-post .post-content,
.profile-info-box .profile-stats {
	margin-left: 200px;
}
.forum-post .posttime {
	margin-bottom: 10px;
	border: 1px solid #aaa;
	background: #bbb;
	padding: 5px;
}
.forum-post .posttime a {
	float: right;
	margin-left: 5px;
	font-weight: bold;
	color: #000;
	text-decoration: underline;
}
.forum-post .posttime a:hover {
	color: #fff;
}
.forum-post .post-body {
	padding-left: 5px;
}

.forum-edit-page .page-body,
.private-message-send-page .page-body {
	padding: 0 5px;
}
.forum-edit-page strong,
.private-message-send-page a {
	color: #000;
	font-size: 16px;
	font-weight: normal;
}
.forum-edit-page .toolbar,
.private-message-send-page .toolbar {
	margin-left: 175px;
}
.forum-edit-page textarea,
.private-message-send-page textarea {
	width: 548px;
	height: 180px;
	margin-left: 185px;
}
.forum-edit-page .buttons,
.private-message-send-page .options,
.private-messages-page .buttons {
	margin-top: 15px;
	text-align: center;
}
.forum-edit-page .buttons input,
.private-message-send-page .options input,
.private-messages-page .buttons input,
.private-message-view-page .options input {
	border: 1px solid #999;
	background: #bbb;
	box-shadow: inset 0 0 1px #fff;
	padding: 6px 24px !important;
	font-size: 16px;
	text-transform: uppercase;
	color: #333;
}
.forum-edit-page .buttons input,
.private-message-send-page .options input,
.private-messages-page .buttons input,
.private-message-view-page .options input {
}
.forum-edit-page .buttons input:hover,
.private-message-send-page .options input:hover,
.private-messages-page .buttons input:hover,
.private-message-view-page .options input:hover {
	border-color: #888;
	background: #aaa;
}
.forum-edit-page .buttons input[type="submit"],
.private-messages-page .buttons input[type="submit"],
.private-message-send-page .options input[type="submit"],
.private-message-view-page .options input.button-1 {
	border: 1px solid #666;
	background: #777;
	box-shadow: inset 0 0 1px #ccc;
	color: #fff;
}
.forum-edit-page .buttons input[type="submit"]:hover,
.private-messages-page .buttons input[type="submit"]:hover,
.private-message-send-page .options input[type="submit"]:hover,
.private-message-view-page .options input.button-1:hover {
	border-color: #777;
	background: #888;
}

.profile-info-box {
	overflow: hidden;
}
.profile-info-box .title {
	margin-bottom: 10px;
	background: #f6f6f6;
	padding: 5px;
	font-size: 16px;
	color: #000;
}
.profile-info-box li span {
	line-height: 16px;
	color: #000;
}

.profile-page .topic {
	margin-bottom: 20px;
	border-bottom: 1px dotted #ccc;
	padding-bottom: 15px;
	color: #333;
}
.profile-page .topic-title {
	margin-bottom: 10px;
	background: #f6f6f6;
	padding: 5px;
	font-size: 16px;
}
.profile-page .topic-title a {
	font-style: italic;
	color: #000;
}
.profile-page .topic-title a:hover {
	text-decoration: underline;
}
.profile-page .topic-data {
	color: #999;
}

.private-message-send-page .fieldset {
	margin-bottom: 0; /*RESET*/
}
.private-message-send-page .message label {
	display: none;
}

.private-messages-page table {
	margin-bottom: 10px;
}
.private-messages-page td:first-child {
	text-align: center;
}
.private-messages-page td:last-child {
	width: 15%;
}
.private-messages-page .buttons {
	margin: 5px 0;
}
.private-messages-page .mark-unread-pm-button {
	display: none;
}

.private-message-view-page .page-body {
	padding: 0 5px;
}
.private-message-view-page .view-message {
	border: 1px solid #ddd;
	padding: 15px;
}
.private-message-view-page label {
	font-weight: bold;
	color: #000;
}
.private-message-view-page .message {
	margin: 15px 0;
	border: 1px solid #ddd;
	background: #eee;
	padding: 15px;
}
.private-message-view-page .options {
	overflow: hidden;
}
.private-message-view-page .back-pm-button {
	float: right;
	text-transform: capitalize !important;
}

/* RE-CAPTCHA */

    .recaptchatable #recaptcha_response_field {
        height: auto !important;
    }

/*RESPONSIVE CAPTCHA*/
@media (max-width: 444px) {
    .recaptchatable #recaptcha_image {
        margin: 0 !important;
        width: 200px !important;
        float:left !important;
    }
    .recaptchatable #recaptcha_image img {
        max-width:100%;
    }
    .recaptchatable .recaptcha_r1_c1, .recaptchatable .recaptcha_r3_c1, .recaptchatable .recaptcha_r3_c2, .recaptchatable .recaptcha_r7_c1, .recaptchatable .recaptcha_r8_c1, .recaptchatable .recaptcha_r3_c3, .recaptchatable .recaptcha_r2_c1, .recaptchatable .recaptcha_r4_c1, .recaptchatable .recaptcha_r4_c2, .recaptchatable .recaptcha_r4_c4, .recaptchatable .recaptcha_image_cell, .recaptchatable .recaptcha_r2_c2 {
        background: none !important;
    }
}


@media all and (min-width: 991px) {

    .item-box.mobile-box .product-title,
    .item-box.mobile-box .title {
        text-align: center;
    }
    .item-box.mobile-box .details {
        position: static;
        height: 145px;
        box-shadow: none;
        background: none;
        width: 100%;
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    .item-box.mobile-box .description {
        padding: 0 10px;
        height: 45px;
        overflow: hidden;
        line-height: 1.3;
    }
        .item-box.mobile-box .description a {
            height: auto;
            text-align: justify;
        }
        .item-box.mobile-box .prices, 
        .item-box.mobile-box .buttons {
            padding:0;
            text-align: center;
        }
        .item-box.mobile-box .prices {
            margin-bottom: 5px;
        }
            .item-box.mobile-box .prices > * {
                display:inline-block;
                line-height: 22px;
            }
            .item-box.mobile-box .old-price {
                margin: 0 5px 0 0;
            }
        .item-box.mobile-box input[type="button"], 
        .item-box.mobile-box .buynow-button {
            padding: 10px 20px;
        }

}