/*
* Mootools Simple Modal
* Version 1.0
* Copyright (c) 2011 Marco Dell'Anna - http://www.plasm.it
*
* Markup Modal
* <div class="simple-modal" id="simple-modal">
*   <div class="simple-modal-header">
*     <a class="close" href="#">×</a>
*     <h1>SimpleModal Title</h1>
*   </div>
*   <div class="simple-modal-body">
*     <div class="contents">
*       <p>
*         Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
*       </p>
*     </div>
*   </div>
*   <div class="simple-modal-footer">
*     <a class="btn primary" href="#">Primary</a>
*     <a class="btn secondary" href="#">Secondary</a>
*   </div>
* </div>
*/
/* Vars */
/* Overlay style */
#simple-modal-overlay {
  position: fixed ;
  display: block;
  z-index: 99998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-position: center center;
  background-repeat: no-repeat;
  background: -webkit-gradient(radial, center center, 0, center center, 460, from(#ffffff), to(#291a49));
  background: -webkit-radial-gradient(circle, #ffffff, #291a49);
  background: -moz-radial-gradient(circle, #ffffff, #291a49);
  background: -ms-radial-gradient(circle, #ffffff, #291a49);
}
.simple-modal {
  /* Style rewrite */

  width: 600px;
  left: 20px;
  top: 20px;
  /* */

  position: absolute;
  position: fixed;
  margin: 0;
  color: #808080;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
  background-color: #FFFFFF;
  border: 1px solid #EAEEFA;
  border: 1px solid rgba(234, 238, 250, 0.6);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  z-index: 99999;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.simple-modal .simple-modal-header {
  padding: 5px 15px;
  margin: 0;
  border-bottom: 1px solid #EEEEEE;
}
.simple-modal .simple-modal-header h1 {
  margin: 0;
  color: #404040;
  font-size: 18px;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 36px;
}
.simple-modal a.close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #999;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 10px;
  text-decoration: none;
}
.simple-modal a.close:hover {
  color: #444;
}
.simple-modal .simple-modal-body {
  padding: 15px;
  /* Extra style */

}
.simple-modal .simple-modal-body div.contents {
  overflow: hidden;
}
.simple-modal .simple-modal-body p {
  font-size: 13px;
  font-weight: normal;
  color: #606060;
  line-height: 18px;
}
.simple-modal .simple-modal-body p img {
  display: block;
  margin: 0 auto 10px auto;
}
.simple-modal .simple-modal-footer {
  display: block;
  background-color: #F5F5F5;
  padding: 14px 15px 15px;
  border-top: 1px solid #EEEEEE;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #FFF;
  -moz-box-shadow: inset 0 1px 0 #FFF;
  box-shadow: inset 0 1px 0 #FFF;
  zoom: 1;
  margin-bottom: 0;
  text-align: center;
}
.simple-modal .simple-modal-footer a.btn {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  background-repeat: no-repeat;
  padding: 5px 14px 6px;
  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid transparent;
  -webkit-transition: 0.2s linear all;
  -moz-transition: 0.2s linear all;
  transition: 0.2s linear all;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.simple-modal .simple-modal-footer a.btn.primary {
  color: #FFF;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  background-color: #999;
  background-repeat: repeat-x;
  margin-right: 15px;
}
.simple-modal .simple-modal-footer a.btn.primary:hover {
  border: 1px solid #444;
  background-color: #444;
}
.simple-modal .simple-modal-footer a.btn.secondary {
  padding: 5px 2px 6px;
}
.simple-modal .simple-modal-footer a.btn.secondary:hover {
  color: #999;
}
/* Draggable style */
.simple-modal.draggable .simple-modal-header:hover {
  cursor: move;
  background-color: #f8f8f8;
  -webkit-border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topleft: 6px;
  -moz-border-radius-topright: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
/* Loading style */
.simple-modal.loading .simple-modal-body {
  min-height: 60px;
  _background: transparent url("../images/loader.gif") no-repeat center center;
}
.simple-modal.loading .simple-modal-body div.contents {
  display: none;
}
.simple-modal.loading .close, .simple-modal.loading .simple-modal-header, .simple-modal.loading .simple-modal-footer {
  display: none;
}
/* Hide header */
.simple-modal.hide-header .simple-modal-header {
  display: none;
}
/* Hide header */
.simple-modal.hide-footer .simple-modal-footer {
  display: none;
}/* -- default -- */
body{
    background:transparent url(../images/user/bg.jpg) repeat-x scroll 0 27px;
}
a {
    color: #323232;
}
.centercol{
    padding:0 20px;
}
/* -- header -- */
.header {
    background-color: #D9984E;
    border-top:1px solid #DC9141;
    border-bottom:1px solid #C2764A;
}
.header .innerheader {
    height: 27px;
}
.header ul{
    background: none transparent;
}
.header li{
    background: none transparent;
    line-height:27px;
    color: white;
}
.header li a{
    color: white;
}
.header .basket .count img {
    background:transparent url(../images/user/cart_ico.jpg) no-repeat scroll 0 0;
    height: 12px;
    margin: 0 3px 4px 0;
    vertical-align: middle;
    width: 13px;
}
.header .links .register img, .header .links .myaccount img, .header .links .login img, .header .links .logout img {
    display: none;
}
/* -- logo/header -- */
div.logo {
    background:transparent;
    height:132px;
}
.logo .innerlogo{
    height:132px !important;
}
.logo form.search {
    float:right;
    height:50px;
    background:transparent url(../images/user/search_bg.jpg) no-repeat scroll 0 0;
    margin:0;
    vertical-align:bottom;
    width:290px;
    position: absolute;
    top: 50px;
    right: 20px;
}

.logo form.search input.search{
    background:transparent none;
    padding: 10px;
    color: white;
    height: auto !important;
}
*:first-child+html .logo form.search input.search  { /* IE7 */
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    height: 30px;
    line-height: 30px;
}
.logo form.search button{
    background:transparent none;
    border: 0;    
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    filter:none !important;
}
.logo form.search button:hover{
    box-shadow: 0 0 0 transparent;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    border: 0;
}
.logo form.search button span{
    display: none;
}
/* -- menu -- */
.menu {
    background-color: transparent !important;
    height:45px;
}
.menu .innermenu{
    background:transparent url(../images/user/menu.jpg) repeat-x scroll 0 0;
    height:45px;
}
.menu .leftside{
    background:transparent url(../images/user/menu_left.jpg) repeat-x scroll 0 0;
    width: 3px;
    height:45px;
}
.menu .rightside{
    background:transparent url(../images/user/menu_right.jpg) repeat-x scroll 0 0;
    width: 55px;
    height:45px;
}
.menu li h3 img {
    display: none;
}
.menu li a{
    display: block;
    padding: 0 20px;
    background:transparent url(../images/user/menu_sep.jpg) no-repeat scroll right top;
    line-height:45px;
    color: #555;
}
.menu li a:hover{
    background:transparent url(../images/user/menu_h.jpg) repeat-x scroll 0 0;
    color: white;
}
/* -- bredcrumbps -- */
.breadcrumbs {
    background: #F9F5D9;
    border-top: 1px solid #ECEBE6;
    border-bottom: 1px solid #ECEBE6;
}

/* -- main -- */
.main {
    background:transparent url(../images/user/main_bg.jpg) repeat scroll 0 0;
}
/* -- footer -- */
.footer, .userfooter {
    background-color:#540700;
    padding: 0;
}
.footer li a{
    color: #DCC698;
    text-shadow:1px 1px #390500;
}
.userfooter{
    height: 28px;
    line-height: 28px;
}
.userfooter p{
    width:49%;
    float: left;
    color: #DCC698;
}
.userfooter p a{
    color: #DCC698;
}
.userfooter p.auth, .userfooter p.auth a{
    color: #735451;
    text-align:right;
}

/* -- box -- */

.main .box .topbar, .main .box .bottombar, .main .box .boxhead .leftside, .main .box .innerbox .leftside, 
.main .box .boxhead .rightside, .main .box .innerbox .rightside, .main .hbox .topbar, .main .hbox .bottombar,
.main .hbox .boxhead .leftside, .main .hbox .boxhead .rightside, .main .hbox .innerbox .leftside, 
.main .hbox .innerbox .rightside, #box_basket .boxhead h3 img {
    display: none;
}
.main .box .boxhead{
    background: white none;
    border-bottom: 1px solid #A8382D;
}
.main .leftcol .box .boxhead, .main .rightcol .box .boxhead, .main .hbox .boxhead {
    background:#F5F5F5 url(../images/user/box_top.jpg) repeat-x scroll 0 0;
    color: #2A2A2A;
}
.main .box .boxhead h3, .main .hbox .boxhead h3{
    color: #2A2A2A;
    text-shadow:1px 1px white;
}
.main .box .innerbox{
    background: white none;
}

#box_basket .innerbox .arrow{
    background:transparent url(../images/user/cart_cart.jpg) no-repeat scroll 0 0;
    height:64px;
    left:0px;
    position:absolute;
    top:10px;
    width:52px;
}
#box_basket .innerbox {
    height:50px;
    padding-left:60px;
    padding-top:30px;
}
/* -- product list -- */
#box_mainproducts .innerbox table.products tr.fewperrow{
    background:#fff url(../images/user/hr.jpg) no-repeat scroll left bottom;
}
#box_mainproducts .innerbox table.products td{
    border: 0;
    background: white none;
}
#box_mainproducts .innerbox table.products tr.fewperrow .product .description {
    display: none;
}
.main .innerbox button.addtobasket{
    background:#fff url(../images/user/button.jpg) no-repeat scroll left bottom;
    border: 0;    
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    filter:none !important;
    width:102px;
    height:32px;
    margin:0;
    padding:0;
    font-size:11px;
    text-align: left;
}
#box_mainproducts .innerbox table.products tr.fewperrow .product .price{
    clear:both;
    float:left;
    font-weight:bold;
    padding:0;
    margin-bottom: 10px;
    text-align:center;
    width:100%;
}
#box_mainproducts .innerbox table.products tr.fewperrow .product .price span{
    clear:none;
    display:inline;
    float:none;
}
#box_mainproducts .innerbox table.products tr .product .price em {
    display:inline;
    float:none;
}
#box_mainproducts .innerbox table.products tr .product .price del{
    padding-left:20px;
    float:none;
} 
#box_mainproducts .innerbox table.products tr.fewperrow .product .basket {
    height:32px;
    margin: 0;
    width: 100%;
    text-align: center;
}
.main .innerbox button.addtobasket span{
    padding-left: 5px;
}
.main .innerbox button.addtobasket img{
    display: none;
}
.main .innerbox button.addtobasket:hover{
    box-shadow: 0 0 0 transparent;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    border: 0;
}
#box_mainproducts .innerbox table.products tr.fewperrow .product a.details img{
    border:1px solid #CB8856;
    padding:3px;
}
.main .innerbox span.productname{
    color: #505050;
    margin-bottom:10px;
}

/* -- menu left -- */
.main #box_menu .innerbox{
    padding:10px 0;
}

#box_menu .innerbox ul.standard, #box_menu .innerbox ul.folded {
    margin:0;
}
#box_menu .innerbox ul.standard li, #box_menu .innerbox ul.folded li{
    line-height: 26px;
    padding: 0;
}
#box_menu .innerbox ul.standard li a, #box_menu .innerbox ul.folded li a{
    color: #9F4A42;
    display: inline;
    padding-left: 10px;
    
}
#box_menu .innerbox ul.standard li a:hover, #box_menu .innerbox ul.folded li a:hover{
    background: transparent;
    color: #000;
}
#box_menu .innerbox ul.standard em, #box_menu .innerbox ul.folded em {
    
}


.shop_index .main #box_mainproducts .boxhead h3, #shoper-foot{
    display: none;
}

#shoper-foot{
    display: none;
}
#box_productfull .additionalinfo dl {
    margin:0;
}
#box_productfull .additionalinfo dt {
    width:35%;
}
#box_productfull .additionalinfo dd {
    width:65%;
}
#box_productfull .description {
    border-top:4px solid #a6372c;
}
#box_basketlist .innerbox table.productlist tfoot tr.recount td {
    border-top:6px solid #a6372c;
}
/*
* Mootools Simple Modal
* Version 1.0
* Copyright (c) 2011 Marco Dell'Anna - http://www.plasm.it
*
* Markup Modal
* <div class="simple-modal" id="simple-modal">
*   <div class="simple-modal-header">
*     <a class="close" href="#">×</a>
*     <h1>SimpleModal Title</h1>
*   </div>
*   <div class="simple-modal-body">
*     <div class="contents">
*       <p>
*         Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
*       </p>
*     </div>
*   </div>
*   <div class="simple-modal-footer">
*     <a class="btn primary" href="#">Primary</a>
*     <a class="btn secondary" href="#">Secondary</a>
*   </div>
* </div>
*/
/* Vars */
/* Overlay style */
#simple-modal-overlay {
  position: fixed ;
  display: block;
  z-index: 99998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-position: center center;
  background-repeat: no-repeat;
  background: -webkit-gradient(radial, center center, 0, center center, 460, from(#ffffff), to(#291a49));
  background: -webkit-radial-gradient(circle, #ffffff, #291a49);
  background: -moz-radial-gradient(circle, #ffffff, #291a49);
  background: -ms-radial-gradient(circle, #ffffff, #291a49);
}
.simple-modal {
  /* Style rewrite */

  width: 600px;
  left: 20px;
  top: 20px;
  /* */

  position: absolute;
  position: fixed;
  margin: 0;
  color: #808080;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
  background-color: #FFFFFF;
  border: 1px solid #EAEEFA;
  border: 1px solid rgba(234, 238, 250, 0.6);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  z-index: 99999;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.simple-modal .simple-modal-header {
  padding: 5px 15px;
  margin: 0;
  border-bottom: 1px solid #EEEEEE;
}
.simple-modal .simple-modal-header h1 {
  margin: 0;
  color: #404040;
  font-size: 18px;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 36px;
}
.simple-modal a.close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #999;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 10px;
  text-decoration: none;
}
.simple-modal a.close:hover {
  color: #444;
}
.simple-modal .simple-modal-body {
  padding: 15px;
  /* Extra style */

}
.simple-modal .simple-modal-body div.contents {
  overflow: hidden;
}
.simple-modal .simple-modal-body p {
  font-size: 13px;
  font-weight: normal;
  color: #606060;
  line-height: 18px;
}
.simple-modal .simple-modal-body p img {
  display: block;
  margin: 0 auto 10px auto;
}
.simple-modal .simple-modal-footer {
  display: block;
  background-color: #F5F5F5;
  padding: 14px 15px 15px;
  border-top: 1px solid #EEEEEE;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #FFF;
  -moz-box-shadow: inset 0 1px 0 #FFF;
  box-shadow: inset 0 1px 0 #FFF;
  zoom: 1;
  margin-bottom: 0;
  text-align: center;
}
.simple-modal .simple-modal-footer a.btn {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  background-repeat: no-repeat;
  padding: 5px 14px 6px;
  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid transparent;
  -webkit-transition: 0.2s linear all;
  -moz-transition: 0.2s linear all;
  transition: 0.2s linear all;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.simple-modal .simple-modal-footer a.btn.primary {
  color: #FFF;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  background-color: #999;
  background-repeat: repeat-x;
  margin-right: 15px;
}
.simple-modal .simple-modal-footer a.btn.primary:hover {
  border: 1px solid #444;
  background-color: #444;
}
.simple-modal .simple-modal-footer a.btn.secondary {
  padding: 5px 2px 6px;
}
.simple-modal .simple-modal-footer a.btn.secondary:hover {
  color: #999;
}
/* Draggable style */
.simple-modal.draggable .simple-modal-header:hover {
  cursor: move;
  background-color: #f8f8f8;
  -webkit-border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topleft: 6px;
  -moz-border-radius-topright: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
/* Loading style */
.simple-modal.loading .simple-modal-body {
  min-height: 60px;
  _background: transparent url("../images/loader.gif") no-repeat center center;
}
.simple-modal.loading .simple-modal-body div.contents {
  display: none;
}
.simple-modal.loading .close, .simple-modal.loading .simple-modal-header, .simple-modal.loading .simple-modal-footer {
  display: none;
}
/* Hide header */
.simple-modal.hide-header .simple-modal-header {
  display: none;
}
/* Hide header */
.simple-modal.hide-footer .simple-modal-footer {
  display: none;
}