/********************************************
   DEFAULTS
*******************************************/
* {
    margin: 0;
    padding: 0
}

body {
    color: #555;
    font-size: 12px;
    padding-top: 1px;
    font-family: Arial, Geneva, sans-serif;
    background: #fafafa; /*#dddddd*/
}

h1 {
    font-weight: 800;
    font-size: 14px;
    height: 16px;
    width: auto;
    background: #fff;
    margin: 15px 0 10px;
    padding: 0
}

h2 {
    font-weight: 700;
    font-size: 16px;
    margin: 15px 0 8px;
    padding: 0
}

h3 {
    font-weight: 700;
    font-size: 12px
}

a, a:link, a:link, a:link, a:hover {
    text-decoration: none;
    outline: none;
    cursor: pointer
}

a:hover {
    color: #555;
    text-decoration: underline;
    outline: none
}

a:link, a:visited, a:hover, a:active {
    color: #4C4C4C;
    outline: none
}

a img {
    border: none;
    outline: none
}

ul {
    list-style-type: none;
}

input[type=text]:focus, input.text:focus, input.title:focus, textarea:focus, select:focus {
    color: #3e3e3e;
    outline: 0;
    border-color: #2D3940
}

input[type=text], input.text, input.title, textarea, select, input[type=password], input[type=email] {
    border: 1px solid #B9B9B9;
    margin: .5em 0
}

textarea {
    font-family: Arial, Sans-serif;
    border: 1px solid #B9B9B9;
    color: #A2A29B;
    font-size: 13px;
    padding: 10px
}

input {
    font-family: Arial, Sans-serif;
    color: #A2A29B;
    font-size: 13px;
}

option {
    padding: 0 0.5em;
}

select {
    font-family: Arial, Sans-serif;
    border: 1px solid #B9B9B9;
    color: #A2A29B;
    font-size: 13px;
    padding: 2px;
}

input[type=text], input[type=password], input[type=email], select {
    outline: none;
    background: #fff;
    margin: 2px 0 5px 0;
    padding: 2px 5px;
}

input[type=text]:hover, input[type=email]:hover {
    border: 1px solid #555
}

input[type="checkbox"] {
    margin-right: 5px;
}

fieldset {
    border: 1px solid #C5C5C5;
    margin-bottom: 1em;
    margin-top: 5px;
    padding: 4px
}

legend {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    padding: 2px 4px
}

label {
    cursor: pointer;
}

p {
    margin: 8px 0
}

/********************************************
   LAYOUT
*******************************************/
#wrap {
    width: 990px;
    background: #FFF;
    box-shadow: 0 -5px 5px #555;
    margin: 0px auto 0 auto;
    padding: 0;
    border-top: 0;
    position: relative;
}

#header {
    width: 990px;
    height: 120px;
    position: absolute;
    top: 0px;
}

#main_content {
    margin: 5px 15px;
}

#contentwrap {
    clear: both;
    width: 990px;
    overflow: hidden;
    padding: 172px 0 0;
}

#contentwrapstart {
    clear: both;
    width: 990px;
    overflow: hidden;
    padding: 172px 0 0;
}

#leftcol {
    width: 185px;
    margin-left: 15px;
    float: left;
}

#rightcol {
    width: 185px;
    margin-right: 15px;
    float: right;
}

#content {
    padding-bottom: 20px;
    padding-right: 15px;
    width: 759px;
    background: #fff;
    float: right;
}

#content-full {
    float: right;
    width: 986px;
    padding-bottom: 50px;
}

#content-2col {
    padding-right: 15px;
    padding-bottom: 30px;
    width: 559px;
    background: #fff;
    float: right;
}

.content {
    margin: 10px 20px
}

/********************************************
   HEADER
*******************************************/
#header #logo {
    float: left;
    overflow: hidden;
    padding: 30px 0 0 20px;
    width: 280px;
    display: block;
}

.boxy {
    width: 130px;
    padding: 5px 10px;
}

#header .cart {
    border: 1px solid #CCCCCC;
}

#cart {
    background: url(img/b_cart.png) no-repeat bottom left;
    float: right;
    height: 80px;
    margin: 20px 15px;
    border: 1px solid #F4F4F4;
    padding-left: 80px;
    width: 170px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

#cart p {
    margin-top: 2px;
}

#cart-content {
    height: 0;
    position: absolute;
    width: 240px;
    top: 100px;
    right: 15px;
    overflow: hidden;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

#cart:hover {
    z-index: 5555;
    border-color: #ccc;
    -webkit-box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.55);
    box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.55);
}

#cart:hover #cart-content {
    z-index: 5550;
    height: auto;
    background: #fff;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 5px;
    -webkit-box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.55);
    box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.55);
}

#cart h3 {
    border-bottom: 1px dashed #F8F8F8;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 5px 0;
}

#cart-info {
    padding: 7px 0;
}

#cart-content-products {
    margin: 5px 7px;
    max-height: 120px;
    overflow: auto;
}

#cart-content-products p {
    border-bottom: 1px solid #ccc;
}

#header .info {
    background: #f2f2ed
}

#header-menu {
    position: absolute;
    top: 5px;
    left: 300px;
    display: inline;
}

#header-menu a {
    padding: 0 5px;
    border-right: 1px solid #ccc;
}

#header-menu a.last {
    border: 0;
}

#language {
    padding: 0 10px;
    display: inline;
}

#language a {
    padding: 1px 5px;
    float: right;
    border: 0 !important;
}

#language a:hover {
    background: #f1f1f1;
}

#language img {
    margin: 0
}

#search {
    overflow: hidden;
    height: 26px;
    display: inline;
    position: absolute;
    top: 60px;
}

#search b {
    font-size: 1.08333em;
    font-weight: normal;
    margin: 0 0.5em 0 0;
    font-variant: small-caps;
}

#search select, #search .searchtxt {
    border: 1px solid #ccc;
    color: #A2A29B;
    font-size: 13px;
    padding: 2px 10px;
    width: 280px;
}

#search select {
    padding: 1px 2px;
}

#search_adv {
    color: #ccc;
    font-size: 9px;
    position: absolute;
    right: 340px;
    top: 84px;
}

#search_adv:hover {
    color: #4C4C4C;
    text-decoration: none;
}

#loginblock {
    width: 240px;
    height: 22px;
    padding-top: 8px;
}

#loginblock a {
    margin: 10px 10px 0 10px;
    float: right;
}

#cart_link {
    margin-right: 70px;
    color: #8C0058;
    margin-bottom: 0px;
}

#header td {
    padding-top: 1px;
    padding-right: 4px
}

input.searchtxt {
    width: 132px;
    margin-bottom: 0;
}

/********************************************
   HELPER
*******************************************/
.center {
    text-align: center;
}

.right {
    float: right
}

.left {
    float: left;
}

.clear {
    clear: both
}

.texxt {
    margin: 0 5px
}

.clickable {
    cursor: pointer;
}

.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%;
}

div.hr {
    padding-top: 1px;
    height: 0;
    overflow: hidden;
    line-height: 0;
    background-color: #ccc;
    margin: 0
}

/********************************************
   BOXEN
*******************************************/
.box {
    width: 185px;
    margin-bottom: 13px;
    background: url("img/box_bg.jpg") repeat-x 0 25px #fff;
    border: 1px solid #CCC;
    overflow: hidden;
}

.box-head {
    height: 25px;
    width: 165px;
    line-height: 25px;
    display: block;
    float: left;
    padding: 0 10px;
    font-weight: normal;
    background: url(img/box_head_bg.jpg) repeat-x scroll left top transparent;
    letter-spacing: 2px;
    font-size: 12px;
    border-bottom: 1px solid #CCC;
    color: #195A8F;
}

.box-content {
    padding: 7px;
    clear: both;
    border-top: 1px solid #FFF;
}

.box-content .vpe {
    font-size: 10px;
}

.box-head a:link, .box-head a:hover, .box-head a:active, .box-head a:visited {
    text-decoration: none;
    outline: none;
    display: block;
}

/* box specials */
#quick_add {
    vertical-align: top;
    width: 133px;
}

#quick_add_submit {
    margin: 2px 0;
}

#manufacturers select {
    margin-bottom: 0;
    width: 170px;
    border: 1px #ccc solid;
    margin-left: 0;
}

.box strong {
    display: block;
}

.productboximage {
    margin-bottom: 7px;
    clear: both;
}

.box h3.center, .box h3.center a {
    font-size: 11px;
    text-align: center;
    outline: none
}

.box p.center {
    color: #000;
    font-size: 11px;
    text-align: center;
    margin: 6px 0
}

.box .productboximage {
    border: solid 1px #999;
    background: #fff;
    padding: 5px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

/*.bewert a {color:#000;white-space:nowrap;overflow:hidden;}*/
.bewert a {
    color: #000000;
    display: block;
    font-weight: 600;
    text-align: center;
}

.box ul.contentlist li:last-child {
    border-bottom: 0
}

.box h3, .box h3 a, p.productinfoproductadded, ul#checkoutnavigation li.active .description, ul#checkoutnavigation li.inactive .description {
    font-size: 11px
}

.box div.hr, .box div.hrlightgrey {
    margin: 5px 0
}

#social a {
    margin-right: 15px;
}

ul.contentlist {
    margin: 0 5px;
    padding: 0
}

ul.contentlist li {
    list-style-type: none;
}

.contentlist a {
    display: block;
    outline: none;
    padding: 3px 0px
}

.contentlist li a {
    background: transparent url(img/icon_small2.gif) no-repeat scroll;
    text-indent: 7px;
}


#b-login .new_acc {
    display: block;
    float: left;
    height: 30px;
    margin-right: 15px;
}

#b-login-btn {
}

#b-addaquickie {
}

#b-order-history {
}

#b-bestseller .productboximage {
    float: left;
    border: 0;
    padding: 0;
    margin-right: 5px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

#b-bestseller strong {
    float: left;
    width: 130px;
    text-align: left;
    font-size: 11px;
}

#b-bestseller .abestseller {
    border-bottom: 1px dashed #ccc;
    padding: 7px 0;
    margin: 0
}

#b-bestseller .abestseller:hover {
    background: #f7f7f7;
    box-shadow: 0 0 3px #ccc;
}

#b-bestseller .ts-outside {
    margin-top: 8px;
}

#b-categories {
}

#b-newsletter {
}

#b-content {
}

#b-info {
}

#b-social {
}

#b-reviews {
}

#b-specials {
}

#b-currencies {
}

#b-information {
}

#b-manufacturers {
}

#b-manufacturers-info {
}

/********************************************
   CATEGORIE MENU
*******************************************/
/* TOP */
#topmenuwrap {
    width: 958px;
    height: 35px;
    overflow: hidden;
    clear: both;
    margin: 0 15px;
    position: absolute;
    border: 1px solid #FFFFFF;
    top: 120px;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.55);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.55);
}

#topmenuwrap a:hover {
    text-shadow: 2px 2px rgba(0, 0, 0, 0.55);
}

#topmenu {
    width: auto;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

#topmenu ul {
    float: left;
    line-height: 35px;
    list-style: none;
    white-space: nowrap;
    padding: 0
}

#topmenu li {
    float: left;
    border-left: 1px transparent dotted;
    border-right: 1px transparent dotted;
}

/*#topmenu li:hover{float:left;border-right:1px dotted #ccc;border-left:1px dotted #ccc;}*/
#topmenu a, #topmenu strong {
    text-decoration: none;
    text-transform: none;
    width: auto;
    padding: 0 10px;
}

#topmenu a:link, #topmenu a:visited {
    background-color: transparent;
}

#topmenu > ul a, #topmenu > ul strong {
    width: auto
}

#topmenu a.selected, #topmenu a:focus, #topmenu a:hover {
    outline: 0 none;
    text-decoration: none;
}

#topmenu li.active strong {
    color: #333;
    font-weight: 700;
    padding-bottom: 4px;
    padding-top: 5px
}

.homebutton {
    width: 40px;
    height: 35px;
    display: block;
}

#topmenu .homebutton a {
    width: 20px;
    height: 35px;
    background: transparent url(img/home_button.gif) no-repeat center center;
}

/* LEFT */
ul#categorymenu {
    margin: 0 5px 15px 5px;
}

ul#categorymenu li {
    font-size: 11px;
    line-height: 22px;
    margin-left: 19px;
    text-indent: -19px;
}

ul#categorymenu li a b {
    color: #000;
    text-shadow: 0px 2px 1px #fff;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    outline: none;
    display: block;
}

/*ul#categorymenu li.level1 {} /* <!-- SPD_TO_DO --> */
ul#categorymenu li.level2 a {
    letter-spacing: 1px;
    padding-left: 18px;
    background: url("img/cyfer.png") no-repeat left center;
}

ul#categorymenu li.level3 a {
    padding-left: 20px;
    background: url("img/cyfered.png") no-repeat left center;
}

ul#categorymenu li.level4 a {
    padding-left: 20px;
    margin-left: 10px;
    background: url("img/cyfered.png") no-repeat left center;
}

ul#categorymenu li.level5 a {
    padding-left: 20px;
    margin-left: 20px;
    background: url("img/cyfered.png") no-repeat left center;
}

ul#categorymenu li a:hover {
    color: #7f7f7f;
}

ul#categorymenu li a.selected {
    color: #000;
    font-weight: bold;
}

ul#categorymenu li.selected a:hover {
    color: #888;
}

ul#categorymenu li.level2 a.selected {
    background: url("img/cyfery.png") no-repeat left center;
}

/********************************************
   PRODUCT INFO
*******************************************/
#product-info {
    display: table;
    width: 100%;
}

/*back_ground: url(img/borderline.gif) repeat-x scroll left top transparent;}*/

#product-info h1 {
    font-size: 18px;
    font-weight: 700;
    height: auto;
    letter-spacing: 1px;
    margin: 13px 0 10px;
}

#product-info-price {
    background: url("img/box_bg.jpg") repeat-x scroll;
    border: 1px solid #ccc;
    width: 230px;
    padding: 7px 15px;
}

#product-info-price .price {
    clear: both;
    text-align: right;
    padding: 7px 25px 0;
}

#product-info-price .taxandshippinginfo {
    text-align: right;
    padding: 0 25px;
}

#product-info-price img {
    cursor: pointer
}

#product-info-price .stockimagetext {
    font-size: 10px;
    font-weight: 400;
    color: #999;
    margin: 0;
    padding: 0
}

#product-info-data {
    width: 440px;
    padding: 7px 10px;
    margin: 0 0 0 20px;
    clear: both;
}

#product-info-images {
    width: 280px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    float: left;
}

.product-info-morepics {
    display: block;
    height: auto;
    padding: 6px 6px 0;
    width: 170px;
    margin: 0 0 0 300px;
    height: auto;
}

.product-info-morepics img {
    border: #ccc 1px solid;
    margin-right: 8px;
    background: #fff;
    height: 50px;
    width: auto;
    margin-bottom: 8px;
    padding: 4px
}

.addtobasket {
    width: 100%;
    text-align: right;
    margin: 15px 0;
}

.addtobasket input[type=text] {
    padding: 2px 4px;
    margin-right: 10px;
}

#product-options {
}

.multi-options select {
    width: 100%;
}

.dropdown-options {
    height: 30px;
    line-height: 30px;
}

.dropdown-options select {
    width: 130px;
    float: right;
}

.select-options label {
    display: block;
}

#product_infos {
    margin: 10px 0;
}

#product_infos h4, dt.style {
    display: block;
    height: 25px;
    line-height: 25px;
    border: 1px solid #F2F2ED;
    margin: 15px 0 0;
    padding: 0 20px;
    width: 120px;
}

/* alkim_anpassung */
#product_infos .contents {
    padding: 5px 0;
    border-top: 1px solid #e7e7e7;
}

#product_infos .contents p {
    padding: 0 10px;
}

#product_infos .condesc {
    padding: 10px 12px 25px;
}

dl {
    position: relative;
    float: left;
    clear: left;
    width: 737px;
    margin-top: 25px;
    margin-bottom: 35px;
}

dl.enhance dt {
    position: relative;
    left: -1px;
    border: 1px solid #F2F2ED;
    height: 25px;
    padding: 0 20px;
    width: 120px;
    line-height: 2;
    text-align: center;
    float: left;
}

dl.enhance dt a {
    height: 25px;
    display: block;
}

dl.enhance dt.current {
    font-weight: bold;
    z-index: 2;
}

dl.enhance dd {
    margin: 0;
    padding: 0 10px 15px;
    width: 737px;
    position: absolute;
    top: 25px;
    border: 1px solid #333;
}

dl.enhance dd p {
    margin: 15px 0 0 15px;
}

a.proPreview {
    width: 160px;
    height: 210px;
    margin: 10px;
    display: block;
    float: left;
    text-align: center;
    overflow: hidden;
    background: #F6F6F6;
    border: 1px solid #F6F6F6;
    text-decoration: none;
}

a.proPreview:hover {
    border: 1px dashed #ccc;
    box-shadow: 0 0 3px #999;
}

a.proPreview b {
    line-height: 13px;
    font-size: 12px;
    margin: 3px 5px;
    display: block;
    height: 26px;
    overflow: hidden;
}

a.proPreview img {
    float: right;
}

a.proPreview:hover img {
    background: #fcfcfc;
}

a.proPreview .productImage {
    width: 145px;
    float: none;
    margin: 5px auto;
}

.popupproductinfo #product-info-images {
    width: auto;
    text-align: left;
    background: #fff;
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.popupproductinfo #product-info-images .productimage {
    margin: 0;
}

.popupproductinfo #product-info-images img {
    float: left;
    margin: 0 10px;
}

.popupproductinfo #product-info-images .hrlightgrey {
    display: none;
}

#productinfodescription {
    clear: both;
}

.treview {
    display: block;
    margin-left: 10px;
}

#pimpg {
    margin: 0 auto
}

a.printb, a#shippingb, a.wishlist, a.askaquestion {
    width: 90px;
    height: 25px;
    line-height: 25px;
    display: block;
    float: left;
    padding: 0 0 0 20px
}

a.printb:hover, a#shippingb:hover, a.wishlist:hover {
    z-index: 500;
}

a.printb {
    background: url(img/icon-sprites.png) 0 -153px no-repeat;
}

a#shippingb {
    background: url(img/icon-sprites.png) 0 -185px no-repeat;
}

a.askaquestion {
    background: url(img/icon_askaquestion.png) 0 1px no-repeat;
}

a.wishlist {
    background: url(img/icon_wishlist.png) 0 3px no-repeat;
}

a.fblike {
}

#shortdesc {
    float: left;
    margin: 5px;
    padding: 5px
}

body.popupproductinfo {
    background: #fff none;
    padding: 15px
}

body.popupprintorder {
    font-family: Arial, Sans-serif;
    font-size: 13px;
    background: #fff none;
    padding: 15px
}

body.popupprintorder .products tr.header td {
    font-weight: 700;
    background-color: #EDEDED
}

div.highlightbox {
    border: solid #d9d9d9 1px;
    overflow: auto;
    padding: 15px
}

div.highlightbox ul {
    margin-left: 15px;
    display: block;
    list-style-type: square;
    line-height: 20px;
    padding: 0
}

div.highlightbox h1 {
    margin: 2px 0;
    padding-left: 0;
}

div.highlightbox div.hr {
    height: 1px;
    line-height: 1px;
    display: block;
    border-bottom: solid 1px #eee;
    margin: 0;
    padding: 0
}

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.price {
    vertical-align: top;
    white-space: nowrap
}

textarea.message_body {
    width: 130px
}

table.downloadbox {
    background-color: #f8f8f8;
    border: solid #d9d9d9 1px;
    margin-bottom: 8px;
    padding: 5px
}

table.downloadbox tr td.icon {
    padding-right: 15px
}

table.graduatedprice {
    font-size: 11px;
    text-align: right;
    margin-top: 5px;
    width: 100%;
    border-collapse: collapse;
}

table.graduatedprice tr td.header {
    font-size: 12px;
    font-weight: 700;
    text-align: left
}

table.graduatedprice tr td {
    vertical-align: top;
    padding: 3px;
}

table.graduatedprice tr td.discount {
    color: #FF0000;
    text-align: right;
}

table.graduatedprice tr td.price {
    padding: 0 0 0 80px;
    text-align: left;
}

table.medialist {
    background-color: #f8f8f8;
    border: #ccc 1px solid
}

table.medialist tr td {
    white-space: nowrap;
    vertical-align: top;
    padding: 6px
}

/********************************************
   CATEGORIE/PRODUCT LISTING
*******************************************/

/* HEAD */
#listhead {
    border: 1px solid #dedede;
    padding: 10px;
}

#listhead h1 {
    display: block;
    letter-spacing: 3px;
    color: #000;
    padding: 0 20px 0 5px;
    margin: 0 0 5px 0;
    font-size: 13px;
    text-shadow: -1px -1px 0 #F0F0F0, 1px 1px 0 #fff;
    height: auto;
}

#listhead .categorie-desc {
    padding: 3px 5px 0;
    border-top: 1px solid #ccc;
}

#listhead .imgRight {
    margin: 15px 15px 2px;
    clear: both;
}

#listhead .tor {
    margin: 1px 5px;
    float: right;
}

.tor a {
    margin-left: 7px;
}

/* SUB-CATEGORIES */
#sub-categories {
    border: 1px solid #dedede;
    margin-bottom: 10px;
    border-top: 0;
    padding: 0 10px 5px;
    margin-top: -14px;
}

#sub-categories h2 {
    font-size: 12px;
    letter-spacing: 1px;
    color: #B6B6B6;
    padding: 10px 10px 3px 5px;
}

#sub-categories .sub-categorie {
    float: left;
    background: #F8F8F8;
    padding-bottom: 5px;
    border: 1px solid #E8E8E8;
    width: 255px;
    text-align: center;
    margin: 0 5px 10px;
    position: relative;
}

#sub-categories .sub-categorie:hover {
    background: #F4F4F4;
}

#sub-categories a.categorie-img {
    width: 245px;
    height: 50px;
    background: #fff;
    display: block;
    margin: 5px;
    overflow: hidden;
    border: 1px solid #ccc;
}

#sub-categories a.categorie-img img {
    max-width: 243px;
    max-height: 48px;
    margin: 1px;
}

#sub-categories .sub-categorie strong a {
    color: #000;
    letter-spacing: 3px;
    text-decoration: none;
    margin: 5px;
    width: 245px;
}

#sub-categories .categorie-desc {
    margin: 5px;
}

/* GALLERY */
#p-gallery {
    clear: both;
    margin-bottom: 15px;
}

#p-gallery .list {
    box-shadow: 0 0 3px #ccc;
    float: left;
    background: #fff;
    width: 177px;
    border: 1px solid #ccc;
    height: 275px;
    margin-top: 15px;
    position: relative;
}

#p-gallery .list:hover {
    background: #f9f9f9;
}

#p-gallery .list a:hover h2 {
    outline: none;
    color: #000
}

#p-gallery .list .model {
    font-size: 10px;
    text-align: right;
    height: 12px;
    line-height: 12px;
    margin: 5px 15px 5px 0;
}

#p-gallery .list .product-image {
    text-align: center;
    height: 120px;
    display: block
}

#p-gallery .list .productImageBorder {
    border: 1px solid #e7e7e7;
    border-radius: 10px 10px 10px 10px;
}

#p-gallery .spd_products_name_box {
    text-align: left;
    padding: 5px 11px 5px 11px;
    b_order: 1px #006633 solid;
}

#p-gallery .list h2 {
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 0;
}

#p-gallery .list h2 a {
    color: #000
}

#p-gallery .list .short-desc {
    display: none;
    overflow: hidden;
    border: thin #0000FF solid;
    margin: 0;
    width: 175px;
    heigh_t: 29px;
}

#p-gallery .spd_pice_box {
    text-align: right;
    padding: 5px 15px 5px 5px;
    position: absolute;
    bottom: 5px;
    width: 155px;
}

#p-gallery .list .price {
    font-weight: 600;
    padding: 0;
    margin: 0;
    letter-spacing: 1px;
    width: 100%;
    font-size: 14px;
}

#p-gallery .list .unit-price {
    font-size: 13px;
    font-weight: 700;
}

#p-gallery .list .unit-price small {
    font-size: 11px;
    font-weight: 500;
}

#p-gallery .list .productOldPrice {
    width: 100%;
    margin: 0;
    padding: 0;
}

#p-gallery .list .vpe {
    margin: 0;
    padding: 0;
    font-size: 10px;
}

#p-gallery .list .taxandshippinginfo {
    padding: 0;
    font-size: 10px;
    font-weight: 400;
    color: #999;
    margin: 0;
    width: 100%;
}

#p-gallery .buttons {
    display: none;
}

#p-gallery .list .stockimagetext {
    font-size: 10px;
    font-weight: 400;
    color: #999;
    margin: 0;
    padding: 0
}

/* WOFÜR ???? */
#p-gallery .wishlist-delete {
    padding: 0;
    font-size: 10px;
    font-weight: 400;
    color: #999;
    margin: 0 0 0 3px;
    width: 100%;
    text-align: left;
}

#p-gallery .wishlist-price_box input {
    margin: 0;
    padding: 2;
    width: 30px;
}

#p-gallery .wishlist-quantity {
    text-align: left;
    margin: 6px 0 0 10px;
}

/*#p-gallery .list .shippingtime{position:absolute;bottom:5px;padding:0 10px;height:20px;line-height:20px;}*/

/* LIST */
#p-listing {
    clear: both;
    margin-bottom: 15px;
    width: 100%
}

#p-listing .list {
    box-shadow: 0 0 3px #ccc;
    background: #fff;
    width: 100%;
    height: 140px;
    border: 1px solid #ccc;
    margin: 10px 0 0px;
    position: relative;
}

#p-listing .list:hover {
    background: #f9f9f9;
}

#p-listing .not_first {
    margin-left: 0;
}

#p-listing a:hover h2 {
    outline: none;
    color: #000
}

#p-listing .model {
    font-size: 10px;
    height: 12px;
    line-height: 12px;
    position: absolute;
    top: 3px;
    right: 15px;
}

#p-listing .product-image {
    text-align: center;
    height: 120px;
    width: 170px;
    left: 10px;
    position: absolute;
    top: 10px;
}

#p-listing .productImageBorder {
    border: 1px solid #e7e7e7;
    border-radius: 10px 10px 10px 10px;
}

#p-listing .spd_products_name_box {
}

#p-listing h2 {
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    width: 355px;
    margin: 10px 0 5px;
    padding: 0 5px;
    position: absolute;
    left: 180px;
}

#p-listing h2 a {
    color: #000
}

#p-listing .short-desc {
    height: 77px;
    left: 185px;
    overflow: hidden;
    position: absolute;
    top: 43px;
    width: 355px;
}

#p-listing .spd_pice_box {
}

#p-listing .price {
    bottom: 75px;
    position: absolute;
    right: 15px;
    text-align: right;
    font-size: 13px;
}

#p-listing .list .unit-price {
    font-size: 13px;
    font-weight: 800;
}

#p-listing .list .unit-price small {
    font-size: 11px;
    font-weight: 500;
}

#p-listing .list .productOldPrice {
}

#p-listing .vpe {
    font-size: 10px;
    position: absolute;
    right: 5px;
    bottom: 60px;
}

#p-listing .taxandshippinginfo {
    position: absolute;
    bottom: 40px;
    right: 12px;
}

#p-listing .shippingtime {
    bottom: 10px;
    left: 175px;
    position: absolute;
}

#p-listing .stockimagetext {
    font-size: 10px;
    font-weight: 400;
    color: #999;
    margin: 0;
    padding: 0
}

#p-listing .buttons {
    position: absolute;
    bottom: 10px;
    right: 5px;
}

#p-listing .buttons a {
    margin: 0 5px;
}

#p-listing .wishlist-delete {
    position: absolute;
    right: 220px;
    bottom: 5px;
    color: #999999;
    font-size: 11px
}

#p-listing .wishlist-price_box input {
    margin: 0;
    padding: 2;
    width: 30px;
}

#p-listing .wishlist-quantity {
    position: absolute;
    right: 12px;
    bottom: 50px;
}

.list {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.not_first {
    margin-left: 11px;
}

.not_first1 {
    margin-left: 7px;
}

.not_first2 {
    margin-left: 14px;
}

/*pagination*/
.smallText {
    padding-top: 10px;
}

/********************************************
   CART
*******************************************/
table.orderdetails {
    font-size: 11px;
    background-color: #f8f8f8;
    border: #ccc solid;
    border-width: 0 1px 1px
}

table.orderdetails tr td {
    padding: 4px
}

table.orderdetails tr.headerrow td {
    font-weight: 700
}

table.orderdetails tr td.delete {
    text-align: center;
    white-space: nowrap
}

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;
    white-space: nowrap;
}

table.orderdetails tr td.subtotal {
    background-color: #f8f8f8;
    text-align: right;
    border: #ccc solid;
    border-width: 1px 0 0
}

table.orderdetails tr.contentrow1 td { /*background-color: #fcfcfc;*/
    border-top: 1px solid #ccc
}

table.orderdetails tr.contentrow2 td { /*background-color: #fefefe;*/
    border-top: 1px solid #ccc
}

table.orderdetails tr.contentrow1 td table td {
    border-top: 1px dotted #d9d9d9
}

table.orderdetails tr.contentrow2 td table td {
    border-top: 1px dotted #d9d9d9
}

/* GIFT */
#gift_coupon input[type=text] {
    margin: 0;
}

/* create account */
fieldset label {
    clear: both;
    padding-right: 4px;
    width: 14em;
    float: left;
    margin: 5px 0 0 5px
}

#create_account .ca-error input {
    border-color: red;
}

#create_account input {
    box-shadow: 0 0 1px #ccc;
}

#create_account input[type=radio] {
    margin: 0 5px;
}

/********************************************
   CHECKOUT
*******************************************/
.checkout {
    margin: 0 auto 25px;
    width: 720px;
}

#content-full #breadcrumb {
    display: none;
}

.checkoutconfirmationorderdetails {
    border: none;
    margin: 0 0 10px;
    padding: 0
}

.checkoutconfirmationorderdetails tr td.productname {
    width: 100%;
    font-weight: 700
}

.checkoutconfirmationorderdetails tr td.shippingtime {
    color: #666;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
    padding: 0 0 0 30px
}

.checkoutconfirmationorderdetails tr td.productattributes {
    color: #666;
    font-size: 11px;
    font-weight: 400;
    padding: 0 0 0 30px
}

.checkoutconfirmationorderdetails tr td.productprice, table.checkoutconfirmationorderdetailstotal tr td.value {
    white-space: nowrap;
    text-align: right
}

.checkoutconfirmationorderdetailstotal {
    border: none;
    margin: 10px 0 0;
    padding: 0
}

.checkoutconfirmationorderdetailstotal tr td.name {
    width: 100%;
    text-align: right
}

#checkoutnavigation {
    margin: 15px 0 0;
    padding: 0
}

#checkoutnavigation li {
    height: 60px;
    list-style-type: none;
    float: left;
    width: 157px;
    margin: 0 5px 0 0;
    background: url("img/box_bg.jpg") repeat-x scroll 0 0 #FFFFFF;
    border: 1px solid #DBE7F2;
    border-radius: 8px;
    padding: 8px
}

#checkoutnavigation li.inactive {
    color: #999;
    border-color: #ccc
}

#checkoutnavigation li.active {
    color: #000;
    border-color: #888
}

#checkoutnavigation li.active .number, ul#checkoutnavigation li.inactive .number {
    font-size: 20px;
    font-weight: 700
}

#checkoutnavigation li.active .title, ul#checkoutnavigation li.inactive .title {
    font-size: 14px;
    font-weight: 700
}

#address_block, div.agbframe ol, div.agbframe ul {
    margin-left: 30px
}

body.popupprintorder .products .total, table.orderdetails tr.headerrow td.right {
    text-align: right
}

table.paymentblock, table.shippingblock {
    background-color: #f8f8f8;
    border: #eee solid;
    margin-bottom: 15px;
    border-width: 0 1px 1px
}

table.paymentblock tr td.header, table.shippingblock tr td.header {
    font-weight: 700;
    padding: 2px 2px 2px 5px
}

/* background-color:#c1daae;color:#fff; alkim anpassung */
table.accounthistoryinfoorderdetails tr.header td, .nivo-controlNav a.active {
    font-weight: 700
}

table.downloadbox tr td.downloadlink, table.orderdetails tr td.productname table.productattributes tr td.value {
    width: 100%
}

p.checkoutcomment textarea, p.checkoutagb textarea {
    width: 95%;
}

table.orderdetails tr.headerrow td.left, table.orderdetails tr.contentrow1 td.productname, table.orderdetails tr.contentrow2 td.productname {
    text-align: left
}

table.orderdetails tr.headerrow td.center, table.orderdetails tr.contentrow1 td.quantity, table.orderdetails tr.contentrow2 td.quantity {
    text-align: center
}

table.orderdetails tr.contentrow1 td, table.orderdetails tr.contentrow2 td {
    vertical-align: top
}

table.orderdetails tr.contentrow1 td.quantity input, table.orderdetails tr.contentrow2 td.quantity input {
    font-size: 11px;
    border: solid #ccc 1px;
    padding: 2px
}

table.orderdetails tr td.singleprice, table.orderdetails tr td.totalprice {
    text-align: right;
    white-space: nowrap
}

.contentrow1 {
    background-color: #fcfcfc
}

.contentrow2 {
    background-color: #f8f8f8
}

.orderdetails .left, .orderdetails .right {
    float: none
}

td.quantity input {
    color: #000000;
}

/********************************************
   UNORDERED
*******************************************/
#new_find input[type=image] {
    margin-top: -3px;
}

#bbutton {
    margin-right: 15px;
}

#sign_in {
    padding-left: 10px;
}

.morepics {
    text-align: right;
    display: block;
    height: auto;
    width: 310px;
    float: left;
    margin: 10px 40px 0 0;
    padding: 6px 6px 0
}

.morepics img {
    border: #ccc 1px solid;
    margin-right: 8px;
    background: #fff;
    height: 50px;
    width: auto;
    float: left;
    margin-bottom: 8px;
    padding: 4px
}

dt {
    float: left;
    clear: both;
    margin-top: 20px;
}

dt img {
    border: 1px solid #ccc;
    background: #fff;
    max-width: 40px;
    padding: 2px
}

dd {
    clear: both;
}

td#p-gallery .listContent {
    width: 400px;
    text-align: left
}

#content ol, #content ul {
    margin: 10px 0 10px 14px
}

.popupproductinfo #product-info ol, .popupproductinfo #product-info ul {
    margin: 10px 0 10px 186px
}

.search_header {
    line-height: normal
}

td.main_row {
    border-top: 1px solid #ccc
}

div.agbframe {
    width: 95%;
    height: 200px;
    overflow: auto;
    background: url(img/input_bg.gif) no-repeat;
    border: 1px solid #666;
    padding: 10px
}

#tab_description ol, #tab_description ul, #accordion_product_info ul, #accordion_product_info ul {
    display: block;
    margin: 0px 0 0 22px
}

#filter {
    float: right;
}

#startimg {
    margin-left: 15px;
}

div.floatbox {
    overflow: hidden
}

div.hrline {
    background: url(img/borderline.gif) repeat-x scroll left center transparent;
    height: 10px;
}

div.hrlightgrey {
    padding-top: 1px;
    height: 0;
    overflow: hidden;
    line-height: 0;
    background-color: #ccc;
    margin: 0
}

div.hrproductpreview {
    padding-top: 1px;
    overflow: hidden;
    height: 1px;
    line-height: 1px;
    display: block;
    background: #ccc;
    margin: 12px 0
}

table td {
    padding: 2px
}

.manudropdown {
    width: 170px;
}

.qbuy {
    margin-top: 5px;
}

.arrow {
    color: #888;
    vertical-align: 1px;
    margin-right: 13px;
    font-weight: 800;
}

.selected .arrow {
    color: #333333;
}

img.imgLeft {
    float: left;
    position: relative;
    margin: 2px 10px 2px 0
}

img.imgRight {
    float: right;
    position: relative;
    margin: 2px 0 2px 10px
}

input[type=button], input[type=submit] {
    border: 0
}

input[type=radio], input[type=checkbox], .vm, .addtobasket #quantity, .addtobasket img {
    vertical-align: middle
}

#product-info .productimage {
    box-shadow: 0 0 5px #999;
    margin: 0 20px
}

.vt, body.popupprintorder .products .quantity, body.popupprintorder .productname, body.popupprintorder .model, body.popupprintorder .singleprice, body.popupprintorder .totalprice, table.shippingblock tr td, table.accounthistoryinfoorderdetails tr td {
    vertical-align: top
}

* html .vt, * + html .vt {
    margin-top: 1px
}

#vvcode {
    padding: 3px;
    border: 1px solid #B9B9B9;
    max-width: 236px;
    margin-bottom: 3px;
}

/********************************************
   PRICE
*******************************************/
#price-product-info {
    font-size: 18px;
}

#price-product-info small {
    font-size: 14px;
}

#price-product-info .productOldPrice {
    font-size: 14px;
}

.price-product-info {
    font-size: 18px !important;
}

.price-product-info small {
    font-size: 14px !important;
}

.price-product-info .productOldPrice {
    font-size: 14px !important;
}

.single-price {
    font-size: 15px;
    font-weight: 800;
}

.unit-price {
}

.unit-price small {
}

.special-price {
    font-size: 13px;
    font-weight: 800;
}

.special-price small {
    display: block;
    font-weight: 500;
    letter-spacing: 0;
}

.special-price .productOldPrice {
    font-size: 11px;
    font-weight: 500;
    color: red
}

.special-price .productOldPrice del {
    text-decoration: none;
}

.special-price .productOldPrice * {
    display: inline;
    font-size: 11px;
}

.uvp-price .productOldPrice {
    font-size: 75%;
}

.vpe {
    font-weight: normal;
}

.list .vpe {
    padding: 0 10px;
}

.taxandshippinginfo {
    color: #828282;
    font-size: 10px;
    font-weight: 600;
    margin: 0 0 4px;
}

.taxandshippinginfo a {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    outline: none
}

.shippingtime {
    color: #828282;
    font-size: 10px;
    font-weight: 600;
    margin: 0;
}

/********************************************
   FOOTER
*******************************************/
#footer {
}

#footer-line {
    height: 100px;
    box-shadow: 0 3px 5px 0 rgba(100, 100, 100, 0.1);
    padding: 25px 11px 40px;
    background: #EDEDED;
}

.f-content {
    margin: 0 auto;
    width: 990px;
    box-shadow: 0 5px 5px 0 #555555;
}

#f-left {
    width: 570px;
    float: left;
}

#f-right {
    width: 420px;
    float: left;
}

#f-left .box {
    width: 550px;
    margin-bottom: 13px;
    background: none;
    border: 0;
    overflow: hidden;
}

#f-left .box-head {
    width: 550px;
    height: 25px;
    line-height: 25px;
    background: none;
    border: 0;
}

#f-right .box {
    width: 420px;
    margin-bottom: 13px;
    background: none;
    border: 0;
    overflow: hidden;
}

#f-right .box-head {
    width: 420px;
    height: 25px;
    line-height: 25px;
    background: none;
    border: 0;
}

#footer-content {
}

#footer-content .f-content {
    padding-top: 12px;
    background: #fff;
}

#b-newsletter .box-head {
    font-size: 17px;
}

#newsletter {
    background: url("img/newsletter.gif") no-repeat scroll 7px 7px #FFFFFF;
    border: 1px solid #CCCCCC;
    display: inline;
    float: left;
    height: 21px;
    margin-right: 11px;
    padding: 6px 6px 6px 50px;
    position: relative;
    width: 324px;
}

#b-newsletter .primary-button {
    margin-top: 4px;
}

#b-social a {
    display: block;
    float: left;
    margin: 9px 10px;
}

#b-social a img:hover {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); /* alle neuen Browser, W3C Standard */
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); /* Firefox - alte Syntax */
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); /* Safari, Chrome - alte Syntax */
}

#footer-content .box {
    width: 220px;
    float: left;
    height: 250px;
    margin-bottom: 13px;
    background: none;
    border: 0;
    border-right: 1px solid #ccc;
    overflow: hidden;
}

#footer-content .box-head {
    width: 185px;
    height: 25px;
    line-height: 25px;
    background: none;
    border: 0;
}

.parseTime {
    display: block;
    margin: auto;
    text-align: center;
    font-size: 9px;
    color: #888;
    padding: 0 0 10px 0;
    font-family: Arial, sans-serif
}

.footer {
    clear: both;
    margin: 0 auto;
    height: 17px;
    text-align: center;
    font-size: 11px;
    color: #888;
    padding: 5px 0;
    border-top: 1px solid #ccc;
}

.footer a {
    color: #888;
    text-decoration: none;
    outline: none
}

#footer .payment {
    margin: 20px 20px 10px;
}

#footer .content_links {
    margin: 0 20px 10px;
    border-bottom: 1px solid #ccc;
    display: block;
}

#footer a {
    padding-left: 0;
}

#footer li {
    height: 20px;
    float: left;
    width: 203px;
    padding-bottom: 7px;
}

#footer li a {
    background: none;
    text-indent: 4px;
    list-style: none;
    margin-left: 0;
    padding: 0;
    display: block;
}

#b-main {
    width: 340px !important;
    margin-left: 15px;
}

#b-secandpay {
    width: 190px !important;
    border: 0 !important;
}

#trusted-shops {
    width: 160px;
    display: block;
    text-align: center;
}

.copyright {
    width: 800px;
    text-align: center;
    color: #888;
    font-size: 11px;
    height: 12px;
    overflow: hidden;
    margin: 15px auto 0 auto;
    padding: 0 0 8px
}

.copyright a {
    color: #888;
}

/********************************************
   OTHER
*******************************************/
/* sitemap */
.sitemapwrap {
    position: relative;
    left: -10px;
    width: 550px;
}

.sitemapwrap .sitemapleft {
    background-color: #f8f8f8;
    border: #ccc 1px solid;
    display: table;
    float: left;
    width: 250px;
    margin-bottom: 15px;
    margin: 10px;
}

.sitemapheader {
    color: #fff;
    font-weight: 700;
    padding: 3px
}

.sitemapheader a:link, .sitemapheader a:visited, .sitemapheader a:hover {
    color: #fff;
    text-decoration: none;
    outline: none
}

.sitemapcontent {
    padding: 6px
}

/* messages */
.errormessage {
    background-color: #EBEBEB;
    border: 1px solid red;
    margin-bottom: 10px;
    padding: 5px;
}

.messageStackSuccess {
    background-color: #6F6;
    padding: 4px
}

/* breadcrump */
#breadcrumb {
    clear: both;
    height: 26px;
    font-size: 12px;
    overflow: hidden;
    position: relative;
    background: url("img/box_bg.jpg") repeat-x #fff;
    border: 1px solid #C8C8C8;
    line-height: 26px;
    margin-bottom: 10px;
    padding-left: 10px;
}

#breadcrumb a:link, #breadcrumb a:visited {
    line-height: 24px;
    font-size: 12px;
    text-decoration: none;
    outline: none;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    margin: 0;
    z-index: 100;
}

/* reviews */
textarea#review {
    width: 95%
}

#reviewlist {
    background-color: #f8f8f8;
    border: #ccc solid;
    border-width: 0 1px 1px
}

#reviewlist tr td {
    white-space: nowrap;
    padding: 4px
}

/********************************************
   FANCYBOX
*******************************************/
#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(javascript/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: 0;
    display: none
}

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

#fancybox-content {
    width: 0;
    height: 0;
    padding: 0;
    outline: 0;
    position: relative;
    overflow: hidden;
    z-index: 1102;
    border: 0 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(javascript/fancybox/fancybox.png) -40px 0;
    cursor: pointer;
    z-index: 1103;
    display: none
}

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

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

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

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

#fancybox-left {
    left: 0
}

#fancybox-right {
    right: 0
}

#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(javascript/fancybox/fancybox.png);
    background-position: -40px -30px
}

#fancybox-right-ico {
    background-image: url(javascript/fancybox/fancybox.png);
    background-position: -40px -60px
}

#fancybox-left:hover, #fancybox-right:hover {
    visibility: visible
}

#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(javascript/fancybox/fancybox-x.png)
}

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

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

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

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

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

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

#fancybox-bg-nw {
    top: -20px;
    left: -20px;
    background-image: url(javascript/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('javascript/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('javascript/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('javascript/fancybox/fancybox-x.png') 0px -40px;
}

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

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

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

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

.fancybox-ie6 #fancybox-title-over {
    background: transparent;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_over.png', sizingMethod='scale');
    zoom: 1;
}

.fancybox-ie6 #fancybox-title-float-left {
    background: transparent;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_left.png', sizingMethod='scale');
}

.fancybox-ie6 #fancybox-title-float-main {
    background: transparent;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_main.png', sizingMethod='scale');
}

.fancybox-ie6 #fancybox-title-float-right {
    background: transparent;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='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='fancybox/fancy_loading.png', sizingMethod='scale');
}

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

.fancybox-ie #fancybox-bg-n {
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_n.png', sizingMethod='scale');
}

.fancybox-ie #fancybox-bg-ne {
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_ne.png', sizingMethod='scale');
}

.fancybox-ie #fancybox-bg-e {
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_e.png', sizingMethod='scale');
}

.fancybox-ie #fancybox-bg-se {
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_se.png', sizingMethod='scale');
}

.fancybox-ie #fancybox-bg-s {
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_s.png', sizingMethod='scale');
}

.fancybox-ie #fancybox-bg-sw {
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_sw.png', sizingMethod='scale');
}

.fancybox-ie #fancybox-bg-w {
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_w.png', sizingMethod='scale');
}

.fancybox-ie #fancybox-bg-nw {
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_nw.png', sizingMethod='scale');
}


/********************************************
   NIVOSLIDER
*******************************************/
.nivoSlider {
    position: relative
}

.nivoSlider a.nivo-imageLink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 60;
    display: none;
    margin: 0;
    padding: 0
}

.nivo-slice {
    display: block;
    position: absolute;
    z-index: 50;
    height: 100%
}

.nivo-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #000;
    color: #fff;
    opacity: 0.8;
    width: 100%;
    z-index: 89
}

.nivo-caption p {
    margin: 0;
    padding: 5px
}

.nivo-caption a {
    display: inline !important
}

.nivo-html-caption {
    display: none
}

.nivo-directionNav a {
    position: absolute;
    top: 43%;
    z-index: 99;
    cursor: pointer;
    display: block;
    width: 30px;
    height: 30px;
    background: url(img/arrows.png) no-repeat;
    text-indent: -9999px;
    border: 0
}

.nivo-controlNav a {
    position: relative;
    z-index: 99;
    cursor: pointer
}

#slider {
    position: relative;
    width: 760px;
    height: 250px;
    background: url(img/ajaxLoader.gif) no-repeat 50% 50%;
    overflow: hidden;
    margin-bottom: 11px;
}

#slider a {
    border: 0;
    display: block
}

a.nivo-nextNav {
    background-position: -30px 0;
    right: 15px
}

a.nivo-prevNav {
    left: 15px
}

.imagebox_content .right {
    margin-left: 10px;
}


/********************************************
   CSS3 BUTTONS
*******************************************/
.primary-button, .primary-button:visited {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-decoration: none !important;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.4);
    padding: 6px 12px 7px;
    text-align: center;
    background: #4c6b86;
    background: -moz-linear-gradient(top, #4c6b86 0%, #4c6b86 50%, #355777 50%, #355777 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c6b86), color-stop(50%, #4c6b86), color-stop(50%, #355777), color-stop(100%, #355777)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #4c6b86 0%, #4c6b86 50%, #355777 50%, #355777 100%);
    background: -o-linear-gradient(top, #4c6b86 0%, #4c6b86 50%, #355777 50%, #355777 100%);
    background: -ms-linear-gradient(top, #4c6b86 0%, #4c6b86 50%, #355777 50%, #355777 100%);
    background: linear-gradient(top, #4c6b86 0%, #4c6b86 50%, #355777 50%, #355777 100%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    -ms-box-shadow: 0 1px 5px rgba(0, 0, 0.4);
    -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    border: 1px solid #243947;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.primary-button:hover {
    background: #415b71;
    background: -moz-linear-gradient(top, #415b71 0%, #415b71 50%, #2d4a65 50%, #2d4a65 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #415b71), color-stop(50%, #415b71), color-stop(50%, #2d4a65), color-stop(100%, #2d4a65));
    background: -webkit-linear-gradient(top, #415b71 0%, #415b71 50%, #2d4a65 50%, #2d4a65 100%);
    background: -o-linear-gradient(top, #415b71 0%, #415b71 50%, #2d4a65 50%, #2d4a65 100%);
    background: -ms-linear-gradient(top, #415b71 0%, #415b71 50%, #2d4a65 50%, #2d4a65 100%);
    background: linear-gradient(top, #415b71 0%, #415b71 50%, #2d4a65 50%, #2d4a65 100%);
    border: 1px solid #1f313d;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0.5);
    -ms-box-shadow: 0 1px 5px rgba(0, 0, 0.5);
    -o-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.primary-button:active {
    background: #4c6b86;
    -webkit-box-shadow: inset 0 0 7px 2px #2a3c53, 0 1px 0 0 #eeeeee;
    -moz-box-shadow: inset 0 0 7px 2px #2a3c53, 0 1px 0 0 #eeeeee;
    -ms-box-shadow: inset 0 0 7px 2px #2a3c53, 0 1px 0 0 #eeeeee;
    -o-box-shadow: inset 0 0 7px 2px #2a3c53, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 7px 2px #2a3c53, 0 1px 0 0 #eeeeee;
    border: 1px solid #1f313d;
}

.btn-default, .btn-default:visited {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-indent: 0 !important;
    text-decoration: none !important;
    padding: 6px 12px 7px;
    text-align: center;
    color: #606060;
    border: solid 1px #ccc;
    background: #fff;
    background: -moz-linear-gradient(top, #fff, #ededed);
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
    background: -o-linear-gradient(top, #fff, #ededed);
    background: -ms-linear-gradient(top, #fff, #ededed);
    background: linear-gradient(top, #fff, #ededed);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 1px 2px rgba(0, 0, 0.15);
    -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.btn-default:hover {
    color: #606060;
    border: solid 1px #b7b7b7;
    background: #ededed;
    background: -moz-linear-gradient(top, #fff, #dcdcdc);
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
    background: -o-linear-gradient(top, #fff, #dcdcdc);
    background: -ms-linear-gradient(top, #fff, #dcdcdc);
    background: linear-gradient(top, #fff, #dcdcdc);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0.4);
    -ms-box-shadow: 0 1px 5px rgba(0, 0, 0.4);
    -o-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.btn-default:active {
    background: #ccc;
    background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
    background: -moz-linear-gradient(top, #ededed, #fff);
    background: -o-linear-gradient(top, #ededed, #fff);
    background: -ms-linear-gradient(top, #ededed, #fff);
    background: linear-gradient(top, #ededed, #fff);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 1px 2px rgba(0, 0, 0.15);
    -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

a.btn-default {
    position: relative;
    top: 1px;
    padding: 8px 12px 7px;
}

.btn-small {
    font-size: 12px;
    padding: .4em 1.5em .42em !important;
}

/********************************************
   BROWSER HACKS
*******************************************/
/* SAFARI */
html:not([dummy]) button.btn-default {
    padding: 7px 12px 8px;
}

/* */

/********************************************
   ADMINMENU
*******************************************/
#admin-menu {
    position: fixed;
    right: 0;
    top: 200px;
    width: 200px;
    z-index: 999999;
    background: #ccc;
    height: auto;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .73), 0px 0px 18px 0px rgba(0, 0, 0, .13);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .73), 0px 0px 18px 0px rgba(0, 0, 0, .13);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, .73), 0px 0px 18px 0px rgba(0, 0, 0, .13);
}

.am-hidden {
    right: -202px !important;
}

.am-hidden li b {
    left: -35px !important;
}

#admin-menu > li i {
    background: #48515c;
    line-height: 1em;
    height: 1em;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, .5);
    padding: 0.4em 0.8em 0.4em 0.6em;
    margin: -.8em 10px 0 0;
    color: #fff;
    text-align: center;
    -webkit-border-radius: .769em;
    -moz-border-radius: .769em;
    border-radius: .769em;
    cursor: pointer;
}

#admin-menu > li b {
    position: relative;
    left: 0;
    background-color: #616975;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(114, 122, 134)), to(rgb(80, 88, 100)));
    background-image: -webkit-linear-gradient(top, rgb(114, 122, 134), rgb(80, 88, 100));
    background-image: -moz-linear-gradient(top, rgb(114, 122, 134), rgb(80, 88, 100));
    background-image: -o-linear-gradient(top, rgb(114, 122, 134), rgb(80, 88, 100));
    background-image: -ms-linear-gradient(top, rgb(114, 122, 134), rgb(80, 88, 100));
    background-image: linear-gradient(top, rgb(114, 122, 134), rgb(80, 88, 100));
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#727a86', EndColorStr='#505864');
    border-bottom: 1px solid #33373d;
    -webkit-box-shadow: inset 0px 1px 0px 0px #878e98;
    -moz-box-shadow: inset 0px 1px 0px 0px #878e98;
    box-shadow: inset 0px 1px 0px 0px #878e98;
    width: 220px;
    height: 2.75em;
    display: block;
    text-indent: 5px;
    position: relative;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #fff;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, .5);
}

#admin-menu li {
    background: #fff;
    border-bottom: 1px solid #efeff0;
    width: 100%;
    line-height: 2.75em;
    text-indent: 1.45em;
    display: block;
    position: relative;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.923em;
    font-weight: 400;
    color: #878d95;
}

#admin-menu > li:hover {
    background-color: #fcfcfc;
}

#admin-menu > li > span {
    font-size: 0.857em;
    display: inline-block;
    position: absolute;
    right: 1em;
    top: 50%;
    background: #48515c;
    line-height: 1em;
    height: 1em;
    padding: .4em .6em;
    margin: -.8em 0 0 0;
    color: #fff;
    text-indent: 0;
    text-align: center;
    -webkit-border-radius: .769em;
    -moz-border-radius: .769em;
    border-radius: .769em;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, .26), 0px 1px 0px 0px rgba(255, 255, 255, .15);
    -moz-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, .26), 0px 1px 0px 0px rgba(255, 255, 255, .15);
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, .26), 0px 1px 0px 0px rgba(255, 255, 255, .15);
    text-shadow: 0px 1px 0px rgba(0, 0, 0, .5);
    font-weight: 500;
}

#admin-menu > li:hover span {
    background: #2173a1;
}

#admin-menu > li > ul li:hover a,
#admin-menu > li > ul li:hover a span,
#admin-menu > li > ul li:hover a:before {
    color: #32373D;
}

#admin-menu ul > li span {
    font-size: 0.857em;
    display: inline-block;
    position: absolute;
    right: 1em;
    top: 50%;
/ background: #fff;
    border: 1px solid #d0d0d3;
    line-height: 1em;
    height: 1em;
    padding: .4em .7em;
    margin: -.9em 0 0 0;
    color: #878d95;
    text-indent: 0;
    text-align: center;
    -webkit-border-radius: .769em;
    -moz-border-radius: 769em;
    border-radius: 769em;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, .01));
}

#admin-menu .btn-default {
    margin: 5px 0 10px 8px;
}

#admin-menu .btn-edit-product {
    margin: 5px 0 0 15px;
    width: 140px;
}

#admin-menu .btn-admin-login {
    margin-left: 15px;
}

.style-text {
    color: #c6192b;
    text-shadow: 0 1px 0 #fff;
}

.style-text a {
    color: #c6192b;
}

.style-border:hover {
    border: 1px solid #c6192b !important;
    box-shadow: 0 0 3px #c6192b !important;
}

.style-border-only {
    border: 1px solid #c6192b;
    border-color: #c6192b !important;
    box-shadow: 0 0 3px #c6192b;
}

div.hr {
    background-color: #c6192b;
}

.style {
    color: #fff;
    background: #c6192b; /* Old browsers */
    background: -moz-linear-gradient(top, #c6192b 0%, #76161b 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c6192b), color-stop(100%, #76161b)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #c6192b 0%, #76161b 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #c6192b 0%, #76161b 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #c6192b 0%, #76161b 100%); /* IE10+ */
    background: linear-gradient(to bottom, #c6192b 0%, #76161b 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c6192b', endColorstr='#76161b', GradientType=0); /* IE6-9 */
}

.style a {
    color: #fff;
}

.style a:hover {
    background: #c6192b; /* Old browsers */
    background: -moz-linear-gradient(top, #c6192b 0%, #76161b 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c6192b), color-stop(100%, #76161b)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #c6192b 0%, #76161b 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #c6192b 0%, #76161b 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #c6192b 0%, #76161b 100%); /* IE10+ */
    background: linear-gradient(to bottom, #c6192b 0%, #76161b 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c6192b', endColorstr='#76161b', GradientType=0); /* IE6-9 */
}

/*address block */
div#address_block div.address {
    width: 260px;
    float: left;
    height: 140px;
    padding: 5px;
    margin: 0 15px 15px 0;
    border: solid 1px #a3a3a3;
    background: #F8F8F8;
}

div#address_block input {
    vertical-align: middle;
}

ol#address_block li {
    margin-bottom: 10px;
}

/*new checkout*/
div.checkout_infos {
    width: 940px;
    border: 0px solid red;
}

div.checkout_infos h2 {
    font-family: Arial, Sans-serif;
    color: #333;
    font-weight: bold;
    font-size: 15px;
    margin: 0px;
    float: left;
}

div.checkout_infos a {
    font-style: italic;
    color: #009933;
}

div.checkout_infos div.text, p.text {
    margin-top: 0px;
}

div#address_block div.address {
    width: 260px;
    float: left;
    height: 140px;
    padding: 5px;
    margin: 0 15px 15px 0;
    border: solid 1px #a3a3a3;
    background: #F8F8F8;
}

div#address_block input {
    vertical-align: middle;
}

div.checkoutInfoBoxes {
    width: 435px;
    border: 0px solid #a3a3a3;
    padding: 5px;
    margin-right: 20px;
    float: left;
}

div.checkoutInfoBoxes a.more_info {
    color: red !important;
}

div.checkoutNavBoxes {
    width: 328px;
    height: 125px;
    border: 1px solid #EAEAEA; /*background:#F8F8F8;*/
    padding: 5px;
    margin: 0 10px;
    float: left;
    height: 120px;
}

div.checkoutNav2Boxes {
    width: 328px;
    height: 125px;
    border: 1px solid #EAEAEA;
    padding: 5px;
    margin: 0 10px;
    min-height: 70px;
    float: left;
}

div.checkoutNav2Boxes p, div.checkoutNavBoxes p {
    clear: both;
    padding: 0 15px;
}

div.checkoutNav2Boxes h2, div.checkoutNavBoxes h2 {
    margin-top: 0;
}

#checkout_confirmation {
    height: 40px;
}

#checkout_confirmation button {
    margin: 0;
}

div.checkoutbox {
    width: 770px;
    margin: 0 auto;
    border: 2px solid #999 !important;
    background: #ffffc5 /*#E3F4DA*/ !important; /*diese Farbe muss sich erheblich abheben*/
}

div.checkoutbox .image {
    max-width: 80px;
}

div.checkoutbox td.main_row {
    border-top: 1px solid #666;
}

div.checkoutbox div.hr {
    border: none;
    border-top: 1px solid #666;
    color: #ffffc5; /*wie hintergrundfarbe*/
    background-color: #ffffc5; /*wie hintergrundfarbe*/
    height: 1px;
}

div.checkoutbox .details {
    padding: 0 12px 0 0;
    color: #000;
    font-weight: bold;
}

div.checkoutbox .total table td {
    padding: 0px;
}

div.checkoutbox .small {
    font-size: 11px;
}


/********************************************
   SpD modification
*******************************************/

table.account_history {
    margin: 0;
    padding: 0;
}

table.account_history tr {
    margin: 0;
    padding: 0;
}

table.account_history tr td {
    margin: 0;
    padding: 2px 0 2px 0;
    min-width: 100px;
}

.topnavigation a {
    display: inline;
    background: none;
}

.topnavigation a:hover {
    display: inline;
    background: none;
}

.topmenu a {
    display: block;
}

.headerNavigation {
    display: inline;
}

fb-like {
}

.spd_products_info_left_col {
    /*float: left;*/
    margin-bottom: 10px;
}

.spd_products_info_right_col {
    /*float: right;*/
}

.left_col {
    float: left;
}

.right_col {
    float: right;
}


/* *** Navigation Bar *** */

.spd_navigation_bar, .productnavigator {
    clear: both;
    width: 739px;
    border: #CCCCCC 1px solid;
    line-height: 30px;
    background-color: #FFFFFF;
    padding: 5px 10px;
    font-size: 15px;
}

.spd_navigation_bar {
    margin: 25px 0 0 0;
}

.spd_navigation_bar .left {
    float: left;
    width: 37%;
    text-align: right;
    padding: 0 2% 0 0;
}

.spd_navigation_bar .middle {
    width: 20%;
    margin-left: 40%;
    text-align: center;
}

.spd_navigation_bar .right {
    float: right;
    width: 37%;
    text-align: left;
    padding: 0 0 0 2%;
}

.spd_navigation_bar a, .productnavigator a {
    font-weight: 700;
    letter-spacing: 3px;
}

.spd_navigation_bar .inactive, .productnavigator .inactive {
    color: #CCCCCC;
    text-decoration: none;
}

.spd_navigation_bar .active:hover, .productnavigator .active:hover {
    color: #c6192b;
}

.spd_navigation_bar .prevpage {
}

.spd_navigation_bar .nextpage {
}

.spd_navigation_bar .pages {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0;
}

.spd_navigation_bar .active_page {
    font-weight: 600;
    font-size: 14px;
}


/* *** Navigation Count  *** */

.spd_navigation_count {
    margin: 10px 0 0 0;
    color: #999999;
    font-weight: 100;
    font-size: 10px;
    clear: both;
    text-align: left;
}


/* *** Product Navigator  *** */

.productnavigator {
    text-align: center;
    margin: 0;
}

.productnavigator .small {
    font-size: 10px;
    clear: both;
}

.productnavigator .navi {
    clear: both;
}

.productnavigator .navi div {
    display: inline;
    margin: 0 15px;
}

#search .vm {
    height: 21px;
    position: relative;
    bottom: 2px;
}


/* styles for popup content */
.popup-cont {
    background: #fff;
    margin: 0px;
}


#js_popup_container {
    font-size: 14px;
    min-width: 300px; /* Dialog will be no smaller than this */
    max-width: 610px; /* Dialog will wrap after this width */
    background: #FFF;
    border: solid 5px #d9d9d9;
    color: #000;
    border-radius: 5px;
}

#js_popup_title {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 2em;
    color: #fff;
    background: linear-gradient(to bottom, #c6192b 0%, #76161b 100%);
    border: solid 1px #FFF;
    cursor: default;
    padding: 0em;
    margin: 0em;
    height: 2em;
}

#js_popup_content {
    padding: 1em 1.75em;
    margin: 0em;
    background: #fff;
}

#js_popup_panel {
    text-align: center;
    margin: 1em 0em 0em 1em;
}

#js_popup_prompt {
    margin: .5em 0em;
}

.gift_cart {
    margin-top: 30px;
}

.btn, .btn:visited {
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-indent: 0 !important;
    text-decoration: none !important;
    padding: 6px 12px 7px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.btn:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.btn:active {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-danger {
    color: #fff;
    border: solid 1px #c6192b;
    background: linear-gradient(to bottom, #c6192b 10%, #76161b 100%)
}

.btn-primary {
    color: #fff;
    border: solid 1px #c6192b;
    background: linear-gradient(to bottom, #c6192b 30%, #76161b 100%)
}
