/*-----------------------------------------
 Trains4u Shop

  TABLE of CONTENTS:
  --------------

  __GLOBALS
    __RESET_ALL_STYLES
    __FONTS_and_GENERIC_TEXTS 
    __USEFULL_CLASSES

  __UI
    __GENERICS
    __FORM_ELEMENTS
    __BUTTONS
    __ICONS

  __TEMPLATE_LAYOUT

  __MODULES_STYLES
    __HEADER_MODULES
    __FOOTER_MODULES
    __PREDEFINED_MODULES

  __MAIN_CONTENT_PAGES

  __CATEGORY_and_PRODUCT_PAGES
    __BREADCRUMBS
    __SEARCH_RESULTS
      __PRODUCTS_LISTINGS
    __PRODUCT_PAGE
      __PRODUCT_IMAGES
      __PRODUCT_ITEMS_FIELDS
      __PRODUCT_ITEMS_LAYOUTS
      __ASSOCIATED_PRODUCTS
      __PRODUCT_REVIEWS

  __CHECKOUT_PROCESS_PAGES
    __CHECKOUT_TRAIL
    __BASKET_TABLES
    __CHECKOUT_TITLES
    __BASKET
    __ONE_PAGE_CHECKOUT
    __DELIVERY
    __MULTI_DELIVERY
    __COURIERS
    __COLLECTION
    __BASKET_SUMMARY
    __PAYPAL_REDIRECT
    __ORDER_PAYMENT

  __USER_ACCOUNT_PAGES
    __REGISTRATION
    __LOGIN
    __ORDER_HISTORY
    __REORDER
    __ADDRESS_OPTIONS
    __NEW_ADDRESS
    __EDIT_ADDRESS
    __ACCOUNT_CREDIT

  __OTHER_PAGES
    __COOKIE_POLICY
    __CONTACT_US
    __CURRENCY_SELECTION
    __SITEMAP
    __404_PAGE_NOT_FOUND
*/
/* latin-ext */

@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/fontawesome-webfont.eot'); /* IE9 Compat Modes */
  src: local('FontAwesome'), local('FontAwesome'),
       url('../fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/fontawesome-webfont.woff') format('woff'), /* Modern Browsers */
       url('../fonts/fontawesome-webfont.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/fontawesome-webfont.svg#Caveat') format('svg'); /* Legacy iOS */
}

/*---------------------------------------------
  __GLOBALS
--------------------------------------------*/

/*  __RESET_ALL_STYLES
 */

*  {
  margin:0;
  padding:0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -box-sizing: border-box;
}

html {
  font-size: 100%; /* Corrects text resizing oddly in IE 6/7 when body `font-size` is set using 'em' units */

  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

ul { /*padding:0 20px;*/ list-style: none; }

a > img { border:0 } /* prevent IE from adding border to link images */

h1, h2, h3, h4, h5, h6 {margin: 10px 0}



/*  __FONTS_and_GENERIC_TEXTS
 */
/* latin-ext */

html, body, p {
  font-family: Arial,verdana,sans-serif;
  font-size: 14px;
  color:#000;
}
body {}
a,
.btn.btn-link {text-decoration: none;color: #000;}

a:hover,
.btn.btn-link:hover {}

a:visited,
.btn.btn-link:visited {}



/*  __USEFULL_CLASSES
 */

.clear {clear:both}
.left {float:left}
.left li{float: left;}
.right {
  float: right !important;
  width: 33% !important;
}

.inline,
.list-inline li {
  display:inline-block;
  vertical-align:top;
  /* force hasLayout on IE7 and below */
  *display: inline;
  *zoom:1;
}
.list-inline,
.list-inline ul,
.list-inline li,
.list-no-bullet,
.list-no-bullet ul,
.list-no-bullet li {
  padding:0;
  margin:0;
}
.list-no-bullet,
.list-no-bullet ul {
  list-style:none;
}


/* user messages */
.ct_userMessage {
  background: #FFFFCC;
  border: 1px solid #E2C97F;
  color: #666;
  margin: 10px 0;
  padding: 10px;
}
.ct_userMessage p {
  margin:0
}

/* error font */
.ct_font_error,
.ct_font_error *  {color: red;}

/* error messages */
.ct_userMessage {position: relative; z-index: 9999;}
.ct_userMessage.ct_font_error {
  background:#ffa7a7;
  border: 1px solid #cc0000;
}
#ct_pd_stockError {
  z-index: 10;
}
.ct_userMessage.ct_font_error,
.ct_userMessage.ct_font_error * {
  color: #990000;
}

/* helper messages in forms */
.ct_form_helper {
  font-style:italic;
  margin:0 0 5px;
  color:#999;
}



/*---------------------------------------------
    __UI
---------------------------------------------*/

/* __GENERICS
 */
input 
input:focus { outline: none; } /* remove default outline on Mac OS */

.btn, input, select, textarea {
  border: 1px solid #c8c8c8;
-webkit-border-radius: 3px;
   -khtml-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  margin: 0 3px 3px 0;
  padding: 5px 10px;
  vertical-align:middle;

}


/* __FORM_ELEMENTS
 */

/* TEXT INPUTS, DROP DOWNS */
input[type='text'],
input[type='password'],
input[type='email'],
textarea {}

select {
  outline: 0;
  background:#fff;
  text-overflow:ellipsis;
}
input[type='text']:focus,
input[type='password']:focus,
input[type='email']:focus,
textarea:focus {
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2) inset;
     -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2) inset;
}

input[type='text']:hover,
input[type='password']:hover,
input[type='email']:hover,
textarea:hover,
select:hover {
  -webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
     -moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
          box-shadow: 0 0 3px rgba(0,0,0,.2);
}
select:hover {
  cursor:pointer;
}


/* __BUTTONS
 */
input{
  -webkit-appearance: none;
}
input[type='checkbox']:checked
{
    position:relative;
}
input[type='checkbox']:checked:before {
    content: '✔';
    display: block;
    width: 17px;
    height: 16px;
    position: absolute;
    top: -2px;
    left: 30%;
    color: #000;
    font-size: 10px;
}

/* Default Buttons */
.btn,
input[type='button'],
input[type='submit'],
input[type='reset'] {
  background: #f1f1f1;
  cursor:pointer;
  display:inline-block;
  *display: inline;
  *zoom:1; /* force hasLayout on IE7 and below */
  text-decoration: none;
  vertical-align:middle;
  text-transform: lowercase;
}
.btn:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover, .btn:active, input[type="button"]:active, input[type="submit"]:active, input[type="reset"]:active {
  background: rgba(0, 0, 0, 0) url("/layout/navBar_bg_over.jpg") repeat scroll 0 0;
  color: #000;
  font-weight: 400;
}


/* Primary buttons */
.btn.btn-primary, input[type="submit"] {
  background: #f0f0f0 none repeat scroll 0 0;
  border: 1px solid #aaa;
  color: #000;
  font-family: Arial,verdana,sans-serif;
  font-size: 14px;
  font-weight: bold;
  height: 40px;
  text-transform: uppercase;
  font-weight: 400;
}
.btn.btn-primary:hover,
input[type='submit']:hover,
.btn.btn-primary:active,
input[type='submit']:active {
/*opacity: 0.75;*/
}

/* Info buttons */
.btn.btn-info {}
.btn.btn-info:hover,
.btn.btn-info:active {}


/* Success buttons */
.btn.btn-success {}
.btn.btn-success:hover,
.btn.btn-success:active {}

/* Warning buttons */
.btn.btn-warning {
  background: #FFFFCC;
  border: 1px solid #E2C97F;
  color: #999;
}
.btn.btn-warning:hover,
.btn.btn-warning:active {
  background: #999; /*#F89406;*/
  border-color:#999;
  color:#fff;
}

/* Danger buttons */
.btn.btn-danger,
input[type='reset'] {
background: none repeat scroll 0 0 #b83741;
border: medium none;
border-radius: 0;
color: #fff;
font-weight: bold;
height: 50px;
text-transform: uppercase;
}
.btn.btn-danger:hover,
input[type='reset']:hover,
.btn.btn-danger:active,
input[type='reset']:active {
  background: #000;
}

/* Link buttons */
.btn.btn-link {
  background:none;
  border:0;
  padding: 5px;
  text-decoration: underline;
  text-transform:none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}


/* __ICONS
 */
.btn[class*='icon-'] { padding-left:30px!important } /* increase padding for icon */
input.btn[class*='icon-'] { padding-left: 15px!important; }    /* except for input tags which do not support pseudo elements  */

.btn[class*='icon-']:before {
  position:absolute;
  background-repeat: no-repeat;
  background-position: center center;
  content:' ';
  display:inline-block;
  height:16px;
  width:16px;
  margin-left:-20px;
  vertical-align:middle;
}
.btn.icon-edit:before { background-image: url(system_images/icons-16/edit.png); }
.btn.icon-ok:before { background-image: url(/system_images/eshop/skin1/icn_in.png); }
/*.btn.icon-prev:before { background-image: url(system_images/icons-16/edit.png); }*/
/*.btn.icon-next:before { background-image: url(system_images/icons-16/edit.png); }*/
/*.btn.icon-plus:before { background-image: url(/system_images/eshop/skin1/icn_in.png); }*/
/*.btn.icon-minus:before { background-image: url(/system_images/eshop/skin1/icn_in.png); }*/
.btn.icon-remove:before { background-image: url(system_images/icons-16/delete.png); }
.btn.icon-trash:before { background-image: url(system_images/icons-16/trash.png); }


/*---------------------------------------------
    __TEMPLATE_LAYOUT
---------------------------------------------*/

#ct_template_wrapper {}
#ct_template_header, #ct_template_content, #ct_template_footer{
  position:relative;
  width: 960px;
  margin: 0 auto;
}
.ct_template_header {}

.ct_template_header.outer {}
#ct_template_content {
  border: 4px solid #8a93ff;
}

/**/#ct_template_content_left,
/**/#ct_template_content_main,
/**/#ct_template_content_right {
  float: left;
}
/**/#ct_template_content_left {}
#ct_template_content_right {}
#ct_template_content_right .ct_productSearch, #ct_template_content_right .ct_smallBasket{background: #fffbe2 none repeat scroll 0 0;
border: 1px solid #8a93ff;
float: left;
margin: 10px 0 0;
width: 98%;}
#ct_template_content_right .ct_productSearch{}
#ct_template_content_right .ct_productSearch input {margin: 2%; width: 96%;}
#ct_template_content_right .ct_smallBasket{}
#ct_template_content_right .ct_module_header{
  -webkit-border-radius: 3px;
   -khtml-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
background: #585ee3 none repeat scroll 0 0;
color: #fff;
margin: 5px 2%;
width: 96%;}
#ct_template_content_right .ct_smallBasket .ct_module_header a{color: #fff;}
#ct_template_content_main {width: 58%; min-height: 170px;margin: 0 1%;}
.ct_homepage #ct_template_content_main, #ct_template_content_main.basket-page, #ct_template_content_main.normal-page {} 
/**/#ct_template_content_left, #ct_template_content_right {width: 20%;}
.ct_template_footer {}
.ct_template_footer.outer {}
#ct_template_content_main.basket-page, #ct_template_content_main.delivery-address-page,
#ct_template_content_main.courier-services-page, #ct_template_content_main.basket-summary-page{width:78%;}
#ct_template_header {
  background: rgba(0, 0, 0, 0) url("/layout/head-bk.png") no-repeat scroll 0 10px / 100% auto;
  height: 115px;
}
#ct_template_cybertillLink {
  float: left;
  margin: 5px 0;
  text-align: center;
  width: 100%;
}
/**/#ct_template_cybertillLink a {color: #fff;}
/**/#ct_template_cybertillLink a:hover {}

#ct_template_footer .ct_module_header {
}
.ft-copyright{width:100%;
font-size: 12px;
height: 15px;
text-align:center;float: left;margin: 10px 0;}
.ft-links{
float: left;
width: 100%;
}
.ft-links ul{
  width: 100%;
  text-align: center;
}
.ft-links li{
  display: inline;
}
.ft-links a{
  padding: 5px;
  color: blue;
}
/** COOKIE WARNING **/
/**/#ct_cookie_prompt {
  position:fixed;
  bottom:0;
  width:100%;
  padding:15px 0 15px 0;
  background-color:#000;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=75)';
  filter: alpha(opacity=75);
  -khtml-opacity:0.75;
    -moz-opacity: 0.75;
         opacity:0.75;
  color:#FFF;
  font-size:14px;
  text-align:center;
  height:50px;
}
/**/#ct_cprompt_inner { position:absolute;width:900px;text-align:left;margin:0 0 0 -450px;left:50%; }
/**/#ct_cprompt_inner span { float:left;font-size:35px;padding:0 15px 0 0; }
/**/#ct_cprompt_inner a { font-weight:bold; }
/**/#ct_cookie_prompt_close { cursor:pointer;position:absolute;top:10px;right:10px;border:2px solid #FFF;color:#FFF;width:20px;line-height:20px;text-align:center;font-weight:900; }
/** end COOKIE WARNING **/


/*---------------------------------------------
    __MODULES_STYLES
---------------------------------------------*/
/** modules containers **/
.ct_module,
.ct_link_module,
.ct_html_module {
  max-width:100%;
  vertical-align:top;
}

.ct_link_module {margin: 0 5px;}
.ct_html_module {}


/** modules titles **/
.ct_module .ct_module_header {
float: left;
font-weight: 700;
line-height: 30px;
text-align: center;
width: 100%;
}
.ct_module .ct_module_header a {}



/*---------------------------------------------
    __HEADER_MODULES
---------------------------------------------*/

.ct_template_header {
  text-align:right;
}

.ct_template_header .ct_module,
.ct_template_header .ct_link_module,
.ct_template_header .ct_html_module {
  display:inline-block;
  vertical-align:top;
  width:auto;
  text-align:left;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}

.ct_template_header .ct_html_module {float:left;}
/*---------------------------------------------
    HEADER
---------------------------------------------*/
#ct_template_header .ct_loginLink.ct_link_module{display: none;}
#logo{float: left;width: 53%;margin: 10px 0 0;}
#logo a{}
#logo img{max-width: 300px;float: left;}

.tab-one, .tab-two{float: left;width: 23%;margin: 20px 0 0;}
.tab-one{color: #7d7d7d;}
.tab-one a{font-weight:700; color: #7d7d7d;}
.tab-two{color: #fff;}
#nav-links{width: 80%;float: left;}
#nav-links ul{width: 100%;}
#nav-links li{float: left;}
#nav-links a {
  color: #fff;
  font-weight: 700;
  line-height: 60px;
  padding: 0 15px;
}
.postage {
  float: left;
  text-align: center;
  width: 20%;
  margin: 10px 0 0;
}
.postage li{font-weight: 700;font-size: 12px;}
.postage li:first-child{font-size: 20px;}


#top-links {float: left; margin: 10px 0 0; width: 60%;}
#top-links ul{float: right;background: rgba(0, 0, 0, 0) url("/layout/topMenu_bg.png") no-repeat scroll 0 0 / 100% 40px;}
#top-links li{float: left;height: 40px;line-height: 40px;margin: 0 0 40px 10px;color: #999999;text-align: right;}
#top-links li:last-child {margin: 0 10px 40px;font-size: 12px;}
#top-links a{color: #fff;width: 100%;font-size: 12px;}
#top-links a:hover{text-decoration: underline;}
#top-links .ct_loginLink{display: none;}
.my-account{display: none;}

#header_wrap {}
#header_wrap a{}
#header_wrap a:hover{}
#header_wrap .ct_loginLink{}
#headerLinks{}
#headerLinks ul{}
#headerLinks li {}
#headerLinks li:last-child{}  

#ct_template_header .ct_ac_search.ct_module{width: 250px; float: right; height: 35px;}
#ct_template_header .ct_ac_search.ct_module:hover {}
#autocomplete_for.ac_input:hover{box-shadow: none;}

#autocomplete_for.ac_input{width: 100%;}
#autocomplete_for.ac_input:focus{box-shadow: none;}
.ct_ac_search_go {
  position: absolute;
  right: -3px;
  top: 0;
}
.ct_ac_search_form{position: relative;}

.ct_ac_search_input input {}
.ct_ac_search_go input {
  background: #212445 url("layout/carousel-right-btn.jpg") no-repeat scroll 0 -40px;
  border: medium none;
  box-shadow: none;
  height: 35px;
  text-align: left;
  text-indent: -9999px;
  width: 27px;
  z-index: 30;
}
.ct_ac_search_go input:hover{
  background: #212445 url("layout/carousel-right-btn.jpg") no-repeat scroll 0 -40px;
  border: none;
}
.ct_ac_search_input {float: left;width: 100%;}
.ct_ac_search_input input{
color: #000;
font-family: Arial,verdana,sans-serif;
border: 1px solid #c8c8c8;
    -webkit-border-radius: 5px;
   -khtml-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
height: 35px;
}
.ct_template_header .ct_module.ct_categoryMenu {
  background: rgba(0, 0, 0, 0) url("/layout/navBar_bg.png") repeat-x scroll 0 0;
  padding: 40px 0 0;
  width: 100%;
}
   
/*--------------------------------------------
Homepage
--------------------------------------*/
.ct_homepage #ct_template_content_left, .ct_homepage #ct_template_content_right {}
.no-margin{margin:10px 0 !important;}

.banner{width: 74%;float: left;}
.banner a{}
.banner img{}

.side-box{float: left;width: 23%;margin: 0 0 0 3%;background: #222426;}
.side-box ul{width: 90%;margin: 0 5% 10px;float: left;}
.side-box ul:first-child{margin: 35px 5% 10px;}
.side-box ul:last-child{margin: 0 5% 50px;}
.side-box li{color: #fff;width: 100%;float: left;margin: 0 0 5px;}
.side-box a{}

.promo-box {
  float: left;
  margin: 0 5%;
  width: 90%;
}
.promo-box:hover{opacity: 0.5;}
.promo-box a{font-weight: 700;}
.promo-box img{max-width: 100%;height: auto;}

.hp-message{width: 100%;float: left;text-align: center;margin: 20px 0 0;}
.hp-message .ct_module_header{width: 50%;margin: 0 auto;font-size: 20px;}
.hp-message p{width: 80%;margin: 10px auto;}

.homepage-title{float: left; margin: 0 5% 10px; width: 90%; text-align: center;}
.homepage-title .ct_module_header {
  color: #585ee3;
  float: left;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 0;
  width: 100%;
}
.new-arrivals{float: left; margin: 0 5% 10px; width: 90%; text-align: center;}
.new-arrivals .ct_module_header {
  background: #585ee3 none repeat scroll 0 0;
  color: #fff;
  float: left;
  font-weight: 700;
  padding: 5px 0;
  width: 100%;
}
/*-------------------------------------------
    __FOOTER_MODULES
---------------------------------------------*/
#ct_template_footer {background: rgba(0, 0, 0, 0) url("/layout/footer_bgTrame.jpg") repeat-x scroll 0 0;}
.ct_template_footer {
  clear: both;
  height: 250px;
}
.footer-col {
  float: left;
  margin: 0;
  min-height: 150px;
  width: 15%;
}
.footer-col:first-child{margin: 0 0 0 10px;}
.footer-col .ct_module_header {color: #cadbe2; margin: 10px 0; }
.footer-col ul{float: left; width: 100%;}
.footer-col li{margin: 0 0 5px 10px;}
.footer-col a {color: #fff;font-size: 12px;}
.footer-col a:hover {text-decoration: underline;}
.footer-col.end-col{}

#ct_template_footer .ct_brandsMenu{float: left;text-align: center;width: 100%;}
#ct_template_footer .ct_brandsMenu .ct_module_header{color: #fff;}
#ct_template_footer .ct_brandsMenu .ct_bm_dropDown {text-align: center;}
#ct_template_footer .ct_brandsMenu .ct_bm_dropDown select{width: 200px;}
#ct_template_footer .ct_brandsMenu .ct_bm_list{display: none;}
/*Custom Pages*/

.ct_contentPage {
    width: 100%;
}
.ct_contentPage .ct_html_module{float: left;width: 100%;margin: 5px 0;}
.ct_contentPage p {
    margin: 0 0 10px;
}
.ct_contentPage a {
    text-decoration: underline;
}

.ct_contentPage div {
  margin: 0 auto;
}
.ct_contentPage .ct_html_module .ct_module_header{font-weight: 700;}

#ct_pageId_14 h2{color: #585EE3;text-align: center;}
#terms-general{width: 100%;float: left;}
#terms-conditions{width: 100%;float: left;}
#terms-returns{width: 100%;float: left;}
#terms-privacy{width: 100%;float: left;}

.terms-links{
text-align: center;
}
.terms-links .ct_module_header{margin: 0 0 10px;}
.terms-links li{margin: 0 0 10px;}
.terms-links a {
  color: #0000ee;
  font-size: 20px;
}

#return-top {
  background: #585ee3 none repeat scroll 0 0;
  height: 50px;
  position: fixed;
  width: 50px;
  right:10px;
  bottom: 10px;
  overflow: hidden;
}
#return-top a {
  color: #fff;
  display: block;
  line-height: 70px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
#return-top a:after{
    content: "\f062";
font-family: fontAwesome;
font-size: 20px;
position: absolute;
right: 15px;
top: -21px;
}
/*Custom Pages End*/


/*---------------------------------------------
    __PREDEFINED_MODULES
-----------------------------------------*/

/** link modules **/
.ct_loginLink {}
.ct_loginLink a {}

.ct_accountLink {}
.ct_accountLink a {}

.ct_contactUs_link {}
.ct_contactUs_link a {}

.ct_sitemapLink {}
.ct_sitemapLink a {}



/** PRODUCTS SEARCH pre-defined section **/
.ct_productSearch {}
.ct_productSearch .ct_module_header {}

.ct_productSearch  form {
  display:inline-block;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}
.ct_ps_for,
.ct_ps_for input {}
.ct_ps_type,
.ct_ps_goSearch {
  display:inline-block;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}

#ct_template_content_right .ct_ps_type select{
  float: left;
  margin: 0 0 0 2%;
}
#ct_template_content_right .ct_ps_goSearch{
  position: relative;
}
#ct_template_content_right .ct_ps_goSearch input {
  font-size: 0;
  height: 35px;
  width: 40px !important;
  display: block;
  background: rgba(0, 0, 0, 0) url("/layout/go.png") no-repeat scroll 10px 5px;
  border: none;
}
#ct_template_content_right .ct_ps_goSearch::after {}
/** END PRODUCTS SEARCH pre-defined section **/

.ct_pl_product_link img{

}
#pd_header_wrapper {
float: left;
}
#pd_header_wrapper h1{}
/** AUTO-COMPLETE SEARCH pre-defined section  **/
.ct_ac_search {}
.ct_ac_search .ct_module_header {display: none;}

.ct_ac_search_input,
.ct_ac_search_go 

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}
.ct_pd_pi_m
.ct_ac_search_input input {}
.ct_ac_search_go input {}
.ct_ac_search_go input:hover{}
.ct_ac_search_input {}
.ct_ac_search_input input{}

.ac_results {
  padding: 0px;
  background-color: white;
  color:white;
  overflow: auto;
  z-index: 99999;
}
.ac_results ul {
  width: 100%;
  list-style-position: outside;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ac_results li {
  margin: 0px;
  padding: 2px 5px;
  cursor: default;
  display: block;
  /*
  if width will be 100% horizontal scrollbar will apear
  when scroll mode will be used
  */
  /*width: 100%;*/
  font: menu;
  font-size: 12px;
  /*
  it is very important, if line-height not setted or setted
  in relative units scroll will be broken in firefox
  */
  line-height: 16px;
  //overflow: hidden;
  color:gray;
}
.ac_loading {
  background: white url('../images/indicator.gif') right center no-repeat;
  color: black;
}
.ac_odd {
  background-color: #eee;
  color: black;
}
.ac_over {
  background-color: #0A246A;
  color: white;
}
/** end AUTO-COMPLETE SEARCH **/



/** SEARCH FILTERS pre-defined section **/
.ct_searchFilters {width: 95%;float: left;}
.ct_searchFilters .ct_module_header {}
.ct_searchFilters ul.checkbox_list {list-style:none;padding:0;background: #fff;}
.ct_searchFilters ul.checkbox_list li {padding: 3px 0;}
#searchfilter_sort_type {width: 150px;}
/** end SEARCH FILTERS **/
.ct_styleFilters ul.checkbox_list{display: none;}
#ct_pd_product_description {
  clear: right;
  float: left;
  margin: 10px 0;
  padding: 10px;
  position: relative;
  width: 100%;
}
/** SMALL BASKET pre-defined section **/
#basketwrap {
left: 10px;
position: relative;
width: 140px;
}
.ct_smallBasket {float: left;}
.ct_smallBasket .ct_module_header {float: left; margin: 0 0 10px;}
.ct_smallBasket .ct_module_header a{}
.ct_sb_links {
  border-top: 1px solid #ccc;
  float: left;
  margin: 10px 0 0;
  width: 100%;
}
.ct_sb_itemCount, .ct_smallBasket a{}
.ct_sb_items{
  float: right;
  margin: 0 15px 0 0;
}
.ct_sb_items, .ct_sb_items li {}
li.ct_sb_accountCredit,
li.ct_sb_item {}

.ct_sb_itemCount {
  float: left;
  margin: 0 0 10px;
  text-align: right;
  width: 97%;
}
.ct_sb_itemCount a{color: #0000;}
.ct_sb_items {
  margin: 0 2.5%;
  width: 95%;
}
.ct_sb_total {
  float: right;
  margin: 10px 15px 0 0;
}
.ct_sb_link a {}
.ct_sb_link a:hover {}

.ct_sb_link.ct_sb_links_currency {
  float: right;
  margin: 10px 15px;
}

.ct_sb_link.ct_sb_links_currency a {}
/** end SMALL BASKET pre-defined section **/



/** TOP SELLERS pre-defined section **/
.ct_topSellers {background: #fff;float: left;}
.ct_topSellers .ct_module_header {
  margin: 0 0 10px;
  width: 100%;
}

ul.ct_ts_list {
  list-style: outside none none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  width: 90%;
}
li.ct_ts_item {margin: 5px 0;}
li.ct_ts_item a:hover{text-decoration: underline;}
span.ct_ts_item_count {}
span.ct_ts_item_name {}
/** end TOP SELLERS pre-defined section **/



/** RECENTLY VIEWED ITEMS pre-defined section **/
/* module */
.ct_viewedItems {
  float: left;
  margin: 10px 0;
  width: 100%;
  background: #ebebeb none repeat scroll 0 0;
  border: 1px solid #000;
  padding: 10px;
}
#ct_template_content_main div.ct_viewedItems.ct_module div.ct_module_header {
  border: medium none;
  float: left;
  margin: 0;
  padding: 0;
  text-align: left;
  text-transform: capitalize;
  width: 160px;
  font-weight: bold;
  padding: 5px 0 0;
}
#ct_template_content_main div.ct_viewedItems.ct_module div.ct_module_header::after {
  content: ":";
}
#ct_viewedItems .ct_mainContent_header{
background: #ebebeb none repeat scroll 0 0;
border: 1px solid #000;
float: left;
margin: 10px 0;
padding: 10px;
width: 100%;
font-size: 22px;}

.ct_viewedItems ul {
  float: left;
  list-style: none;
  padding: 0;
  text-align: left;
  position: relative;
}
.ct_viewedItems ul li {
  float: left;
  margin: 5px 10px 5px 0;
}
.ct_vi_item a {}
.ct_vi_recent {
float: right;
}
.ct_vi_recent a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  font-weight: bold;
}
.ct_vi_recent a::after {
  content: "...";
}
.ct_vi_recent a:hover {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
}
.ct_viewedItems a:hover {
  text-decoration: underline;
}

/* page */
/**/#ct_viewedItems {}
/**/#ct_viewedItems .ct_mainContent_header{}

/**/#ct_vi_productList {}
.ct_vi_product {}
/** end RECENTLY VIEWED ITEMS pre-defined section **/

border: 1px solid #efefef;border-style: solid none none solid;

/** CATEGORY MENU pre-defined section **/
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li {}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:hover {}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:hover::after{
  content: "\f061";
font-family: fontAwesome;
font-size: 20px;
position: absolute;
right: 10px;
top: 2px;
}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul li:hover::after{display: none;}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:hover a{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:first-child{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:first-child:hover{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(2){}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(3){}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(4){}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(5){}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(6){}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(7){}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(8){}

.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul {
  left: 99%;
  min-width: 200px;
  top: -1px;
}
/** CATEGORy Menu Delay **/
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul {
  opacity: 0;
  -webkit-transition: all.5s ease 3s;
-moz-transition: all.5s ease 3s;
-o-transition: all.5s ease 3s;
transition: all.5s ease 3s;
}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul {
  opacity: 1;
  -webkit-transition: all.5s ease 3s;
-moz-transition: all.5s ease 3s;
-o-transition: all.5s ease 3s;
transition: all.5s ease 3s;
}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul ul{opacity: 1;padding: 5px 0;}
/** CATEGORy Menu Delay **/
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu ul li:first-child{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul li{float: left;
width: 100%;padding: 6px 0;}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:first-child ul{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(2) ul{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(3) ul{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(4) ul{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(5) ul{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(6) ul{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(7) ul{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(7) ul li{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(8) ul{;}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:nth-child(9) ul{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:last-child ul{}

.ct_module.ct_categoryMenu div.ct_cm_wrapper ul.ct_cm_menu li ul li ul {box-shadow: none;top: -6px;}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul li a {
  width: 98%;
  text-indent: 0;
  padding: 0;
  text-transform: uppercase;
  margin: 0 0 0 2%;
  float: left;
}
.ct_module.ct_categoryMenu.ct_cm_wrapper ul.ct_cm_menu li ul li:hover{background: #3277ae;}
.ct_categoryMenu {
  margin: 0 0 0 5%;
  width: 95%;
  position: relative;
}
.ct_categoryMenu .ct_module_header {
  text-align: left;
}
.ct_categoryMenu .ct_module_header::after {
  content: "\f063";
  font-family: fontAwesome;
  font-size: 20px;
  right: 10px;
  position: absolute;
  top: 0;
}
.ct_cm_wrapper {
  float: left;
  width: 100%;
}
ul.ct_cm_menu,
ul.ct_cm_menu ul {position: relative;}
ul.ct_cm_menu li {list-style-type: none;}
ul.ct_cm_menu li a {border-image: none;
font-size: 12px;
font-weight: 700;
letter-spacing: 1px;
padding: 0 15px;
text-align: left;
text-decoration: none;
text-transform: capitalize;
width: 100%;}
ul.ct_cm_menu li a:hover{}
ul.ct_cm_menu li ul li:hover{} 
ul.ct_cm_menu li ul li a{color: #000;font-size: 12px;}
ul.ct_cm_menu li ul li a:hover{color: #000;}

ul.ct_cm_menu:hover li:hover {}
ul.ct_cm_menu:hover li ul li {}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul li ul li {width: 100%;}

/* Category menu in header */
.ct_template_header .ct_module.ct_categoryMenu {}
.ct_template_header .ct_categoryMenu .ct_module_header {display: none;}
.ct_template_header .ct_cm_wrapper {width:auto;margin:0}
.ct_template_header ul.ct_cm_menu {
  width: 80%;
  text-align: center;
  height: 40px;
  z-index: 60;
  margin: 0 auto;
}
.ct_template_header ul.ct_cm_menu:hover{}
.ct_template_header ul.ct_cm_menu li {
border: 0 none;
float: left;
margin: 0;
text-align: center;
  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
  padding: 0;
}
.ct_template_header ul.ct_cm_menu li:hover{} 
.ct_template_header ul.ct_cm_menu li ul {}
.ct_template_header ul.ct_cm_menu li ul li {
  display: block;
  float: none;
  padding: 0;
  text-align: left;
}
.ct_template_header ul.ct_cm_menu li ul li:hover{}
/* over effect */
ul.ct_cm_menu li:hover {}
ul.ct_cm_menu li a:hover,
ul.ct_cm_menu li:hover > a {}

/* over action */
ul.ct_cm_menu li:hover > ul {
  display: block;
}

/* sub-list*/
ul.ct_cm_menu li > ul {
  display: none;
  position: absolute;
  z-index: 60;
}
/** end CATEGORY MENU pre-defined section **/
.ct_cm_wrapper{float: left;}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li {
  background: #fffbe2 none repeat scroll 0 0;
  border: 1px solid #8a93ff;
  padding: 5px 0;
  position: relative;
}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li:hover {}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul li {}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul li:hover {box-shadow: none;background: #8a93ff none repeat scroll 0 0;}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul li a:hover{}
.ct_categoryMenu .ct_cm_wrapper ul.ct_cm_menu li ul li ul li a{font-weight: 400;font-size: 12px;}
/**Hide Collection Category**/

/** END Slash Dot Category Menu styles **/

/** BRANDS pre-defined section **/
.ct_brandsMenu {float: left;width: 80%;margin:0 10%;}
.ct_brandsMenu .ct_module_header {}

.ct_bm_removeFilter {
  color: transparent;
  text-indent: -9999px;
  float:right;
  width: 20px;
  background: transparent url(/system_images/icons-16/delete.png) no-repeat center center;
}
.ct_bm_dropDown{
  width: 100%;
}
.ct_bm_dropDown select {
  width:100%;
  max-width:100%;
}
.ct_bm_list {
  float: left;
  text-align: center;
  width: 100%;
}
.ct_bm_list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ct_bm_list li {}
.ct_bm_list li a {}
.ct_bm_list li a:hover {}


.ct_html_col5 {
    float: left;
width: 20%;
}
.ct_html_col5 li {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.ct_html_col5 ul {
    margin: 5px 0 20px;
    padding: 0;
}
.ct_html_col5.last {
    float: left;
    margin: 0;
}
.ct_html_col5 h3 {
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    color: #00abb2;
}
.ct_html_col5 a {
    text-decoration: none;
}
/** end BRANDS pre-defined section **/



/** CATEGORY/BRAND FILTERS **/
.ct_categoryFilters {}
.ct_categoryFilters .ct_module_header {}

.ct_categoryFilters ul,
.ct_categoryFilters ul li {
  list-style: none;
}
/** end CATEGORY/BRAND FILTERS **/
#ct_template_content_left h3 {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #000 -moz-use-text-color;
  border-image: none;
  border-style: none none solid;
  border-width: 1px medium;
  padding: 5px 0;
  text-transform: uppercase;
}
.ct_styleFilters .ct_module_header {
  display: none;
}
#ct_template_content_left .ct_priceFilters .ct_module_header{display: none;}
#ct_template_content_left h4 {
  color: #000;
  padding: 10px 0;
  position: relative;
  text-transform: uppercase;
  width: 100%;
  font-size: 16px;
  border-bottom: 1px solid;
}
#ct_template_content_left h4::after {
  content: "+";
  font-size: 18px;
  position: absolute;
  right: 5%;
  top: 7px;
}
#ct_template_content_left h4.collapsed::after {
  content: "-";
}
#ct_template_content_left h4.collapsed {}
#ct_template_content_left h4:hover{cursor: pointer;}
 #leftPromo li {margin-top: 5px;}
/** PRODUCT COMPARISON **/
/** module **/
.ct_productCompare {width: 95%;float: left;display: none;}
.ct_productCompare .ct_module_header {
  background: #000;
  margin: 10px 0 0;
  padding: 10px 0 10px 10px;
  text-transform: capitalize;
  width: 100%;
  color: #000;
  font-weight: bold;
}
.ct_productCompare .ct_module_header a {
  color: #fff;
}
.ct_pc_count {
  font-weight: bold;
  margin: 10px;
}

.ct_pc_count a {
  padding-left: 25px;
  background: url('/layout/view-icon.png') no-repeat 0 0 transparent;
}

ul.ct_pc_list {
  list-style:none;
  padding:0 10px
}
li.ct_pc_list_product {
  list-style:none;
  margin:0 0 5px 0;
}
.ct_pc_list_clear {
  background: #EF006B none repeat scroll 0 0;
  padding: 10px;
  width: 100%;
}
.ct_pc_list_clear a {color: #fff;}

/** page **/
/**/#ct_productComparison {}
/**/#ct_productComparison .ct_mainContent_header {}

/**/#ct_pc_clear {height: 45px;}
#ct_pc_clear a {
  padding: 10px 20px;
  background: #EF006B;
  color: #fff;
}
#ct_pc_clear a:hover {
  background: #fff;
  color: #000;  
}
.ct_pc_product {
    display:inline-block;
    max-width: 25%;
    margin: 0 2.5%;
    vertical-align:top;

    /* force hasLayout on IE7 */
    zoom:1;
    *display: inline;
}
.ct_pc_product h2 {}
.ct_pc_product_descr {}
.ct_pc_product_item {}
.ct_pc_product_addToBasket {}
/** end PRODUCT COMPARISON **/



/** WEBSITE NEWS **/
/** news list module **/
.ct_newsList {}
.ct_newsList h2.ct_module_header {}
.ct_newsList ul {margin:0;padding:0 0 0 10px;list-style:none;}

.ct_nl_post {}
h3.ct_nl_post_title {margin-bottom:0}
p.ct_nl_post_from,
p.ct_nl_post_date {margin:0;padding:0;font-style:italic;color:#999;display:inline-block}
.ct_nl_post_from_by {}
.ct_nl_post_from_author {font-weight:bold}
p.ct_nl_post_text {}

/** article page **/
/**/#ct_newsArticle {}
/**/#ct_newsArticle .ct_mainContent_header {}

.ct_na_from {}
.ct_na_from_by {}
.ct_na_from_author {}
.ct_na_date {}
.ct_na_text {}
/** end WEBSITE NEWS **/




/*---------------------------------------------
  __MAIN_CONTENT_PAGES
---------------------------------------------*/

/** page contents containers **/
.ct_mainContent {width:100%;background: #fff;float: left;}

/** pages titles **/
.ct_mainContent h1 {  -webkit-border-radius: 3px;
   -khtml-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
background: #585ee3 none repeat scroll 0 0;
color: #fff;
margin: 5px 0;
width: 100%;
text-align: center;
padding: 5px 0;}

/** pages sub-module titles **/
.ct_mainContent h2,
.ct_mainContent h3 {}

/** pages tables **/
.ct_mainContent table,
.ct_mainContent th,
.ct_mainContent td {
  border-collapse:collapse;
  border-spacing:0;
  padding:5px;
}
.ct_mainContent th {
  background:rgba(0, 0, 0, 0) url("/layout/recommended_hdr.jpg") repeat scroll 0 0;
  text-align: left;
}
.ct_mainContent td {
  background-color: #fff;
  text-align: left;
}
.ct_mainContent td a {float: left;}
/*---------------------------------------------
  __CATEGORY_and_PRODUCT_PAGES
---------------------------------------------*/

#ct_template_content_left img {
  height: auto;
  max-width: 100px;
  width: 100%;
}

#ct_template_content_left .ct_smallBasket{
  width: 100%;
  float: left;
  background: #fff;
  margin: 10px 0;
}
.left-checkout {
  float: right;
  margin: 5px 15px 0;
}
#ct_template_content_left .ct_smallBasket .ct_sb_links a:hover{text-decoration: underline;}
.ct_sb_links .ct_sb_links_viewBasket, .ct_sb_links .ct_sb_links_checkout{display: none;}
.right-basket-links{width: 100%;float: left;border-top: 1px solid #474747;}
.right-basket-links a{float: left;
line-height: 25px;
text-indent: 20px;
width: 100%;
position: relative;}
.right-basket-links a:hover{text-decoration: underline;}
.right-basket-links a::before{
    content: "\f061";
font-family: fontAwesome;
font-size: 8px;
position: absolute;
left: 5px;
top: 0;
text-indent: 0;
}
/** BREADCRUMBS (search results and product page) **/
#ct_breadcrumbs {
  background: #fff none repeat scroll 0 0;
  color: #000;
  margin: 0 0 10px;
  padding: 5px 0;
  text-indent: 10px;
}
#ct_breadcrumbs a:hover{text-decoration: underline;}
/**/#ct_breadcrumbs a,
/**/#ct_breadcrumbs a:visited {}
#ct_breadcrumbs a:first-child{color: #000;}
#ct_breadcrumbs a{color: #000;}
#ct_breadcrumbs_curent {color:#000;}

#ct_basket #ct_breadcrumbs {
  display: none;
}

#ct_searchHeader, #ct_subCategories, #ct_searchFilter, #ct_searchResults_top, #ct_productsListing, #ct_sc_listing{
  float: left;
  width: 100%;
}
/** end BREADCRUMBS **/



/** __SEARCH_RESULTS **/
/**/#ct_search {width:100%;background: none;}

/**/#ct_search #ct_breadcrumbs {}

/** Search Header **/
/**/#ct_searchHeader {width: 100%;margin:0 0 10px;position:relative;}
#ct_searchHeader h1#ct_sh_title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  float: left;
}
/**/#ct_searchHeader #ct_pd_fblike {}
/**/#ct_searchHeader #ct_social_bookmark {}
/**/#ct_sh_brand_filter {}
/**/#ct_sh_description {margin:10px;text-align: justify;padding: 10px;}
/**/#ct_sh_img {float: left;margin: 10px 0 0;}
#ct_sh_img img {max-width: 100%;
  -webkit-border-radius: 5px;
   -khtml-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px; max-height: 300px;height: auto;}
/** end Search Header **/


/** Sub-Categories Listing **/
/**/#ct_subCategories {background: #fff;}

/* 'Choose a Category' */
/**/#ct_subCategories h3 {}
#ct_subCategories .ct_module_header {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #000;
  text-transform: capitalize;
  margin: 0 0 10px;
}
#ct_sc_listing {}
.ct_sc_listing_row {
  text-align: center;
  width: 100%;
}
#ct_template_content_main .ct_sc_listing_cat {
  margin: 0 0 5px 1.33%;
border: 1px solid #ccc;
display: inline-block;
}
#ct_template_content_main .ct_sc_listing_cat:first-child{margin: 0 0 5px;}
#ct_template_content_main .ct_sc_listing_cat:hover .ct_sc_listing_cat_img,.ct_sc_listing_cat:hover .ct_sc_listing_cat_name{}
#ct_template_content_main .ct_sc_listing_cat_img {
  display: block;
  float: left;
  height: auto;
  margin: 10px 0;
  text-align: center;
  width: 100%;
}
#ct_template_content_main .ct_sc_listing_cat_img img {
height: auto;
margin: 0 auto;
max-height: 80px;
padding: 0 10px;}
#ct_template_content_main .ct_sc_listing_cat_name {
  text-align: center;
  width: 100%;
}
#ct_template_content_main .ct_sc_listing_cat_name a {
background: #585ee3 none repeat scroll 0 0;
  color: #fff;
  padding: 5px 20px;
font-weight: 700;
  display: block;
}
#ct_template_content_main .ct_sc_listing_cat:hover .ct_sc_listing_cat_name a{
text-decoration: underline;
}
/*Category Brand*/


/*Category Brand End*/
#ct_template_content_left #ct_sc_listing{width: 95%;}
#ct_template_content_left .ct_sc_listing_cat {width: 100%;float: left;background: #fff;display: none;}
#ct_template_content_left .ct_sc_listing_cat:hover .ct_sc_listing_cat_name a{}
#ct_template_content_left .ct_sc_listing_cat_img {display: none;}
#ct_template_content_left .ct_sc_listing_cat_img img {display: none;}
#ct_template_content_left .ct_sc_listing_cat_name {float: left;width: 100%;text-indent: 10px;padding: 10px 0;}
#ct_template_content_left .ct_sc_listing_cat_name a{color: #000;}

div.ct_filterSummary.ct_module ul.ct_filter_list.list-inline.list-unbulleted li div a.btn.icon-remove{
  border:none;border-radius: 0;text-transform: capitalize;color: #000;}
div.ct_filterSummary.ct_module a.resetall.btn.btn-danger.icon-remove{
height: 40px;
line-height: 40px;
margin: 0;
text-align: center;
width: 150px;
}
/** end Sub-Categories Listing **/


/** Results Filters **/
/**/
#ct_searchFilter {
  float: left;
  padding: 0;
  width: 46%;
}
/**/#ct_searchFilter ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/**/#ct_searchFilter ul li{
  display:inline-block;
  padding: 0;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}
/**/#ct_sf_image {float:right;}
/**/#ct_sf_sorter {float:left;}
/** end Results Filters **/


/** RESULTS AMOUNTS and PAGINATION **/
#ct_searchResults_top {
  background: #fff none repeat scroll 0 0;
  padding: 0;
  text-align: right;
  width: 100%;
}
#ct_searchResults_bottom {
  background: #eae8e4 none repeat scroll 0 0;
  display: block;
  float: left;
  padding: 0.5%;
  text-align: right;
  width: 99%;
  height: 35px;
  margin: 5px 0;
  display: none;
}
#ct_searchResults_top .ct_module_header, #ct_searchResults_bottom .ct_module_header, .ct_sr_results, .ct_sr_paginate {display: inline-block;padding: 2px 3px;}
.ct_sr_results {margin-right: 10px;}
.ct_sr_label, .ct_sr_results, .ct_sr_paginate, .ct_sr_paginate a {}
.ct_sr_indice {font-weight: bold;}
.ct_sr_paginate ul {list-style: outside none none;margin: 0;padding: 0;}
.ct_sr_paginate li { display: inline-block; vertical-align: top;}
li.ct_sr_p_prev, li.ct_sr_p_prev a { padding: 2px 5px;}
li.ct_sr_p_page {font-size: 0;padding: 2px 7px;}
li.ct_sr_p_page a {font-size: 14px;}
li.ct_sr_p_page a:hover {}
li.ct_sr_p_page:nth-child(n+6) {}
li.ct_sr_p_next, li.ct_sr_p_next a {padding: 2px 5px;}
li.ct_sr_p_prev a, li.ct_sr_p_next a {
  background: rgba(0, 0, 0, 0) url("/layout/Next_Prev.png") no-repeat scroll -15px 5px;
  display: block;
  height: 25px;
  overflow: hidden;
  text-indent: 999px;
  width: 15px;
}
li.ct_sr_p_prev a{
  background: url('/layout/Next_Prev.png') no-repeat scroll 0 5px;
}
.ct_sr_p_current {}
li.ct_sr_p_current a {cursor: default;text-decoration: none;color: #000;font-weight: 700;}
li.ct_sr_p_first, li.ct_sr_p_last {padding: 2px 5px;display: none;}
#ct_searchResults_top .ct_module_header,
#ct_searchResults_top .ct_sr_results {float: left;padding-top: 5px;}
#ct_searchResults_top .ct_module_header, .ct_sr_results, .ct_sr_paginate {margin: 5px 0 0;}

/** end RESULTS AMOUNTS and PAGINATION **/


/** __PRODUCTS_LISTINGS **/
/**/#ct_productsListing {
clear: both;
margin: 0;
background: #fff;
}

.ct_pl_noResults {
  padding: 10px 0;
  text-indent: 10px;
}

/** no image display **/
/**/#ct_productsListing > table {
  width: 100%;
  margin: 20px 0;
}

/* per row display */
.ct_pl_row {
  position:relative;
  height:auto;
  margin: 15px 0;
}
.ct_pl_product {
border: 1px solid #fff;
display: block;
float: left;
margin: 8px 2%;
min-height: 180px;
position: relative;
text-align: center;
width: 46%;
  -webkit-border-radius: 3px;
   -khtml-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.ct_pl_product:hover {
  -webkit-box-shadow:  0 0 5px 4px;
  -moz-box-shadow:  0 0 5px 4px;
  box-shadow:  0 0 5px 4px;
  color: #efefef;
border: 1px solid #303f68;}
.ct_pl_product a{}
.columns-2 .ct_pl_product  { width: 43.5%; }
.columns-3 .ct_pl_product  { width: 30%; }
.columns-4 .ct_pl_product  { width: 22%; }
.columns-5 .ct_pl_product  { width: 17%; }
.columns-6 .ct_pl_product  { width: 13.8%; }
.columns-7 .ct_pl_product  { width: 11.4%; }
.columns-8 .ct_pl_product  { width: 9.6%; }
.columns-9 .ct_pl_product  { width: 9.2%; margin: 0 0.5%; }
.columns-10 .ct_pl_product { width: 8.1%; margin: 0 0.5%; }

.ct_pl_product_image img {
    display: block;
    height: auto;
    width: auto;
    margin: 0 auto;
    max-width: 100px;
    max-height: 60px;
    vertical-align: middle;
}
.ct_pl_product_image {
    background: none repeat scroll 0 0 #fff;
    display: table;
    height: 60px;
    margin: 0 auto 4px !important;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}
.ct_pl_product_image a {
    display: table-cell;
    margin: 0 auto;
    position: relative;
    text-align: center;
    vertical-align: middle;
}

.ct_pl_product_name, .ct_pl_product_desc, .ct_pl_product_price, .ct_pl_product_offPrice {
  margin: 3px 0;
  text-align: left;
  text-indent: 10px;
  text-transform: uppercase;
}
.ct_pl_product_name {}
.ct_pl_product_name a {
  color: #000;
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 0 10px;
  text-indent: 0;
  text-transform: capitalize;
  width: 96%;
}
.ct_pl_product_desc{}
.ct_pl_product_noDesc{display: none;}
.ct_pl_product_desc a{color:#000;font-size: 14px;}
.ct_pl_product_link a{}
.ct_pl_product_price {}
.ct_pl_product_price a {
  font-size: 20px;
  font-weight: bold;
}
div.ct_pl_product_offPrice {}
.ct_pl_product_offPrice span{color: red;}
.ct_pl_product_offPrice p{color: red;}
p.ct_pl_product_op_saving {}
span.ct_pl_product_op_savingText {}
span.ct_pl_product_op_diff {}
p.ct_pl_product_op_rrpDiff {width: 100%;}
span.ct_pl_product_op_percentage {}
span.ct_pl_product_op_rrp {
  position: relative;
  text-align: left;
  visibility: visible;
  width: 100%;
}

.ct_pl_product_compare {
  background: #fff url("/layout/addComparrow4.png") no-repeat scroll 100% 0;
  bottom: 0;
  float: left;
  height: 39px;
  padding: 10px 0 0 5px;
  position: absolute;
  text-align: left;
  width: 100%;
}
.ct_pl_product_compare a {
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
}

.ct_pl_product_compare:hover {
    background-color: #000;

    
}
.ct_pl_product_compare:hover a {
    color: #fff;
}

.ct_pl_product_add {display: none;}
.ct_pl_product_view {
  background: #36a5dc none repeat scroll 0 0;
  float: left;
  margin-right: 2%;
  padding: 10px;
  width: 78%;
}

.ct_pl_product_view a {color: #fff;font-size: 14px;}

.ct_pl_product:hover .ct_pl_product_view a{}


.ct_pl_product:hover .ct_pl_product_view a:hover {}



.ct_pl_product.ct_pl_perRow {
  display:block;
  width:100%;
  text-align:left;
}
.ct_pl_product.ct_pl_perRow .ct_pl_product_name,
.ct_pl_product.ct_pl_perRow .ct_pl_product_desc {margin-left:5px}
.ct_pl_product.ct_pl_perRow .ct_pl_product_image {
  clear:both;
  display:block;
  float:left;
  margin-right:10px;
  text-align:center;
}
.ct_pl_product.ct_pl_perRow .ct_pl_product_add {
  text-align:center;
  display:inline-block;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}
.ct_pl_product.ct_pl_perRow .ct_pl_product_price {
  display:inline-block;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}

/* no-image display */
.no-image .ct_pl_product {
  display:block;
  width:100%;
  text-align:right;
  clear:both;
}
.no-image .ct_pl_product .inline {
  min-height:0;
  height:auto;
  padding: 0;
  margin:0;
}
.no-image .inline.ct_pl_product_name {float:left}

.no-image .ct_pl_product_compare,
.no-image .ct_pl_product_add,
.no-image .ct_pl_product_view {
  position:relative;
  bottom:auto;
  left:auto;
  margin:0 auto;
}
.no-image .ct_pl_product_compare,
.no-image .ct_pl_product_add,
.no-image .ct_pl_product_view {
  text-align:center;
}


/** search results star ratings **/
.ct_productsListingReviews {display: block; margin: 0 auto;}
.ct_pl_row.ct_productsListingReviews  {width: 100%;}
.ct_pl_perRow.ct_productsListingReviews {}
.star_rating {
  background: url('/system_images/eshop/skin1/star_rating.png') no-repeat left top;
  height: 13px;
  width: 65px;
  margin-top: 5px;
}
.ct_pl_row.star_rating {margin:0 auto;}
.ct_pl_perRow.star_rating {margin-left: 0px;}
.ct_productsListingReviews span {display: none;}
.stars0_0 {background-position: -66px 0;}
.stars0_5 {background-position: -53px -20px;}
.stars1_0 {background-position: -53px 0;}
.stars1_5 {background-position: -40px -20px;}
.stars2_0 {background-position: -40px 0;}
.stars2_5 {background-position: -27px -20px;}
.stars3_0 {background-position: -27px 0;}
.stars3_5 {background-position: -14px -20px;}
.stars4_0 {background-position: -14px 0;}
.stars4_5 {background-position: -1px -20px;}
.stars5_0 {background-position: -1px 0;}
/** END search results star ratings **/
/** end Products Listings **/

/** end SEARCH RESULTS page **/



/** __PRODUCT_PAGE **/
/**/#ct_productDetails {}
/**/#ct_productDetails #ct_breadcrumbs {}

/**/#ct_pd_product {display:block;background-color: #fff;}
#ct_pd_product_image {
  float: left;
  margin: 20px 0 20px 1% !important;
  width: 29%;
}
#ct_pd_product_name, #pd_wrap{width: 68%;float: left;margin:0 0 0 2%;}
/**/#ct_pd_product_name {
color: #000;
font-size: 22px;
font-weight: 400;
margin: 20px 0 0 2%;
background: none;
text-align: left;
}
/**/#ct_pd_fblike {float:left;}
/**/#ct_pd_product #ct_social_bookmark {}
/**/


/* __PRODUCT_IMAGES
 */
/* Images Viewer Container*/
/**/#ct_pd_product_image {margin-bottom:20px; }
/**/#ct_pd_product_image.left {margin:0 20px 0 10px; }
/**/#ct_pd_product_image.right {margin-left:20px }
/**/#ct_pd_product_image{max-width:50%;min-height: 70px;}
/**/#ct_pd_product_image img {border: 1px solid #c8c8c8;max-width: 490px;width: 100%;}
/**/#ct_pd_product_image #ct_prod_img_table,
/**/#ct_pd_product_image #ct_prod_img_table td {border:0;padding:0}
/**/#ct_pd_product_image img.ct_pd_pi_fullsize {max-width:350px;max-height:350px;}
/*#ct_pd_product_image img:first-child{width: 400px;height: 400px;}*/
img.hider {
  border: 1px solid #eae8e4;
  display: inline-block !important;
  float: left;
  margin: 10px 40px;
  max-height: 100px;
  width: 100px !important;
}
img.hider:first-child{
  margin: 10px 10px 10px 0;
}
/* Images Viewer Elements */
.ct_pd_pi_main {}
.ct_pd_pi_enlarge {
  clear: both;
  color: #000;
  font-size: 10px;
  padding: 10px 0 0;
  text-align: center;
  display: none;
}
.ct_pd_pi_main img{}
.ct_pd_pi_thumbnails {}
.ct_pd_pi_noImg {}



/* __PRODUCT_ITEMS_FIELDS
 * (generic to all layouts)
 */

 .ct_pd_item_availability.ct_pd_item_availability_in.ct_pd_item_value, .ct_pd_item_stockLevel.ct_pd_item_stockLevel_in.ct_pd_item_value {
  width: 69%;
}
.ct_pd_item_value, .ct_pd_item_label {
  margin: 0 0 10px;
}
 .prodopt_preview{display:none;}
.ct_pd_item { margin-top:20px; }
.ct_pd_item_label {
  display: block;
  float:left;
  clear:left;
  width: 30%;
}
.ct_pd_item_value {
  display: block;
  min-height:10px;
  min-width:10px;
}
.ct_pd_item_price.ct_pd_item_label{}
.ct_pd_item_price.ct_pd_item_value {width: 70%;float: left;}
.ct_pd_item_price.ct_pd_item_value span {float: left;width: 100%;}
.ct_pd_item_price.ct_pd_item_value span span {float: left;width: 20px;}
.ct_pd_item_price.ct_pd_item_value span.ct_currencyCode{width: 75px;}
.ct_pd_item_price.ct_pd_item_label{}
.ct_pd_item_code.ct_pd_item_value{float: left;}
.ct_pd_item_code.ct_pd_item_label{}
#ct_pd_itemList .ct_pd_item_price.ct_pd_item_value{}
.qtywrap{float: left;}
.ct_pd_addWishlist input {


}
.ct_pd_addWishlist input:hover {
}

.ct_pd_item_name {display: none;}
.ct_pd_item_style {}
.ct_pd_item_price {margin: 10px 0 0;}
.ct_pd_item_saving {color: red;}
.ct_pd_item_code {
  margin: 10px 0 0;
}
.ct_pd_item_availability, .ct_pd_item_stockLevel {
  height: 50px;
  width: 30%;
}
.ct_pd_item_availability.ct_pd_item_availability_out.ct_pd_item_value{width: 70%;}
.ct_pd_item_availability_in {position: relative;}
.ct_pd_item_availability_in.ct_pd_item_value {float: left;}
.ct_pd_item_availability_in.ct_pd_item_label::after{
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 18px;
  position: absolute;
  left: 160px;
  display: none;
}
.ct_pd_item_availability_due.ct_pd_item_value,
.ct_pd_item_availability_out.ct_pd_item_value {/*background: url("/system_images/eshop/skin1/icn_out.png") no-repeat scroll 1px center transparent;*/
float: left;
/*text-indent: -9999px;*/}
.ct_pd_item_personalised {margin: 10px 0;}
.ct_pd_item_personalised.ct_pd_item_value{float: left;}
.ct_pd_item_stockLevel {float: left;display: none;}
.ct_pd_item_delivery{display: none;}
.ct_pd_item_delivery .ct_pd_item_value .ct_delivery,
.ct_pd_item_delivery .ct_pd_item_value .ct_collection {
  display:inline-block;
  margin-right: 10px;
  min-height:16px;
  padding-left: 30px;
}
.ct_pd_item_delivery .ct_pd_item_value .ct_delivery {
  background: transparent url(/system_images/eshop/skin1/icn_delivery.png) no-repeat left center;
}
.ct_pd_item_delivery .ct_pd_item_value .ct_collection {
  background: transparent url(/system_images/eshop/skin1/icn_collect.png) no-repeat left center;
}

.ct_pd_item_qtyAdd {display: inline-block;}
.ct_pd_item_qtyAdd .ct_pd_addBasket,
.ct_pd_item_qtyAdd .ct_pd_addWishlist {display:inline-block}
.ct_pd_item_notify label {display: block; font-style: italic; color: #333 }
.ct_pd_item_notify input {display: inline-block;}

.ct_pd_item_qtyAdd label,#product_itemQty{}
.ct_pd_item_qtyAdd.ct_pd_item_value{float: left;width: 100%}
/* __PRODUCT_ITEMS_LAYOUTS
 */
/* Item Layout: All Items */
/**/#ct_pd_allItems {clear:both}
/**/#ct_pd_allItems .ct_pd_item {}

#ct_pd_optionsList .ct_pd_options_style{ height: 25px;
margin: 0 0 5px;
width: 375px;}
.ct_pd_options_style {
  clear: both;
}

#ct_pd_optionsList select {
  border-color: #c8c8c8;
  -webkit-border-radius: 5px;
   -khtml-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  float: right;
  height: 30px;
  position: relative;
  top: -5px;
  visibility: visible !important;
  width: 185px;
}

#ct_pd_itemList {
  margin-top: -50px;
}

/* Item Layout: Styles */
/**/#ct_pd_optionsList {}
/**/#ct_pd_options_choose {font-style: italic; color: #333;display: none;}
/**/#ct_pd_optionsList .ct_pd_item_style {}
/**/#ct_pd_itemList .ct_pd_item {}

/* Item Layout: Styles in product */
/**/#ct_pd_product #ct_pd_optionsList,
/**/#ct_pd_product #ct_pd_itemList  {display:block;vertical-align:top;}
/**/#ct_pd_product #ct_pd_itemList .ct_pd_item_label {clear:both;}

/* Item Layout: Styles in product - no style: all items */
/**/#ct_pd_product #ct_pd_allItems.clear {clear: none;
float: left; position: relative;}
#ct_pd_allItems.clear .ct_pd_item_price.ct_pd_item_value {}

/* Item Layout: Table */
/**/#ct_pd_optionsTable table {margin-bottom:10px}
/**/#ct_pd_optionsTable th {}
/**/#ct_pd_optionsTable.ct_pd_optionsTable_list .ct_pd_item_value {display: table-cell;}
.ct_pd_optionsTable_list .ct_pd_item_stockLevel,
.ct_pd_optionsTable_list .ct_pd_item_qty { text-align:center }

/* Item Layout: Matrix Table */
/**/#ct_matrix_table {margin-top:15px;}
/**/#ct_matrix_table .ct_pd_item {
  position:absolute;
  z-index: 50;
  left:425px;
  top:180px;
  display:block;
  background:#fff;
  border:1px solid #ccc;
  width:500px;
  padding:10px;
    
  -webkit-border-radius: 5px;
   -khtml-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* hide stock messages and close button texts
 * replace with availaibility icons and button image instead
 */
.ct_tick.ct_pd_item_value,
.ct_pd_item .close_btn {
  color:transparent;
  cursor:pointer;
  display:block;
  text-indent:-9999px;
  width:16px;
}
.ct_tick.ct_pd_item_availability_in {background: transparent url(/system_images/eshop/skin1/icn_in.png) no-repeat center center;}
.ct_tick.ct_pd_item_availability_out {background: transparent url(/system_images/eshop/skin1/icn_out.png) no-repeat center center;}
.ct_pd_item .close_btn {
  background: transparent url(/js/jquery.plugins/jquery-lightbox-0.5/images/lightbox-btn-close.gif) no-repeat center center;
  float:right;
  width:66px;
  height:22px;
}

/* Item Layout: Table in product */
/**/#ct_pd_product #ct_pd_optionsTable {
  display:inline-block;
  vertical-align:top;
  zoom:1; /* force hasLayout on IE7 */
  *display: inline;
}
/**/#ct_pd_optionsTable {margin-bottom:20px}
.ct_pd_item_qtyAdd {display:block;margin:5px 0;}

/* Item Layout: Stock notify */
/**/#ct_pd_product_notifyForm {
  display:inline-block;
  min-width: 300px;
}
/**/#ct_pd_product_notifyForm .ct_pd_item {margin: 15px 0}
/**/#ct_pd_product_notifyForm .ct_pd_item_label {clear:none;min-width:100px;}
/**/#ct_pd_product_notifyForm .ct_pd_item_style {}
.ct_pd_item_notify_submit input {display:block;margin:0 auto}

/* no style, no item or special item */
/**/#ct_pd_noStyle {clear: both;
width: 540px;}
/**/#ct_pd_noItem {clear:both}
/**/#ct_pd_noProduct {}
/**/#ct_pd_product_nonDeliver {}

#ct_pd_bybrand, .prodcompare, .productwrap{width: 100%;float: left;}
.product_wrap_name {border-bottom: 1px solid #c8c8c8;padding: 0 0 10px;margin: 0 0 50px;}
.product_wrap_name, .product_wrap_all{float: left;width: 47%;}
.product_wrap_all{}
.sharing_container{display: none;}
#ct_pd_bybrand{
  margin: 10px 0;
}
#ct_pd_bybrand, #ct_pd_bybrand a{color: #000;}
#ct_pd_bybrand a{font-weight: 700;}
.prodcompare{}
.productwrap{}
#product_size_guide {
  float: left;
  width: 100%;
  padding: 0 10px;
}
#product_size_guide img{
  margin: 0 5px 0 0;
}
#product_size_guide li{
  margin: 10px 0 0;
}
#product_size_guide a{
  text-decoration: underline;
}
/* __ASSOCIATED_PRODUCTS
 */
/**/#ct_pd_associatedProducts {background: #fff;}
#ct_pd_associatedProducts h2{}
#ct_pd_associatedProducts h2:first-child, #ct_pd_upsellingProducts h2:first-child, #ct_pd_productReviews h2:first-child {
  border-bottom: 1px solid #000;
  color: #000;
  font-weight: 400;
  height: 30px;
  text-transform: uppercase;
  margin: 0;
}
#ct_pd_associatedProducts h2 a{font-size: 14px;
font-weight: 400;color: #000;}
#ct_pd_productReviews{clear:both;}
/**/#ct_pd_upsellingProducts {}
/**/#ct_pd_upsellingProducts h2 {}

.ct_associated {padding-top: 5px;}
.ct_associated_product {
  min-width:100px;
  min-height:160px;
  text-align:center;
}
.ct_associated_product_img {
  min-width: 100px;
  min-height: 100px;
  line-height: 100px;
  display:block;
}
.ct_associated_product_img img {

  vertical-align:middle
}
.ct_associated_product_name {display:block;padding: 5px 0;}



/* __PRODUCT_REVIEWS
 */
/* review link */
#ct_pd_reviewLink {
  margin: 20px 0;
}
#ct_pd_reviewLink a {
  color: #000;
  padding: 5px;
  text-transform: uppercase;
}
#ct_pd_reviewLink a:hover{
  background: #000;
  color: #fff;
} 

/* product pages review filter */
/**/#ct_pd_reviewFilter {width: 170px;}
/**/#ct_pd_reviewFilter #filter {float: left;}
/**/#ct_pd_reviewFilter #total_avg {float: right;}
/**/#ct_pd_reviewFilter #total_avg #total {color: #277c9a;}
/**/#ct_pd_reviewFilter #clear {clear: both;}

/* review form */
#ct_productReview {
  float: left;
  width: 100%;
}
/**/#ct_productReviews h2 {text-transform: uppercase;}
/**/#ct_pr_form  label {
  display:inline-block;
  width: 150px;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}
/**/#ct_pr_customerName,
/**/#ct_pr_reviewTitle,
/**/#ct_pr_review {margin-bottom:2px}
/**/#ct_pr_review label {vertical-align:top}
/**/#ct_pr_starRating {margin-bottom:4px}
/**/#ct_pr_form .submit {}

/* review list */
#ct_pd_reviewsList {
  background: #fff none repeat scroll 0 0;
  padding: 10px;
}
/**/#ct_pd_rl_count { margin-top: 15px;}
.ct_pd_rl_review { margin-top: 15px;}
.ct_pd_rl_review_title {font-size: 14px; }
.ct_pd_rl_review_date {font-size: 12px; font-style:italic; color:#686767;}
.ct_pd_rl_review_rating {}
.ct_pd_rl_review_from span.ct_pd_rl_review_author {font-weight:bold}
.ct_pd_rl_review_from span.ct_pd_rl_review_date {font-style:italic;display:block;}
.ct_pd_rl_review_text {font-style:italic;}
.ct_pd_rl_review_spacer {
  border-bottom-width: 1px;
  border-right-width-value: 1px;
  border-top-color: #999999;
  border-top-style: dashed;
  border-top-width: 1px;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 10px;
  padding-bottom: 0;
  padding-left: 0px;
  padding-right: 10px;
  padding-top: 0;
}
/** end CYBERTILL PRODUCT REVIEW **/

/** END PRODUCT DETAILS page **/


/** product page special offers section styles **/
.ct_pd_specialOffers {
  float: right;
  margin: 10px 0;
  max-height: 300px;
  overflow-y: scroll;
  padding: 10px;
  width: 50%;
}
.ct_pd_so_columnHeader:first-child, .ct_pd_so_item, .ct_pd_so_otherTxt {
  display: none;
}
.ct_pd_so_title {}
.ct_pd_so_offer {width: 100%;}
.ct_pd_so_txt {}
.ct_pd_so_columnHeader {}
.ct_pd_so_columnHeader th {}
.ct_pd_so_item {}
.ct_pd_so_item_name {}
.ct_pd_so_item_ref {}
.ct_pd_so_otherTxt {}
.ct_pd_so_other_item {}
.offer_p {margin: 5px 0 10px;}
.offer_link:hover{text-decoration: underline;}
/** END product page special offers section styles **/


/** Add Offer Voucher styles **/
/**/#ct_offerVoucher {}
/**/#ct_offerVoucher h1 {}
.ct_ov_label {}
.ct_ov_info {}
/** END Add Offer Voucher styles **/





/*---------------------------------------------
  __CHECKOUT_PROCESS_PAGES
---------------------------------------------*/

/**/#ct_sandboxmsg {z-index:999}

/** __CHECKOUT_TRAIL **/
/**/#ct_checkoutTrail {
  display: block;
  margin: 10px 0 0 10px;
  text-align: center;
}
/**/#ct_ct_steps {
  display:inline-block;
margin: 10px 0 0;
  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}
.ct_ct_steps_number {}

/**/#ct_checkoutTrail ul,
/**/#ct_checkoutTrail ul li{
  list-style: none;
  display:inline-block;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}
.ct_ct_done {
  color: #ccc;
  text-decoration:line-through;
  background: url('/ct_arrow_next_small_grey.png') no-repeat right center;
  padding-right: 10px;
}
.ct_ct_on {color: #000;text-decoration: underline;}
.ct_ct_next {
  color:#999;
  background: url('/ct_arrow_next_small_grey.png') no-repeat left center;
  padding-left: 10px;
}
/** end CHECKOUT TRAIL **/



/** __BASKET_TABLES (in basket, one-page-checkout and summary pages) **/
/* column headers */
/**/#ct_b_columnHeaders {}
/**/#ct_b_columnHeaders th {}

/* item cells */
/**/#ct_b_cart{background: #fff!imporant;}
/**/#ct_b_cart td {background: #fff!imporant;}
#ct_b_cart img {
  padding: 5px;
}
.ct_b_item {}

/* column classes */
.ct_mainContent .ct_b_item_img {width:15%; text-align:center}
.ct_mainContent .ct_b_item_name {width:35%; text-align:left}
.ct_mainContent .ct_b_item_name .ct_b_item_descr {}
.ct_mainContent .ct_b_item_name .ct_b_item_style {}
.ct_mainContent .ct_b_item_name .ct_b_item_specialOffer {}
.ct_mainContent .ct_b_item_qty {width:10%; text-align:center}
.ct_mainContent .ct_b_item_price {width:15%; text-align:right}
.ct_mainContent .ct_b_item_total {width:15%; text-align:right}
.ct_mainContent .ct_b_item_delete {width:10%; text-align:center}

/* personalised item table */
.ct_b_personalised {}
.ct_b_p_image {}
.ct_b_p_unitCost {}
.ct_b_p_totalCost {}
.ct_b_p_currencyCost {}
/** end BASKET TABLE **/



/** __BASKET **/
/**/#ct_basket {
  background: #fff;
}
#ct_basket h1 {

}
#ct_basket img.hider {
  display: none !important;
}
/* no item message */
.ct_b_noItem {}

/* Basket header */
/**/#ct_b_description {}
/**/#ct_b_messages {}
/**/#ct_b_error {}

/* basket options */
/**/#ct_b_accountCredit {}
/**/#ct_b_voucher {}

.ct_b_txt {}
.ct_b_total {}
/**/#ct_b_subTotal {}
/**/#ct_b_discount {}
/**/#ct_b_orderTotal {font-size: 17px;margin:10px 0;}

/**/#ct_b_minVal {font-size: 14px;color:#ff0000}

/* basket actions */
/**/#ct_b_actions {text-align:right;margin: 10px;}
.ct_b_actions input{}
.ct_b_actions input:hover{}
.ctb_delivery_text { color:#000000; font-family:Arial,verdana,sans-serif; font-size:11px; padding:0px; }
#ct_template_header.ct_template_header.inner div.ct_module.ct_smallBasket div.ct_sb_links div.ct_sb_link.ct_sb_links_checkout{display: none;}
/**/#ct_b_updateBasket {}
/**/#ct_b_checkout {}
/**/#ct_b_paypalCheckout {width: 150px;border:none;}
/**/#ct_b_continueShopping {}

/* basket lower actions */
/**/#ct_b_lowerActions {
  padding:0;
  margin: 10px;
}
#ct_b_lowerActions input {}
#ct_b_lowerActions input:hover{}
/**/#ct_b_save,
/**/#ct_b_load,
/**/#ct_b_empty {width: 150px;}

#ct_b_lowerActions .loginPage {
  height: 55px;
  margin: 20px 0 0;
  width: 360px;
}
#ct_b_lowerActions .loginPage a{
background: #fff none repeat scroll 0 0;
color: #000;
padding: 15px 35px;
font-weight: bold;
float: left;
}
#ct_b_lowerActions .loginPage p {
  float: left;
  padding: 10px 0 0 10px;
}
#ct_b_lowerActions .loginPage a:hover{
background: #000 none repeat scroll 0 0;
color: #fff;
}
#ct_b_lowerActions > p {
  clear: both;
}
/** end BASKET page **/

/** __ONE_PAGE_CHECKOUT **/
/**/#ct_opc_wrapper {padding:10px}
.ct_opc_accTitle {
  clear:both;
  color: #333;
  font-size:14px;
  font-weight:bold;
  border-bottom:1px solid #ccc;
  padding: 5px;
}
.ct_opc_accContent {padding: 10px;}
.ct_opc_accContent p {display:block;margin:5px 0;}
.ct_opc_accContent label {
  display:inline-block;
  width:120px;
  color: #999;
  font-weight:bold;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}
.ct_opc_accContent input,
.ct_opc_accContent select {margin:2px;}
.ct_opc_accContent input.ct_d_submitBtn {margin:0 0 10px;float:right}

.ct_opc_delivery {}
.ct_opc_courier {}
.ct_opc_summary {}
/**/#ct_opc_sum_delivery {margin:10px 0}
/**/#ct_opc_sum_delivery #ct_opc_changeAdress {margin:0 0 10px 0}
.ct_opc_accContent.ct_opc_summary form {text-align:right}
/** end ONE-PAGE-CHECKOUT **/



/** __DELIVERY **/
/**/#ct_delivery {}
/**/#ct_delivery h1 {text-indent: 10px;}

/**/#ct_d_dispmultiAddress {margin-bottom:30px}

/**/#ct_d_deliveryText {
  padding: 0 190px 20px;
  font-size: 1.1em;
  color: #666;
  font-weight:bold;

}

/**/#ct_delivery form > div {margin: 10px 10px}
/**/#ct_delivery label {
  display:inline-block;
  vertical-align:top;
  padding:5px 0;
  width: 180px;
  text-align: left;
  font-weight: bold;
  
  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}
/**/#ct_d_despatch_type {}

/* collection */
/**/#ct_d_store_collect ul {
  list-style:none;
  margin:10px 0 15px
}
/**/#ct_d_store_collect ul label {
  font-weight: normal;
  width:auto;
  padding:0;
}

/* delivery */
/**/#ct_d_recipient {}
/**/#ct_d_addressSelect {}
/**/#ct_d_newAddress {
  vertical-align: middle;
  margin:0 0 4px;
}
/**/#ct_d_addInfo {}
/**/#ct_d_addInfo p {padding: 3px 0}
/**/#ct_d_addInfo p label {
  color: #999;
  font-weight:normal;
  padding:0 10px;
  text-align:right;
  width: 160px;
}
/**/#ct_d_delAct {}

/* delivery & collection */
/**/#ct_d_giftMessage {}
/**/#ct_d_instructions {}
/**/#ct_d_submit {text-align:right;margin-top:15px}
/** end DELIVERY page **/



/** __MULTI_DELIVERY **/
/**/#ct_deliveryMulti {}
/**/#ct_deliveryMulti h1 {}

/**/#ct_deliveryMulti #ct_d_newAddress,
/**/#ct_opc_wrapper #ct_d_newAddress,
/**/#ct_d_dispmulti_link,
/**/#ct_d_dispsingle_link {display:block; cursor:pointer;text-decoration:underline;margin-bottom:10px;padding:0}

/**/#ct_deliveryMulti table {border-collapse:collapse;border:1px solid #ccc;text-align:left;margin: 10px 0;}
/**/#ct_deliveryMulti table th {background-color:#ebebeb;border:1px solid #ccc;padding:2px 5px;}
/**/#ct_deliveryMulti table td {border:1px solid #ccc;padding:2px 5px;}
.ct_dm_submit {text-align:right}
/** end MULTI DELIVERY page **/



/** MULTI DELIVERY COURIERS page **/
/**/#ct_multiDeliveryCouriers {}
/**/#ct_multiDeliveryCouriers h1 {}

.ct_mdc_message {font-style:italic;}

.ct_mdc_deliver {}
.ct_mdc_deliver .ct_mdc_message {}
.ct_mdc_address {font-weight:bold;}
.ct_mdc_deliver  ul.radio_list {list-style:none;padding:0 10px;margin:10px}
.ct_mdc_noCourier {}

.ct_mdc_collect {}
.ct_mdc_collect .ct_mdc_message {}
.ct_mdc_collect label {font-style:italic;}
ul.ct_mdc_collectedItems {}
.ct_mdc_deliver  ul.radio_list label{font-style:normal;}

/**/#ct_mdc_submit {text-align:right}
/** end MULTI DELIVERY COURIERS page **/



/** __COURIERS **/
/**/#ct_courierServices {}
/**/#ct_courierServices h1 {text-indent: 10px;}
/**/#ct_cs_webText {}
/**/#ct_cs_noCourier {}

.ct_cs_couriersList {width: 100%;}
.ct_mainContent th.ct_cs_courierZone {padding: 10px 5px;font-size:120%}
.ct_mainContent th.ct_cs_courierCompany {}

.ct_cs_courierService {padding-left: 5px;}
.ct_cs_courierService_notes {color: #999;}
.ct_cs_courierPrice {}
.ct_cs_courierSelect {}
/** end COURIERS page **/



/** __COLLECTION **/
/**/#ct_reserve_collect {}
/**/#ct_reserve_collect h1 {}

/**/#ct_reserve_collect label {float:left;clear:left;width:200px;margin-left:10px;padding: 5px 0}
/**/#ct_reserve_collect input,
/**/#ct_reserve_collect select {float:left;margin:2px;}

/**/#ct_r_location {}
/**/#ct_r_email {}

/**/#ct_reserve_collect .submit {margin-left:10px;clear:both}

/**/#ct_reserveSuccess {}
/**/#ct_reserveSuccess h1 {}
.ct_rs_location span,
.ct_rs_date span,
.ct_rs_reference span {font-weight:bold}
/** end COLLECTION page **/



/** __BASKET_SUMMARY **/
/**/#ct_basketSummary {}
/**/#ct_basketSummary h1 {text-indent: 10px;}

/* expired items */
/**/#ct_bs_expired {}
.ct_bs_expired_text {}
.ct_bs_expired_item {}

/* summary basket options */
.ct_bs_text {}
.ct_bs_error {}
.ct_bs_input {}
/**/#ct_bs_voucher {}
/**/#ct_bs_voucher h3 {}
/**/#ct_bs_loyaltyPoints {}
/**/#ct_bs_loyaltyPoints h3 {}
/**/#ct_bs_accountCredit {}
/**/#ct_bs_accountCredit h3 {}

.ct_bs_editCart {float:left}
.ct_bs_editCart .submit {margin:10px}

/**/#ct_basketSummary .ct_module {margin-top:20px}
/**/#ct_basketSummary .ct_module h3 {}
.ct_bs_label {
  display:inline-block;
  width:120px;
  margin-left:10px;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}
.ct_bs_value { font-weight: bold; }

/* summary basket totals */
.ct_bs_subTotal,
/**/#ct_bs_courierService,
/**/#ct_bs_courier,
/**/#ct_bs_foDiscount,
/**/#ct_bs_creditDiscount,
/**/#ct_bs_discountVoucher,
/**/#ct_bs_offerDiscount,
/**/#ct_bs_orderTotal,
/**/#ct_bs_vat { text-align:right; margin:5px}
/**/#ct_bs_orderTotal { font-size: 16px; margin:10px 5px }
/**/#ct_bs_creditMsg {color:#ff0000}

/* summary basket delivery details */
/**/#ct_bs_delivery.ct_module {}
/**/#ct_bs_delivery.ct_module h3 {}
/**/#ct_bs_delivery .ct_bs_label { display:block; float:left; clear:left }
/**/#ct_bs_delivery .ct_bs_value { display:block; padding-left:130px; max-width}
/**/#ct_bs_changeAdress {text-align:right;}
#ct_bs_delivery h3, #ct_bs_delivery p{width: 95%; margin: 0 2.5%;}
/**/#summary_basket_proceed {text-align:right}
/** end BASKET SUMMARY page **/



/* __PAYPAL_REDIRECT */
/**/#ct_paypalRedirect {}
/**/#ct_paypalRedirect a {}

/**/#ct_paypalError {}
/**/#ct_paypalError a {}
/* end PAYPAL REDIRECT page */



/** __ORDER_PAYMENT **/
/**/#ct_payment {}
/**/#ct_payment h1 {}

/**/#ct_paymentResponse {}
/**/#ct_paymentResponse h1 {}

/* fieldsets styles */
.ct_p_notes {}
.ct_p_securityInfo
.ct_p_label {}
.ct_p_error.ct_font_error {}

/* fieldsets */
/**/#ct_p_cardDetails {}
/**/#ct_p_cardDetails legend {}
/**/#ct_p_cardDetails #cv2 {}

/**/#ct_p_paymentTerms {}
/**/#ct_p_paymentTerms legend {}
/**/#ct_p_termsCheck {}
/**/#ct_p_termsConditions {}

/**/#ct_p_submit {}
/**/#ct_p_submit legend {}

/* order success */
/**/#ct_paymentComplete {}
/**/#ct_pc_completionNotes {}
/* paypoint order success */
/**/#ct_pc_orderDisplay { background-color: #F0F0F0; }

/* order failure */
/**/#ct_paymentFail {}
/** end ORDER PAYMENT pages **/





/*---------------------------------------------
    __USER_ACCOUNT_PAGES
---------------------------------------------*/

/** __REGISTRATION **/
/**/#ct_register {}
/**/#ct_register h1 {}
/**/#ct_register h3 {}
#ct_register h1, #ct_register h3 {}
/**/#ct_register ul {margin: 10px;}
/**/#ct_register label {
  width: 190px;
  float: left;
  display: block;
  text-align: left;
  margin-left: 10px;
}
/**/#ct_register .ct_form_helper {margin-left:200px}
/**/#ct_register div {
  padding: 1px;
}
.help {font-size:10px; color:#666}

/* fieldsets */
/**/#ct_r_personal,
/**/#ct_r_billingAddress,
/**/#ct_r_deliveryAddress,
/**/#ct_r_other,
/**/#ct_r_options,
/**/#ct_r_trader {
  border: 0px solid #dddddd;
  padding: 0px;
}
/**/#ct_register input.submit {display:block; margin:5px auto;}
/** END ACCOUNT REGISTRATION page **/


/** REGISTRATION SUCCESS page **/
/**/
#ct_registerSuccess.ct_mainContent{
  padding: 20px 0;
}
#ct_registerSuccess.ct_mainContent p {
  margin: 0 auto 20px;
  width: 90%;
}
/**/#ct_registerSuccess.ct_mainContent a {
  font-weight: 700;
  text-decoration: underline;
}
/** END REGISTRATION SUCCESS page **/


/** __LOGIN **/
/**/#ct_login {text-indent: 10px;}
/**/#ct_login h1 {}

/**/#ct_login .ct_font_error {margin-bottom:15px}

/**/#ct_l_container {}

.ct_l_subcontainer {
  position:relative;
  vertical-align:top;
  text-align:center;
  display:block;
  float:left;
  width: 48%;
  min-height: 155px;
  padding: 0;
  margin: 0 0 15px;
  border: 1px solid #c8c8c8;
}
.ct_l_subcontainer h3 {}
.ct_l_subcontainer label,
.ct_l_subcontainer p {}
.ct_l_subcontainer .submit {
  position: relative;
  width:160px;
  -webkit-border-radius: 5px;
   -khtml-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

/**/#ct_l_existing {}
/**/#ct_l_existing div{}
/**/#ct_l_existing label {
  display:inline-block;
  min-width: 75px;
  text-align: left;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}
#ct_l_existing #email input, #ct_l_existing #password input {
border: 1px solid #c8c8c8 !important;
-webkit-border-radius: 5px;
   -khtml-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
display: inline-block;
height: 25px;
margin-top: 5px;
text-align: left;
width: 230px;

  /* force hasLayout on IE7 */
  zoom:1;
  *display: inline;
}

#ct_l_existing.ct_l_subcontainer.ct_module input.submit{font-size: 14px; font-weight: bold; margin: 10px 0 0 20px;bottom: 10px; left: 15%; position: absolute;text-transform: capitalize;}
#ct_l_existing.ct_l_subcontainer.ct_module input.submit:hover{}
#ct_l_new_submit input{position: absolute;bottom: 75px;left: 20%;text-transform: capitalize;}
/**/#email .ct_font_error,
/**/#password .ct_font_error {display:block;margin-bottom:0}

/**/#ct_l_new {}
/**/#ct_l_new_welcome {}
/**/#ct_l_new_register {}
/**/#ct_l_new_submit{}
#ct_l_new_submit input{
font-size: 14px;
font-weight: bold;
margin: 0 0 0 5px;}
#ct_l_new_submit input:hover{}

#ct_l_existing h3, #ct_l_new h3 {
font-weight: 700;
margin: 0 0 10px;
padding: 10px 0;
text-align: center;
width: 100%;
}

#ct_l_new p{
  height: 15%;
}

/**/#ct_l_notes{clear: both;
padding: 15px 0;}
/**/#ct_l_forgotten{margin: 10px 0}
#ct_l_forgotten a:hover{text-decoration: underline;}
#ct_l_guest {}
#ct_l_guest a {
  background: #f0f0f0 none repeat scroll 0 0;
  -webkit-border-radius: 5px;
   -khtml-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  bottom: 10px;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 25px;
  position: absolute;
  left: 19%;
  border: 1px solid #aaa;
}
#ct_l_guest a:hover {
  background: rgba(0, 0, 0, 0) url("/layout/navBar_bg_over.jpg") repeat scroll 0 0;
  color: #000;
}

 /* after insert*/
/**/

#ct_l_guest_insert{}
#ct_l_guest_insert a{
  background: none repeat scroll 0 0 #000;
border-radius: 0;
color: #fff;
display: block;
font-size: 18px;
font-weight: bold;
height: 50px;
line-height: 50px;
text-transform: capitalize;
width: 160px;
}

#ct_l_guest_insert a:hover{
  background: #b83741;
}

#ct_l_guest_insert, #ct_l_new_submit {width: 50%;float: left;text-transform: capitalize;}

#ct_l_existing.ct_l_subcontainer{background: none repeat scroll 0 0 #fff;
height: 270px;
padding: 0;}
#ct_l_new.ct_l_subcontainer{background:#fff;height: 270px;margin: 0 0 0 3%;padding: 0;}
/** END LOGIN page **/


/** lost password page styles **/
/**/#ct_lostPassword {margin: 0 0 0 30px;}
/**/#ct_lostPassword h1 {}
.ct_lp_sentSuccess {}
/** END lost password page styles **/


/** account options page styles **/
/**/#ct_accountOptions {}
#ct_accountOptions ol {
  float: left;
  list-style: outside none none;
  padding: 0;
  width: 100%;
}
#ct_accountOptions li{
background: #585ee3 none repeat scroll 0 0;
float: left;
margin: 5px 5%;
text-align: center;
width: 90%;
-webkit-border-radius: 3px;
   -khtml-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;}
#ct_accountOptions a{color: #fff; display:block; padding: 10px;font-weight: 700;}
#ct_accountOptions a:hover{text-decoration: underline;}
/**/#ct_accountOptions h1 {}
/**/#ct_accountOptions ol {
  list-style: none;
  padding: 0px;
}
/**/#ct_accountOptions a {}
/** END account options page styles **/
#ct_orderHistory h1{}
#ct_orderHistory p, #ct_orderHistory div {
  margin: 0 0 10px 15px;
}
#ct_reorder h1, #ct_reorder p, #ct_reorder div {
  margin: 0 0 10px 15px;
}
#ct_accountDetails h1{}
#ct_accountDetails p, #ct_accountDetails form {
  margin: 0 0 10px 15px;
}
#ct_addressOptions h1{}
#ct_addressOptions p, #ct_addressOptions form {
  margin: 0 0 10px 15px;
}
#ct_accountCredit h1{}
#ct_accountCredit p, #ct_accountCredit form {
  margin: 0 0 10px 15px;
}

/** __ORDER_HISTORY **/

/**/#ct_orderHistory {}
/**/#ct_orderHistory h1 {}

.ct_oh_backLink {}
/**/#ct_oh_inner {
  width: 100%;
  border: 1px solid #aaaaaa;
  background-color: #f6f6f6;
}
/**/#ct_oh_inner th {
  text-align: left;
}
/**/#ct_oh_inner td {
  text-align: left;
}
#ct_oh_inner th a {}
/** END order history page styles **/



/** __REORDER **/
/**/#ct_reorder {}
/**/#ct_reorder_items{}
/**/#ct_reorder_items table {margin-top: 10px; width: 100%; border-collapse: collapse;}
/**/#ct_reorder_items table td {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border: 1px solid #888888;

    border-image-outset: 0 0 0 0;
    border-image-repeat: stretch stretch;
    border-image-slice: 100% 100% 100% 100%;
    border-image-source: none;
    border-image-width: 1 1 1 1;

    border-top-color: -moz-use-text-color;
    border-top: 0;
    padding: 10px 5px;
}
/**/#ct_reorder_items table th {text-align: left; border-bottom: 1px solid #888888; padding-bottom: 5px;}
/**/#ct_reorder_items #reorder_submit {text-align: right; }
/** END re-order page styles **/


/** account details page styles **/
/**/#ct_accountDetails label {
  width: 180px;
  float: left;
  display: block;
  text-align: left;
}
/** END account details page styles **/



/** __ADDRESS_OPTIONS **/
/**/#ct_addressOptions {width: 100%;}
/**/#ct_addressOptions h1 {margin-bottom:10px}

.ct_ao_address {
  margin: 0 15px 0 10px;
  padding: 10px 20px 10px 0;
  border: 0;
  width: 60%;
  float:left;
  clear:right;
  border-right: 1px dotted #ccc;
}
.ct_ao_address ul {
  list-style: none;
  margin:0;
  padding:0;
  text-align: left;
  position:relative;
  border: 0px;
}
.ct_ao_address ul li {
  margin: 0;
  background-color: #f6f6f6;
  padding: 5px 10px;
}
.ct_ao_address ul li.ct_ao_header {
  margin: 0;
  background-color: #eeeeee;
  font-weight: bold;
}
.ct_ao_address ul li.ct_ao_header input {}

/**/#ct_ao_newAddress {margin-top:20px}
/**/#ct_ao_newAddress a,
/**/#ct_ao_backLink a,
#ct_an_backLink a {
background: rgba(0, 0, 0, 0) url("/layout/recommended_hdr.jpg") repeat scroll 0 0;
border: medium none;
border-radius: 0;
color: #fff;
font-size: 14px;
height: 40px;
line-height: 40px;
text-transform: uppercase;
width: 250px;

    /* force hasLayout on IE7 */
    zoom:1;
    *display: inline;
}
.ct_ao_header input {
  background: rgba(0, 0, 0, 0) url("/layout/recommended_hdr.jpg") repeat scroll 0 0 !important;
  height: 40px !important;
  font-weight: 400!important;
}
.ct_ao_header input:hover{
  color: #000!important;
  background: rgba(0, 0, 0, 0) url("/layout/navBar_bg_over.jpg") repeat scroll 0 0!important;
}
#ct_ao_newAddress a:hover, #ct_ao_backLink a:hover, #ct_an_backLink a:hover  {background:rgba(0, 0, 0, 0) url("/layout/navBar_bg_over.jpg") repeat scroll 0 0;color: #000;}
/** end ADDRESS OPTIONS page **/
div.ct_ao_address ul li.ct_ao_header input.btn.btn-danger.icon-trash{background: #000;}
div.ct_ao_address ul li.ct_ao_header input.btn.btn-danger.icon-trash:hover{
  color: #fff;
  background: #B83741; 
}


/** __NEW_ADDRESS **/
/**/#ct_addressNew {}
/**/#ct_addressNew h1{}
/**/#ct_an_backLink {}
/**/#ct_addressNew ul {list-style:none;padding:0 10px}
/**/#ct_addressNew label {
  width: 180px;
  float: left;
  display: block;
}
/**/#ct_addressNew .ct_form_helper {margin-left:180px}
/** end NEW ADDRESS page **/



/** __EDIT_ADDRESS **/
/**/#ct_addressEdit {}
/**/#ct_addressEdit h1 {}

/**/#ct_ae_backLink {display: block; margin: 0 0 10px;}
/**/#ct_addressEdit label {
  width: 180px;
  float: left;
  display: block;
  text-align: left;
}
/**/#ct_addressEdit .ct_form_helper {margin-left:180px}
/**/#ct_addressEdit div {
  padding: 1px;
}
/** end EDIT ADDRESS page **/



/** __ACCOUNT_CREDIT **/
/**/#ct_accountCredit {}
/**/#ct_accountCredit h1 {}
/**/#ct_accountCredit p {}
/** END account credit page styles **/





/*--------------------------------------------
    __OTHER_PAGES
---------------------------------------------*/

/** __COOKIE_POLICY **/
.ct_cp_header { font-size:14px;margin:25px 0 10px 0; }
/**/#ct_cookie_policy table { border-collapse:collapse; }
/**/#ct_cookie_policy table,
/**/#ct_cookie_policy th,
/**/#ct_cookie_policy td { border:1px solid #999;padding:5px; }
/**/#ct_cookie_policy th { background-color:#c5dce0;color: #277c9a;text-align:left; }
.ct_cp_cookie_header { width:25%; }
.ct_cp_text { margin:0 0 10px 0; }
/** end COOKIE POLICY **/



/** __CONTACT_US **/
/**/#ct_contact {float: left;padding: 10px;width: 100%;}
/**/#ct_contact h1 {}
#contact_content{
  width: 100%;float: left;
  margin: 10px 0;
}
#contact-address, #contact-opening{width: 49%;float: left;}
#contact-address ul li:first-child, #contact-opening ul li:first-child{font-weight: 700;}
#contact-address{}
#contact-opening{margin: 0 0 0 2%;}
#google-maps{width: 100%;float: left;}
#google-maps iframe{width: 100%;float: left;height: 300px;margin: 20px 0; }
#ct_contact .submit {
  background: #f0f0f0 none repeat scroll 0 0;
  height: 40px;
  color: #000;
  border-radius: 0;
  border: 1px solid #aaa;
  font-weight: 400;
}
#ct_contact .submit:hover{text-decoration: underline;}
#ct_contact input[type="reset"]:hover{color: #fff;background: red;text-decoration: none;}
/**/#ct_c_message {}
/**/#ct_c_details {
  border: 0px;
  padding: 0px;
}
/**/#ct_c_details label {
  width: 280px;
  float: left;
  display: block;
  text-align: left;
  font-weight: bold;
}
/**/#ct_c_details div {
  padding: 1px;
}
/**/#ct_c_notice {}

#ct_c_details input{width: 420px;}
#ct_c_captcha input{}
#ct_c_details select{width:420px;}

/** end CONTACT US page **/


/** __CURRENCY_SELECTION **/
/**/#ct_changeCurrency {}
/**/#ct_changeCurrency h1 {}
/**/#ct_cc_currencySelect label {}
/** end CURRENCY SELECTION page **/


/** __SITEMAP **/
/**/#ct_sitemap {margin: 0 0 0 30px;}
#ct_sitemap img{display: none;}
/**/#ct_sitemap h1 {}

/**/#ct_sitemap div {display:block;float:left;width:32%;vertical-align:top;margin: 0;}
/**/#ct_sitemap div#ct_sm_categories {}
/**/#ct_sitemap div#ct_sm_brands {}
/**/#ct_sitemap div#ct_sm_pages {}

/* list titles */
/**/#ct_sitemap h3{}

/**/#ct_sitemap ul {
  list-style-type: none;
  margin: 0 0 15px;
  padding: 0;
}
/**/#ct_sitemap ul ul {
  margin: 0;
  padding: 0 15px;
}
/**/#ct_sitemap a {}
/**/#ct_sitemap a:hover {}

/**/#sitemap_additional {}
/** end SITEMAP page **/


/** __404_PAGE_NOT_FOUND **/
/**/#ct_pageNotFound {}
/**/#ct_pageNotFound  h1 {}
/**/#ct_pageNotFound  p {}
/** end PAGE NOT FOUND **/
.ct_wl_item_image img {
  display: none;
}
.ct_wl_item_image img:first-child {
  display: block;
}
#jquery-overlay, #jquery-lightbox {display: none !important;}
#ct_basketSummary {}
#ct_basketSummary .ct_bs_label{margin: 0;}/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}#ct_pd_product_description {
  margin: 10px 0 40px;
  padding: 10px;
  position: relative;
}
#productdetails_tab {
  margin: 0 0 0 10px;
}
.prodtab {
  background: #585EE3 none repeat scroll 0 0;
  border-radius: 5px 5px 0 0;
  bottom: -2px;
  color: #fff;
  cursor: pointer;
  float: right;
  font-size: 15px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  position: relative;
  text-align: center;
  width: 30%;
}
#ct_pd_product_description .prodtab.on {
  background: #8A93FF none repeat scroll 0 0;
  color: #fff;
  font-weight: 900;
  height: 40px;
  position: relative;
  z-index: 89;
}
.prodtab.off {

    border-left: medium none;
    border-right: medium none;
    border-top: medium none;
}
.prodcontent {
    clear: left;
    color: #000;
    float: left;
    padding: 15px 10px;
    top: 38px;
    width: 100%;
    z-index: 1;
    border:2px solid #8a93ff;
}
.prodcontent.on {
    display: block;
}
.prodcontent.on .ct_mainContent {
    margin: 0;
    max-height: 160px;
    overflow: auto;
}
.prodcontent.on .ct_mainContent p {
    font-size: 12px;
    line-height: 18px;
}
.prodcontent.off {
    display: none;
}
.prodcontent p {
    margin: 0 0 9px;
}
.prodcontent a {
    color: #000;
    font-weight: bold;
}
.sharing_container {
float: left;
height: 30px;
margin: 0 0 40px;
width: 100%;
}