/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('/template/auto-voll/images/fancybox/fancybox.png');
}

#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: transparent url('/template/auto-voll/images/fancybox/fancybox.png') -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}

#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('/template/auto-voll/images/fancybox/blank.gif');
	z-index: 1102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background-image: url('/template/auto-voll/images/fancybox/fancybox.png');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('/template/auto-voll/images/fancybox/fancybox.png');
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancybox-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

#fancybox-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url('/template/auto-voll/images/fancybox/fancybox-x.png');
}

#fancybox-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url('/template/auto-voll/images/fancybox/fancybox.png');
	background-position: -40px -162px;
}

#fancybox-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url('/template/auto-voll/images/fancybox/fancybox-y.png');
	background-position: -20px 0px;
}

#fancybox-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url('/template/auto-voll/images/fancybox/fancybox.png');
	background-position: -40px -182px; 
}

#fancybox-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url('/template/auto-voll/images/fancybox/fancybox-x.png');
	background-position: 0px -20px;
}

#fancybox-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url('/template/auto-voll/images/fancybox/fancybox.png');
	background-position: -40px -142px;
}

#fancybox-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url('/template/auto-voll/images/fancybox/fancybox-y.png');
}

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('/template/auto-voll/images/fancybox/fancybox.png');
	background-position: -40px -122px;
}

#fancybox-title {
	font-family: Helvetica;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}

.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}

.fancybox-title-over {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url('/template/auto-voll/images/fancybox/fancy_title_over.png');
	display: block;
}

.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}

#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}

#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}

#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('/template/auto-voll/images/fancybox/fancybox.png') -40px -90px no-repeat;
}

#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('/template/auto-voll/images/fancybox/fancybox-x.png') 0px -40px;
}

#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('/template/auto-voll/images/fancybox/fancybox.png') -55px -90px no-repeat;
}

/* IE6 */

.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_close.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_nav_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_nav_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_title_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_title_main.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_title_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
	height: expression(this.parentNode.clientHeight + "px");
}

#fancybox-loading.fancybox-ie6 {
	position: absolute; margin-top: 0;
	top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
}

#fancybox-loading.fancybox-ie6 div	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_loading.png', sizingMethod='scale'); }

/* IE6, IE7, IE8 */

.fancybox-ie .fancybox-bg { background: transparent !important; }

.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/template/auto-voll/images/fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }

html body .pageWrapper .pageContent {
padding-top: 150px;
}


#modal-overlay {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    animation: slide-down 0.3s ease;
    animation-fill-mode: forwards;
    transform: translateY(-100%);
}

#modal-overlay a {
    display: block;
    font-size: 30px;
}

#modal-overlay h2 {
	padding-left: 0;
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.my-modal {
    z-index: 10001;
    max-width: 480px;
    margin: 200px auto;
    background-color: #ffff;
    border-radius: 5px;
    padding: 2rem;
    animation:scale-up-center .4s cubic-bezier(.39,.575,.565,1.000) both
}

@keyframes scale-up-center {
    0% {
        transform: scale(.5)
    }
    100% {
        transform: scale(1)
    }
}

.close-icon {
    font-size: 4rem;
    text-align: right;
    cursor: pointer;
}

.modal-content {
    text-align: center;
    padding-top: 2rem;
}

.modal-content-heading {
    color: #001954;
    font-size: 2rem;
    margin-top: 0;
}

.modal-content-subheading {
    font-size: 1.2rem;
    line-height: 1.5;
}

.close-button{
    background-color: #001954;
    color: #ffff;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 1.2rem 2rem;
    margin-top: 1rem;
    outline: none;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
}


@media screen and (max-width: 540px) {
    .my-modal {
        max-width: 300px;
        height: 320px;
        padding: 0rem 1rem;
    }

}


.keywordsDescription, .updatePriceLog {
height: 0;
display: block;
line-height:0;
height: 0;
overflow: hidden;
}

.auto-voll-header {
position : relative;
//float : left;
width : 1050px;
height : 57px;
margin: 0 auto;
}
.auto-voll-header-logo {
 position : absolute;
 width : 155px;
 height : 79px;
 top : 0px;
 left : 870px;
 z-index : 150;
 background-image : url('/template/auto-voll/images/site/logo.png');
 background-repeat : no-repeat;
 background-position : 0% 0%;
}
/* menu */
.auto-voll-menu {
 position : relative;
 width : 1050px;
 height : 50px;
 padding : 0 0 0 0;
 margin : 0px 0 0 0;
 z-index : 3;
 background-image : url('/template/auto-voll/images/site/backgrounds/grey_background.png');
 border-top : 7px solid #808080;
}
.auto-voll-menulist {
 width : 950px;
 position : relative;
 float : left;
 margin: 0px;
 padding: 0px;
}
.auto-voll-menulist li {
 position : relative;
 float : left;
 height : 16px;
 list-style-type : none;
 padding : 25px 0px 9px 0px;
 margin : 0px 0px 0px 0px;
 border-left : 1px solid #808080;
}
.auto-voll-menulist li a {
 color : #ffffff;
 font : bold 13px Arial;
 text-decoration : none;
 padding : 25px 14px 9px 14px;
}
.auto-voll-menulist li a:hover {
 text-decoration : none;
}
.auto-voll-menulist li:hover {
 background-image : url('/template/auto-voll/images/site/backgrounds/white_background.png');
}
.auto-voll-menulist li:hover a {
 color : #000000;
 font : bold 13px Arial;
 text-decoration : none;
}

.iframeWrapper{
      position: relative;
      min-height: 80px;
    }

    .iframeCatalogLoader {
      display: block;
    }

    .iframeCatalogLoader.hide {
      display: none;
    }

    .iframeCatalogLoader,
    .iframeCatalogLoader:after {
      border-radius: 50%;
      width: 5em;
      height: 5em;
    }

    .iframeCatalogLoader {
      margin: 60px auto;
      font-size: 10px;
      position: relative;
      text-indent: -9999em;
      border-top: 1.1em solid rgba(85, 85, 85, 0.2);
      border-right: 1.1em solid rgba(85, 85, 85, 0.2);
      border-bottom: 1.1em solid rgba(85, 85, 85, 0.2);
      border-left: 1.1em solid #555555;
      -webkit-transform: translateZ(0);
      -ms-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-animation: load8 1.1s infinite linear;
      animation: load8 1.1s infinite linear;
    }

    @-webkit-keyframes load8 {
      0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
      }
      100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
      }
    }

    @keyframes load8 {
      0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
      }
      100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
      }
    }

    .showHideCatalogButton {
      display: none;
      margin-top: 10px;
      margin-bottom: 10px;
      float: right;
      margin-right: 50px;
    }

    .showHideCatalogButton.show {
      display: block;
    }

    .iframeCatalog {
      transition: height 1s;
      visibility: hidden;
      position: absolute;
    }

    .iframeCatalog.show {
      visibility: visible;
      position: relative;
    }

    .iframeCatalogHide {
      height: 0 !important;
    }



.zoomPad{
	position:relative;
	float:left;
	z-index:99;
	cursor:crosshair;
}


.zoomPreload{
   -moz-opacity:0.8;
   opacity: 0.8;
   filter: alpha(opacity = 80);
   color: #333;
   font-size: 12px;
   font-family: Tahoma;
   text-decoration: none;
   border: 1px solid #CCC;
   background-color: white;
   padding: 8px;
   text-align:center;
   background-image: url(/template/auto-voll/images/zoomloader.gif);
   background-repeat: no-repeat;
   background-position: 43px 30px;
   z-index:110;
   width:90px;
   height:43px;
   position:absolute;
   top:0px;
   left:0px;
    * width:100px;
    * height:49px;
}


.zoomPup{
	overflow:hidden;
	background-color: #FFF;
	-moz-opacity:0.6;
	opacity: 0.6;
	filter: alpha(opacity = 60);
	z-index:120;
	position:absolute;
	border:1px solid #CCC;
  z-index:101;
  cursor:crosshair;
}

.zoomOverlay{
	position:absolute;
	left:0px;
	top:0px;
	background:#FFF;
	/*opacity:0.5;*/
	z-index:5000;
	width:100%;
	height:100%;
	display:none;
  z-index:101;
}

.zoomWindow{
	position:absolute;
	left:100%;
	top:40px;
	background:#FFF;
	z-index:6000;
	height:auto;
  z-index:10000;
  z-index:110;
}
.zoomWrapper{
	position:relative;
	border:1px solid #999;
  z-index:110;
}
.zoomWrapperTitle{
	display:block;
	background:#999;
	color:#FFF;
/* 	height:18px; */
	line-height:18px;
	width:100%;
  /*overflow:hidden;*/
	text-align:center;
	font-size:10px;
  position:absolute;
  top:0px;
  left:0px;
  z-index:120;
  -moz-opacity:0.6;
  opacity: 0.6;
  filter: alpha(opacity = 60);
}
.zoomWrapperImage{
	display:block;
  position:relative;
  overflow:hidden;
  z-index:110;

}
.zoomWrapperImage img{
  border:0px;
  display:block;
  position:absolute;
  z-index:101;
}

.zoomIframe{
  z-index: -1;
  filter:alpha(opacity=0);
  -moz-opacity: 0.80;
  opacity: 0.80;
  position:absolute;
  display:block;
}

.productWrapper { 
	overflow: visible;
}

.productBigThumb .pictureGalleryJqZoom {
	z-index: 10;
}

.productBigThumb .pictureGallery1 {
	z-index: 11;
}

/*********************************************************
/ When clicking on thumbs jqzoom will add the class
/ "zoomThumbActive" on the anchor selected
/*********************************************************/

body .pageWrapper .pageContent .mainContent .module .moduleContent .product .buyNow input {
  visibility: visible;
}
body .pageWrapper .pageContent .mainContent .module.product .mainInfo .actions input {
  visibility: visible;
}
* {
  font-family: Helvetica, Verdana, sans-serif;
  font-size: 13px;
  zoom: 1;
}
* input[type="button"],
* input[type="submit"] {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#5a5a5a,EndColorStr=#444444);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5a5a5a,endColorstr=#444444);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#5a5a5a),color-stop(1,#444444));
  background: -webkit-linear-gradient(#5a5a5a,#444444);
  background: -moz-linear-gradient(center top,#5a5a5a 5%,#444444 100%);
  background: -ms-linear-gradient(#5a5a5a,#444444);
  background: -o-linear-gradient(#5a5a5a,#444444);
  background: linear-gradient(#5a5a5a,#444444);
  background-color: #5a5a5a;
  zoom: 1;
  border: 1px solid #5a5a5a;
  -moz-box-shadow: 0px 1px 1px 0px #888;
  -webkit-box-shadow: 0px 1px 1px 0px #888;
  box-shadow: 0px 1px 1px 0px #888;
  margin: 2px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 2px 3px;
  text-decoration: none;
  cursor: pointer;
}
* input[type="button"]:active,
* input[type="submit"]:active {
  position: relative;
  top: 1px;
}
* input[type="button"]:hover,
* input[type="submit"]:hover {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#5a5a5a);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#5a5a5a);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#5a5a5a));
  background: -webkit-linear-gradient(#444444,#5a5a5a);
  background: -moz-linear-gradient(center top,#444444 5%,#5a5a5a 100%);
  background: -ms-linear-gradient(#444444,#5a5a5a);
  background: -o-linear-gradient(#444444,#5a5a5a);
  background: linear-gradient(#444444,#5a5a5a);
  background-color: #444444;
  zoom: 1;
}
* input[type="button"].special,
* input[type="submit"].special {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#5a5a5a);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#5a5a5a);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#5a5a5a));
  background: -webkit-linear-gradient(#444444,#5a5a5a);
  background: -moz-linear-gradient(center top,#444444 5%,#5a5a5a 100%);
  background: -ms-linear-gradient(#444444,#5a5a5a);
  background: -o-linear-gradient(#444444,#5a5a5a);
  background: linear-gradient(#444444,#5a5a5a);
  background-color: #444444;
  zoom: 1;
  border: 1px solid #444444;
}
* input[type="button"].special:hover,
* input[type="submit"].special:hover {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#5a5a5a,EndColorStr=#444444);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5a5a5a,endColorstr=#444444);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#5a5a5a),color-stop(1,#444444));
  background: -webkit-linear-gradient(#5a5a5a,#444444);
  background: -moz-linear-gradient(center top,#5a5a5a 5%,#444444 100%);
  background: -ms-linear-gradient(#5a5a5a,#444444);
  background: -o-linear-gradient(#5a5a5a,#444444);
  background: linear-gradient(#5a5a5a,#444444);
  background-color: #5a5a5a;
  zoom: 1;
}
* input[type="button"].bigButton,
* input[type="submit"].bigButton {
  font-size: 16px;
  padding: 4px 10px;
}
* input[type="text"].styled,
* input[type="password"].styled {
  width: -10px;
  padding-left: 5px;
  padding-right: 5px;
  padding-left: 5px;
  padding-right: 5px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  height: 22px;
  color: #838383;
  background: #ededed;
  border: 1px solid #838383;
}
* .price {
  font-size: 1.2em;
  font-weight: bold;
  display: block;
  text-align: center;
  color: #7E7D7D;
}
* .price .oldPrice {
  text-decoration: line-through;
  color: #7E7D7D;
}
* .price .newPrice {
  color: #901e1f;
  font-size: 1.3em;
}
* .price .points {
  display: block;
}
* .likeLink {
  cursor: pointer;
}
* .productRowSpacer {
  width: 100%;
  border-top: 1px dotted #ccc;
  height: 1px;
  margin: 5px 0;
  float: left;
}
* .productRowSpacer.white {
  border-top: 1px dotted #fff;
}
* .optionSelect {
  width: 150px;
}
* .ajaxProductQuestion {
  padding: 20px;
}
* .ajaxProductQuestion textarea {
  width: 400px;
  height: 200px;
}
* .productFile {
  position: relative;
  width: 705px;
  padding-left: 10px;
  padding-right: 10px;
  height: -20px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin-top: 45px;
  clear: both;
  float: left;
}
* .productFile #myProductsContent {
  position: relative;
  z-index: 5;
}
* .productFile .productFileBg {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: #000;
  opacity: 0.2;
  filter: alpha(opacity=20);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
* .productFile .title {
  position: absolute;
  display: block;
  list-style: none;
  height: 25px;
  top: -25px;
  left: 7px;
  padding: 0;
  margin: 0;
}
* .productFile .title li {
  display: inline-block;
  position: relative;
  height: 25px;
  line-height: 25px;
  padding: 0 10px;
  margin: 0;
  font-weight: bold;
  cursor: pointer;
  z-index: 5;
}
* .productFile .title li .productFileBg {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-border-top-right-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -khtml-border-radius-topright: 0px;
  -khtml-border-radius-topleft: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  opacity: 0.1;
  filter: alpha(opacity=10);
}
* .productFile .title li.active .productFileBg {
  opacity: 0.2;
  filter: alpha(opacity=20);
}
* .productFile .productFileContent {
  display: none;
}
* .productFile .productFileContent .productFileContainer {
  position: relative;
  z-index: 5;
}
* .productFile .description {
  display: block;
  overflow: hidden;
}
* .productFile .opinions h4 {
  padding-left: 0;
}
* .productFile .opinions .productOpinionStarsOff {
  float: left;
  width: 85px;
  height: 16px;
  background: url("/template/auto-voll/images/star-off.png") repeat-x;
  cursor: pointer;
}
* .productFile .opinions .productOpinionStarsOff .productOpinionStarsOn {
  background: url("/template/auto-voll/images/star-on.png") repeat-x;
  width: 100%;
  height: 16px;
}
* .productFile .opinions #opinionFormRating .productOpinionStarsOnHidden .productOpinionStarsOn,
* .productFile .opinions .opinionFormRating .productOpinionStarsOnHidden .productOpinionStarsOn {
  background: none;
}
* .productFile .opinions #productOpinionTotal {
  margin: 5px 0 10px 0;
  overflow: hidden;
}
* .productFile .opinions #productOpinionTotalRatingText {
  font-weight: bold;
  float: left;
  height: 17px;
  padding-top: 1px;
  padding-right: 5px;
}
* .productFile .opinions #productOpinionTotalRatingRates {
  float: left;
  padding-top: 1px;
  padding-left: 5px;
}
* .productFile .opinions #productOpinionRatingRate {
  font-weight: bold;
}
* .productFile .opinions #productOpinionRatingRateMax {
  font-weight: bold;
}
* .productFile .opinions #productOpinionRatingRateCount {
  font-weight: bold;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinion {
  clear: both;
  overflow: hidden;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding: 15px 0;
  position: relative;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinion .productOpinionOurCustomer {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 18px;
  font-weight: bold;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionSummary {
  float: left;
  font-weight: bold;
  padding-top: 1px;
  padding-left: 5px;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionDate {
  float: left;
  padding-top: 3px;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionDate span {
  font-weight: bold;
  padding-right: 5px;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionAuthor {
  float: left;
  padding-top: 3px;
  padding-left: 5px;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionAuthor span {
  font-weight: bold;
  padding-right: 5px;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionText {
  clear: both;
  padding: 15px 0;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionText span {
  font-weight: bold;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionUseful {
  clear: both;
  font-weight: bold;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionUseful .productOpinionGood {
  color: #00ff00;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionUseful .productOpinionBad {
  color: #ff0000;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionVoting .productOpinionVotingText {
  font-weight: normal;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionVoting .opinionUsefulYes,
* .productFile .opinions #moduleProductOpinionsListing .productOpinionVoting .opinionUsefulNo {
  cursor: pointer;
  font-weight: bold;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionVoting .opinionUsefulYes:hover,
* .productFile .opinions #moduleProductOpinionsListing .productOpinionVoting .opinionUsefulNo:hover {
  text-decoration: underline;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionAddYours {
  padding-top: 15px;
}
* .productFile .opinions #moduleProductOpinionsListing .add_opinion {
  cursor: pointer;
  font-size: 11px;
}
* .productFile .opinions #moduleProductOpinionsListing .add_opinion_textarea_show,
* .productFile .opinions #moduleProductOpinionsListing .info_opinion {
  display: none;
}
* .productFile .opinions #moduleProductOpinionsListing textarea.opinion_textarea {
  border: 1px solid silver;
  height: 70px;
  width: 100%;
}
* .productFile .opinions #moduleProductOpinionsListing .customers_avatar_image {
  vertical-align: top;
}
* .productFile .opinions #moduleProductOpinionsListing .add_opinion_table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
}
* .productFile .opinions #moduleProductOpinionsListing .add_opinion_table tr td.left {
  width: 15%;
}
* .productFile .opinions #moduleProductOpinionsListing .add_opinion_table tr td {
  padding: 2px 0;
}
* .productFile .opinions #moduleProductOpinionsListing .add_opinion_table tr td input[type="text"] {
  border: 1px solid silver;
  margin: 0;
  width: 50%;
}
* .productFile .opinions #moduleProductOpinionsListing .opinionListUsefulYes,
* .productFile .opinions #moduleProductOpinionsListing .opinionListUsefulNo {
  cursor: pointer;
  font-weight: bold;
}
* .productFile .opinions #moduleProductOpinionsListing .opinionListUsefulYes:hover,
* .productFile .opinions #moduleProductOpinionsListing .opinionListUsefulNo:hover {
  text-decoration: underline;
}
* .productFile .opinions #moduleProductOpinionsListing .add_products_opinion {
  cursor: pointer;
  font-size: 11px;
}
* .productFile .opinions #moduleProductOpinionsListing .add_products_opinion a {
  font-size: 11px;
  color: black;
}
* .productFile .opinions #moduleProductOpinionsListing .add_products_opinion a:hover {
  text-decoration: none;
}
* .productFile .opinions #moduleProductOpinionsListing .productOpinionAddInfo {
  float: right;
}
* .productFile .opinions .productOpinionListingPages {
  clear: both;
  padding: 15px 0;
  margin: 0px auto;
  text-align: center;
}
* .productFile .opinions .productOpinionListingPages .productOpinionListingPage {
  font-size: 13px;
  padding: 0 3px;
}
* .productFile .opinions .productOpinionListingPages .productOpinionListingPage:hover {
  cursor: pointer;
}
* .productFile .opinions .productOpinionListingPages .productOpinionListingPageSelected {
  font-weight: bold;
  font-size: 16px;
}
* .productFile .opinions #productOpinionsForm {
  overflow: hidden;
}
* .productFile .opinions #productOpinionsForm .opinionFormLabel {
  font-weight: bold;
  clear: both;
  padding-top: 6px;
}
* .productFile .opinions #productOpinionsForm .opinionFormLabel span {
  font-weight: normal;
  font-size: 10px;
  display: block;
}
* .productFile .opinions #productOpinionsForm #opinionFormNick {
  width: 30%;
}
* .productFile .opinions #productOpinionsForm #opinionFormEmail {
  width: 30%;
}
* .productFile .opinions #productOpinionsForm #opinionFormSummary {
  width: 80%;
}
* .productFile .opinions #productOpinionsForm #opinionFormDescription {
  width: 80%;
  height: 120px;
}
* .productFile .opinions #productOpinionsForm #optionFormSaving {
  display: none;
}
* .productFile .opinions #productOpinionsForm .opinionFormError {
  display: none;
  clear: both;
  font-weight: bold;
  padding: 5px;
  color: #ff0000;
}
* .productFile .opinions #productOpinionSaveSuccess {
  display: none;
  font-weight: bold;
  border-width: 4px;
  border-style: solid;
  padding: 10px;
  margin: 2px 0;
  clear: both;
  font-weight: bold;
  color: #008000;
  border-color: #008000;
  background: #e1ece1;
}
* .productFile .opinions #productOpinionTopText {
  padding: 10px 0;
}
* .productFile .question,
* .productFile .questionAnswer {
  display: block;
  position: relative;
  width: 570px;
  border: 1px solid #fff;
  margin: 10px 0;
  padding: 10px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
* .productFile .question .questionBg,
* .productFile .questionAnswer .questionBg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
  top: 0;
  opacity: 0.2;
  filter: alpha(opacity=20);
  z-index: 1;
}
* .productFile .question .questionContent,
* .productFile .questionAnswer .questionContent {
  position: relative;
  z-index: 5;
}
* .productFile .question .whoAsk,
* .productFile .question .questionTitle,
* .productFile .question .questionText,
* .productFile .questionAnswer .whoAsk,
* .productFile .questionAnswer .questionTitle,
* .productFile .questionAnswer .questionText {
  display: block;
}
* .productFile .question .whoAsk,
* .productFile .questionAnswer .whoAsk {
  font-weight: bold;
  margin-bottom: 5px;
}
* .productFile .question .questionTitle,
* .productFile .questionAnswer .questionTitle {
  font-weight: bold;
  font-style: italic;
}
* .productFile .question.answer,
* .productFile .questionAnswer.answer {
  margin-left: 113px;
  border: 1px solid #E53831;
}
* .productFile .question.answer .questionBg,
* .productFile .questionAnswer.answer .questionBg {
  background: #E53831;
}
* .productFile.fancybox {
  margin-top: 20px;
  width: 780px;
  padding-left: 10px;
  padding-right: 10px;
}
* #add-newsletter-content {
  margin: 20px;
}
* #add-newsletter-content h1 {
  padding-left: 0;
}
* #add-newsletter-content #error {
  color: #ff0000;
  font-weight: bold;
  padding-bottom: 4px;
}
* .rca {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
* .rct {
  -webkit-border-top-right-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -khtml-border-radius-topright: 0px;
  -khtml-border-radius-topleft: 0px;
  -moz-border-radius-topright: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
* .rctl {
  -webkit-border-top-left-radius: 0px;
  -khtml-border-radius-topleft: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-left-radius: 0px;
}
* .rctr {
  -webkit-border-top-right-radius: 0px;
  -khtml-border-radius-topright: 0px;
  -moz-border-radius-topright: 0px;
  border-top-right-radius: 0px;
}
* .rcb {
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -khtml-border-radius-bottomright: 0px;
  -khtml-border-radius-bottomleft: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
* .rcbl {
  -webkit-border-bottom-left-radius: 0px;
  -khtml-border-radius-bottomleft: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-left-radius: 0px;
}
* .rcbr {
  -webkit-border-bottom-right-radius: 0px;
  -khtml-border-radius-bottomright: 0px;
  -moz-border-radius-bottomright: 0px;
  border-bottom-right-radius: 0px;
}
* body {
  margin: 0px;
  background: url("/template/auto-voll/images/colors/gray_red/site_bg.png") repeat;
  color: #000;
}
* body img {
  border: 0px;
}
* body a {
  text-decoration: none;
  color: #444;
}
* body a:hover {
  text-decoration: none;
}
* body table {
  border-collapse: collapse;
}
* body h1 {
  font-size: 1.25em;
  font-weight: bold;
  margin: 0;
  padding: 5px 15px;
}
* body h2 {
  font-size: 1.15em;
  font-weight: bold;
  margin: 0;
  padding: 5px 15px;
}
* body h3 {
  font-size: 1.05em;
  font-weight: bold;
  margin: 0;
  padding: 5px 15px;
}
* body h4 {
  font-size: 1em;
  font-weight: bold;
  margin: 0;
  padding: 5px 15px;
}
* body .cb {
  clear: both;
}
* body .fl {
  float: left;
}
* body .fr {
  float: right;
}
* body .tal {
  text-align: left;
}
* body .tar {
  text-align: right;
}
* body .tac {
  text-align: center;
}
* body td.messageStackError {
  display: block;
  padding: 5px;
  margin-bottom: 5px;
  border: 2px solid #971B13;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
* body .themeSelect {
  position: fixed;
  top: 80px;
  left: 10px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  border: 1px solid #666;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  z-index: 10000;
}
* body .themeSelect p {
  width: 180px;
  text-align: left;
  margin-bottom: 0;
}
* body .pageWrapper {
  position: relative;
  width: 1050px;
  margin: 0 auto;
}
* body .pageWrapper .header {
  position: relative;
  width: 1050px;
  padding-left: 0px;
  padding-right: 0px;
  height: 245px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding: 0 0 0 0;
  margin-top: 10px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
* body .pageWrapper .header .slideshow {
  position: relative;
  width: 1050px;
  padding-left: 0px;
  padding-right: 0px;
  height: 150px;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: url('/template/auto-voll/images/slider_bg.jpg') repeat-y left;
  overflow: hidden;
  margin-bottom: 6px;
  margin-top: 6px;
}
* body .pageWrapper .header .slideshow .slideshowNav {
  position: absolute;
  bottom: 0;
  left: 15px;
  z-index: 9;
}
* body .pageWrapper .header .slideshow .slideshowNav a {
  display: block;
  width: 13px;
  line-height: 13px;
  height: 13px;
  background: #efefef;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#f6f6f6,EndColorStr=#e8e8e8);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#f6f6f6,endColorstr=#e8e8e8);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#f6f6f6),color-stop(1,#e8e8e8));
  background: -webkit-linear-gradient(#f6f6f6,#e8e8e8);
  background: -moz-linear-gradient(center top,#f6f6f6 5%,#e8e8e8 100%);
  background: -ms-linear-gradient(#f6f6f6,#e8e8e8);
  background: -o-linear-gradient(#f6f6f6,#e8e8e8);
  background: linear-gradient(#f6f6f6,#e8e8e8);
  background-color: #f6f6f6;
  zoom: 1;
  color: #363636;
  font-size: 0.8em;
  font-weight: bold;
  text-align: center;
  margin-right: 2px;
  float: left;
}
* body .pageWrapper .header .slideshow .slideshowNav a.activeSlide {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#5a5a5a);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#5a5a5a);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#5a5a5a));
  background: -webkit-linear-gradient(#444444,#5a5a5a);
  background: -moz-linear-gradient(center top,#444444 5%,#5a5a5a 100%);
  background: -ms-linear-gradient(#444444,#5a5a5a);
  background: -o-linear-gradient(#444444,#5a5a5a);
  background: linear-gradient(#444444,#5a5a5a);
  background-color: #444444;
  zoom: 1;
  color: #fff;
}
* body .pageWrapper .header .headerTop {
  width: 1050px;
  overflow: hidden;
}
* body .pageWrapper .header .headerTop .shopLogo {
  display: block;
  width: 40%;
  float: left;
  overflow: hidden;
}
* body .pageWrapper .header .headerTop .rightSide {
  width: 60%;
  float: left;
  text-align: right;
}
* body .pageWrapper .header .headerTop .rightSide .headerUpperMenu,
* body .pageWrapper .header .headerTop .rightSide form,
* body .pageWrapper .header .headerTop .rightSide .headerSearchBar {
  display: block;
}
* body .pageWrapper .header .headerTop .rightSide .headerUpperMenu ul {
  list-style: none;
  margin: 10px 5px 10px 0;
}
* body .pageWrapper .header .headerTop .rightSide .headerUpperMenu ul li {
  display: inline-block;
  border-right: 1px solid #ccc;
  color: #838383;
  padding: 0 5px;
}
* body .pageWrapper .header .headerTop .rightSide .headerUpperMenu ul li a {
  color: #838383;
  text-decoration: none;
  font-weight: normal;
}
* body .pageWrapper .header .headerTop .rightSide .headerUpperMenu ul li a:hover {
  color: #656565;
}
* body .pageWrapper .header .headerTop .rightSide .headerUpperMenu ul li.last {
  border: none;
  padding-right: 0;
}
* body .pageWrapper .header .headerTop .rightSide .headerSearchBar {
  position: relative;
  margin-bottom: 10px;
  height: 75px;
  overflow: hidden;
}
* body .pageWrapper .header .headerTop .rightSide .headerSearchBar input {
  position: absolute;
  width: 310px;
  top: 0;
  right: 61px;
}
* body .pageWrapper .header .headerTop .rightSide .headerSearchBar .topSearchIcon {
  width: 51px;
  height: 25px;
  cursor: pointer;
  background: #555555;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#656565,EndColorStr=#444444);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#656565,endColorstr=#444444);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#656565),color-stop(1,#444444));
  background: -webkit-linear-gradient(#656565,#444444);
  background: -moz-linear-gradient(center top,#656565 5%,#444444 100%);
  background: -ms-linear-gradient(#656565,#444444);
  background: -o-linear-gradient(#656565,#444444);
  background: linear-gradient(#656565,#444444);
  background-color: #656565;
  zoom: 1;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  overflow: hidden;
  float: right;
}
* body .pageWrapper .header .headerTop .rightSide .headerSearchBar .topSearchIcon span {
  display: block;
  width: 9px;
  height: 9px;
  margin-left: 21px;
  margin-top: 8px;
  background: url('/template/auto-voll/images/search_icon.png') no-repeat center;
}
* body .pageWrapper .header .headerTop .rightSide .headerSearchBar .topSearchIcon:hover {
  background: #404040;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#3c3c3c);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#3c3c3c);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#3c3c3c));
  background: -webkit-linear-gradient(#444444,#3c3c3c);
  background: -moz-linear-gradient(center top,#444444 5%,#3c3c3c 100%);
  background: -ms-linear-gradient(#444444,#3c3c3c);
  background: -o-linear-gradient(#444444,#3c3c3c);
  background: linear-gradient(#444444,#3c3c3c);
  background-color: #444444;
  zoom: 1;
}
* body .pageWrapper .header .headerBottom {
  position: relative;
  padding: 0 0 0 0;
  overflow: hidden;
  z-index: 100;
}
* body .pageWrapper .header .headerBottom .headerLinkBar {
  position: relative;
  display: block;
  float: left;
}
* body .pageWrapper .header .headerBottom .headerCart {
  display: block;
  position: relative;
  float: left;
  color: #fff;
}
* body .pageWrapper .header .headerBottom .headerCart span {
  font: bold 11px Arial;
  font-size: 11px;
}
* body .pageWrapper .header .headerBottom .headerLinker {
  display: block;
  position: absolute;
  top: 0;
  z-index: 110;
}
* body .pageWrapper .header .headerBottom.mobileTop {
  position: fixed;
  margin: 0;
  top: 0;
  height: 46px;
  padding-top: 0px;
}
* body .pageWrapper .header .headerBottom.mobileTop .headerLinker {
  top: -4px;
}
* body .pageWrapper .headerError,
* body .pageWrapper .headerWarning,
* body .pageWrapper .headerInfo {
  display: block;
  font-weight: bold;
  padding: 5px;
  margin-bottom: 10px;
  text-align: center;
  color: #666;
}
* body .pageWrapper .headerError {
  background: #ff0000;
  color: #fff;
}
* body .pageWrapper .headerWarning {
  background: #fcd000;
}
* body .pageWrapper .headerInfo {
  background: #00ff00;
}
* body .pageWrapper .productInCartButton {
  visibility: hidden;
}
* body .pageWrapper .dropCart {
  display: none;
  position: absolute;
  width: 200px;
  padding-left: 5px;
  padding-right: 5px;
  height: -15px;
  padding-top: 10px;
  padding-bottom: 5px;
  padding-top: 10px;
  padding-bottom: 5px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -khtml-border-radius-bottomright: 0px;
  -khtml-border-radius-bottomleft: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  background: #444444;
  right: 10px;
  top: 105px;
  z-index: 50;
}
* body .pageWrapper .dropCart input[type="button"],
* body .pageWrapper .dropCart input[type="submit"] {
  -moz-box-shadow: 0px 1px 1px 0px #888;
  -webkit-box-shadow: 0px 1px 1px 0px #888;
  box-shadow: 0px 1px 1px 0px #888;
  -moz-box-shadow: 0px 0px 0px 0px #888;
  -webkit-box-shadow: 0px 0px 0px 0px #888;
  box-shadow: 0px 0px 0px 0px #888;
}
* body .pageWrapper .dropCart #BoxCart {
  color: #777777;
  padding: 5px;
}
* body .pageWrapper .dropCart #BoxCart a,
* body .pageWrapper .dropCart #BoxCart strong {
  color: #fff;
  font-weight: bold;
}
* body .pageWrapper .dropCart #BoxCart p {
  margin: 5px 0;
}
* body .pageWrapper .dropCart #BoxCart .checkSendingCosts {
  cursor: pointer;
  color: white;
  font-size: 0.8em;
  font-weight: bold;
}
* body .pageWrapper .dropCart #BoxCart .picture,
* body .pageWrapper .dropCart #BoxCart .down {
  display: block;
  text-align: center;
}
* body .pageWrapper .dropCart #BoxCart .price {
  font-size: 1em;
}
* body .pageWrapper .dropCart #BoxCart .price .oldPrice {
  font-size: 0.7em;
}
* body .pageWrapper .pageContent {
  padding-top: 0 !important;
  width: 1030px;
  padding-left: 10px;
  padding-right: 10px;
  height: -20px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  overflow: hidden;
  background: #fff;
  margin-top: 15px;
}
* body .pageWrapper .pageContent .breadcrumb {
  display: block;
  margin: 5px 5px 10px 5px;
  color: #656565;
  font-weight: bold;
}
* body .pageWrapper .pageContent .breadcrumb a {
  font-weight: normal;
}
* body .pageWrapper .pageContent .headerBg {
  background: #efefef;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#f6f6f6,EndColorStr=#e8e8e8);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#f6f6f6,endColorstr=#e8e8e8);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#f6f6f6),color-stop(1,#e8e8e8));
  background: -webkit-linear-gradient(#f6f6f6,#e8e8e8);
  background: -moz-linear-gradient(center top,#f6f6f6 5%,#e8e8e8 100%);
  background: -ms-linear-gradient(#f6f6f6,#e8e8e8);
  background: -o-linear-gradient(#f6f6f6,#e8e8e8);
  background: linear-gradient(#f6f6f6,#e8e8e8);
  background-color: #f6f6f6;
  zoom: 1;
  border-bottom: 1px solid #8b8b8b;
  height: 37px;
  line-height: 38px;
  color: #363636;
  font-size: 1em;
  font-weight: bold;
  margin: 0;
  padding: 5px 15px;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 5px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
* body .pageWrapper .pageContent .headerBg a {
  color: #363636;
}
* body .pageWrapper .pageContent .headerBg ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
* body .pageWrapper .pageContent .headerBg ul li {
  display: inline-block;
  height: 38px;
  line-height: 38px;
  overflow: hidden;
  float: left;
}
* body .pageWrapper .pageContent .headerBg ul li .productListingList,
* body .pageWrapper .pageContent .headerBg ul li .productListingGrid {
  display: block;
  height: 18px;
  overflow: hidden;
  float: right;
  margin: 11px 3px 9px 0;
}
* body .pageWrapper .pageContent .headerBg ul li .productListingList .productListingChangeMode,
* body .pageWrapper .pageContent .headerBg ul li .productListingGrid .productListingChangeMode {
  margin-top: 1px;
  margin-left: 20px;
}
* body .pageWrapper .pageContent .headerBg ul li .productListingList {
  background: url("/template/auto-voll/images/product_listing_list.png") no-repeat;
}
* body .pageWrapper .pageContent .headerBg ul li .productListingGrid {
  background: url("/template/auto-voll/images/product_listing_grid.png") no-repeat;
}
* body .pageWrapper .pageContent .headerBg.category {
  background: #555555;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#656565,EndColorStr=#444444);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#656565,endColorstr=#444444);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#656565),color-stop(1,#444444));
  background: -webkit-linear-gradient(#656565,#444444);
  background: -moz-linear-gradient(center top,#656565 5%,#444444 100%);
  background: -ms-linear-gradient(#656565,#444444);
  background: -o-linear-gradient(#656565,#444444);
  background: linear-gradient(#656565,#444444);
  background-color: #656565;
  zoom: 1;
  border-bottom: none;
  height: 38px;
  color: #fff;
}
* body .pageWrapper .pageContent .headerBg.category a {
  color: #fff;
}
* body .pageWrapper .pageContent .box {
  margin-bottom: 5px;
  width: 235px;
}
* body .pageWrapper .pageContent .box .boxContent {
  padding: 3px 10px 10px 10px;
}
* body .pageWrapper .pageContent .box .boxContent table {
  width: 100%;
}
* body .pageWrapper .pageContent .box .boxContent .category {
  padding: 6px 0;
  line-height: 20px;
}
* body .pageWrapper .pageContent .box .boxContent .category.level-0 {
  margin-left: 0px;
  border-bottom: 1px dotted #777777;
}
* body .pageWrapper .pageContent .box .boxContent .category.level-1 {
  margin-left: 15px;
  border-bottom: 1px dotted #aaaaaa;
}
* body .pageWrapper .pageContent .box .boxContent .category.level-2 {
  margin-left: 30px;
  border-bottom: 1px dotted #dddddd;
}
* body .pageWrapper .pageContent .box .boxContent .category.level-3 {
  margin-left: 45px;
  border-bottom: 1px dotted #ffffff;
}
* body .pageWrapper .pageContent .box .boxContent .category a {
  position: relative;
  margin-left: 20px;
}
* body .pageWrapper .pageContent .box .boxContent .category a .indicator {
  position: absolute;
  display: inline-block;
  height: 17px;
  line-height: 17px;
  width: 17px;
  left: -20px;
  top: 0;
  text-align: center;
  color: #fff;
  vertical-align: middle;
  font-size: 1.4em;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#5a5a5a,EndColorStr=#444444);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5a5a5a,endColorstr=#444444);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#5a5a5a),color-stop(1,#444444));
  background: -webkit-linear-gradient(#5a5a5a,#444444);
  background: -moz-linear-gradient(center top,#5a5a5a 5%,#444444 100%);
  background: -ms-linear-gradient(#5a5a5a,#444444);
  background: -o-linear-gradient(#5a5a5a,#444444);
  background: linear-gradient(#5a5a5a,#444444);
  background-color: #5a5a5a;
  zoom: 1;
}
* body .pageWrapper .pageContent .box .boxContent .category a .name {
  display: inline-block;
  vertical-align: middle;
  padding-left: 6px;
}
* body .pageWrapper .pageContent .box .boxContent .category a:hover .indicator {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#5a5a5a);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#5a5a5a);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#5a5a5a));
  background: -webkit-linear-gradient(#444444,#5a5a5a);
  background: -moz-linear-gradient(center top,#444444 5%,#5a5a5a 100%);
  background: -ms-linear-gradient(#444444,#5a5a5a);
  background: -o-linear-gradient(#444444,#5a5a5a);
  background: linear-gradient(#444444,#5a5a5a);
  background-color: #444444;
  zoom: 1;
}
* body .pageWrapper .pageContent .box .boxContent .category a.selected {
  font-weight: bold;
}
* body .pageWrapper .pageContent .box .boxContent .category a.selected .indicator {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#5a5a5a);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#5a5a5a);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#5a5a5a));
  background: -webkit-linear-gradient(#444444,#5a5a5a);
  background: -moz-linear-gradient(center top,#444444 5%,#5a5a5a 100%);
  background: -ms-linear-gradient(#444444,#5a5a5a);
  background: -o-linear-gradient(#444444,#5a5a5a);
  background: linear-gradient(#444444,#5a5a5a);
  background-color: #444444;
  zoom: 1;
}
* body .pageWrapper .pageContent .box .boxContent .boxCompareProductBottom {
  margin-top: 10px;
}
* body .pageWrapper .pageContent .box .boxContent .boxFilters .filterHeader {
  font-weight: bold;
  margin: 5px 0;
}
* body .pageWrapper .pageContent .box .boxContent .boxFilters .filterContent {
  padding: 0 0 0 10px;
}
* body .pageWrapper .pageContent .box .boxContent .boxFilters .hidden {
  display: none;
}
* body .pageWrapper .pageContent .box .boxContent .boxFilters .showMore {
  text-align: right;
}
* body .pageWrapper .pageContent .box .boxContent .boxFilters .showMore span {
  cursor: pointer;
  text-decoration: underline;
}
* body .pageWrapper .pageContent .box .boxContent .boxFilters .hide {
  display: none;
}
* body .pageWrapper .pageContent .box .boxContent .boxFilters .filterButtonRow {
  text-align: right;
  padding: 10px 0px;
}
* body .pageWrapper .pageContent .box .boxContent .boxFilters .filterInput {
  border: 1px solid #363636;
  text-align: right;
  margin-bottom: 5px;
  width: 80px;
}
* body .pageWrapper .pageContent .box .removeSelectedFilter {
  font-weight: bold;
}
* body .pageWrapper .pageContent .box.filters h4 {
  position: relative;
}
* body .pageWrapper .pageContent .box.filters h4 span {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  line-height: 14px;
  right: 10px;
  top: 11px;
  border: 1px solid #fff;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}
* body .pageWrapper .pageContent .box.filters ul.filters {
  margin: 0;
  padding-left: 0;
}
* body .pageWrapper .pageContent .box.filters ul.filters li {
  position: relative;
  margin-bottom: 6px;
  color: #444444;
  list-style: none;
}
* body .pageWrapper .pageContent .box.filters ul.filters li a {
  display: block;
  height: 18px;
  line-height: 18px;
  padding-left: 26px;
  padding-bottom: 6px;
  cursor: pointer;
}
* body .pageWrapper .pageContent .box.filters ul.filters li a.selected {
  font-weight: bold;
}
* body .pageWrapper .pageContent .box.filters ul.filters li .indicator {
  position: absolute;
  display: inline-block;
  height: 17px;
  line-height: 17px;
  width: 17px;
  left: 0;
  top: 0;
  text-align: center;
  color: #fff;
  vertical-align: middle;
  font-size: 1.4em;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#5a5a5a,EndColorStr=#444444);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5a5a5a,endColorstr=#444444);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#5a5a5a),color-stop(1,#444444));
  background: -webkit-linear-gradient(#5a5a5a,#444444);
  background: -moz-linear-gradient(center top,#5a5a5a 5%,#444444 100%);
  background: -ms-linear-gradient(#5a5a5a,#444444);
  background: -o-linear-gradient(#5a5a5a,#444444);
  background: linear-gradient(#5a5a5a,#444444);
  background-color: #5a5a5a;
  zoom: 1;
}
* body .pageWrapper .pageContent .box.filters ul.filters li:hover .indicator {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#5a5a5a);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#5a5a5a);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#5a5a5a));
  background: -webkit-linear-gradient(#444444,#5a5a5a);
  background: -moz-linear-gradient(center top,#444444 5%,#5a5a5a 100%);
  background: -ms-linear-gradient(#444444,#5a5a5a);
  background: -o-linear-gradient(#444444,#5a5a5a);
  background: linear-gradient(#444444,#5a5a5a);
  background-color: #444444;
  zoom: 1;
}
* body .pageWrapper .pageContent .box.filters ul.filters li.selected {
  font-weight: bold;
}
* body .pageWrapper .pageContent .box.filters ul.filters li.selected .indicator {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#5a5a5a);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#5a5a5a);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#5a5a5a));
  background: -webkit-linear-gradient(#444444,#5a5a5a);
  background: -moz-linear-gradient(center top,#444444 5%,#5a5a5a 100%);
  background: -ms-linear-gradient(#444444,#5a5a5a);
  background: -o-linear-gradient(#444444,#5a5a5a);
  background: linear-gradient(#444444,#5a5a5a);
  background-color: #444444;
  zoom: 1;
}
* body .pageWrapper .pageContent .box.filters ul.filters li.level1 a {
  border-bottom: 1px dotted #777;
}
* body .pageWrapper .pageContent .box.filters ul.filters li.level2 a {
  border-bottom: 1px dotted #888;
}
* body .pageWrapper .pageContent .box.filters ul.filters li.level3 a {
  border-bottom: 1px dotted #999;
}
* body .pageWrapper .pageContent .box.filters ul.filters ul {
  position: relative;
  margin: 6px 0 0 0;
  padding-left: 0;
  list-style: none;
}
* body .pageWrapper .pageContent .box.filters ul.filters ul.hidden {
  display: none;
}
* body .pageWrapper .pageContent .box.filters ul.filters ul.level1 {
  margin-left: 15px;
}
* body .pageWrapper .pageContent .box.filters ul.filters ul.level2 {
  margin-left: 15px;
}
* body .pageWrapper .pageContent .mainColumnLeft,
* body .pageWrapper .pageContent .mainColumnRight,
* body .pageWrapper .pageContent .mainContent {
  position: relative;
  float: left;
  overflow: hidden;
}
* body .pageWrapper .pageContent .mainColumnLeft,
* body .pageWrapper .pageContent .mainColumnRight {
  width: 235px;
}
* body .pageWrapper .pageContent .mainColumnLeft {
  margin-right: 10px;
}
* body .pageWrapper .pageContent .mainColumnLeft .rightModuleSide .module {
  overflow: hidden;
  margin-bottom: 20px;
}
* body .pageWrapper .pageContent .mainColumnLeft .rightModuleSide .module .SpecialsContainer a img {
  margin-right: 3px;
  float: left;
}
* body .pageWrapper .pageContent .mainColumnLeft .rightModuleSide .module .SpecialsContainer a .name {
  display: block;
  width: 170px;
  float: left;
}
* body .pageWrapper .pageContent .mainColumnLeft .rightModuleSide .module .SpecialsContainer .price {
  margin-top: 3px;
  clear: both;
  font-size: 1.8em;
}
* body .pageWrapper .pageContent .mainColumnLeft .rightModuleSide .module .SpecialsContainer .slideSpacer {
  display: block;
  clear: both;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 19px;
  margin-bottom: 19px;
}
* body .pageWrapper .pageContent .mainColumnLeft .rightModuleSide .module .next,
* body .pageWrapper .pageContent .mainColumnLeft .rightModuleSide .module .prev {
  display: block;
  width: 13px;
  height: 15px;
  margin: 12px 0 0 5px;
  float: right;
  cursor: pointer;
}
* body .pageWrapper .pageContent .mainColumnLeft .rightModuleSide .module .next {
  background: url('/template/auto-voll/images/lower_nav_arrow.png') repeat-x left;
}
* body .pageWrapper .pageContent .mainColumnLeft .rightModuleSide .module .prev {
  background: url('/template/auto-voll/images/upper_nav_arrow.png') repeat-x left;
}
* body .pageWrapper .pageContent .mainColumnRight {
  margin-left: 10px;
}
* body .pageWrapper .pageContent .banerStronaGlownaStrefa2 {
  clear: both;
  margin-top: 10px;
  text-align: center;
}
* body .pageWrapper .pageContent .banerStronaGlownaStrefa2 img {
  display: inline-block;
}
* body .pageWrapper .pageContent .mainContent {
  width: 785px;
}
* body .pageWrapper .pageContent .mainContent .headerSearchBar {
  position: relative;
  margin-bottom: 5px;
  margin-top: 8px;
  height: 60px;
  overflow: hidden;
}
* body .pageWrapper .pageContent .mainContent .headerSearchBar .help {
  float: left;
  position: relative;
  display: block;
  height: 25px;
  margin-top: 15px;
  margin-left: 10px;
  margin-right: 60px;
}
* body .pageWrapper .pageContent .mainContent .headerSearchBar .help a {
  text-decoration: underline;
  font-weight: bold;
}
* body .pageWrapper .pageContent .mainContent .headerSearchBar input {
  position: relative;
  float: left;
  width: 700px;
  top: 0;
  height: 19px;
  margin-right: 20px;
}
* body .pageWrapper .pageContent .mainContent .headerSearchBar .topSearchIcon {
  width: 51px;
  height: 25px;
  cursor: pointer;
  background: #555555;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#656565,EndColorStr=#444444);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#656565,endColorstr=#444444);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#656565),color-stop(1,#444444));
  background: -webkit-linear-gradient(#656565,#444444);
  background: -moz-linear-gradient(center top,#656565 5%,#444444 100%);
  background: -ms-linear-gradient(#656565,#444444);
  background: -o-linear-gradient(#656565,#444444);
  background: linear-gradient(#656565,#444444);
  background-color: #656565;
  zoom: 1;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  overflow: hidden;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .headerSearchBar .topSearchIcon span {
  display: block;
  width: 9px;
  height: 9px;
  margin-left: 21px;
  margin-top: 8px;
  background: url('/template/auto-voll/images/search_icon.png') no-repeat center;
}
* body .pageWrapper .pageContent .mainContent .headerSearchBar .topSearchIcon:hover {
  background: #404040;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#3c3c3c);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#3c3c3c);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#3c3c3c));
  background: -webkit-linear-gradient(#444444,#3c3c3c);
  background: -moz-linear-gradient(center top,#444444 5%,#3c3c3c 100%);
  background: -ms-linear-gradient(#444444,#3c3c3c);
  background: -o-linear-gradient(#444444,#3c3c3c);
  background: linear-gradient(#444444,#3c3c3c);
  background-color: #444444;
  zoom: 1;
}
* body .pageWrapper .pageContent .mainContent .banerStronaGlownaStrefa1 {
  margin-bottom: 10px;
}
* body .pageWrapper .pageContent .mainContent .banerStronaGlownaStrefa1 img {
  width: 100%;
}
* body .pageWrapper .pageContent .mainContent .slideshow {
  position: relative;
  width: 755px;
  padding-left: 15px;
  padding-right: 15px;
  height: -30px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background: url('/template/auto-voll/images/slider_bg.jpg') repeat-y left;
  overflow: hidden;
  margin-bottom: 15px;
}
* body .pageWrapper .pageContent .mainContent .slideshow .slideshowNav {
  position: absolute;
  bottom: 0;
  left: 15px;
  z-index: 9;
}
* body .pageWrapper .pageContent .mainContent .slideshow .slideshowNav a {
  display: block;
  width: 13px;
  line-height: 13px;
  height: 13px;
  background: #efefef;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#f6f6f6,EndColorStr=#e8e8e8);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#f6f6f6,endColorstr=#e8e8e8);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#f6f6f6),color-stop(1,#e8e8e8));
  background: -webkit-linear-gradient(#f6f6f6,#e8e8e8);
  background: -moz-linear-gradient(center top,#f6f6f6 5%,#e8e8e8 100%);
  background: -ms-linear-gradient(#f6f6f6,#e8e8e8);
  background: -o-linear-gradient(#f6f6f6,#e8e8e8);
  background: linear-gradient(#f6f6f6,#e8e8e8);
  background-color: #f6f6f6;
  zoom: 1;
  color: #363636;
  font-size: 0.8em;
  font-weight: bold;
  text-align: center;
  margin-right: 2px;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .slideshow .slideshowNav a.activeSlide {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#5a5a5a);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#5a5a5a);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#5a5a5a));
  background: -webkit-linear-gradient(#444444,#5a5a5a);
  background: -moz-linear-gradient(center top,#444444 5%,#5a5a5a 100%);
  background: -ms-linear-gradient(#444444,#5a5a5a);
  background: -o-linear-gradient(#444444,#5a5a5a);
  background: linear-gradient(#444444,#5a5a5a);
  background-color: #444444;
  zoom: 1;
  color: #fff;
}
* body .pageWrapper .pageContent .mainContent .leftModuleSide {
  display: block;
  clear: left;
  width: 785px;
  margin-right: 10px;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .rightModuleSide {
  width: 175px;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module {
  overflow: hidden;
  margin-bottom: 10px;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent {
  overflow: hidden;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .categoryDescription {
  display: block;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 0;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .tag {
  position: absolute;
  margin-top: 5px;
  left: 5px;
  width: 25px;
  height: 176px;
  padding-top: 24px;
  padding-bottom: 0;
  text-align: left;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .tag.new {
  background: url('/template/auto-voll/includes/languages/polish/images/tag_new.png') no-repeat left top;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .tag.best {
  background: url('/template/auto-voll/includes/languages/polish/images/tag_best.png') no-repeat left top;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .tagSpecials {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 114px;
  top: 152px;
  background: url('/template/auto-voll/images/colors/gray_red/tag_specials.png') no-repeat left top;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .tagSpecials span {
  display: block;
  width: 50px;
  margin-top: 16px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  font-family: Arial;
  color: #fff;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .opinions {
  margin-top: 10px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .opinions .opinionStarsOff {
  position: relative;
  width: 85px;
  height: 16px;
  background: url("/template/auto-voll/images/star-off.png") repeat-x left;
  float: right;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .opinions .opinionStarsOff .opinionStarsOn {
  width: 100%;
  height: 16px;
  background: url("/template/auto-voll/images/star-on.png") repeat-x left;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .product {
  position: relative;
  width: 181px;
  padding-left: 5px;
  padding-right: 5px;
  height: -10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  overflow: hidden;
  float: left;
  margin-right: 5px;
  text-align: center;
  border-right: 1px dotted #ccc;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .product a {
  display: block;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .product .name {
  display: block;
  text-align: left;
  margin-top: 10px;
  min-height: 50px;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .product .shortDescription {
  display: block;
  font-size: 11px;
  text-align: left;
  min-height: 65px;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .product .buyNow {
  display: block;
  text-align: left;
  margin-top: 10px;
  overflow: hidden;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .product .buyNow input {
  margin-top: 2px;
  margin-right: 2px;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .product .buyNow a {
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .product .buyNow a img {
  height: 22px;
  margin-top: 3px;
  margin-right: 5px;
  cursor: pointer;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .product .buyNow .price {
  display: block;
  clear: both;
  text-align: left;
  margin-bottom: 5px;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .product.firstRow {
  margin-top: 0;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .product.last {
  margin-right: 0;
  border: none;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .productList {
  position: relative;
  display: block;
  margin: 5px 0;
  padding-bottom: 5px;
  border-bottom: 1px dotted #ccc;
  overflow: hidden;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .productList .photo {
  display: block;
  min-width: 200px;
  min-height: 160px;
  margin-right: 5px;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .productList .name {
  display: block;
  width: 420px;
  height: 50px;
  overflow: hidden;
  float: left;
  font-size: 1.5em;
  font-weight: bold;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .productList .description {
  display: block;
  width: 360px;
  height: 110px;
  float: left;
  text-align: justify;
  margin-right: 5px;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .productList .description .shortDescription {
  display: block;
  font-size: 11px;
  text-align: left;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .productList .tagSpecials {
  top: 102px;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .productList .buyNow {
  display: block;
  width: 155px;
  height: 110px;
  text-align: center;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .productList .buyNow img {
  height: 22px;
  margin-top: 5px;
  margin-right: 5px;
  cursor: pointer;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent .buttonBar {
  margin-top: 10px;
  text-align: right;
}
* body .pageWrapper .pageContent .mainContent .module .moduleContent.pa {
  padding: 5px;
}
* body .pageWrapper .pageContent .mainContent .module .SpecialsContainer a img {
  margin-right: 3px;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module .SpecialsContainer a .name {
  display: block;
  width: 110px;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module .SpecialsContainer .price {
  margin-top: 3px;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module .SpecialsContainer .slideSpacer {
  display: block;
  clear: both;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 19px;
  margin-bottom: 19px;
}
* body .pageWrapper .pageContent .mainContent .module .next,
* body .pageWrapper .pageContent .mainContent .module .prev {
  display: block;
  width: 13px;
  height: 15px;
  margin: 12px 0 0 5px;
  float: right;
  cursor: pointer;
}
* body .pageWrapper .pageContent .mainContent .module .next {
  background: url('/template/auto-voll/images/lower_nav_arrow.png') repeat-x left;
}
* body .pageWrapper .pageContent .mainContent .module .prev {
  background: url('/template/auto-voll/images/upper_nav_arrow.png') repeat-x left;
}
* body .pageWrapper .pageContent .mainContent .module div.pageResults {
  font-size: 14px;
  margin: 20px 0 5px 0;
  text-align: right;
}
* body .pageWrapper .pageContent .mainContent .module div.pageResults a {
  display: inline-block;
  height: 25px;
  line-height: 25px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-align: center;
  padding: 0 10px;
  color: #fff;
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#5a5a5a,EndColorStr=#444444);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5a5a5a,endColorstr=#444444);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#5a5a5a),color-stop(1,#444444));
  background: -webkit-linear-gradient(#5a5a5a,#444444);
  background: -moz-linear-gradient(center top,#5a5a5a 5%,#444444 100%);
  background: -ms-linear-gradient(#5a5a5a,#444444);
  background: -o-linear-gradient(#5a5a5a,#444444);
  background: linear-gradient(#5a5a5a,#444444);
  background-color: #5a5a5a;
  zoom: 1;
}
* body .pageWrapper .pageContent .mainContent .module div.pageResults a:hover {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#5a5a5a);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#5a5a5a);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#5a5a5a));
  background: -webkit-linear-gradient(#444444,#5a5a5a);
  background: -moz-linear-gradient(center top,#444444 5%,#5a5a5a 100%);
  background: -ms-linear-gradient(#444444,#5a5a5a);
  background: -o-linear-gradient(#444444,#5a5a5a);
  background: linear-gradient(#444444,#5a5a5a);
  background-color: #444444;
  zoom: 1;
}
* body .pageWrapper .pageContent .mainContent .module div.pageResults a.pageResultsSelected {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#444444,EndColorStr=#5a5a5a);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#444444,endColorstr=#5a5a5a);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#444444),color-stop(1,#5a5a5a));
  background: -webkit-linear-gradient(#444444,#5a5a5a);
  background: -moz-linear-gradient(center top,#444444 5%,#5a5a5a 100%);
  background: -ms-linear-gradient(#444444,#5a5a5a);
  background: -o-linear-gradient(#444444,#5a5a5a);
  background: linear-gradient(#444444,#5a5a5a);
  background-color: #444444;
  zoom: 1;
}
* body .pageWrapper .pageContent .mainContent .module div.pageResults a.pageResultsSelected:hover {
  background: #4f4f4f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#5a5a5a,EndColorStr=#444444);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#5a5a5a,endColorstr=#444444);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0.05,#5a5a5a),color-stop(1,#444444));
  background: -webkit-linear-gradient(#5a5a5a,#444444);
  background: -moz-linear-gradient(center top,#5a5a5a 5%,#444444 100%);
  background: -ms-linear-gradient(#5a5a5a,#444444);
  background: -o-linear-gradient(#5a5a5a,#444444);
  background: linear-gradient(#5a5a5a,#444444);
  background-color: #5a5a5a;
  zoom: 1;
}
* body .pageWrapper .pageContent .mainContent .module.product h1 {
  padding-left: 0;
}
* body .pageWrapper .pageContent .mainContent .module.product .gallery {
  width: 272px;
  margin-right: 10px;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module.product .gallery .bigImg {
  display: block;
  width: 266px;
  height: 264px;
  margin: 0 auto 2px auto;
  text-align: center;
}
* body .pageWrapper .pageContent .mainContent .module.product .gallery .bigImg img {
  padding: 0 2px 0 3px;
  border: 1px solid #ccc;
}
* body .pageWrapper .pageContent .mainContent .module.product .gallery .thumbials {
  display: block;
}
* body .pageWrapper .pageContent .mainContent .module.product .gallery .thumbials img {
  padding: 1px;
  border: 1px solid #ccc;
  float: left;
  margin: 2px;
  cursor: pointer;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo {
  width: 443px;
  float: left;
  overflow: hidden;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .variantTable {
  margin-left: 10px;
  display: none;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .variant label {
  cursor: pointer;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .variant label .variantPrice .oldPrice {
  text-decoration: line-through;
  color: #7E7D7D;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .variant label .variantPrice .newPrice {
  color: #901e1f;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .price {
  text-align: left;
  font-size: 24px;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .price .oldPrice {
  font-size: 15px;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .price .newPrice {
  font-size: 24px;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .avalibility {
  display: block;
  margin: 10px 0;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .actions {
  height: 27px;
  margin: 10px 0;
  clear: both;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .actions input {
  display: block;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .actions .actionsSpacer {
  display: block;
  height: 27px;
  line-height: 27px;
  padding: 0 10px;
  text-transform: uppercase;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .actions .imageButtons {
  position: relative;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .actions .imageButtons .ajaxCompare,
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .actions .imageButtons .addProductToClipboard {
  display: block;
  cursor: pointer;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .actions .imageButtons .ajaxCompare img,
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .actions .imageButtons .addProductToClipboard img {
  height: 27px;
  padding-right: 10px;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .actions .imageButtons .checkSendingCosts {
  position: absolute;
  display: block;
  top: -3px;
  left: 35px;
  cursor: pointer;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .actions .imageButtons .checkSendingCosts img {
  height: 27px;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .raty {
  margin-bottom: 10px;
  color: #444444;
}
* body .pageWrapper .pageContent .mainContent .module.product .mainInfo .shortDescription {
  clear: both;
  font-style: italic;
}
* body .pageWrapper .pageContent .mainContent .module.product .productInCartButton {
  display: none;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart tr th,
* body .pageWrapper .pageContent .mainContent .module.shoppingCart tr td {
  padding: 5px;
  background: ;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart tr.odd th,
* body .pageWrapper .pageContent .mainContent .module.shoppingCart tr.odd td {
  background: #ddd;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart tr.odd th.subTotal,
* body .pageWrapper .pageContent .mainContent .module.shoppingCart tr.odd td.subTotal {
  background: #ff6b6b;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart .productPicture {
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart .quantity span {
  display: block;
  clear: both;
  text-aling: center;
  margin-top: 2px;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart .quantity .changeQuantityCart {
  display: block;
  margin: 2px;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart .quantity .quantityCartShow {
  display: block;
  text-align: center;
  color: #000;
  border: solid 1px #999;
  background-color: white;
  float: left;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart .total,
* body .pageWrapper .pageContent .mainContent .module.shoppingCart .subTotal {
  background: #ff6b6b;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart th.subTotal {
  -webkit-border-top-right-radius: 0px;
  -khtml-border-radius-topright: 0px;
  -moz-border-radius-topright: 0px;
  border-top-right-radius: 0px;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart .total {
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -khtml-border-radius-bottomright: 0px;
  -khtml-border-radius-bottomleft: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart .stockWarning {
  color: #ff0000;
  margin-bottom: 5px;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart .ratyZagiel-calculate {
  margin-left: 10px;
}
* body .pageWrapper .pageContent .mainContent .module.shoppingCart .markProductOutOfStock {
  color: #ff0000;
}
* body .pageWrapper .pageContent .mainContent .module.blog .blogContentDate {
  font-style: italic;
  font-size: 1.1em;
}
* body .pageWrapper .pageContent .mainContent .module.blog .blogReadAll {
  margin: 10px 0;
}
* body .pageWrapper .pageContent .mainContent .module.blog .post {
  margin-bottom: 10px;
}
* body .pageWrapper .pageContent .mainContent .module.blog .post .blogContentDate {
  padding-left: 10px;
}
* body .pageWrapper .pageContent .mainContent .module.blog .post .blogReadMore {
  padding-right: 10px;
  text-align: right;
}
* body .pageWrapper .pageContent .mainContent .module.blog .post .postContent {
  padding: 10px;
}
* body .pageWrapper .pageContent .mainContent .module.blog .post.first {
  margin-top: 10px;
}
* body .pageWrapper .pageContent .mainContent .module.opinionsListing .moduleContent .opinionsContent .opinion {
  position: relative;
  width: 625px;
  padding: 10px;
  margin-bottom: 10px;
  border: 2px solid #656565;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
* body .pageWrapper .pageContent .mainContent .module.opinionsListing .moduleContent .opinionsContent .opinion .arrow {
  position: absolute;
  width: 18px;
  height: 14px;
  top: 35px;
}
* body .pageWrapper .pageContent .mainContent .module.opinionsListing .moduleContent .opinionsContent .opinion .content {
  margin-top: 5px;
}
* body .pageWrapper .pageContent .mainContent .module.opinionsListing .moduleContent .opinionsContent .opinion .toProduct {
  margin-top: 5px;
  font-size: 0.9em;
}
* body .pageWrapper .pageContent .mainContent .module.opinionsListing .moduleContent .opinionsContent .opinion .toProduct a {
  color: #656565;
  font-size: 0.9em;
}
* body .pageWrapper .pageContent .mainContent .module.opinionsListing .moduleContent .opinionsContent .opinion.odd {
  margin-left: 50px;
  margin-right: 25px;
}
* body .pageWrapper .pageContent .mainContent .module.opinionsListing .moduleContent .opinionsContent .opinion.odd .arrow {
  left: -18px;
  background: url('/template/auto-voll/images/colors/gray_red/arrows.png') no-repeat top right;
}
* body .pageWrapper .pageContent .mainContent .module.opinionsListing .moduleContent .opinionsContent .opinion.even {
  margin-left: 25px;
  margin-right: 50px;
}
* body .pageWrapper .pageContent .mainContent .module.opinionsListing .moduleContent .opinionsContent .opinion.even .arrow {
  right: -18px;
  background: url('/template/auto-voll/images/colors/gray_red/arrows.png') no-repeat top left;
}
* body .pageWrapper .pageContent .mainContent .module.opinionsListing .moduleContent .opinionsContent .opinion.first {
  margin-top: 10px;
}
* body .pageWrapper .pageContent .mainContent .module.advancedSearch .headerBg span {
  color: #666;
}
* body .pageWrapper .pageContent .mainContent .module.advancedSearch .moduleContent .advancedSearch .advancedsearch_product_name {
  margin-left: 5px;
}
* body .pageWrapper .pageContent .mainContent .module.advancedSearch .moduleContent .advancedSearch .advancedsearchFieldFraza {
  width: 50%;
}
* body .pageWrapper .pageContent .mainContent .module.advancedSearch .moduleContent .advancedSearch .advancedsearch_advancedshow {
  display: block;
  margin-top: 10px;
}
* body .pageWrapper .pageContent .mainContent .module.advancedSearch .moduleContent .advancedSearch .advancedsearch_advanced {
  margin-top: 10px;
}
* body .pageWrapper .pageContent .mainContent .module.advancedSearch .moduleContent .advancedSearch .advancedsearch_label {
  display: inline-block;
  margin-right: 5px;
}
* body .pageWrapper .pageContent .mainContent.fullWidth {
  width: 1030px;
}
* body .pageWrapper .footer {
  position: relative;
  background: #BBBBBB;
  margin: 10px auto;
  padding: 10px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  overflow: hidden;
}
* body .pageWrapper .footer div {
  display: block;
  float: left;
}
* body .pageWrapper .footer .footerColumn {
  position: relative;
  width: 195px;
  margin-right: 10px;
  overflow: hidden;
}
* body .pageWrapper .footer .footerColumn.last {
  margin-right: 0;
}
* body .pageWrapper .footer .infoPage {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  float: left;
}
* body .pageWrapper .footer .infoPage li {
  display: block;
  width: 200px;
  padding: 3px;
  border-bottom: 1px dotted #666;
  font: bold 13px Arial;
}
* body .pageWrapper .footer .infoPage li a {
  font: 12px Arial;
}
* body .pageWrapper .footer .copyright {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
* #myProductsTabs {
  margin-bottom: 10px;
}
* #clipboardProducts .product,
* #lastViewedProducts .product {
  position: relative;
  width: 175px;
  padding-left: 0;
  padding-right: 5px;
  height: 280px;
  margin-right: 5px;
  border-right: 1px dotted #fff;
  z-index: 5;
  float: left;
}
* #clipboardProducts .product input[type="button"],
* #lastViewedProducts .product input[type="button"] {
  float: left;
}
* #clipboardProducts .product .productImage,
* #lastViewedProducts .product .productImage {
  text-align: center;
}
* #clipboardProducts .product .productName,
* #lastViewedProducts .product .productName {
  height: 40px;
  overflow: hidden;
}
* #clipboardProducts .product .price,
* #lastViewedProducts .product .price {
  text-align: left;
  margin: 5px 0;
}
* #clipboardProducts .product .newPrice,
* #lastViewedProducts .product .newPrice {
  font-size: 1em;
}
* #clipboardProducts .product .likeLink,
* #lastViewedProducts .product .likeLink {
  display: block;
  float: right;
}
* #clipboardProducts .product.last,
* #lastViewedProducts .product.last {
  margin-right: 0;
  border: none;
}
* #compareProducts input[type="button"] {
  float: left;
}
* #compareProducts td {
  padding: 5px;
}
* #compareProducts td.nameImagePrice {
  position: relative;
  width: 180px;
  text-align: center;
}
* #compareProducts td.nameImagePrice .title {
  width: 180px;
  margin-bottom: 15px;
  overflow: hidden;
}
* #compareProducts td.nameImagePrice .addAnother {
  cursor: pointer;
}
* #compareProducts .odd {
  background: #efefef;
}
* #compareProducts .even {
  background: #dbdbdb;
}
* #compareProducts .hover,
* #compareProducts .selected {
  background: #d9d9ff;
}
* #compareProducts .productAction {
  margin-top: 5px;
}
* #compareProducts .productAction .removeProductFromCompare {
  display: block;
  float: right;
  cursor: pointer;
}
* .oneStepCheckout .oneStepCheckout-stepHeader {
  background: #7E7E7C;
  color: #fff;
  text-transform: uppercase;
  padding: 4px 8px;
  margin: 0px 0px;
  border-bottom: solid 1px #fff;
}
* .oneStepCheckout .oneStepCheckout-stepContent {
  padding: 4px 20px;
  display: none;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .formArea .formSubmit {
  text-align: right;
  padding: 4px 0;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .formErrors .formError {
  color: #ff0000;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .registrationForm {
  display: inline-block;
  width: 400px;
  vertical-align: top;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .registrationForm .guestOrRegistration {
  padding: 6px 0;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .loginForm {
  display: inline-block;
  width: 400px;
  vertical-align: top;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .shippingModule-header {
  font-weight: bold;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .shippingModule-method {
  padding: 6px 0;
  cursor: pointer;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .shippingModule-method:hover {
  background: #D7E9F7;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .shippingModule-method.selected {
  background: #E9F4FC;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .paymentModule-method {
  cursor: pointer;
  padding: 6px 0;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .paymentModule-method:hover {
  background: #D7E9F7;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .paymentModule-method.selected {
  background: #E9F4FC;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .paymentModule-title {
  font-weight: bold;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .paymentModule-additionalInfo {
  font-size: 10px;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .paymentModule-additionalCost {
  font-style: italic;
}
* .oneStepCheckout .oneStepCheckout-stepContainer .paymentModule-field {
  padding: 3px 0px 3px 35px;
}
* .oneStepCheckout.completed .oneStepCheckout-stepHeader {
  background: #323232;
  cursor: pointer;
}
* .oneStepCheckout.completed.oneStepCheckout-completeHidden .oneStepCheckout-stepHeader {
  cursor: default;
}
* .oneStepCheckout.completed.oneStepCheckout-completeHidden .oneStepCheckout-stepContent {
  display: none;
}
* .oneStepCheckout.currentStep .oneStepCheckout-stepHeader {
  background: #323232;
}
* .oneStepCheckout.currentStep .oneStepCheckout-stepContent {
  display: block;
}
* .oneStepCheckout.oneStepCheckout-alwaysVisible .oneStepCheckout-stepContent {
  display: block;
}
* .oneStepCheckout#C_OneStepCheckout-confirmation .oneStepCheckout-stepContent textarea {
  width: 50%;
  height: 100px;
}
* div.tutorial {
  background: url("/template/auto-voll/images/instrukcja.png") no-repeat left top;
  display: none;
}
