/*********** CSS RESET **********/
* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
}
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;
}
html {
  margin: 0 !important;
  -webkit-text-size-adjust: none;
}
/*********** GLOBAL STYLES **********/
body {
  background: #ffffff;
  font: normal 12px 'source-sans-pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #0f0f0f;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0f0f0f;
}
a {
  color: inherit;
  cursor: pointer;
}
a img {
  opacity: 0.99;
  /*firefox scale bug fix*/

}
a:hover img {
  opacity: 0.9;
}
table {
  width: 100%;
  border-collapse: collapse;
}
input[type="button"],
input[type="submit"],
button,
.button-1,
.button-2 {
  font-family: 'source-sans-pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  cursor: pointer;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
}
input[type="text"],
input[type="password"] {
  border: 1px solid #cccccc;
  background: #ffffff;
  padding: 6px;
  font-size: 13px;
  color: #0f0f0f;
}
textarea {
  border: 1px solid #cccccc;
  background: #ffffff;
  padding: 6px;
  font-size: 13px;
  color: #0f0f0f;
}
select {
  border: 1px solid #cccccc;
  padding: 2px;
  font-size: 13px;
  color: #0f0f0f;
  -webkit-appearance: none;
  border-radius: 0;
  background: #ffffff url('images/pointer2.png') right center no-repeat;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #999999;
}
input[type="checkbox"],
input[type="radio"] {
  vertical-align: middle;
}
.required,
.message-error,
.field-validation-error,
.not-available-status,
.password-error {
  font-size: 11px;
  color: #cc0000;
}
.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;
  font-size: 13px;
  color: #0f0f0f;
}
.form-fields {
  position: relative;
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
  color: #0f0f0f;
}
.inputs {
  margin: 8px 0;
  overflow: hidden;
}
.inputs label {
  display: inline-block;
  width: 165px;
  margin-right: 10px;
  text-align: right;
}
.inputs input[type="text"],
.inputs input[type="password"] {
  width: 300px;
}
.inputs select {
  padding: 5px;
}
.inputs textarea {
  width: 300px;
  height: 150px;
}
.inputs .field-validation-valid {
  font-size: 11px;
  color: #669900;
}
.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 #cccccc;
  background: #ffffff 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 #ccc;
  background: #fff;
}
.ui-dialog-titlebar {
  border: 1px solid #fff;
  border-bottom: 1px solid #bbb;
  overflow: hidden;
  background: #dddddd url('../img/headpad.png') top repeat-x;
  padding: 10px;
  font-weight: bold;
  color: #0f0f0f;
  text-shadow: 1px 1px 0 6%;
}
.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 #cccccc;
  overflow: hidden;
  background: #ffffff 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: #0f0f0f;
  text-shadow: 1px 1px 0 6%;
}
.ui-dialog-buttonset button:hover {
  background: #ddd;
}
/*********** HEADER & NAVIGATION ***********/
.admin-header-links {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.admin-header-links a {
  display: inline-block;
  border: 1px solid #222222;
  background: #666666;
  padding: 0 12px;
  font-size: 12px;
  line-height: 26px;
  color: #eeeeee;
  text-decoration: none;
}
.admin-header-links a:hover {
  background: #777777;
}
.header-line {
  min-height: 28px;
  margin-bottom: 20px;
  background: #0f0f0f;
}
.header-links-wrapper {
  position: relative;
  width: 980px;
  margin: 0 auto;
}
.header-links-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}
.header-links-wrapper span,
.header-links-wrapper a {
  display: inline-block;
  font-size: 11px;
  line-height: 28px;
  color: #999999;
}
.header-links-wrapper a:hover,
.header-links-wrapper a:hover span {
  color: #ffffff;
}
.header-contacts {
  float: left;
}
.header-contacts span {
  margin-right: 12px;
}
.header-contacts .phone {
  background: url('../img/icon1.png') left center no-repeat;
  padding-left: 18px;
}
.header-contacts .mail {
  background: url('../img/icon2.png') left center no-repeat;
  padding-left: 20px;
}
.header-links,
.header-links ul {
  float: right;
}
.header-links li {
  float: left;
  margin-left: 12px;
}
.header-links li:first-child {
  margin-left: 0;
}
.header-links li a.account {
  color: #ffffff;
}
.header-links .cart-qty {
  margin-left: 2px;
  background: url('../img/icon3.png') left 4px no-repeat;
  padding-left: 20px;
}
.flyout-cart {
  display: none;
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 99999;
  width: 300px;
  background: #ffffff;
}
.flyout-cart.active {
  display: block;
}
.mini-shopping-cart {
  box-shadow: 0 1px 2px #999;
  background: #ffffff;
  padding: 10px;
  font-size: 11px;
}
.mini-shopping-cart * {
  line-height: normal !important;
}
.mini-shopping-cart a {
  font-weight: bold;
  color: #0f0f0f !important;
}
.mini-shopping-cart a:hover {
  color: #424242;
  text-decoration: underline;
}
.mini-shopping-cart .count {
  padding: 5px 0;
  color: #0f0f0f;
}
.mini-shopping-cart .items {
  margin-bottom: 10px;
  background: #ffffff;
}
.mini-shopping-cart .item {
  border-bottom: 1px solid #cccccc;
  overflow: hidden;
  padding: 8px;
}
.mini-shopping-cart .item.first {
  border-top: 1px solid #cccccc;
}
.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: #000000;
}
.mini-shopping-cart .totals {
  margin-bottom: 10px;
  text-align: right;
  font-size: 12px;
  color: #0f0f0f;
}
.mini-shopping-cart .totals strong {
  color: #009900;
}
.mini-shopping-cart .buttons {
  text-align: right;
}
.mini-shopping-cart input[type="button"] {
  display: inline-block;
  border: 1px solid #666666;
  background-color: #666666;
  padding: 5px 10px;
  text-align: center;
  color: #ffffff;
}
.mini-shopping-cart input[type="button"]:hover {
  border-color: rgba(102, 102, 102, 0.6);
  background-color: rgba(102, 102, 102, 0.6);
  box-shadow: inset 0 0 1px 0 #fff;
  color: #ffffff;
}
.master-wrapper-content {
  width: 980px;
  margin: 0 auto 30px;
}
.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;
}
.header-logo a {
  display: block;
  line-height: 0;
  /*MOZ line-height bug fix*/

}
.header-selectors-wrapper {
  float: right;
  margin-bottom: 15px;
}
.header-selectors-wrapper > div {
  float: right;
  margin-left: 15px;
}
.header-selectors-wrapper select {
  width: 100px;
  border-color: #cccccc;
}
.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;
}
.search-box: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: 326px !important;
  height: 28px;
  border-color: #cccccc;
  padding: 0 6px;
  line-height: 28px;
}
#instant-search-categories {
  float: left;
  width: 120px;
  height: 30px;
  margin: 0 0 0 -1px;
  border-color: #cccccc;
  padding: 5px;
}
.search-box .search-box-button {
  float: left;
  width: 30px;
  height: 30px;
  border: none;
  overflow: hidden;
  background-color: #444444;
  background-image: url('../img/icon4.png');
  background-repeat: no-repeat;
  background-position: center;
  text-indent: 999px;
}
.search-box .search-box-button:hover {
  background-color: #555555;
  background-image: url('../img/icon4.png');
}
/*Default Autocomplete start*/
.ui-helper-hidden-accessible {
  display: none;
}
.ui-autocomplete.ui-menu.ui-widget.ui-widget-content {
  z-index: 1002 !important;
  width: 338px !important;
  margin-top: -1px;
  background: #fff;
  border: 1px solid #cccccc;
  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: #0f0f0f;
}
.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*/
@media screen and (min-width: 981px) {
  .header-menu {
    position: relative;
    z-index: 1001;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
    background-color: #0f0f0f;
    margin-bottom: 20px;
  }
  .header-menu > ul:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
  }
  .header-menu > ul > li {
    float: left;
  }
  .header-menu > ul > li:hover > a {
    background: #424242;
  }
  .header-menu .sublist {
    display: none;
    position: absolute;
    top: 45px;
    z-index: 1001;
    min-width: 200px;
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 3px #666;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .header-menu .sublist.active {
    display: block;
  }
  .header-menu .sublist li {
    position: relative;
  }
  .header-menu .sublist li a {
    display: block;
    background: url('../img/arrow.png') 12px center no-repeat;
    padding: 5px 20px 5px 25px;
    color: #0f0f0f;
  }
  .header-menu .sublist li:hover > a {
    color: #0f0f0f;
    background: #424242 url('../img/arrow.png') 12px center no-repeat;
  }
  .header-menu .sublist .sublist {
    top: -10px;
    left: 100%;
  }
}
.header-menu > ul > li > a,
.header-menu > ul > li > span {
  float: left;
  padding: 0 19px;
  font: normal 15px/45px 'source-sans-pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #ffffff;
  text-transform: uppercase;
}
/*********** SLIDER + HOMEPAGE TWEAKS ***********/
.master-home-page .master-wrapper-content {
  width: auto;
  /*override*/

}
.master-home-page .header {
  width: 980px;
  margin: 0 auto 20px;
}
.main-slider-header {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  /*override*/

}
.main-slider-header .header {
  height: 30px;
  margin-bottom: 0;
  /*RESET*/

  padding: 12px 0;
}
.main-slider-header .header-logo {
  position: absolute;
  margin-top: 75px;
}
.main-slider-header .search-box {
  float: none;
  /*RESET*/

  clear: none;
  /*RESET*/

}
.main-slider-header .header-selectors-wrapper {
  margin: 4px 0 0;
}
.main-slider {
  position: relative;
  z-index: 0;
  margin-bottom: -45px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.main-slider .slider-wrapper {
  margin-bottom: 0;
  /*RESET*/

}
.nivo-controlNav,
.nivo-thumbs-enabled,
.nivo-caption {
  display: none !important;
}
.main-slider-menu > ul > li > a:hover {
  background: rgba(255, 255, 255, 0.25);
}
.master-home-page .header-menu {
  clear: both;
  width: 980px;
  margin: 0 auto 20px;
}
.master-home-page .master-wrapper-main {
  width: 980px;
  margin: 0 auto;
}
/*********** FOOTER ***********/
.footer {
  width: 980px;
  margin: 0 auto 90px;
}
.footer-upper {
  margin-bottom: 1px;
  overflow: hidden;
  background: rgba(235, 235, 235, 0.5);
  padding: 15px;
}
.footer-block {
  float: left;
  width: 208px;
  margin-left: 10px;
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 10px 10px 12px;
}
.footer-block:first-child {
  margin-left: 0;
}
.footer-block h3 {
  margin-bottom: 12px;
  border-bottom: 1px solid #cccccc;
  padding: 3px 0 10px;
  font-size: 20px;
  font-weight: normal;
  color: #0f0f0f;
}
.footer-block li {
  background: url('../img/bullet6.png') 2px center no-repeat;
  padding: 6px 0 6px 12px;
}
.footer-block li a {
  color: #0f0f0f;
}
.footer-block li a:hover {
  text-decoration: underline;
}
.footer-lower {
  overflow: hidden;
  background: rgba(235, 235, 235, 0.5);
  padding: 15px;
}
.footer-lower h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: normal;
  color: #0f0f0f;
}
.accepted-payment-methods {
  float: left;
}
.accepted-payment-methods ul {
  overflow: hidden;
}
.accepted-payment-methods li {
  float: left;
  width: 49px;
  height: 30px;
  margin-left: 10px;
  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;
}
.social-sharing {
  float: right;
}
.social-sharing ul {
  overflow: hidden;
}
.social-sharing li {
  float: left;
  margin-left: 10px;
}
.social-sharing li:first-child {
  margin-left: 0;
}
.social-sharing a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('../img/social_sprite.png') center no-repeat;
}
.social-sharing a:first-child {
  margin-left: 0;
}
.social-sharing .facebook {
  background-position: 0 0;
}
.social-sharing .twitter {
  background-position: -32px 0;
}
.social-sharing .google {
  background-position: -64px 0;
}
.social-sharing .pinterest {
  background-position: -96px 0;
}
.social-sharing .vimeo {
  background-position: -128px 0;
}
.social-sharing .youtube {
  background-position: -160px 0;
}
.social-sharing .rss {
  background-position: -192px 0;
}
.social-sharing a:hover {
  opacity: 0.9;
}
.subscribe-to-newsletter {
  position: relative;
  width: 240px;
  margin: auto;
}
.newsletter-email {
  overflow: hidden;
}
.newsletter-email input[type="text"] {
  float: left;
  width: 196px;
  height: 28px;
  padding: 0 6px;
  line-height: 28px;
}
.newsletter-email input[type="button"] {
  float: left;
  width: 30px;
  height: 30px;
  border: none;
  overflow: hidden;
  background-color: #444444;
  background-image: url('../img/icon5.png');
  background-repeat: no-repeat;
  background-position: center;
  text-indent: 999px;
}
.newsletter-email input[type="button"]:hover {
  background-color: #555555;
  background-image: url('../img/icon5.png');
}
.newsletter-validation,
.newsletter-result-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 138px;
  height: 28px;
  overflow: hidden;
  line-height: 28px;
  color: #0f0f0f;
}
.newsletter-validation .please-wait {
  display: none !important;
}
.bottom {
  min-height: 35px;
  background: #222;
  color: #888;
  font-size: 11px;
  line-height: 35px;
}
.bottom .center {
  width: 980px;
  margin: auto;
}
.footer-disclaimer {
  float: left;
}
.footer-powered-by {
  float: right;
  color: #888;
  font-size: 11px;
  line-height: 35px;
}
.footer-powered-by a {
  color: #888;
  text-decoration: underline;
}
.footer-powered-by a:hover {
  color: #fff;
}
.footer-store-theme {
  width: 250px;
  margin: auto;
}
.footer-store-theme select {
  width: 150px;
  border: 1px solid #161616;
  background: #393939;
  color: #999;
}
.footer-store-theme select:focus {
  color: #ccc;
}
/*********** LEFT/RIGHT COLUMNS ***********/
.master-wrapper-main {
  min-height: 620px;
}
.master-wrapper-main:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}
.side-2 {
  width: 220px;
  float: left;
}
.center-2 {
  float: right;
  width: 740px;
}
.block {
  margin-bottom: 20px;
}
.block .title {
  background-color: #ffffff;
  border: solid 1px #cccccc;
  padding: 10px;
  font-size: 15px;
  color: #e37c1d;
  text-transform: uppercase;
}
.block .title strong {
  font-weight: normal;
}
.block .listbox {
  border: solid 1px #cccccc;
  border-top: none;
  background: #ffffff;
}
.block .listbox:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
  line-height: 0;
}
.listbox .list > li > a {
  display: block;
  position: relative;
  margin-bottom: -1px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid transparent;
  background: url('../img/bullet4.png') 15px center no-repeat;
  padding: 10px 10px 10px 35px;
  font-size: 12px;
  color: #0f0f0f;
}
.listbox .list > li:first-child a,
.listbox .list > li:first-child a:hover,
.listbox .list > li:first-child a.active {
  border-bottom-color: transparent;
  border-top: none;
}
.listbox .list > li > a:hover,
.listbox .list > li > a.active {
  z-index: 1;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background: #bbbbbb url('../img/bullet5.png') 12px center no-repeat;
  color: #ffffff;
}
.listbox .sublist {
  background: #ffffff;
  padding: 8px 10px 12px 30px;
}
.listbox .sublist .sublist {
  padding-left: 15px;
}
.listbox .sublist a {
  display: block;
  padding: 5px;
  color: #444444;
}
.listbox .sublist a:before {
  content: "- ";
  margin-right: 5px;
}
.listbox .sublist a:hover {
  color: #444444;
}
.listbox .sublist > li.active > a {
  font-size: 13px;
  font-weight: bold;
  color: #444444;
}
.listbox .tags {
  border-top: 1px solid #cccccc;
  overflow: hidden;
  padding: 15px 10px 0;
}
.listbox .tags li {
  float: left;
  margin-right: 5px;
}
.listbox .tags a {
  display: block;
  color: #444;
  line-height: 24px;
}
.listbox .tags a:hover {
  color: #000;
  text-decoration: underline;
}
.listbox .view-all {
  border-top: 1px solid #bbb;
  padding: 10px;
  text-align: right;
}
.listbox .view-all a {
  color: #444;
}
.listbox .view-all a:hover {
  color: #000;
  text-decoration: underline;
}
.listbox .poll {
  border-top: 1px solid #cccccc;
}
.poll {
  padding-top: 15px;
}
.poll strong {
  display: block;
  margin-bottom: 10px;
  padding: 0 10px;
  color: #0f0f0f;
}
.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 #cccccc;
  padding: 10px;
  text-align: right;
}
.poll .buttons input {
  border: none;
  background: none;
  color: #444;
}
.poll .buttons input:hover {
  color: #000;
  text-decoration: underline;
}
.poll .poll-vote-error {
  color: #cc0000;
}
.poll-total-votes {
  display: block;
  margin-top: 15px;
  text-align: right;
}
.page {
  clear: both;
}
.page-title {
  margin-bottom: 15px;
  border: solid 1px #cccccc;
  background: #ffffff url('../img/bullet3.png') 10px center no-repeat;
  padding: 10px 10px 10px 38px;
}
.page-title:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}
.page-title h1 {
  float: left;
  font-size: 16px;
  text-transform: uppercase;
  color: #0f0f0f;
}
/********** CATEGORY PAGE **********/
.breadcrumb {
  margin-bottom: 15px;
}
.breadcrumb ul {
  overflow: hidden;
}
.breadcrumb li {
  float: left;
  margin-left: 5px;
}
.breadcrumb li * {
  color: #5c5c5c;
  text-transform: lowercase;
  font-style: italic;
}
.breadcrumb strong {
  color: #0f0f0f;
}
.breadcrumb a:hover,
.breadcrumb a:hover span {
  text-decoration: underline;
}
.product-selectors {
  margin-bottom: 25px;
}
.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: #0f0f0f;
}
.product-filters-wrapper {
  display: none;
}
.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: 218px;
  margin: 0 0 20px 10px;
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 10px;
}
.item-box:nth-child(3n+1) {
  margin-left: 0;
}
.item-box .product-item {
  position: relative;
  overflow: hidden;
}
.item-box .product-title {
  margin-bottom: 1px;
  border-bottom: 1px solid #cccccc;
  padding: 5px 5px 10px;
  font-size: 16px;
  font-weight: normal;
  color: #e37c1d;
}
.item-box .product-title a {
  display: block;
  height: 38px;
  overflow: hidden;
}
.item-box .picture {
  position: relative;
  width: 218px;
  height: 218px;
  overflow: hidden;
}
.item-box .picture a {
  display: block;
  width: 100%;
  height: 100%;
}
.item-box .picture img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.item-box .details {
  position: absolute;
  bottom: -221px;
  left: 0;
  width: 100%;
  height: 220px;
  box-shadow: 0 0 0 1px rgba(150, 150, 150, 0.5);
  background: rgba(240, 240, 240, 0.95);
  -webkit-transition: bottom 0.3s ease-in-out;
  -moz-transition: bottom 0.3s ease-in-out;
  transition: bottom 0.3s ease-in-out;
}
.item-box .description {
  overflow: hidden;
  padding: 10px 10px 5px;
  color: #0f0f0f;
}
.item-box .description a {
  display: block;
  height: 130px;
}
.item-box .product-rating-box {
  display: none;
}
.item-box .prices,
.item-box .buttons {
  padding: 4px 10px;
  text-align: right;
}
.item-box .old-price {
  margin-right: 5px;
  font-size: 13px;
  color: #999999;
  text-decoration: line-through;
}
.item-box .actual-price {
  font-size: 16px;
  font-weight: bold;
  color: #0f0f0f;
}
.item-box input[type="button"],
.item-box .buynow-button {
  display: inline-block;
  border: 1px solid #e37c1d;
  background-color: #e37c1d;
  padding: 5px 15px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}
.item-box input[type="button"]:hover,
.item-box .buynow-button:hover {
  background-color: rgba(227, 124, 29, 0.8);
}
.item-box .product-item:hover .details {
  bottom: 0 !important;
}
.product-grid {
  margin-bottom: 10px;
}
.product-grid .title {
  margin-bottom: 15px;
  padding-left: 2px;
  font-size: 28px;
  color: #444;
}
.product-grid .title strong {
  font-weight: normal;
}
.home-page-category-grid {
  margin-bottom: 30px;
}
.home-page-category-grid .item-box {
  position: relative;
  width: 448px;
  margin: 80px 0 0 20px;
  padding: 15px;
}
.home-page-category-grid .item-box:nth-child(2n+1) {
  margin-left: 0;
}
.home-page-category-grid .title {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px #cccccc;
  background: #ffffff url('../img/bullet1.png') 15px center no-repeat;
  padding: 13px 15px 12px 60px;
  font-size: 20px;
  color: #0f0f0f;
}
.home-page-category-grid .picture {
  width: 448px;
  height: 298px;
}
.home-page-product-grid .item-box {
  width: 298px;
}
.home-page-product-grid .product-title {
  background: #ffffff url('../img/bullet2.png') 10px center no-repeat;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.15);
  padding: 10px 10px 10px 52px;
}
.home-page-product-grid .picture {
  width: 298px;
  height: 248px;
}
.home-page-product-grid .picture img {
  width: 100%;
  /*TEMPORARY FIX!*/

  max-height: none;
  /*TEMPORARY FIX!*/

}
.home-page-product-grid .details {
  bottom: -251px;
  height: 250px;
}
.home-page-product-grid .description a {
  height: 160px;
}
.bestsellers .item-box,
.cross-sells .item-box {
  width: 214px;
  margin-left: 12px;
}
.bestsellers .item-box:nth-child(3n+1),
.cross-sells .item-box:nth-child(3n+1) {
  margin-left: 12px;
  /*RESET*/

}
.bestsellers .item-box:nth-child(4n+1),
.cross-sells .item-box:nth-child(4n+1) {
  margin-left: 0;
}
.cross-sells {
  margin-top: 30px;
}
.sub-category-grid .item-box {
  width: 340px;
  margin-bottom: 18px;
  margin-left: 16px;
}
.sub-category-grid .item-box:nth-child(3n+1) {
  margin-left: 16px;
  /*RESET*/

}
.sub-category-grid .item-box:nth-child(2n+1) {
  margin-left: 0;
}
.sub-category-grid .title,
.manufacturer-grid .title {
  margin: -5px 0 1px;
  border-bottom: 1px solid #cccccc;
  background: url('../img/bullet3.png') 5px center no-repeat;
  padding: 10px 0 10px 33px;
  font-weight: normal;
}
.sub-category-grid .title a,
.manufacturer-grid .title a {
  color: #444444;
}
.sub-category-grid .item-box .picture {
  width: 340px;
  height: 228px;
}
.link-rss {
  float: right;
  width: 20px;
  height: 20px;
  overflow: hidden;
  background: url('../img/social_sprite.png') -197px center no-repeat;
  text-indent: 999px;
}
.pager {
  overflow: hidden;
}
.pager ul {
  float: right;
}
.pager li {
  float: left;
  margin-left: 10px;
}
.pager li * {
  float: left;
  width: 23px;
  height: 22px;
  border: 1px solid #757575;
  overflow: hidden;
  background-color: #757575;
  text-align: center;
  font-size: 13px;
  line-height: 23px;
  color: #ffffff;
}
.pager li *:hover,
.pager li span {
  border-color: #0f0f0f;
  background: #0f0f0f;
}
.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');
}
/********** PRODUCT PAGE **********/
.product-essential {
  border-bottom: 1px dashed #cccccc;
  margin-bottom: 30px;
}
.product-essential:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}
.gallery {
  float: left;
  width: 330px;
  margin-bottom: 20px;
}
.gallery .picture {
  position: relative;
  width: 328px;
  height: 328px;
  border: 1px solid #cccccc;
  overflow: hidden;
  background: #ffffff;
}
.gallery .picture img,
.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 #cccccc;
  overflow: hidden;
  background: #ffffff;
}
.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: #ffffff;
}
.lbLoading {
  background: #ffffff 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: #0f0f0f;
  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;
  /*Cloud Zoom position*/

  float: right;
  width: 390px;
  margin-bottom: 20px;
}
.overview .product-name {
  margin-bottom: 15px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
}
.overview .product-name h1 {
  font-size: 22px;
  color: #e37c1d;
}
.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;
}
.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 {
  float: left;
  border: 1px solid #666666;
  background-color: #666666;
  box-shadow: inset 0 0 1px 0 #fff;
  padding: 5px 10px;
  color: #ffffff;
}
.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: rgba(102, 102, 102, 0.6);
  background-color: rgba(102, 102, 102, 0.6);
  color: #ffffff;
}
.product-details-page .sku,
.product-details-page .gtin,
.product-details-page .free-shipping,
.product-details-page .product-vendor {
  margin: 8px 0;
}
.overview .stock,
.variant-overview .stock,
.overview .manufacturers {
  margin-bottom: 10px;
}
.overview span.value,
.variant-overview span.value {
  color: #0f0f0f;
  font-weight: bold;
}
.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: 2px solid #fff;
  border-radius: 40px;
  background: #bc0;
  padding-top: 16px;
  text-align: center;
  font-size: 16px;
  color: #0f0f0f;
}
.overview .manufacturers a,
.product-vendor a {
  color: #0f0f0f;
  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: #0f0f0f;
  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: #dddddd url('../img/bullet4.png') 95% center no-repeat;
  padding: 4px;
  color: #0f0f0f;
  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 #cccccc;
}
.color-squares .color {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  cursor: pointer;
}
.color-squares .selected-value .color {
  border: 1px solid #cccccc;
}
.color-squares li input {
  position: relative;
  z-index: -1;
  float: left;
  margin: 6px 0 0 -18px;
}
.overview .prices,
.variant-overview .prices {
  margin-bottom: 10px;
  overflow: hidden;
}
.overview .old-product-price,
.variant-overview .old-product-price {
  float: left;
  margin-right: 15px;
  color: #444;
  font-size: 15px;
  line-height: 24px;
  text-decoration: line-through;
  text-transform: lowercase;
}
.overview .product-price,
.variant-overview .product-price {
  float: left;
  color: #009900;
  font-size: 18px;
}
.customer-entered-price {
  margin: -10px 0 20px;
  /*change if the empty "price" div is removed*/

  border: 1px solid #ddd;
  background: #eeeeee;
  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: #0f0f0f;
  font-weight: bold;
}
.overview .add-to-cart {
  margin-bottom: 20px;
}
.overview .add-to-cart-panel,
.variant-overview .add-to-cart-panel {
  overflow: hidden;
}
.overview .add-to-cart-panel > *,
.variant-overview .add-to-cart-panel > * {
  float: left;
  margin-right: 5px;
}
.overview .qty-label,
.variant-overview .qty-label {
  line-height: 32px;
}
.overview .qty-input,
.variant-overview .qty-input {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  padding: 0 6px;
  text-align: center;
}
.overview .add-to-cart-button,
.variant-overview .add-to-cart-button {
  height: 32px;
  border: 1px solid #e37c1d;
  background-color: #e37c1d;
  box-shadow: inset 0 0 1px 0 #ccc;
  padding: 0 24px;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
.overview .add-to-cart-button:hover,
.variant-overview .add-to-cart-button:hover {
  border-color: rgba(227, 124, 29, 0.8);
  background-color: rgba(227, 124, 29, 0.8);
  color: #ffffff;
}
.overview .add-to-cart .add-to-wishlist-button {
  display: none;
  /*removes the old button*/

}
.full-description {
  clear: both;
  margin-bottom: 20px;
  line-height: 20px;
}
.tier-prices {
  margin-bottom: 20px;
}
.tier-prices .prices-header {
  margin-bottom: 5px;
  font-size: 18px;
  color: #0f0f0f;
}
.tier-prices .prices-header strong {
  font-weight: normal;
}
.tier-prices td {
  border: 1px solid #cccccc;
  background: #eeeeee;
  padding: 5px;
}
.tier-prices .field-header {
  min-width: 100px;
}
.tier-prices .item-quantity {
  color: #0f0f0f;
}
.tier-prices .item-price {
  color: #009900;
}
.product-variant-line {
  margin-bottom: 20px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
}
.product-variant-line:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}
.variant-picture {
  position: relative;
  float: left;
  width: 220px;
  height: 220px;
  margin-right: 15px;
  border: 1px solid #cccccc;
  overflow: hidden;
  background: #ffffff;
}
.variant-overview {
  float: left;
  width: 500px;
}
.variant-overview .variant-name {
  margin-bottom: 5px;
  font-size: 18px;
  color: #e37c1d;
}
.variant-overview .add-to-wishlist-button {
  clear: both;
  margin-top: 15px;
}
/*Jquery Tabs start*/
.ui-tabs {
  margin-bottom: 20px;
}
.ui-tabs .ui-tabs-nav {
  overflow: hidden;
  /*margin-bottom: -1px;*/

}
.ui-tabs .ui-tabs-nav li {
  float: left;
  margin-left: 2px;
}
.ui-tabs .ui-tabs-nav li:first-child {
  margin-left: 0;
}
.ui-tabs .ui-tabs-nav li a {
  display: inline-block;
  border: 1px solid #888888;
  background: #bbbbbb;
  padding: 8px 24px;
  color: #0f0f0f;
  text-shadow: 1px 1px 0 6%;
}
.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 {
  border-color: #000000;
  background: #0f0f0f;
  color: #eeeeee;
  text-shadow: none;
}
.ui-tabs .ui-tabs-panel {
  border-top: 1px solid #cccccc;
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 12px;
}
.ui-tabs .ui-tabs-panel p {
  margin-bottom: 10px;
  line-height: 18px;
  color: #0f0f0f;
}
.ui-tabs .ui-tabs .write-review {
  margin-bottom: 0;
}
.ui-tabs .ui-tabs-hide {
  display: none;
}
/*Jquery Tabs end*/
.product-collateral .title {
  margin-bottom: 10px;
  font-size: 13px;
  color: #0f0f0f;
}
.product-specs-box {
  margin-bottom: 20px;
}
.product-tags-box {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cccccc;
}
.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: #0f0f0f;
  text-decoration: underline;
}
.product-tags-all-page ul {
  overflow: hidden;
}
.product-tags-all-page li,
.vendor-list li {
  margin-right: 10px;
  line-height: 24px;
  color: #0f0f0f;
}
.vendor-list li {
  display: inline-block;
}
.product-tags-all-page li,
.vendor-list li a {
  display: block;
  padding: 8px 12px;
}
.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: #0f0f0f;
}
.giftcard input {
  width: 316px;
}
.giftcard textarea {
  width: 316px;
  height: 150px;
}
/********** 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 {
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 20px;
}
.product-reviews-page .title {
  display: none;
}
.write-review {
  margin-bottom: 20px;
}
.write-review .form-fields {
  margin-bottom: 15px;
}
.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: 165px;
  margin-right: 10px;
  text-align: right;
  color: #0f0f0f;
}
.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: #cc0000;
}
.write-review .review-rating li.last {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 16px;
  color: #669900;
}
.ui-tabs .form-fields {
  background: #f6f6f6;
}
.ui-tabs .inputs label,
.ui-tabs .review-rating label {
  width: 173px;
}
.write-review .captcha-box {
  margin-top: 15px;
  margin-bottom: 0;
}
.write-review .buttons {
  text-align: center;
}
.write-review .button-1 {
  border: 1px solid #e37c1d;
  background-color: #e37c1d;
  padding: 6px 24px;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  color: #ffffff;
}
.write-review .button-1:hover {
  border-color: rgba(227, 124, 29, 0.8);
  background-color: rgba(227, 124, 29, 0.8);
  color: #ffffff;
  box-shadow: inset 0 0 1px 0 #ccc;
}
.product-reviews-page .result {
  margin-bottom: 20px;
}
.product-review-item {
  margin-bottom: 20px;
}
.product-review-item:last-child {
  margin-bottom: 10px;
}
.product-review-item .review-item-head {
  margin-bottom: 10px;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 5px 8px;
}
.product-review-item .review-title {
  float: left;
  margin-right: 5px;
  background: url('../img/bullet3.png') left center no-repeat;
  padding: 2px 0 2px 25px;
  font-size: 14px;
  color: #0f0f0f;
  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 & EMAIL A FRIEND **********/
.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 #666666;
  background-color: #666666;
  box-shadow: inset 0 0 1px 0 #fff;
  padding: 5px 10px;
  color: #ffffff;
}
.wishlist-content .button-2:hover,
.compare-products-table .button-2:hover,
.compare-products-table-mobile .button-2:hover {
  border-color: rgba(102, 102, 102, 0.6);
  background-color: rgba(102, 102, 102, 0.6);
  color: #ffffff;
}
.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 .clear-list {
  position: absolute;
  top: 12px;
  right: 12px;
  font-weight: bold;
  color: #000;
}
.compare-products-page .clear-list:hover {
  text-decoration: underline;
}
/*********** TOPICS ***********/
.topic-html-content {
  margin-bottom: 20px;
}
.home-page .topic-html-content {
  margin-bottom: 0;
}
.topic-html-content-title {
  margin-bottom: 15px;
}
.topic-html-content-title h2 {
  font-size: 28px;
  font-weight: normal;
  color: #444444;
}
.topic-html-content-body {
  line-height: 18px;
  color: #444444;
}
.topic-html-content a,
.topic-page a {
  color: #444444;
  text-decoration: underline;
}
.topic-html-content a:hover,
.topic-page a:hover {
  color: #000000;
}
.topic-html-content strong,
.topic-page strong {
  color: #0f0f0f;
}
.topic-page .page-body {
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 20px;
  line-height: 18px;
}
.enter-password-title {
  padding: 5px 0;
  font-size: 13px;
  font-weight: bold;
  color: #cc0000;
}
.enter-password-form {
  overflow: hidden;
  padding: 5px 0;
}
.enter-password-form input[type="password"] {
  float: left;
  width: 250px;
  height: 28px;
  margin-right: 5px;
  padding: 0 6px;
}
.enter-password-form input[type="submit"] {
  float: left !important;
  width: auto !important;
  height: 30px !important;
  border: 1px solid #e37c1d !important;
  background: #e37c1d !important;
  background-color: #e37c1d;
  padding: 0 24px !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
}
.enter-password-form input[type="submit"]:hover {
  border-color: rgba(227, 124, 29, 0.8) !important;
  background: rgba(227, 124, 29, 0.8) !important;
  background-color: rgba(227, 124, 29, 0.8);
  color: #ffffff !important;
  box-shadow: inset 0 0 1px 0 #ccc !important;
}
.password-error {
  padding: 5px 0;
}
/*********** CONTACT & EMAIL A FRIEND ***********/
.contact-page .page-body,
.email-a-friend-page .page-body {
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 20px;
}
.contact-page .form-fields,
.email-a-friend-page .form-fields {
  margin-bottom: 15px;
}
.contact-page .inputs:last-child label,
.email-a-friend-page .inputs:last-child span {
  line-height: 30px;
}
.contact-page .input-box {
  display: inline-block;
}
.contact-page textarea,
.email-a-friend-page textarea {
  vertical-align: top;
}
.contact-page .buttons,
.email-a-friend-page .buttons {
  text-align: center;
}
.contact-page .button-1,
.email-a-friend-page .button-1 {
  border: 1px solid #e37c1d;
  background-color: #e37c1d;
  padding: 6px 24px;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  color: #ffffff;
}
.contact-page .button-1:hover,
.email-a-friend-page .button-1:hover {
  border-color: rgba(227, 124, 29, 0.8);
  background-color: rgba(227, 124, 29, 0.8);
  color: #ffffff;
  box-shadow: inset 0 0 1px 0 #ccc;
}
.email-a-friend-page .title {
  margin-bottom: 15px;
}
.email-a-friend-page .title h2 {
  font-size: 20px;
  font-weight: normal;
  color: #0f0f0f;
}
.email-a-friend-page .title a:hover {
  text-decoration: underline;
}
/********** REGISTRATION, LOGIN, ACCOUNT PAGES  **********/
.registration-page .page-body,
.registration-result-page .page-body,
.login-page .page-body,
.password-recovery-page .page-body,
.account-page .page-body {
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 20px;
}
.registration-page .inputs,
.customer-info-page .inputs {
  width: 100%;
}
.registration-page .inputs label,
.login-page .inputs label,
.password-recovery-page .inputs label {
  width: 285px;
  /*one column page*/

}
.registration-page select,
.account-page select {
  width: 98px;
  margin-right: 10px;
}
.gender {
  display: inline-block;
}
.gender > * {
  display: inline-block;
  vertical-align: middle;
  width: auto !important;
  margin-bottom: 0 !important;
}
select#CountryId,
select#StateProvinceId,
select#TimeZoneId {
  width: 314px;
}
#check-availability-button {
  padding: 6px 12px;
  font-size: 12px;
  text-transform: none;
}
#username-availabilty {
  position: absolute;
  margin: -20px 0 0 10px;
  font-size: 11px;
}
.accept-privacy-policy {
  margin-bottom: 20px;
  text-align: center;
}
.accept-privacy-policy a {
  font-weight: bold;
  color: #0f0f0f;
}
.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 {
  text-align: center;
}
.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 {
  border: 1px solid #e37c1d;
  background-color: #e37c1d;
  padding: 6px 24px;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  color: #ffffff;
}
.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-color: rgba(227, 124, 29, 0.8);
  background-color: rgba(227, 124, 29, 0.8);
  color: #ffffff;
  box-shadow: inset 0 0 1px 0 #ccc;
}
.registration-result-page .result {
  margin-bottom: 15px;
  color: #669900;
}
.login-page .customer-blocks {
  margin-bottom: 30px;
}
.login-page .title {
  margin-bottom: 10px;
  font-size: 13px;
  color: #0f0f0f;
}
.login-page .new-wrapper {
  margin-bottom: 30px;
}
.login-page .new-wrapper .inner-wrapper {
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
}
.login-page .new-wrapper .text {
  margin-bottom: 20px;
  line-height: 18px;
}
.login-page .inputs.reversed {
  margin-bottom: 20px;
  text-align: center;
}
.login-page .inputs.reversed * {
  width: auto;
}
.login-page .inputs.reversed input {
  margin-left: -10px;
  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;
}
.address-list-page .info,
.order-list-page .info {
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
  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 {
  padding: 4px 12px;
  font-size: 12px;
  text-transform: none;
}
.address-list-page .add-button {
  margin-top: -10px;
  text-align: center;
}
.edit-address {
  position: relative;
  margin-bottom: 20px;
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
  color: #0f0f0f;
}
.edit-address select {
  width: 314px;
  margin-right: 0;
}
.back-in-stock-subscription-list-page .description {
  margin-bottom: 20px;
}
.avatar-page .message-error {
  margin-bottom: 10px;
}
.avatar-page .fieldset {
  margin-bottom: 15px;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
  color: #0f0f0f;
}
.avatar-page .image {
  float: left;
  margin-right: 15px;
  border: 1px solid #cccccc;
  background: #ffffff;
  padding: 10px;
}
.avatar-page .buttons {
  text-align: right;
}
.avatar-page input[type="submit"] {
  text-transform: none;
}
.avatar-page .info {
  margin-top: -20px;
}
.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 .inner-wrapper,
.return-request-page .result {
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 15px;
}
.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 {
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
}
.return-request-list-page a {
  font-weight: bold;
  color: #000;
}
.return-request-list-page a:hover {
  text-decoration: underline;
}
.return-request-list-page .comments {
  color: #000;
}
/********** SHOPPING CART & CHECKOUT **********/
.order-progress {
  margin-bottom: 20px;
}
.order-progress ul {
  overflow: hidden;
  text-align: center;
}
.order-progress li {
  display: inline-block;
  width: 120px;
}
.order-progress a {
  display: block;
  background: url('../img/bullet3.png') center top no-repeat;
  padding-top: 25px;
  color: #000000;
}
.order-progress li.active-step a {
  cursor: pointer;
}
.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;
}
/*global buttons start*/
.shopping-cart-page .button-1,
.checkout-page .button-1,
.order-details-page .button-1,
.return-items-button {
  border: 1px solid #e37c1d;
  background-color: #e37c1d;
  box-shadow: inset 0 0 1px 0 #ccc;
  padding: 6px 24px;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  color: #ffffff;
}
.shopping-cart-page .button-1:hover,
.checkout-page .button-1:hover,
.order-details-page .button-1:hover {
  border-color: rgba(227, 124, 29, 0.8);
  background-color: rgba(227, 124, 29, 0.8);
  color: #ffffff;
}
.shopping-cart-page .button-2,
.checkout-page .button-2,
.order-details-page .page-title a {
  border: 1px solid #666666;
  background-color: #666666;
  box-shadow: inset 0 0 1px 0 #fff;
  padding: 5px 10px;
  color: #ffffff;
}
.shopping-cart-page .button-2:hover,
.checkout-page .button-2:hover,
.order-details-page .page-title a:hover {
  border-color: rgba(102, 102, 102, 0.6);
  background-color: rgba(102, 102, 102, 0.6);
  color: #ffffff;
}
.remove-discount-button,
.remove-gift-card-button {
  width: 16px;
  height: 16px;
  border: 1px solid #cccccc;
  background: #ffffff url('../img/close.png') center no-repeat;
  margin-left: 5px;
  cursor: pointer;
}
.remove-discount-button:hover,
.remove-gift-card-button:hover {
  border-color: #cccccc;
}
/*global buttons end*/
.cart .edit-item {
  margin: 5px 0 0;
}
.cart .edit-item a {
  display: inline-block;
  padding: 8px 0;
}
.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: #0f0f0f;
}
.checkout-attributes dt:first-child {
  margin-left: 0;
}
.checkout-attributes li {
  padding: 3px 0;
}
.checkout-attributes li input {
  vertical-align: middle;
}
.cart-footer {
  border: solid 1px #cccccc;
  overflow: hidden;
  background: #ffffff;
  padding: 15px;
}
.cart-footer .totals {
  float: right;
  width: 260px;
}
.cart-footer .total-info {
  margin-bottom: 20px;
  background: #ffffff;
  padding: 10px;
  border: 1px dotted #ccc;
}
.checkout-page .total-info {
  margin-bottom: 0;
}
.cart-total td {
  padding: 3px;
}
.cart-total td:first-child {
  max-width: 100px;
}
.cart-total .product-price {
  color: #000000;
}
.cart-total .order-total {
  font-size: 16px;
  color: #009900;
}
.terms-of-service {
  margin-bottom: 20px;
}
.terms-of-service a {
  color: #000;
}
.terms-of-service a:hover {
  text-decoration: underline;
}
.cart-footer .cart-collaterals {
  float: left;
  width: 675px;
}
.cart-footer .cart-collaterals > div {
  min-height: 190px;
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.cart-footer .title {
  margin-bottom: 5px;
  color: #0f0f0f;
}
.cart-footer .hint {
  margin-bottom: 5px;
  font-size: 11px;
}
.cart-footer .deals {
  float: left;
  width: 260px;
}
.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;
  height: 24px;
  padding: 0 6px;
}
.cart-footer .deals .button-2 {
  float: left;
  margin-left: -1px;
  font-size: 11px;
}
.cart-footer .deals .message {
  margin-top: 5px;
  font-size: 11px;
  color: #000;
}
.cart-footer .deals .current-code {
  margin-top: 5px;
  color: #669900;
}
.cart-footer .shipping {
  float: right;
  width: 360px;
}
.cart-footer .shipping .inputs label {
  width: 100px;
}
.cart-footer .shipping .inputs [type="text"] {
  width: 226px;
}
.cart-footer .shipping select {
  width: 240px !important;
}
.cart-footer .shipping .button-2 {
  margin-left: 227px;
}
.cart-footer .shipping-results {
  margin-top: 15px;
  border-top: 1px solid #cccccc;
  padding: 10px 0 0;
  font-style: italic;
}
.cart-footer .shipping-results li {
  margin: 5px 0;
}
.cart-footer .shipping-results strong {
  color: #0f0f0f;
}
.shopping-cart-page .addon-buttons {
  margin: -50px 15px 50px 0;
  float: right;
  text-align: left;
  width: 260px;
}
.checkout-page .buttons {
  margin-bottom: 10px;
  text-align: center;
}
.checkout-page .selected-checkout-attributes {
  font-size: 13px;
  font-weight: bold;
  text-transform: capitalize;
  color: #0f0f0f;
}
.checkout-page .total-info {
  background: #eeeeee;
  /*box-shadow: inset 0 1px 5px rgba(0,0,0,0.10);*/

}
.checkout-page .address-grid {
  border: solid 1px #cccccc;
  overflow: hidden;
  background: #ffffff;
  padding: 15px;
  padding-bottom: 0;
}
.checkout-page .address-item {
  float: left;
  width: 226px;
  margin-left: 15px;
  margin-bottom: 15px;
}
.checkout-page .address-item:nth-child(4n+1) {
  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: #0f0f0f;
}
.checkout-page .address-item li.country {
  margin-top: 5px;
  color: #0f0f0f;
  font-weight: bold;
  text-transform: uppercase;
}
.checkout-page .enter-address {
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 15px;
}
.checkout-page .edit-address {
  width: 600px;
  margin: 0 auto 20px;
}
.checkout-page .edit-address label {
  width: 130px;
}
.checkout-page .edit-address .inputs,
.checkout-page .edit-address span {
  white-space: nowrap;
}
.shipping-method .method-list,
.payment-method .method-list {
  margin-bottom: 15px;
  border: solid 1px #eeeeee;
  background: #ffffff;
  padding: 15px;
}
.shipping-method .method-list li,
.payment-method .method-list li {
  margin-top: 15px;
}
.shipping-method .method-list li:first-child,
.payment-method .method-list li:first-child {
  margin-top: 0;
}
.shipping-method .method-list li label,
.payment-method .method-list li label {
  color: #0f0f0f;
  font-weight: bold;
}
.method-name > * {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
.shipping-method .method-description {
  margin-top: 5px;
}
.payment-info .info {
  margin-bottom: 15px;
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 15px;
  line-height: 20px;
}
.confirm-order .buttons {
  margin-bottom: 20px;
}
.order-review-data {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  border: solid 1px #cccccc;
  background: #ffffff;
  border-spacing: 15px;
}
.order-review-data ul {
  display: table-cell;
}
.order-review-data li {
  line-height: 18px;
}
.order-review-data .title {
  margin: 15px 0 10px;
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 5px 8px;
  color: #0f0f0f;
  text-shadow: 1px 1px 0 6%;
}
.order-review-data .title:first-child {
  margin-top: 0;
}
.order-completed .details {
  margin-bottom: 15px;
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 15px;
}
.order-completed .details a {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  color: #0f0f0f;
}
.order-completed .details a:hover {
  text-decoration: underline;
}
.opc .step-title {
  margin-bottom: 1px;
  overflow: hidden;
  background: #ffffff;
  padding: 10px;
}
.opc .active .step-title {
  border: solid 1px #cccccc;
}
.opc .allow .step-title,
.opc .allow .step-title * {
  cursor: pointer;
}
.opc .step-title * {
  float: left;
  font-size: 14px;
  text-transform: uppercase;
  color: #000000;
  cursor: default;
}
.opc .step-title span {
  margin-right: 10px;
}
.opc .step {
  margin: 10px 0;
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 15px;
}
.opc .section {
  margin-bottom: 15px;
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 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;
  color: #0f0f0f;
}
.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*/

  padding: 0;
  /*RESET*/

  border: none;
  /*mc*/

}
.opc .section.confirm-order {
  display: none;
}
.opc .order-review-data {
  box-shadow: none;
  /*RESET*/

  border-spacing: 0;
  /*RESET*/

  border: none;
  /*mc*/

}
.opc .order-review-data ul {
  padding: 10px;
}
.opc .selected-checkout-attributes {
  margin-bottom: 15px;
  text-align: right;
  color: #0f0f0f;
}
.opc .cart-footer {
  margin-bottom: 15px;
  box-shadow: none;
  /*RESET*/

  padding: 0;
  /*RESET*/

}
.opc #checkout-step-confirm-order .buttons {
  text-align: right;
}
.opc .account-page .page-body {
  border: none;
  /*mc*/
}
.order-details-page .page-body {
  border: solid 1px #cccccc;
  overflow: hidden;
  background: #ffffff;
  padding: 15px;
}
.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;
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
}
.order-details-page strong {
  color: #0f0f0f;
}
.order-details-area {
  margin-bottom: 20px;
  border-bottom: 1px dashed #cccccc;
  overflow: hidden;
  padding-bottom: 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: #0f0f0f;
}
.order-details-page .actions {
  text-align: right;
}
.order-details-page .total-info {
  float: right;
}
.order-details-page .shipments {
  clear: both;
}
.shipment-overview {
  margin: 0 0 15px;
}
.shipment-overview:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}
.shipping-details,
.shipping-address {
  margin: 0 0 2% 2%;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  padding: 15px;
  float: left;
  width: 49%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 285px;
}
.shipping-details {
  margin-left: 0;
}
.shipping-details li,
.shipping-address li {
  margin-top: 15px;
}
.shipping-details li:first-child,
.shipping-address li:first-child {
  margin-top: 0;
}
.shipping-details li label,
.shipping-address li label {
  color: #0f0f0f;
  font-weight: bold;
}
.shipping-details .title,
.shipping-address .title {
  margin-top: 5px;
}
/*********** SEARCH & SITEMAP ***********/
.search-input {
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 15px;
}
.search-input .inputs.reversed {
  text-align: center;
  /*RESET*/

}
.search-input .inputs.reversed label {
  width: auto;
  /*RESET*/

}
.basic-search {
  margin-bottom: 15px;
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
}
.basic-search label {
  width: 120px;
}
.basic-search input[type="text"] {
  width: 400px;
  max-width: 100%;
}
.advanced-search {
  margin-bottom: 15px;
  border: 1px dotted #ccc;
  background: #ffffff;
  padding: 15px;
}
.advanced-search .inputs label {
  width: 170px;
  font-style: italic;
}
.advanced-search select {
  width: 312px;
}
.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: center;
}
.search-input .button-1 {
  border: 1px solid #e37c1d;
  background-color: #e37c1d;
  box-shadow: inset 0 0 1px 0 #ccc;
  padding: 6px 24px;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  color: #ffffff;
}
.search-input .button-1:hover {
  border-color: rgba(227, 124, 29, 0.8);
  background-color: rgba(227, 124, 29, 0.8);
  color: #ffffff;
}
.search-input .warning {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-weight: normal;
  color: #cc0000;
}
.search-results {
  margin-top: 25px;
}
.search-results .result {
  display: block;
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 15px;
  text-align: center;
  font-weight: normal;
  color: #cc0000;
}
.search-results .product-list:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}
.sitemap-page .page-body {
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 15px;
}
.sitemap-page .entity {
  margin-bottom: 15px;
}
.sitemap-page .entity-title {
  margin-bottom: 10px;
}
.sitemap-page .entity-title h2 {
  font-size: 13px;
  color: #0f0f0f;
}
.sitemap-page .entity-body {
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  background: #eeeeee;
  padding: 15px;
  line-height: 24px;
}
.sitemap-page a:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: url('../img/bullet4.png') left 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: #eeeeee;
  color: #000;
}
.sitemap-page a:hover:before {
  opacity: 1;
  filter: alpha(opacity=100);
}
/********** BLOG & NEWS **********/
.year strong {
  display: block;
  border-bottom: 1px solid #cccccc;
  background: #eeeeee url('../img/bullet4.png') 15px center no-repeat;
  padding: 10px 10px 10px 35px;
  font-size: 14px;
  color: #0f0f0f;
  text-shadow: 1px 1px 0 6%;
  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: 30px;
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 15px;
}
.post-head,
.news-head {
  margin-bottom: 15px;
  border-bottom: 1px solid #cccccc;
  overflow: hidden;
  padding-bottom: 10px;
}
.post-title,
.news-title {
  float: left;
  max-width: 550px;
  font-size: 18px;
  color: #0f0f0f;
}
.post-title:hover,
.news-title:hover {
  color: #000;
}
.post-date,
.news-date {
  float: right;
  font-size: 13px;
  line-height: 22px;
  font-style: italic;
  color: #0f0f0f;
}
.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;
  background: #eeeeee;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.1);
  padding: 8px;
}
.blog-page .tags label,
.blogpost-page .tags label {
  float: left;
  margin-right: 5px;
  padding: 3px;
  color: #0f0f0f;
  font-weight: bold;
  text-shadow: 1px 1px 0 6%;
}
.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 #ccc;
  background: #eeeeee;
  padding: 2px 3px;
}
.blog-page .tags a:hover,
.blogpost-page .tags a:hover {
  border-color: #999;
  background: #ffffff;
  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-fields {
  margin-bottom: 15px;
  overflow: hidden;
  background: #eeeeee;
  padding-bottom: 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;
  /* Safari/Chrome, other WebKit */

  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */

  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 #e37c1d;
  background-color: #e37c1d;
  padding: 6px 24px;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  color: #ffffff;
}
.new-comment .button-1:hover {
  border-color: rgba(227, 124, 29, 0.8);
  background-color: rgba(227, 124, 29, 0.8);
  color: #ffffff;
  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: #0f0f0f;
}
.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: #eeeeee;
  padding: 5px;
  font-weight: bold;
  color: #0f0f0f;
  text-shadow: 1px 1px 0 6%;
}
.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: 10px;
  color: #0f0f0f;
}
.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 #666666;
  background-color: #666666;
  box-shadow: inset 0 0 1px 0 #fff;
  padding: 5px 10px;
  color: #ffffff;
}
.news-items .read-more:hover {
  border-color: rgba(102, 102, 102, 0.6);
  background-color: rgba(102, 102, 102, 0.6);
  color: #ffffff;
}
.news-item-page .inputs:first-child label {
  display: inline-block;
}
.news-list-homepage .title {
  margin-bottom: 15px;
  padding-left: 2px;
  font-size: 28px;
  color: #444;
}
.news-list-homepage .title strong {
  font-weight: normal;
}
.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 {
  border: solid 1px #cccccc;
  background: #ffffff url('../img/bullet3.png') 10px center no-repeat;
  padding: 10px 10px 10px 38px;
}
.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: 28px;
  padding: 0 6px !important;
  color: #444;
}
.forum-search-box-button,
.forum-search-button {
  float: left;
  width: 30px;
  height: 30px;
  border: none;
  overflow: hidden;
  background: #444444 url('../img/icon4.png') center no-repeat;
  text-indent: 999px;
}
.forum-search-box-button:hover,
.forum-search-button:hover {
  background-color: #555;
}
.forum-search-box .advanced {
  padding: 5px;
  text-align: right;
}
.forum-search-box .advanced a:hover {
  color: #0f0f0f;
  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: 444px;
  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: #cc0000;
}
.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 {
  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: #0f0f0f;
}
.forum-page .link-rss {
  position: absolute;
  top: 5px;
  right: 0;
}
.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: #0f0f0f;
}
.forum-topic-page .topic-header {
  overflow: hidden;
}
.forum-topic-page .manage {
  float: right;
  margin-bottom: 15px;
}
.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;
  margin-bottom: 15px;
}
.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;
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 20px;
}
.forum-post {
  margin-bottom: 20px;
  border-bottom: 1px dotted #ccc;
  overflow: hidden;
  padding: 5px 0 15px;
}
.forum-post:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.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: #eee;
  box-shadow: inset 0 0 1px 0 #fff;
  padding: 5px 5px 5px 25px;
}
.forum-post .manage a:hover {
  background-color: #eeeeee;
  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 #cccccc;
  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 #666666;
  background-color: #666666;
  box-shadow: inset 0 0 1px 0 #fff;
  padding: 5px 10px;
  color: #ffffff;
}
.forum-post .pm-link-button:hover,
.profile-info-box .pm-link-button:hover {
  border-color: rgba(102, 102, 102, 0.6);
  background-color: rgba(102, 102, 102, 0.6);
  color: #ffffff;
}
.forum-post .post-content,
.profile-info-box .profile-stats {
  margin-left: 200px;
}
.forum-post .posttime {
  margin-bottom: 10px;
  border: 1px solid #aaa;
  background: #eeeeee;
  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: #444;
}
.forum-post .post-body {
  padding-left: 5px;
}
.forum-edit-page .page-body,
.private-message-send-page .page-body {
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 20px;
}
.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: 540px;
  height: 180px;
  margin-left: 178px;
}
.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 #666666;
  background-color: #666666;
  padding: 6px 24px !important;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
.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: rgba(102, 102, 102, 0.6);
  background-color: rgba(102, 102, 102, 0.6);
  color: #ffffff;
  box-shadow: inset 0 0 1px 0 #fff;
}
.forum-edit-page .buttons input[type="submit"],
.private-message-send-page .options input[type="submit"],
.private-message-view-page .options input.button-2 {
  border: 1px solid #e37c1d;
  background-color: #e37c1d;
  color: #ffffff;
}
.forum-edit-page .buttons input[type="submit"]:hover,
.private-message-send-page .options input[type="submit"]:hover,
.private-message-view-page .options input.button-2:hover {
  border-color: rgba(227, 124, 29, 0.8);
  background-color: rgba(227, 124, 29, 0.8);
  color: #ffffff;
  box-shadow: inset 0 0 1px 0 #ccc;
}
.profile-info-box {
  overflow: hidden;
}
.profile-info-box .title {
  margin-bottom: 10px;
  background: #eeeeee;
  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: #0f0f0f;
}
.profile-page .topic-title {
  margin-bottom: 10px;
  background: #eeeeee;
  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 {
  border: solid 1px #cccccc;
  background: #ffffff;
  padding: 20px;
}
.private-message-view-page label {
  font-weight: bold;
  color: #000;
}
.private-message-view-page .message {
  margin: 15px 0;
  border: 1px dotted #ccc;
  padding: 15px;
}
.private-message-view-page .options {
  overflow: hidden;
}
.private-message-view-page .back-pm-button {
  float: right;
  text-transform: capitalize !important;
}
