/* -----------------------------------------------------------------------------------------
   $Id:stylesheet.css 1262 2005-09-30 10:00:32Z mz $

   XT-Commerce - community made shopping
   http://www.xt-commerce.com

   Copyright (c) 2004 XT-Commerce
   -----------------------------------------------------------------------------------------
   based on:
   (c) 2000-2001 The Exchange Project  (earlier name of osCommerce)
   (c) 2002-2003 osCommerce(stylesheet.css,v 1.54 2003/05/27); www.oscommerce.com
   (c) 2003 nextcommerce (stylesheet.css,v 1.7 2003/08/13); www.nextcommerce.org

   Released under the GNU General Public License
   -----------------------------------------------------------------------------------------

   XTC5 Template & Stylesheets
   -----------------------------------------------------------------------------------------
   (c) 2007 Ing. Michael Fuerst
       bluegate communications
   http://www.bluegate.at
   ---------------------------------------------------------------------------------------*/
/* THE BIG GUYS */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
body {
    font-family: Arial, Sans-serif;
    font-size: 11px;
    color: #555;
    line-height: 18px;
    background: #f5f4f0;
}
/* HEADINGS */
h1 {
    color: #417796;
    font-weight: bold;
    font-size: 24px;
    margin: 20px 0 15px 0;
    padding: 0 0 8px;
    font-family: Calibri;
}
h2 {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    margin-top: 21px;
    padding: 0;
}
h3 {
    color: #555;
    font-weight: bold;
    font-size: 12px;
}
/* LINKS GLOBAL */
a, a:link, a:link, a:link, a:hover {
    background: transparent;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}
a {
    color: #5888a3;
    outline: none;
}

a:hover {
    color: #5888a3;
    text-decoration: underline;
}

a img {
    border: none;
    outline: none;
}
/* INPUT ELEMENTS GLOBAL (CSS 1 compatible) */
input {
    font-family: Arial, Sans-serif;
    font-size: 12px;
}
textarea {
    font-family: Arial, Sans-serif;
    font-size: 12px;
    border: 1px solid #b8b8b8;
    padding: 2px;
}
select {
    font-family: Arial, Sans-serif;
    font-size: 12px;
    border: 1px solid #666;
}
/* INPUT ELEMENTS DETAILED (CSS 2 compatible - works only in new browsers (FF 2.0, IE 7...) */
input[type=text], input[type=password] {
    border: 1px solid #b8b8b8;
    padding: 2px;
}

/* PARAGRAPH GLOBAL */
p {    margin: 8px 0 }
/* FAKE HR DIV CAUSE OF IE TROUBLES */
div.hr {
    padding-top: 1px;
    height: 0;
    overflow: hidden;
    margin: 0;
    line-height: 0;
    background-color: #4E4E4F;
}
div.hrlightgrey {
    padding-top: 1px;
    height: 0;
    overflow: hidden;
    margin: 0;
    line-height: 0;
    background-color: #999;
}
div.hrproductpreview {
    padding-top: 1px;
    height: 0;
    overflow: hidden;
    margin: 12px 0;
    display: inline;
    height: 0;
    line-height: 0;
    display: block;
    background-image: url(img/hr_productpreview.gif);
}
/* TABLE GLOBAL */
table td {    padding: 2px }
/* WHOLE SITE WRAPPER */
#wrap {
    width: 1200px;
    margin: 0 auto;
}
/* HEADER WITH LOGO, SEARCH BOX AND LANGUAGE SELECTION */
#header {
    height: 194px;
    border-top: 12px solid #423976;
    background: url(img/header_bg.jpg?1) no-repeat;
}

#header > div {
    float: right;
    font-size: 12px;
    margin: 132px 281px 0 0;
    line-height: 15px;
    color: #817a81;
}

#header a {
    color: #817a81;
}

#header > div > span {
    margin-right: 8px;
    font-weight: bold;
}


/* BREADCRUMB PATH AS LIST */
#breadcrumb {
    clear: both;
    color: #c64934;
    padding: 1px 0 10px 15px;
    list-style-type: none;
    outline: none;
    height: 22px;
    background: #fff url(img/bg_breadcrumb.gif) repeat-x;
    font-size: 11px;
}
#breadcrumb a, #breadcrumb a:link, #breadcrumb a:visited, #breadcrumb a:hover, #breadcrumb a:active {
    line-height: 23px;
    text-decoration: none;
    outline: none;
    font-weight: normal;
    cursor: pointer;
    color: #333;
    margin: 0;
    padding: 0;
}
/* TOPMENU AS LIST */
#topmenuwrap {
    background-color: #edece7;
    width: 1144px;
    margin: auto;
    border: 2px solid #fff;
}

#topmenu {
    float: left;
    padding-left: 31px;
    list-style-type: none;
    height: 36px;
    font-size: 13px;
}

#topmenu li {
    float: left;
    padding: 0 15px;
    margin: 0;
}

#topmenu li.active {
    background: #cbd5d7;
}

#topmenu li.active a {
    font-weight: bold;
}

#topmenu a {
    line-height: 36px;
    vertical-align: middle;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    color: #274658;
    margin: 0;
    padding: 0;
}

#topmenu a:hover {
    text-decoration: underline;
}

/* LANGUAGE SELECTION IN TOPMENU LIST */
#languages {
    text-align: right;
    height: 26px;
    font-size: 13px;
    background: url(img/bg_topmenu.gif) repeat-x;
    padding: 10px 10px 0 0;
    margin: 0;
}
/* CONTENT WRAPPER */
#contentwrap {
    clear: both;
    width: 1144px;
    margin: auto;
    background: url(img/content_bg.png) repeat-y;
}
#contentwrap.no-sidebar {
    background: transparent;
}
/* LEFT COLUMN */
#leftcol {
    float: left;
    width: 260px;
    padding-top: 19px;
    position: absolute;
}

/* RIGHT COLUMN */
#rightcol {
    float: right;
    width: 181px;
    border-left: 1px solid #c9c7be;
}

/* MAIN CONTENT */
#content {
    float: left;
    width: 703px;
    padding: 19px 22px;
    margin-left: 260px;
}
#contentfull {
    width: 920px;
    padding: 19px 30px 0 30px;
    margin-left: 260px;
    float: left;
}

#content table td {
    word-break: break-all;
}

/* CATEGORY MENU */
ul#categorymenu {
    width: 260px;
    overflow-y: scroll;
}

ul#categorymenu::-webkit-scrollbar {
    width: 12px;
}

ul#categorymenu::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color:#EDECE7;
}

ul#categorymenu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color:#CBD5D7;
}

ul#categorymenu li {
    list-style-type: none;
}

ul#categorymenu li a {
    color: #274658;
}

/* 1st TIER */
ul#categorymenu li.level1 {
    padding-left: 17px;
}

ul#categorymenu li.level1 a {
    text-transform: uppercase;
}

ul#categorymenu li.level1.active {
    background: #C8DAE4;
}

/* 2nd TIER */
ul#categorymenu li.level2 {
    padding-left: 27px;
}

ul#categorymenu li.level2.active:before {
    content: "";
    background: #417796;
    width: 25px;
    height: 10px;
    display: inline-block;
    margin: 0 6px 0 -27px
}

ul#categorymenu li.level2.active a {
    font-weight: bold;
}

/* 3rd TIER */
ul#categorymenu li.level3 {
    padding-left: 42px;
}

ul#categorymenu li.level3.active a {
    font-weight: bold;
}

/* 4th TIER */
ul#categorymenu li.level4 {
    padding-left: 52px;
}

ul#categorymenu li.level4.active a {
    font-weight: bold;
}

/* 5th TIER */
ul#categorymenu li.level5 {
    padding-left: 62px;
}

ul#categorymenu li.level5.active a {
    font-weight: bold;
}


/* CATEGORY IMAGE DEFINITION */
img.imgLeft {
    float: left;
    margin: 2px 10px 2px 0;
    position: relative;
}


/* BOXES GLOBAL DEFINITION */
h2.boxheader {
    padding-left: 18px;
    font-size: 11px;
    color: #274658;
    line-height: 13px;
}

.boxheader.colorsquare:before {
    content: "";
    display: block;
    float: left;
    width: 12px;
    height: 12px;
    margin-right: 7px;
}

.csq_login:before       { background: #b02e2e; }
.csq_cart:before        { background: #739641; }
.csq_callback:before    { background: #e7d11a; }
.csq_admin:before       { background: #800080; }


.boxbody {
    padding-left: 38px;
    color: #274658;
}

.boxbody p {
    font-size: 11px;
}

.boxbody label {
    margin: 8px 0 2px 0;
    display: block;
}

.boxbody input[type="text"], .boxbody input[type="password"] {
    width: 125px;
}

/*Loginbox*/
.boxloginbody input[type="image"] {
    margin: 8px 0;
}

.boxloginbody a {
    color: #5888a3;
    font-weight: bold;
    margin-left: -10px;
}
.boxloginbody a:before {
    content: "\25BA"; /*das ist ein Dreieck*/
    margin-right: 5px;
}

/* PRODUCT PREVIEW */
.productPreview {
    padding: 0;
    margin: 0;
}
.productPreviewContent {    vertical-align: top }
.productPreviewContent h2 {
    padding: 0;
    margin: 0 0 5px 0;
}
.productPreviewContent h2 a {
    font-size: 14px;
    font-weight: bold;
    outline: none;
}
.productPreviewImage {
    vertical-align: top;
    padding: 3px 15px 0 0;
}
.productPreviewImage img {    border: solid 0 #999 }
.productPreviewContent .price {
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    margin: 0;
}
.productPreviewContent .taxandshippinginfo {
    font-size: 11px;
    font-weight: normal;
    color: #999;
    padding: 0;
    margin: 0;
}
.productPreviewContent .vpe {
    font-size: 11px;
    font-weight: normal;
    color: #999;
    padding: 0;
    margin: 0;
}
.productPreviewContent .shippingtime {
    font-size: 11px;
    font-weight: normal;
    color: #999;
    padding: 0;
    margin: 0;
}
.productPreviewContent .stockimage {
    margin: 0;
    padding: 0;
}
.productPreviewContent .stockimagetext {
    margin: 0;
    padding: 0;
    font-size: 11px;
    font-weight: normal;
    color: #999;
}
.productPreviewContent .productOldPrice {
    font-size: 12px;
    font-weight: bold;
    color: red;
}
.productPreviewContent .taxandshippinginfo a {
    font-size: 11px;
    font-weight: bold;
    color: #999;
    text-decoration: underline;
    outline: none;
}
/* PRODUCT INFO / PRODUCT DETAILS */
#productinfowrap {
    margin-top: 20px;

    background: #fff;
}

#productimagewrap {
    width: 359px;
    background: #fff;
    color: #6b695e;
    font-size: 10px;
    padding-left: 10px;
    line-height: 25px;
    float: left;
}
#productimagewrap > a {
    width: 358px;
    height: 228px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
#productimagewrap > a img {
    margin-left: -10px;
}

#productimagewrap ul {
    margin: 0 !important;
    display: table;
}

#productimagewrap ul li {
    list-style-type: none;
    vertical-align: middle;
    display: inline-block;
    margin: 0 5px;
}

#productimagewrap ul img {
    max-width: 100px;
    max-height: 100px;

}

#productinfoimages {
    float: left;
    background-color: #ededed;
    text-align: center;
    width: 140px;
    padding: 10px;
    margin: 0 10px 10px 0;
    border: solid 1px #999;
}
#productinfoimages .productimage {    border: solid 1px #999 }
#productinfoimages .hrlightgrey {    margin: 6px 0 }
#productinfoprice {
    width: 300px;
    float: left;
    background: #fafaf7;
    min-height: 253px;
}

/*user content wrap*/

#productinfoprice img {    cursor: pointer }
#productinfoprice .hrlightgrey {    margin: 6px 0 }
#productinfoprice .productprice {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
}

#productinfoprice h1 {
    margin: 0;
    background: #c2bfae;
    color: #fff;
    font-size: 18px;
    font-family: Arial;
    padding: 15px;
}

#productinfoprice .productOldPrice {
    color: red;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: bold;
}
#productinfoprice .taxandshippinginfo {
    margin: 0;
    padding: 0;
    font-size: 11px;
    font-weight: normal;
    color: #fff;
}
#productinfoprice .taxandshippinginfo a {
    margin: 0;
    padding: 0;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    text-decoration: underline;
    outline: none;
}
#productinfoprice .shippingtime {
    margin: 0;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: normal;
    color: #999;
    float: right;
}

.shippingtime strong {
    display: block;
    color: #70a927;
    background: url(img/product_instock.png) no-repeat 0px 4px;
    padding-left: 27px;
}

#productmeta .shippingtime span {
    padding-left: 27px;
}

#productinfoprice .stockimage {
    margin: 0;
    padding: 0;
}
#productinfoprice .stockimagetext {
    margin: 0;
    padding: 0;
    font-size: 11px;
    font-weight: normal;
    color: #999;
}
p.productinfoproductadded {    font-size: 11px }
.productoptions {
    background-color: #f8f8f8;
    padding: 6px;
    border: solid #ccc;
    border-width: 1px 0 0 0;
}

.addtobasket {
    margin: 12px 0;
    padding-right: 10px;
}

.addtobasket input[type="text"] {
    float: right;
    height: 23px;
    margin-right: 5px;
}

.addtobasket input[type="image"] {
    float: right;
}

#productoptions {
    margin-top: 30px;
}

#productmeta {
    background: #fafaf7;
    margin-top: 14px;
}

#productmeta > div {
    float: right;
    margin: 8px 0;
    height: 57px;
}

#productmeta > div#shipping {
    width: 286px;
}

div#links {
    width: 143px;
    height: 73px;
    background: #009cde;
    padding: 21px 0 0 13px;
}

div#links a {
    display: block;
    color: #fff;
}

#links button {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 11px;
    cursor: pointer;
}

#links button:hover {
    text-decoration: underline;
}

div#price {
    width: 157px;
    height: 73px;
    margin: 0;
    padding: 21px 13px 0 0;
    color: #fff;
    background: #009cde;
    text-align: right;
    float: right;
}

div#price a {
    color: #fff;
}

#productmeta > div#price strong {
    font-size: 25px;
}

#productmeta > div#price p {
    font-size: 9px;
    margin: 2px 0;
}

#productmeta > div#price a {
    color: #fff;
}


/* POPUPS PRODUCTINFO */
body.popupproductinfo {
    padding: 15px;
    background: #fff none;
}
/* POPUP print_order.html */
body.popupprintorder {
    font-family: Arial, Sans-serif;
    font-size: 13px;
    padding: 15px;
    background: #fff none;
}
body.popupprintorder .products tr.header td {
    font-weight: bold;
    background-color: #ededed;
}
body.popupprintorder .products .total {    text-align: right }
body.popupprintorder .products .quantity {    vertical-align: top }
body.popupprintorder .productname {    vertical-align: top }
body.popupprintorder .model {    vertical-align: top }
body.popupprintorder .singleprice {    vertical-align: top }
body.popupprintorder .totalprice {    vertical-align: top }
/* HIGHLIGHTBOX (BACKGROUND) */
div.highlightbox {
    padding: 15px;
    background-color: #f8f8f8;
    border: solid #d9d9d9 1px;
    overflow: auto;
}
div.highlightbox ul {
    margin-left: 15px;
    padding: 0;
    display: block;
    list-style-type: square;
    line-height: 20px;
}
div.highlightbox h1 {
    color: #893769;
    padding: 0 0 10px 0;
    margin: 0;
    border: none;
    font-size: 16px;
}
div.highlightbox div.hr {
    height: 1px;
    line-height: 1px;
    margin: 0;
    padding: 0;
    display: block;
    border-bottom: solid 1px #eee;
}
/* PAYMENT TYPE SELECTION */
table.paymentblock {
    background-color: #f8f8f8;
    border: #eee solid;
    border-width: 0 1px 1px 1px;
    margin-bottom: 15px;
}
table.paymentblock tr td.header {
    background-color: #ccc;
    padding: 2px;
    padding-left: 5px;
    color: #fff;
    font-weight: bold;
}
/* SHIPPING TYPE SELECTION */
table.shippingblock {
    background-color: #f8f8f8;
    border: #eee solid;
    border-width: 0 1px 1px 1px;
    margin-bottom: 15px;
}
table.shippingblock tr td.header {
    background-color: #ccc;
    padding: 2px 2px 2px 5px;
    color: #fff;
    font-weight: bold;
}
table.shippingblock tr td {    vertical-align: top }
table.shippingblock tr td.description {
    width: 100%;
    vertical-align: top;
    padding-left: 6px;
}
table.shippingblock tr td.radiobutton {
    vertical-align: top;
    white-space: nowrap;
    padding: 4px;
}
table.shippingblock tr td.radiobutton input {
    margin: 0;
    padding: 0;
}
table.shippingblock tr td.price {
    vertical-align: top;
    white-space: nowrap;
}
/* ORDER DETAILS IN ACCOUNT HISTORY */
table.accounthistoryinfoorderdetails tr td {    vertical-align: top }
table.accounthistoryinfoorderdetails tr.header td {    font-weight: bold }
/* MESSAGEBOX ON CONTACT SITE */
textarea.message_body {    width: 130px }
/* DOWNLOAD BOX FOR USER DOWNLOADS */
table.downloadbox {
    padding: 5px;
    background-color: #f8f8f8;
    border: solid #d9d9d9 1px;
    margin-bottom: 8px;
}
table.downloadbox tr td.icon {    padding-right: 15px }
table.downloadbox tr td.downloadlink {    width: 100% }
/* TABLE WICH SHOWS GRADUATED PRICES */
table.graduatedprice {
    font-size: 11px;
    text-align: left;
    margin-top: 5px;
}
table.graduatedprice tr td.header {
    font-size: 12px;
    font-weight: bold;
    text-align: left;
}
/* ORDER DETAILS */
table.orderdetails {
    font-size: 11px;
    background-color: #f8f8f8;
    border: #ccc solid;
    border-width: 0 1px 1px 1px;
}
table.orderdetails tr td {    padding: 4px }
table.orderdetails tr.headerrow td {
    background-color: #ccc;
    color: #555;
    font-weight: bold;
}
table.orderdetails tr.headerrow td.left {    text-align: left }
table.orderdetails tr.headerrow td.center {    text-align: center }
table.orderdetails tr.headerrow td.right {    text-align: right }
/* ORDER DETAILS CONTENT ROW 1 */
table.orderdetails tr.contentrow1 td {
    background-color: #f8f8f8;
    vertical-align: top;
}
table.orderdetails tr.contentrow1 td.quantity {    text-align: center }
table.orderdetails tr.contentrow1 td.quantity input {
    font-size: 11px;
    padding: 2px;
    border: solid #ccc 1px;
}
table.orderdetails tr.contentrow1 td.productname {    text-align: left }
/* ORDER DETAILS CONTENT ROW 2 */
table.orderdetails tr.contentrow2 td {
    background-color: #f8f8f8;
    vertical-align: top;
}
table.orderdetails tr.contentrow2 td.quantity {    text-align: center }
table.orderdetails tr.contentrow2 td.quantity input {
    font-size: 11px;
    padding: 2px;
    border: solid #ccc 1px;
}
table.orderdetails tr.contentrow2 td.productname {    text-align: left }
/* ORDER DETAILS SINGLE PRICE */
table.orderdetails tr td.singleprice {
    text-align: right;
    white-space: nowrap;
}
/* ORDER DETAILS TOTAL PRICE PER ITEM */
table.orderdetails tr td.totalprice {
    text-align: right;
    white-space: nowrap;
}
/* ORDER DETAILS DELETE CHECKBOX */
table.orderdetails tr td.delete {
    text-align: center;
    white-space: nowrap;
}
/* ORDER DETAILS PRODUCT ATTRIBUTES */
table.orderdetails tr td.productname table.productattributes {    margin-top: 3px }
table.orderdetails tr td.productname table.productattributes tr td {    padding: 0 }
table.orderdetails tr td.productname table.productattributes tr td.attribute {    padding-right: 4px }
table.orderdetails tr td.productname table.productattributes tr td.value {    width: 100% }
/* ORDER DETAILS SUBTOTAL */
table.orderdetails tr td.subtotal {
    background-color: #f8f8f8;
    text-align: right;
    border: #ccc solid;
    border-width: 1px 0 0 0;
}
/* PRODUCT NAVIGATOR */
div.productnavigator {
    background-color: #ededed;
    padding: 8px;
    border: #999 1px solid;
}
/* REVIEW LIST */
table.reviewlist {
    background-color: #f8f8f8;
    border: #ccc solid;
    border-width: 0 1px 1px 1px;
}
table.reviewlist tr td {
    padding: 4px;
    white-space: nowrap;
}
table.reviewlist tr.header td {
    background-color: #ccc;
    color: #fff;
    font-weight: bold;
}
table.reviewlist tr.contentrow1 td {    background-color: #f8f8f8 }
table.reviewlist tr.contentrow2 td {    background-color: #f8f8f8 }
textarea#review {    width: 95% }
/* MEDIA LIST */
table.medialist {
    background-color: #f8f8f8;
    border: #ccc 1px solid;
}
table.medialist tr td {
    padding: 6px;
    vertical-align: top;
}
table.medialist tr.contentrow1 td {    background-color: #f8f8f8 }
table.medialist tr.contentrow2 td {    background-color: #f8f8f8 }
/* SITEMAP */
.sitemapwrap .sitemapleft {
    background-color: #f8f8f8;
    border: #ccc 1px solid;
    display: table;
    float: left;
    width: 235px;
    margin-bottom: 15px;
}
.sitemapwrap .sitemapright {
    background-color: #f8f8f8;
    border: #ccc 1px solid;
    display: table;
    float: right;
    width: 235px;
    margin-bottom: 15px;
}
.sitemapheader {
    padding: 3px;
    background-color: #ccc;
    color: #fff;
    font-weight: bold;
}
.sitemapheader a:link, .sitemapheader a:visited, .sitemapheader a:hover {
    color: #fff;
    text-decoration: none;
    outline: none;
}
.sitemapcontent {    padding: 6px }
.sitemapcontent li {    list-style-type: none }
/* COMMENTS ON CHECKOUT CONFIRMATION SITE */
p.checkoutcomment textarea {    width: 100% }
/* ORDER DETAILS ON CHECKOUT SITE */
table.checkoutconfirmationorderdetails {
    padding: 0;
    margin: 0 0 10px 0;
    border: none;
}
table.checkoutconfirmationorderdetails tr td.productname {
    width: 100%;
    font-weight: bold;
}
table.checkoutconfirmationorderdetails tr td.shippingtime {
    padding: 0 0 0 30px;
    color: #666;
    font-size: 11px;
    font-weight: normal;
    white-space: nowrap;
}
table.checkoutconfirmationorderdetails tr td.productattributes {
    padding: 0 0 0 30px;
    color: #666;
    font-size: 11px;
    font-weight: normal;
}
table.checkoutconfirmationorderdetails tr td.productprice {
    white-space: nowrap;
    text-align: right;
}
table.checkoutconfirmationorderdetailstotal {
    padding: 0;
    margin: 10px 0 0 0;
    border: none;
}
table.checkoutconfirmationorderdetailstotal tr td.name {
    width: 100%;
    text-align: right;
}
table.checkoutconfirmationorderdetailstotal tr td.value {
    white-space: nowrap;
    text-align: right;
}
/* AGB ON CHECKOUT SITE */
p.checkoutagb textarea {    width: 100% }
/* CHECKOUT NAVIGATION */
ul#checkoutnavigation {
    margin: 0;
    padding: 0;
    margin-top: 15px;
}
ul#checkoutnavigation li {
    height: 70px;
    list-style-type: none;
    float: left;
    width: 195px;
    margin-right: 15px;
    border: solid 1px;
    padding: 8px;
}
ul#checkoutnavigation li.active {    background-color: #f8f8f8 }
ul#checkoutnavigation li.active .number {
    font-size: 20px;
    font-weight: bold;
}
ul#checkoutnavigation li.active .title {
    font-size: 14px;
    font-weight: bold;
}
ul#checkoutnavigation li.active .description {    font-size: 11px }
ul#checkoutnavigation li.inactive {
    color: #999;
    background-color: #ededed;
    border-color: #999;
}
ul#checkoutnavigation li.inactive .number {
    font-size: 20px;
    font-weight: bold;
}
ul#checkoutnavigation li.inactive .title {
    font-size: 14px;
    font-weight: bold;
}
ul#checkoutnavigation li.inactive .description {    font-size: 11px }
/* ERROR MESSAGES */
.errormessage {
    border: solid red 2px;
    padding: 15px;
    background-color: #FFD6D6;
    margin-bottom: 10px;
}
/* SUCCESS MESSAGE */
.messageStackSuccess {
    padding: 4px;
    background-color: #6f6;
}
/* FOOTER */
.footer {
    clear: both;
    text-align: center;
    font-size: 11px;
    color: #666;
    background-color: #E2E2E2;
    padding: 8px;
    margin-bottom: 5px;
    border-bottom: 2px solid #ccc;
}
.footer a {
    color: #666;
    text-decoration: underline;
    outline: none;
}
/* XTC COPYRIGHT */
.copyright {
    margin: 0 auto;
    width: 970px;
    text-align: center;
    color: #666;
    font-size: 11px;
    padding: 30px 0 10px 0;
}
/* XTC ParseTime */
.parseTime {
    margin: 0 auto;
    width: 970px;
    text-align: center;
    color: #666;
    font-size: 11px;
    padding: 0 0 10px 0;
}
/* UPDATE CHANGES 17.10.2008 */
/* Mehr Bilder unterhalb der Beschreibung */
.morepics {
    background-color: #ededed;
    padding: 6px;
    text-align: right;
    border: #999 solid;
    border-width: 1px 0 0 0;
    display: block;
    height: auto;
    width: 512px;
    float: left;
    margin-bottom: 2px;
}
.morepics img {
    border: #999 1px solid;
    padding: 4px;
    margin-right: 8px;
    background: #fff;
    height: 100px;
    width: auto;
    float: left;
    margin-bottom: 8px;
}
/* BESTELLER BOX mit Bilder in DL DT Liste -- JUNG GESTALTEN.com */
dt {
    float: left;
    width: 40px;
}
dt img {
    border: 1px solid #ccc;
    padding: 2px;
    background: #fff;
    max-width: 40px;
}
dd {
    float: right;
    width: 125px;
}
/* Vorschaubilder TD mit gleichem Abstand */
/* BOF - dokuman - 2009-06-06 - Fix new products display in firefox - picture size is 120px by default */
/*.productPreviewImage { width:100px; display:block } _NO__DOTCOMMA__AFTER__*/
.productPreviewImage {
    width: 120px;
    display: block;
}
/* EOF - dokuman - 2009-06-06 - Fix new products display in firefox size is 120px by default */
td.productPreviewContent {
    width: 400px;
    text-align: left;
}
/* BOF - Tomcraft - 2009-09-22 - FIX DER AUFZÄHLUNGEN IM CONTENT */
#content ol, #content ul {    margin: 10px 0 10px 14px }
/* EOF - Tomcraft - 2009-09-22 - FIX DER AUFZÄHLUNGEN IM CONTENT */
/* BOF - Tomcraft - 2009-09-22 - FIX DER AUFZÄHLUNGEN IN DER DRUCKANSICHT */
.popupproductinfo #productinfowrap ol, .popupproductinfo #productinfowrap ul {    margin: 10px 0 10px 186px }
/* EOF - Tomcraft - 2009-09-22 - FIX DER AUFZÄHLUNGEN IN DER DRUCKANSICHT */
/* SEARCHBOX */
.search_header {    line-height: normal }
/* BOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation */
td.main_row {    border-top: 1px solid #ccc }
/* EOF - Tomcraft - 2009-10-02 - Include "Single Price" in checkout_confirmation */
/* BOF - Hetfield - 2010-01-20 - Remove agb-textarea from checkout_payment */
div.agbframe {
    width: 100%;
    height: 200px;
    overflow: auto;
    padding: 10px;
    background: url(img/input_bg.gif) no-repeat;
    border: 1px solid #666;
}
/* EOF - Hetfield - 2010-01-20 - Remove agb-textarea from checkout_payment */
/* BOF - web28 - 2010-04-29 - fix ol and ul Tag  in checkout_payment agbframe */
ol#address_block, div.agbframe ol, div.agbframe ul {    margin-left: 30px }
/* EOF - web28 - 2010-04-29 - fix ol and ul Tag  in checkout_payment agbframe */
/* BOF - web28 - 2010-07-25 - NO JAVASCRIPT FALLBACK für TABS/ACCORDION in product_info */
#tabbed_product_info ul, #accordion_product_info h3 a {    display: none }
#tabbed_product_info .morepics {
    background-color: #ededed;
    padding: 6px;
    border-width: 1px 0 0 0;
    width: 512px;
    margin-bottom: 17px;
}
/* EOF - web28 - 2010-07-25 - NO JAVASCRIPT FALLBACK für TABS/ACCORDION in product_info */
/* BOF - web28 - 2010-07-25 - FIX DER AUFZÄHLUNGEN IM CONTENT  für TABS/ACCORDION in product_info */
#tab_description ol,
#tab_description ul,
#accordion_product_info ul,
#accordion_product_info ul {
    margin: 10px 0 10px 22px;
    display: block;
}

#tab_product_categories ul {
    margin: 10px 0 10px 22px !important;
}
/* EOF - web28 - 2010-07-25 - FIX DER AUFZÄHLUNGEN IM CONTENT  für TABS/ACCORDION in product_info */


.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}


.hidden {
    display: none;
}

.nowrap {
    white-space: nowrap;
}


form#callback_frm .error {
    font-weight: bold;
    color: red;
}

.callback_frm_submit_h {
	float:left;
	margin-top: 32px;
}

#top_boxes {

}

#top_boxes > div {
    float: left;
   /* height: 253px; */
    width: 211px;
    margin-left: 13px;
}

#top_boxes > div:first-child {
    margin-left: 0;
}

#top_boxes .tbox_header {
    height: 34px;
    line-height: 34px;
	font-size: 12px;
    font-weight: bold;	
    padding-left: 13px;
    color: #fff;
}

#top_boxes .tbox_dropdown {
	position: relative;
	float: right;
	right: 10px;
	cursor: pointer;
}
#top_boxes .tbox_dropdown img {
	width: 16px;
}

#top_boxes .tbox_innerdiv {
    margin: 9px 12px;
    height: 177px;
}

#top_boxes .tbox_innerdiv > strong {
    display: block;
    margin-bottom: 18px;
}

#top_boxes select,
#top_boxes input  {
    width: 100%;
    margin-bottom: 13px;
}

#top_boxes input[type=image] {

	margin-bottom: -5px;
}

/*KBA:*/
#tbox_kba {
    background: #eef0e6;
}
#tbox_kba .tbox_header  {
    background: #b1bd9d;
}

#tbox_kba > div > form > div input {
    width: 50px !important;
    margin: 0 1px 2px -1px !important
}
#tbox_kba > form img {
    margin-top: 5px;
}

#tbox_kba span {
    font-size: 10px;
}

/*HFF:*/
#tbox_hff {
    background: #e1e5e8;
}
#tbox_hff .tbox_header  {
    background: #a8b4c2;
}

#tbox_hff select {
    font-family: monospace;
}

/*Search:*/
#tbox_search {
    background: #eeebdf;
}
#tbox_search .tbox_header  {
    background: #cdc8b1;
}


#catmenu_nav {
    background: #fff;
    width: 260px;
    height: 47px;
    padding-top: 9px;
}

#catmenu_nav button {
    width: 102px;
    height: 28px;
    background-color: #9c946e;
    border: none;
    background-image: url(img/arrow_up.png);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

#catmenu_nav button:first-child {
    margin: 0 21px 0 17px;
    background-image: url(img/arrow_down.png);
}


#catmenu_nav button.inactive {
    background-color: #edece7;
}

.productlisting_small h1 {
    display: inline-block;
    margin-bottom: 0;
}

.productlisting_small > a {
    font-size: 12px;
}

.productlisting_small ul {
    margin-left: -28px;
}

.productlisting_small li {
    list-style-type: none;
    float: left;
    width: 201px;
    height: 160px;
    background: #fff;
    overflow: hidden;
    margin: 15px 0 0 28px;
}

.productlisting_small li > a {
    width: 201px;
    height: 114px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.productlisting_small li > h2 {
    margin: 0;
    padding: 5px;
    background: #3c3c3c;
    height: 46px;
    width: 134px;
    float: left;
}

.productlisting_small li > h2 a {
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.productlisting_small li > p {
    display: block;
    float: left;
    width: 67px;
    height: 46px;
    background: #767573;
    margin: 0;
    color: #fff;
    text-align: right;
    padding: 4px;
}

.productlisting_small li > p span {
    font-size: 8px;
    display: inline-block;
    text-align: left;
    line-height: 11px;
}

.productlisting_small li > p a {
    color: #fff;
}

#index_welcome {
    margin-top: 21px;
}

#index_welcome > img {
    float: left;
    width: 204px;
}

#index_welcome > div {
    float: left;
    width: 651px;
    background: #fff;
}

#index_welcome > div h1 {
    color: #fff;
    height: 55px;
    margin: 0;
    background: #3c3c3c;
    line-height: 55px;
    padding-left: 21px;
}
#index_welcome > div h1 span {
    font-size: 20px;
}

#index_welcome > div .usercontent {
    padding: 17px 21px;
    font-size: 12px;
}

#index_welcome > div .bottom {
    background: #407695;
    color: #fff;
    text-align: center;
    height: 33px;
    margin: 0;
    line-height: 33px;
}

#index_partlisting ul {
    float: left;
    width: 49%;
    padding: 0px 0 0 10px;
    font-size: 11px;
    margin-top: 7px;
}

#homelink {
    width: 740px;
    height: 182px;
    display: block;
    position: absolute;
}

#product_breadcrumbs {
    min-height: 30px;
    line-height: 30px;
    background: #fff;
    margin: 0 !important;
}

#product_breadcrumbs a {
    display: inline-block;
    font-weight: bold;
    color: #A29DA2;
}
#product_breadcrumbs a:before {
    content: "|";
    margin: 0 10px;
    color: #A29DA2;
}
#product_breadcrumbs a:first-child:before {
    content: "";
    margin: 0 12px;
}

#product_breadcrumbs a.last-child {
    color: #6DB0D6;
}

#search_callback_service {
    background: #c2bfae;
    color: #66;
    width: 80%;
    margin: 16px auto 0 auto;
    padding: 4px 15px;
    font-weight: bold;
}

.fancy_table {
    border: 0;
    width: 100%;
}

.fancy_table th {
    color: #666;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
}

.fancy_table tr:first-child:hover {
    background: transparent;
}

.fancy_table tr:hover {
    background: #EDECE7;
}

.fancy_table td {
    border-top: 1px solid #666;
    padding: 0;
}

.fancy_table a {
    display: block;
}
.fancy_table a:hover {
    text-decoration: none;
}

.tcenter {
    text-align: center;
}

.techdata_table td {
    width: 50%;
}

.teilehaber-siegel {
    display: block;
    text-align: center;
    margin: 20px 0;
}


/* WMW::MS MISC */
.float-left {

	float:left;
}

.width-25 {
	width:25%;

}

.width-75 {
	width:75%;

}

.margin-bottom {
	margin-bottom:20px;
}
/* ~WMW::MS */