
/*
        Variable Grid System.
        Learn more ~ http://www.spry-soft.com/grids/
        Based on 960 Grid System - http://960.gs/

        Licensed under GPL and MIT.
*/

/*
  Forces backgrounds to span full width,
  even if there is horizontal scrolling.
  Increase this if your layout is wider.

  Note: IE6 works fine without this fix.
*/

body {
    min-width: 1044px;
}

/* Containers
----------------------------------------------------------------------------------------------------*/
.container_12 {
    margin-left: auto;
    margin-right: auto;
    width: 1044px;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/


.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
    display:inline;
    float: left;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}



.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11,
.push_12, .pull_12 {
    position:relative;
}


/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
    margin-left: 0;
}

.omega {
    margin-right: 0;
}

/* Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .grid_1 {
    width:67px;
}

.container_12 .grid_2 {
    width:154px;
}

.container_12 .grid_3 {
    width:241px;
}

.container_12 .grid_4 {
    width:328px;
}

.container_12 .grid_5 {
    width:415px;
}

.container_12 .grid_6 {
    width:502px;
}

.container_12 .grid_7 {
    width:589px;
}

.container_12 .grid_8 {
    width:676px;
}

.container_12 .grid_9 {
    width:763px;
}

.container_12 .grid_10 {
    width:850px;
}

.container_12 .grid_11 {
    width:937px;
}

.container_12 .grid_12 {
    width:1024px;
}




/* Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .prefix_1 {
    padding-left:87px;
}

.container_12 .prefix_2 {
    padding-left:174px;
}

.container_12 .prefix_3 {
    padding-left:261px;
}

.container_12 .prefix_4 {
    padding-left:348px;
}

.container_12 .prefix_5 {
    padding-left:435px;
}

.container_12 .prefix_6 {
    padding-left:522px;
}

.container_12 .prefix_7 {
    padding-left:609px;
}

.container_12 .prefix_8 {
    padding-left:696px;
}

.container_12 .prefix_9 {
    padding-left:783px;
}

.container_12 .prefix_10 {
    padding-left:870px;
}

.container_12 .prefix_11 {
    padding-left:957px;
}



/* Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .suffix_1 {
    padding-right:87px;
}

.container_12 .suffix_2 {
    padding-right:174px;
}

.container_12 .suffix_3 {
    padding-right:261px;
}

.container_12 .suffix_4 {
    padding-right:348px;
}

.container_12 .suffix_5 {
    padding-right:435px;
}

.container_12 .suffix_6 {
    padding-right:522px;
}

.container_12 .suffix_7 {
    padding-right:609px;
}

.container_12 .suffix_8 {
    padding-right:696px;
}

.container_12 .suffix_9 {
    padding-right:783px;
}

.container_12 .suffix_10 {
    padding-right:870px;
}

.container_12 .suffix_11 {
    padding-right:957px;
}



/* Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .push_1 {
    left:87px;
}

.container_12 .push_2 {
    left:174px;
}

.container_12 .push_3 {
    left:261px;
}

.container_12 .push_4 {
    left:348px;
}

.container_12 .push_5 {
    left:435px;
}

.container_12 .push_6 {
    left:522px;
}

.container_12 .push_7 {
    left:609px;
}

.container_12 .push_8 {
    left:696px;
}

.container_12 .push_9 {
    left:783px;
}

.container_12 .push_10 {
    left:870px;
}

.container_12 .push_11 {
    left:957px;
}



/* Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/


.container_12 .pull_1 {
    left:-87px;
}

.container_12 .pull_2 {
    left:-174px;
}

.container_12 .pull_3 {
    left:-261px;
}

.container_12 .pull_4 {
    left:-348px;
}

.container_12 .pull_5 {
    left:-435px;
}

.container_12 .pull_6 {
    left:-522px;
}

.container_12 .pull_7 {
    left:-609px;
}

.container_12 .pull_8 {
    left:-696px;
}

.container_12 .pull_9 {
    left:-783px;
}

.container_12 .pull_10 {
    left:-870px;
}

.container_12 .pull_11 {
    left:-957px;
}




/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix {
    zoom: 1;
}


/* ****************************************************************************
      reset
**************************************************************************** */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0}
table{border-collapse:collapse;border-spacing:0}
fieldset,img{border:0}
/*address,caption,cite,code,dfn,em,th,var,optgroup{font-style:inherit;font-weight:inherit}*/
del,ins{text-decoration:none}
caption,th{text-align:left}
h1,h2,h3,h4,h5,h6{font-size:100%}
q:before,q:after{content:''}
abbr,acronym{border:0;font-variant:normal}
sup{vertical-align:baseline}
sub{vertical-align:baseline}
legend{color:#000}
input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit}
input,button,textarea,select{font-size:100%}
a {cursor:pointer}

.clearfix:before, .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden
}
.clearfix:after {clear: both}
.clearfix {zoom: 1}




/* ****************************************************************************
      rte editorial
**************************************************************************** */

.rte ul, rte ol{
    margin: 10px 0 20px 20px;
}
.rte li{
    margin: 5px auto;
}

/* ************************************************************************************************
      struture
************************************************************************************************ */
#page {}
#header {}
#columns {
    background-color: #000;
    background-color: rgba(0,0,0,0.74);
    position: relative;
}
.border_columns{
    content:" ";
    width: 1px;
    background-color:#222;
    background-color:rgba(255,255,255,0.1);
    position: absolute;
    top:0;
    bottom:0;
    right:0;
    left:251px;
}


#center_column {
    margin-top:20px;
    margin-bottom:20px;
}
.center_column_inside{
    /*    margin-left:20px;*/
}
#footer,#footer_end {
    background-color: #000;
}
.block.myaccount{
    margin-top: 30px;
}

/* ************************************************************************************************
      generic style
************************************************************************************************ */
html, body{
    background:#232323 url("../images/patern.jpg") repeat center 1024px;
}
body{
    font:12px/18px Helvetica, Arial,Verdana,sans-serif;
    color:#fff;
    background:#232323 url("../images/patern.jpg") repeat center 1024px;
    background:url("../images/default.jpg") repeat-x center top, #232323 url("../images/patern.jpg") repeat center 1024px;
    padding-bottom:30px;
}
body#cms{
    background:#232323 url("../images/patern.jpg");
}
body.category_212{
    background-image:url("../images/bijoux.jpg"), url("../images/patern.jpg");
}
body.category_211{
    background-image:url("../images/montres.jpg"), url("../images/patern.jpg");
}
body.category_213{
    background-image:url("../images/reveils.jpg"), url("../images/patern.jpg");
}




/* containers ****************************************************************************** */

#languages_block_bottom{
    width:50%;
    float:left;
}

/* positionnement ****************************************************************************** */
.hidden {display:none}
.f_right {float:right}
.f_left {float:left}
.inline_list li{
    float:left;
    list-style:none;
}

/* icones ****************************************************************************** */
.icon.th_medium i {
    width: 20px;
    height: 20px;
}
.icon{
    display:inline-block;
    line-height:24px;
    /*    white-space:nowrap;*/
}
.icon a, a.icon, .icon a:active, a:active.icon, .icon a:hover, a:hover.icon{
    text-decoration:none !important;
}
.icon i, label.icon, i.icon,input.icon, div.star{
    display:inline-block;
    overflow:hidden;
    width:24px;
    height:24px;
    text-indent:-9999px;
    background-image:url("../images/icons_v2.9.png");
    background-repeat:no-repeat;
    vertical-align: middle;
    margin-right:5px;
}
.icon.th_ultra i, i.icon.th_ultra {
    width:56px;
    height:56px;
}
.icon.th_ultra{
    line-height:56px;
}
.icon.th_big{
    line-height:40px;
}
.icon.th_big i, i.icon.th_big{
    width:40px;
    height:40px;
}

.button.icon i{
    margin-right:5px;
}
.icon.icon_last_quantities, .icon .icon_last_quantities{
    background-position: -225px 0;
}
.icon.icon_available, .icon .icon_available{
    background-position: -75px 0;
}
.icon.icon_unavailable, .icon .icon_unavailable{
    background-position: -225px 0;
}
.availability_product{
    font-weight: bold;
}
.availability_product .icon{
    margin: 0px 5px -8px 0;
}

i.icon_video{
    background-position: 0 -317px;
    width:100px;
    height:100px;
    margin:0;
}

/* medium */
i.icon_folder{
    background-position: -204px -123px;
}


/* normal */
i.icon_pdf{
    background-position: -1050px 0px;
}
i.icon_delete{
    background-position: -975px 0px;
}
i.icon_open_layered, i.icon_close_layered{
    background-position: -277px 0px;
}
i.icon_close{
    background-position: -875px 0px;
}
i.icon_open{
    background-position: -825px 0px;
}
.icon a:hover i.icon_close{
    background-position:-900px 0px;
}
.icon a:hover i.icon_open{
    background-position:-850px 0px;
}
i.icon_search{
    background-position:-25px 0;
}
i.icon_search-white{
    background-position:-925px 0;
}
i.icon_home{
    background-position:0 0;
}
.icon_newsletter{
    background-position: -50px 0;
}
/* social */
i.icon_twitter{
  background-position: -1225px 0px;
}
i.icon_facebook{
  background-position: -1175px 0px;
}
i.icon_googleplus{
  background-position: -1200px 0px;
}
i.icon_pinterest{
  background-position: -1251px 0px;
}
/* big */
i.icon_cart{
    background-position:-41px -25px;
}
/* partners */
.partners .icon i{
    margin: 0;
}
.partners .icon {
    margin: 10px 25px;
}
.partners .icon:hover{
    opacity:0.5;
}

ul.partners{
    margin: 0;
    text-align: center
}
i.citizen{
    background-position:0 -215px;
}
i.seiko{
    background-position:-151px -215px;
}
i.kenneth-cole{
    background-position:-302px -215px;
}
i.una-storia{
    background-position:-453px -215px;
}
i.eden-park{
    background-position:-604px -215px;
}

i.pulsar{
    background-position:0 -266px;
}
i.lorus{
    background-position:-151px -266px;
}
i.smalto-timepieces{
    background-position:-302px -266px;
}
i.hot-diamonds{
    background-position:-453px -266px;
}
i.bellon{
    background-position:-604px -266px;
}
i.misaki{
    background-position:-755px -215px;
}
i.ceranity{
    background-position:-755px -266px;
}
i.issey-miyake{
    background-position:-906px -215px;
}
/* my account */
i.icon_personal_big{
    background-position:-517px -66px;
}
.icon a:hover i.icon_personal_big{
    background-position:-574px -66px;
}
i.icon_addresses_big{
    background-position:-401px -66px;
}
.icon a:hover i.icon_addresses_big{
    background-position:-458px -66px;
}
i.icon_hstory_big{
    background-position:-287px -66px;
}
.icon a:hover i.icon_hstory_big{
    background-position:-344px -66px;
}
i.icon_vouchers_big{
    background-position:-628px -66px;
}
.icon a:hover i.icon_vouchers_big{
    background-position:-685px -66px;
}
i.icon_slip_big{
    background-position:-408px -266px;
}
.icon a:hover i.icon_slip_big{
    background-position:-459px -266px;
}
i.icon_returns_big{
    background-position:-859px -66px;
}
.icon a:hover i.icon_returns_big{
    background-position:-916px -66px;
}
i.icon_clock_big{
    background-position:-969px -66px;
}
i.icon_phone_big{
    background-position:-1083px -66px;
}
i.icon_address_big{
    background-position:-1197px -66px;
}

i.icon_addresses{
    background-position:-425px 0;
}
.icon a:hover i.icon_addresses{
    background-position:-450px 0;
}
i.icon_personal{
    background-position:-475px 0;
}
.icon a:hover i.icon_personal{
    background-position:-500px 0;
}
i.icon_vouchers{
    background-position:-525px 0;
}
.icon a:hover i.icon_vouchers{
    background-position:-550px 0;
}
i.icon_slip{
    background-position:-210px 0;
}
.icon a:hover i.icon_slip{
    background-position:-231px 0;
}
i.icon_hstory{
    background-position:-375px 0;
}
.icon a:hover i.icon_hstory{
    background-position:-400px 0;
}
i.icon_returns{
    background-position:-625px 0;
}
.icon a:hover i.icon_returns{
    background-position:-650px 0;
}
i.icon_account{
    background-position:-325px 0;
}
.icon a:hover i.icon_account{
    background-position:-350px 0;
}
i.icon_logout{
    background-position:-675px 0;
}
.icon a:hover i.icon_logout{
    background-position:-700px 0;
}
i.icon_arrowrotate{
    background-position: -725px 0;
}
.icon a:hover i.icon_arrowrotate{
    background-position: -750px 0; 
}
i.icon_details{
    background-position: -775px 0;    
}
.icon a:hover i.icon_details{
    background-position: -800px 0;    
}



/* title *************************************************************************************** */
h1{
    font-family: Helvetica, Arial, "Lucida Grande";
    margin-bottom:20px;
    font-size:45px;
    color:#5892a2;
    font-weight:100;
    line-height: 45px;
}
h1 small{
    font-size:0.6em;
    color:#424242;
}
h2{
    font-size:18px;
    margin-top:30px;
    margin-bottom:10px;
}
h3{
    font-weight:normal;
    font-size:16px;
    margin-bottom:10px;
    line-height: 24px;
}
h4{
    font-size:14px;
    margin:10px 0 5px 0;
}
h4.diamond, .block h4.diamond{
    margin-left:56px;
    font-size:70px;
    text-transform: none;
    line-height:56px;
    font-weight: normal;
}
h4.diamond a, .block h4.diamond a{
    text-decoration: none;
    color:#5892a2;
}
h4.diamond:before, .block h4.diamond:before{
    display: block;
    content:"";
    position:absolute;
    display: block;
    width:56px;
    height:56px;
    left:0;
    background: url("../images/icons_v2.9.png") no-repeat transparent 0 -66px;
}
h5{
    font-size:12px;
    font-weight:normal;
}
h6{
    font-size:20px;
    font-weight:bold;
}


p{
    line-height:18px;
    margin: 10px 0;
}
/* text **************************************************************************************** */
.bold{
    font-weight: bold;
}

.align_center{
    text-align:center;
}
.align_left{
    text-align:left;
}
.align_right{
    text-align:right;
}
fieldset .warning, fieldset .error, fieldset .success{
    margin:10px 0;
}
.warning, .error, .success, .confirmation{
    margin:10px 0;
    padding:20px;
    font-size:16px;
}
.warning_inline{
    color:#cc9933;
}
.success_inline{
    color:#33cc00;
}
.success, .confirmation{
    background: #000;
    border:1px solid #33cc00;
    color:#33cc00;
    text-align:center;
}
.warning {
    background: #000;
    border:1px solid #cc9933;
    color:#cc9933;
    text-align:center;
}
.error {
    background: #000;
    border:1px solid #ff3333;
    color:#ff3333;
    text-align:left;
}
.error ol, .error ul{
    margin-left:40px;
    font-size:0.8em;
}
.error p.lnk {
    margin-top:20px;
    padding:0;
    font-size:11px
}

/* link **************************************************************************************** */
a{
    color:#fff;
    text-decoration:underline;
}

a:hover, a:active{
    text-decoration:none;
}

/*listes ************************************************************************************** */
ul.list_square{
    list-style-type: square;
    list-style-position: inside;
    margin:10px 0;
}

/*buttons ************************************************************************************** */
.button {
    position:relative;
    display:inline-block;
    height:auto;
    padding:3px 10px;
    cursor: pointer;
    text-transform:uppercase;
    font-size:12px;
    line-height:20px;
    text-decoration:none;
    color:#fff;
/*    border-width:1px;*/
    border-style:solid;
    border-color: transparent !important;
    background-color: #5892a2;
    text-align:center;
}
.button.large{
    width: 120px;
}
.button.big{
    padding:15px;
    font-size:20px;
}
.button.small{
    padding:2px 5px;
    text-transform:none;
}
.button:hover{
    color: #fff;
    color: rgba(255,255,255, 0.6);
    text-decoration: none !important;
    background-color: #75c2d7;
}
.button:active{
    color: #fff;
    color: rgba(255,255,255, 0.9);
    text-decoration: none !important;
    background-color: #75c2d7;
}

*:first-child+html input.button {
    border:none
}


.button_disabled, .button_large_disabled, .button_mini_disabled, .button_small_disabled, .exclusive_large_disabled, .disabled{
    opacity:0.6;
    cursor:default;
}
.button.disabled{
    opacity: 0.5;
    cursor: default;
    background: grey;
    border-color: gray;
    -webkit-box-shadow: 0 0;
    -moz-box-shadow: 0 0;
    box-shadow: 0 0;
    text-shadow: none;
    color: black;
}
.th_orange{
    background: #ffb619;
}
.th_orange:hover{
    background: #fcc925;
}
.th_orange:focus, .th_orange:active{
    background: #fcc925;
}
.th_purple{
    background: #7d5093;
}
.th_purple:hover{
    background: #a76eb9;
}
.th_purple:focus, .th_purple:active{
    background: #7d5093;
}

.th_black{
    background: #000;
}
.button.th_black:hover{
    background-color:#565656;
}
.th_black:hover{
    background: #000;
}
.th_black:focus, .th_black:active{
    background: #000;
}

.th_gray{
    background: #6d6d6d;
}
.th_gray:hover{
    background: #adadad;
    color:#f5f5f5;
}
.th_gray:focus, .th_gray:active{
    background: #9e9e9e;
}

.th_graylight{
    background: #e7e7e7;
    color:#000;
}
.th_graylight:hover{
    background: #6d6d6d;
    color:#000;
}
.th_graylight:focus, .th_graylight:active{
    background: #fefefe;
    color:#000;
}

/* form **************************************************************************************** */
.box_gradient{}
.box_gradient h2{
    font-size: 35px;
}

.std p{
    margin:5px 0;
}
.std .form_info{
    color:#9f9f9f;
    font-size:11px;
}
.std .lost_password{
    font-size:11px;
}
.std p.required {
    color:#fff;
}
.std .required sup, sup.required{
    color:#e40000;
    font-size:1.3em;
    line-height:0.9em;
}


.std p.radio span, 
.std p.checkbox span, 
.std p.text label, 
.std p.password label, 
.std p.select label,
.std span.label,
.std li label,
.std p.textarea label{
    vertical-align:top;
    display: inline-block;
    width: 210px;
    text-align: right;
    padding:5px;
    font-weight: bold;
}
.std p.radio label, .std p.checkbox label{
    float:none;
    padding-right:10px;
    width:auto;
}
.std p.submit, .std p.checkbox input {
    margin-left: 220px;
}

.std p.submit, p.cart_navigation{
    margin-top:10px;
    margin-bottom:20px;
}
.std input[type="text"]{
    width:290px;
}
.std input[type="password"]{
    width:120px;
}
.std textarea{
    width:380px;
    min-height:120px;
}
.std select{
    max-width:380px;
}
input[type="radio"], input[type="checkbox"]{
    margin:7px 5px 0;
}	
input[type="text"], input[type="password"], select, option, textarea{
    color:#fff;
    font-size:12px;
}
input[type="text"], input[type="password"], select, textarea{
    border:1px solid #fff;
    -webkit-border-radius:1px;
    -moz-border-radius:1px;
    border-radius:1px;
    padding:4px 5px;
    color:#000;
    font-size:12px;
    margin-right:5px;
}
input.error_form{
    border:1px solid #ff3333;
    color: #ff3333;
}
select{
    border: 1px solid #222;
    border: 1px solid rgba(255,255,255,0.17);
    background: #000;
    color: #fff;
}
select option{
    background: #000;
    color: #fff;
}
.sortPagiBar .select{
    /*  overflow: hidden;*/
    width: 130px;
    margin-right:25px;
}
.sortPagiBar select{}
.sortPagiBar select option{
    background: #000;
    color: #fff;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
fieldset, .fieldset{
    margin:20px 0;
    padding:10px;
    border:1px solid #222222;
    color:#fff;
}
form.std h3, .fieldset h3{
    font-weight:bold;
    color:#5892a2;
    margin:30px 0 20px;
    font-size:24px;

}
form.std h3:first-child, .fieldset h3:first-child{
    margin-top:0;
}
form.std h3.select, .fieldset h3.select{
    padding-top:3px;
    padding-bottom:2px;
}

form a{
    text-decoration:underline;
    text-transform:none;
    color:#5892a2;
}

.social_connect li{
    margin-right:5px;
    display:inline-block;
}


/* BLOCK .block ******************************************************************************** */
.block {
    margin-bottom:20px;
}
.block h4, h2{
    font-weight: bold;
    line-height: 30px;
    font-size: 20px;
    color: #5892a2;
}
h1 b, h2 b{
    color: #fff;
}

.block p{
    clear:both;
    margin:10px 0;
}
.block p a{
    color:#fff;
    font-size:14px;
    text-decoration:none;
}
.block p a:hover{
    color:#5892a2;
}
.block p a:after{
    content:" → ";
}
.block h4 a {color: #5892a2;text-decoration: none;}
.block ul {list-style-type:none}




/* zoom product *********************************************************************** */

#zoomproduct_block_home{
    float:left;
    height:400px;
    background-color:#fff;
    margin-left:20px;
}
#zoomproduct_block_home img{
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height:auto;
}
#zoomproduct_block_home .price{
    margin-bottom: 25px;
}
#zoomproduct_block_home .price .price-discount{
    margin-bottom: 5px;
    float:none;
}
#zoomproduct_block_home .product_title{
    font-size: 16px;
    line-height: 18px;
    white-space:normal;
    margin:0;
    max-height: 36px;
    overflow: hidden;
}
#zoomproduct_block_home .product_infos{
    text-align: center;
}
#zoomproduct_block_home .product_infos .button{
    
}


/* highlighted_product *********************************************************************** */
.highlighted_product{
    display:block;
    float:right;
    max-width:100%;
    width:400px;
    height:400px;
    margin-right:20px;
    border: 1px solid #222;
    border: 1px solid rgba(255, 255, 255, 0.17);
    line-height: 0;
}
.highlighted_product img{
    max-width: 100%;
    height:auto;
}

.highlighted_product.highlighted_product_small{
    float:left;
    width:360px;
    height:auto;
    margin-right: 15px;
    margin-bottom: 15px;
}
/* carousel *********************************************************************** */
.productcarousel{
    clear:both;
}

.sliderproductcarousel{
    /*    width:100%;*/
    width: 912px;
    margin:30px auto;
    position: relative;
}
.sliderproductcarousel .products li{
    margin:2px;
}

#center_column.grid_9 .sliderproductcarousel{
    width:690px;
}
#center_column.grid_9 .sliderproductcarousel .products li{
    width:220px;
    height:220px;
}
#center_column.grid_9 .sliderproductcarousel .product_image .layer{
    margin-bottom:-70px;
    height:120px;
}

#left_column .sliderproductcarousel{
    width:220px;
    height:auto;
    margin:20px 0;
}
#left_column .sliderproductcarousel .products li{
    margin:0;
}
.sliderproductcarousel .more_infos,#more_info_sheets .more_infos{
    margin-top:10px;
}
.sliderproductcarousel .more_infos a,#more_info_sheets .more_infos a{
    color:#666;
    text-decoration: none;
}
.sliderproductcarousel .more_infos a:after,#more_info_sheets .more_infos a:after{
    content: " →";
}
.sliderproductcarousel .more_infos a:hover,#more_info_sheets .more_infos a:hover{
    color:#fff;
}
.sliderproductcarousel .more_infos b{
    font-style:italic;
}


.prev_nav, .next_nav{
    position: absolute;
    background: url("../images/icons_v2.9.png") no-repeat;
    cursor: pointer;
    height: 50px;
    width: 50px;
    margin-top: -25px;
    top: 50%;
}

.prev_nav{
    background-position: 0 -123px;
    left: -40px;
}
.prev_nav:hover{
    background-position: -51px -123px;
}

.next_nav{
    background-position: -102px -123px;
    right: -40px;
}
.next_nav:hover{
    background-position: -153px -123px;
}

#left_column .prev_nav,
#left_column .next_nav{
    height: 24px;
    width: 24px;
    margin-top:-12px;
    background-color: #000;
    background-color: rgba(0,0,0,0.5);
}
#left_column .prev_nav{
    background-position: -175px 0;
    left:0;
}
#left_column .next_nav{
    background-position: -125px 0;
    right:0;
}


/* general *********************************************************************** */
.price {
    white-space: nowrap;
}
.free_shipping{
    color:#FFB619;
    text-transform: uppercase;
}
.products {
    clear:both;
    list-style:none;
}
.products .product_prices{
    text-align:center;
}
.products .product_infos{}
.block_button .button,
.products .product_infos .button{
    margin:0;
    display: block;
    position:absolute;
    left:0;
    right:50%;
    bottom:0;
    text-overflow: ellipsis;
    max-width:100%;
    white-space: nowrap;
    overflow: hidden;
}

.block_button .button.exclusive.disabled,
.block_button .button.ajax_add_to_cart_button,
.products .product_infos .button.ajax_add_to_cart_button{
    margin:0!important;
    display: block;
    position:absolute;
    left:50%;
    right:0;
    bottom:0;
}

.products li img {
    height:auto;
    width:auto;
    /*max-height: 100%;*/
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}
#product_list img,#manufacturers_list img{
    width:240px;
    height:240px;
}
#manufacturers_list.products li{
    height:240px;
}
#manufacturers_list .layer{
    margin-bottom: -100px;
    height:150px;
}

#manufacturers_list i.nb_products{
    background-color:#5892A2;
    color: #fff;
    display: block;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    position: absolute;
    z-index: 5;
    font-size:25px;
    line-height:25px;
    top:0;
    right:0;
}
#product_list .layer{
    margin-bottom: -90px;
    height:172px;
}
#product_list .product_image:hover .layer, #manufacturers_list .product_image:hover .layer{
    margin-bottom:0;
}
#product_list .more_infos,
#manufacturers_list .more_infos{
    display: block;
}
.product_list_bottom{
    position: absolute;
    text-align:left;
    top: 269px;
    z-index: 99;
    display: block;
    overflow: hidden;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(left,  rgba(255,255,255,1) 1%, rgba(255,255,255,1) 70%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(1%,rgba(255,255,255,1)), color-stop(70%,rgba(255,255,255,1)), color-stop(100%,rgba(0,0,0,1)));
    background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 1%,rgba(255,255,255,1) 70%,rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(left,  rgba(255,255,255,1) 1%,rgba(255,255,255,1) 70%,rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(left,  rgba(255,255,255,1) 1%,rgba(255,255,255,1) 70%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to right,  rgba(255,255,255,1) 1%,rgba(255,255,255,1) 70%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=1 );
    width: 100%;
}
.product_list_bottom i.price{
    color: #5892a2;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    vertical-align: middle;
}
.product_list_bottom i.icon{
    float: right;
    margin: 2px 10px;
}
.products li{
    background-color: #FFFFFF;
    display: inline-block;
    margin: 0 10px 10px 0;
    overflow: hidden;
    position: relative;
    height: 300px;
}
#idTab4 .products li,#left_column .products li{
    height:220px;
    width:220px;
}
.products h5 {
    margin:5px;
    height:48px;
    overflow:auto;
    line-height:16px;
    font-size:12px;
    color:#222;
    text-transform:uppercase;
}

.product_image i{}
.product_image i.price{
    color: #5892a2;
    display: block;
    font-size: 25px;
    font-weight: bold;
    margin:10px;
    font-style: normal;
    text-align:right;
}
.product_image i.reduction{
    background-color:#ffb619;
    color: #fff;
    display: block;
    font-weight: bold;
    padding: 15px;
    text-align: center;
    position: absolute;
    z-index: 5;
    font-size:20px;
    line-height:20px;
    top:0;
    right:0;
}

.product_image i.customization_label{
    background-color:#7d5093;
    color: #fff;
    display: block;
    padding: 5px 10px;
    text-align: center;
    position: absolute;
    z-index: 5;
    font-size:11px;
    font-style:normal;
    font-weight: normal;
    text-transform: uppercase;
    line-height:20px;
    top:0;
    right:0;
}

i.new + i.customization_label,
i.reduction + i.customization_label{
    top:50px;
}
.product_image i.reduction.reduction_amount{
    font-size: 18px;
}
.product_image i.on_sale{
    background-color: #ffb619;
    color: #fff;
    display: block;
    font-weight: bold;
    text-align: center;
    width: 90px;
    position: absolute;
    bottom: 72px;
    right: 0px;
    z-index: 3;
    font-size: 15px;
    line-height: 15px;
    padding: 15px;
}

.product_image i.discount{
    background-color: #ffb619;
    color: #000;
    display: block;
    font-weight: normal;
    text-align: center;
    width: 140px;
    height: 15px;
    position: absolute;
    top: -10px;
    left: -60px;
    z-index: 3;
    font-size:11px;
    line-height:11px;
    padding:35px 5px 0;
}
.product_image i.availability{
    background-color: #0aca00;
    display: block;
    padding: 40px 5px 0 5px;
    color: #fff;
    font-size:9px;
    text-align: center;
    font-style:italic;
    width: 90px;
    height: 15px;
    position: absolute;
    top: -25px;
    right:-45px;
    z-index: 3;
}
.product_image i.price .price-discount{
    display: block;
    color:#999999;
    text-decoration:line-through;
    float:left;
}

.product_image i.new {
    background-color: #5892A2;
    display: block;
    padding: 15px;
    color: #fff;
    font-weight:normal;
    font-style: normal;
    font-size:20px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    top: 0;
    left:0;
    z-index: 2;
}


#center_column.grid_9 .sliderproductcarousel .product_image i.price,
#left_column .product_image i.price{
    font-size:16px;
}

.product_image i.online_only {
    background-color:#000;
    color: #FFFFFF;
    display: block;
    font-size: 11px;
    height: 20px;
    left: 20px;
    padding: 10px 0 0;
    position: absolute;
    text-align: center;
    top: 30px;
    width: 180px;
    z-index: 1;
}

.product_image .layer {
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.9);
    width:100%;
    color:#fff;
    height:180px;
    font-style: normal;
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    z-index:10;
    line-height:20px;
    font-size:14px;
    margin-bottom:-130px;
    -moz-transition:margin-bottom 0.3s ease 0.2s;
    -webkit-transition:margin-bottom 0.3s ease 0.2s;
    transition:margin-bottom 0.3s ease 0.2s;
}
/* REVIEWS */
#product_reviews .product_image .layer{
	margin-bottom:-100px
}
#product_reviews .metadata{
	font-size:12px
}
#reviews_list #more_info_sheets > div{
    padding:0;
}

/* zoomproduct_block_home */
#zoomproduct_block_home .product_image .layer {
    background-color: #fff;
    color:#000;
    width: 140px;
    height: 100%;
    font-style: normal;
    left:400px;
    right:0;
    top:0;
    margin-bottom:0;
    z-index:10;
    line-height:20px;
    font-size:14px;
    padding-left: 10px;
    padding-right: 10px;
}
#zoomproduct_block_home .product_prices{
    bottom: 2px;
    position: absolute;
}
#zoomproduct_block_home .product_image i.price{
    text-align:center;
}
#zoomproduct_block_home .product_desc{
    min-height:105px;
}

#left_column .product_image .layer {
    height:120px;
    margin-bottom:-72px;
}
.products li .product_image:hover .layer{
    margin-bottom:0 !important;
}
.product_image{
    color:#121212;
    text-decoration:none;
    width: 100%;
    height:100%;
    display:block;
    overflow:hidden;
    position:relative;
}
.product_image:hover{
    text-decoration:none;
}
#zoomproduct_block_home .product_image{
    overflow:visible;
}

.product_image b{
    display:block;
    overflow:auto;
}

.product_image .product_title,.product_image .manufacturer_title{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    text-transform:uppercase;
    font-size:18px;
    font-weight:bold;
    line-height:30px;
    margin:10px;
    display: block;
}
.product_image .product_desc{
    font-size:11px;
}

.products .product_desc {
    font-weight: normal;
    height: 30px;
    overflow: auto;
    line-height: 15px;
    margin:20px 10px
}
.manufacturers .manufacturer_desc {
    font-weight: normal;
    height: 60px;
    overflow: auto;
    margin:10px;
    line-height: 15px;
}
.products a.button,.products span.button{}
.products.inline_list a.button,
.products.inline_list span.button{}
#left_column span.button{
    margin:5px;
    text-align: center;
}
.block_button{
    display: block;
}
/* .products .inline_list */
.products.inline_list li{
    width: 300px;
    height:300px;
    overflow:hidden;
    margin-right:10px;
}
#product .center_column_inside .products.inline_list li{
    margin-right:5px;
    margin-bottom:30px;
}
.center_column_inside .products.inline_list li{
    margin-right:30px;
    margin-bottom:30px;
}
.products.inline_list li.last {
    margin-right:0;
}
.products.inline_list .product_image b{
    font-size:11px;
    padding:5px;
}
.products.inline_list b.product_desc {
    display:none;
}
.products.inline_list a.button,
.products.inline_list span.button{}
.products.inline_list .product_image > span{
    float:none;
}
/* BLOCK customer privacy ******************************************************************* */
.account_creation label{
    float:left;
    padding-top:5px;
    width:80%;
    text-align:left;
    cursor:pointer
}

/* BLOCK .footer_links (cms pages) ************************************************************* */
ul.footer_links {
    list-style-type:none;
    margin-bottom:20px
}
ul.footer_links li {float:left}
ul.footer_links li.f_right {float:right}
ul.footer_links li .icon {
    position:relative;
    top:6px;
    left:0
}

/* barre comparaison / tri ********************************************************************* */
.sortPagiBar {
    margin:20px 0;
    padding:5px 0;
}
.sortPagiBar .nbrProduct {
    display:inline-block;
    padding:0 10px;
}

/* pagination ********************************************************************************** */
#pagination_next .icon{
    background-position: -125px 0;
}
#pagination_previous .icon{
    background-position: -175px 0;
}
div.pagination {
    text-align:center;
    float:left;
}
ul.pagination {
    list-style-type:none;
    margin:10px auto;
}
ul.pagination li {
    display: inline-block;
    margin-left:1px;
    line-height:26px;
}
ul.pagination a, ul.pagination span{
    display:inline-block;
    font:12px/24px Arial,Verdana,sans-serif;
    background-color:#fff;
    color:#000;
    padding: 0 8px;
}
ul.pagination li.page:after{
    margin: 0 3px;
}

ul.pagination a {
    text-align:center;
    text-decoration:none;
}
ul.pagination a:hover {
    color:#fff;
    background:#000;
    background:rgba(255,255,255,0.5);
}
ul.pagination #pagination_next:hover, ul.pagination #pagination_previous:hover{
    opacity:0.5;
    cursor:pointer;
}

ul.pagination .current span,  ul.pagination .truncate{
    font-weight: bold;
    color:#fff;
    background:none;
}
ul.pagination .truncate{
    margin: 0 3px;
}
ul.pagination li.disabled span {color:#121212}
.nbrItemPage{float:right;}
#productsSortForm_top,#productsSortForm_bottom{float:right;}
#pagination_previous a, #pagination_previous span,
#pagination_next a, #pagination_next span {
    padding:0 8px;
    width:auto;
}
#pagination_next a,#pagination_next span{
    content:" → ";
    background: none;
}

#pagination_previous a,#pagination_previous span{
    content:" ← ";
    background: none;
}
/* CART steps *********************************************************************** */
ul#order_step { background-color: white;}
ul.step {
    list-style-type:none;
    margin-bottom:30px;
    height:52px;
    width:757px
}
ul.step li {
    float:left;
    height:52px;
    width:151px;
    text-align:center;
    text-transform:uppercase;
    background:url(../img/step_standard.gif) no-repeat center bottom transparent
}
ul.step li a, ul.step li.step_current span {
    display:inline-block;
    padding:8px 10px 12px;
    color:#000;
    background:url(../img/step_current_span.gif) no-repeat center bottom transparent
}
ul.step li.step_current {
    font-weight:bold;
    background:url(../img/step_current.gif) no-repeat center bottom transparent
}
ul.step li.step_todo span {
    display:inline-block;
    padding:8px 10px 6px;
    color:#999;
    text-shadow:0 1px 0 #fff;
    background:#eee
}
ul.step li.step_done {
    font-weight:bold;
    background:url(../img/step_done.gif) no-repeat center bottom transparent
}
ul.step li#step_end {background:url(../img/step_end.gif) no-repeat center bottom transparent}



/* ************************************************************************************************
      HEADER
************************************************************************************************ */
#header {}
#header .grid_7 > div{
    margin-right: -10px;
}
#header_logo {
    display: block;
}
#header_logo img{
    display: block;
    max-width:100%;
    height:auto;
}
#header_right {
    background-color:#fff;
}

/* ************************************************************************************************
      BREADCRUMB
************************************************************************************************ */
.breadcrumb{
    display:block;
    font-size: 15px;
    border-bottom:#222;
    border-bottom:1px solid rgba(255,255,255,0.1);
    display:block;
    margin-left:-10px;
}
.breadcrumb a:before{
    display: block;
    content:"";
    position:absolute;
    display: block;
    width: 25px;
    height: 25px;
    left:0;
    top: 17px;
    background: url("../images/icons_v2.9.png") no-repeat transparent -175px 0;
}
.breadcrumb a{
    color: #FFFFFF;
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    margin-left: 40px;
    padding-bottom: 20px;
    padding-top: 20px;
    text-decoration: none;
}
.breadcrumb:hover{
    background-color:#fff;
}
.breadcrumb:hover a:before{
    background-position: -1026px 0;
}
.breadcrumb:hover a{
    color:#000;
}


/* ************************************************************************************************
      FOOTER
************************************************************************************************ */
#footer_end p,#footer p, #footer li{line-height:14px;}
.blockcategories_footer,
#footer .myaccount,
#block_various_links_footer,
#block_contact_infos {
    float:left;
    width:50%;
}
.block_social, .block_newsletter{
    margin-top:20px;
    margin-bottom:20px;
    min-height: 80px;
    line-height: 14px;
}
.block_newsletter{
    width:66%;
}
.block_social{
    width:34%;
}

.input_newsletter[type="text"]{
    width: 100%;
    padding-right:30px;
    float:left;
}
#form_newsletter{
    padding-right:40px;
}
#form_newsletter p{
    position:relative;
    padding-right:40px;
}
.submit_newsletter{
    position: absolute;
    right: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}


#footer_end .copy, #footer_end .sellers{
    font-size: 10px;
}
#footer_end .sellers{
    text-align: right;
}

#footer .block{
    clear:both;
    background:#000;
    background:rgba(0,0,0, 0.25);
    margin:10px 0;
    padding:10px 15px;
}
#footer h4, #footer h4 a, #footer .block h4 a , #footer .block h4 {
    font-size:13px;
    color:#5892a2;
    background-image:none;
    text-shadow:0px 1px 0px #000;
    line-height:inherit;
    font-weight:bold;
    margin-top:0;
    text-transform: none;
    margin:0;
}
#social_block h4{
    color:#fff;
    margin-bottom: 5px;
}
#footer a,#footer_end a {
    color:#fff;
    text-decoration:none;
}
#footer a:hover,#footer_end a:hover {
    text-decoration:underline;
    color:#fff
}
#footer ul {list-style-type:none}
#footer li {
    color:#fff;
    width: 100%;
    font-size: 11px;
}
/* BLOCK various_links ******************************************************************************** */
#footer .various_link ul{
    float: left;
    width:33%;
    margin: 0;
}
.block_newsletter > span,
#footer .various_link ul li a{
    margin:5px 15px 5px 0;
    display: block;
}
#footer .various_link li span{
    font-weight: 900;
    color:#5892a2;
}
/* FOOTER SOCIAL */
#social_footer{
    float: left;
    margin-left: 10px;
    width: 180px;
}

#social_footer a{
    display:inline-block;
    width:100%;
    text-transform:none;
    margin-bottom:5px;
    padding: 8px 10px 8px 40px;
    float:left;
    text-align: left;
}
#social_footer .button.icon i {
    left:6px;
    top:6px;
    position:absolute;
}
#social_footer a:hover{
    color:rgba(255, 255, 255, 0.6);
}
#social_footer a:hover i{
    opacity:0.6;
}
#social_footer a.facebook{
    background-color:#3b5999;
}
#social_footer a.facebook:hover{
    background-color:#4a6fb2;
}
#social_footer a.googleplus{
    background-color:#d44837;
}
#social_footer a.googleplus:hover{
    background-color:#de5a44;
}
#social_footer a.twitter{
    background-color:#4099ff;
}
#social_footer a.twitter:hover{
    background-color:#50b3ff;
}
#social_footer a.pinterest{
    background-color:#cd2026;
}
#social_footer a.pinterest:hover{
    background-color:#da2830;
}

/* FOOTER Foxrate */
.customer_reviews{
    width:230px;
    float:left;
    margin-left:-5px;
    margin-right:10px;
    margin-bottom:20px;
}
#fxrt_w_c_order img{width:230px;height:183px}

/* BLOCK firmcontact_block ******************************************************************************** */
#firm_content li:first-child{
    font-size:16px;
    font-weight:bold;
    color:#fff;
}
#firm_content li a{
    text-decoration:underline;
}
/* ************************************************************************************************
      FOOTER BAR BLOCK
************************************************************************************************ */
.footer_bar_block .copy p{
    padding:10px 0;
}
.footer_bar_block{
    text-shadow: 0px 1px 0px #baf754;
}
.footer_bar_block a:hover,.footer_bar_block a{
    color:#484848;
}

/* ************************************************************************************************
       FOOTER partners
************************************************************************************************ */
.footer_bar_top_block{
    background-color: #000;
    background-color: rgba(0,0,0,0.5);
    margin-top:10px;
    margin-bottom:10px;
}
.partners .icon i{
    width:150px;
    height:50px;
}



.block_hidden_only_for_screen {display:none;}

/* table *************************************************************************************** */
table.std .icon{
    white-space: nowrap;
}
table.std,
table.table_block {
    margin:20px auto;
    border-right:1px solid #222222;
    border-top:1px solid #222222;
    border-left:3px solid #222222;
    width: 100%;
}
table.std thead,
table.table_block thead,
h3.table_title{
    border-top:1px solid #222222;
    border-right:1px solid #222222;
}
table.std th,
table.table_block th,
h3.table_title{
    padding:5px 20px;
    color:#fff;
    text-transform:uppercase;
    background:#000;
    line-height:14px;
}
table.std  td,
table.table_block  td{
    line-height:14px;
    padding:10px 20px;
}
.payment_module,
table.std  td,
table.table_block td,
ul.table_list li,
.table_list > p,
.table_list .item{
    border-bottom:1px solid #222222;
}

table.std tbody tr:nth-child(odd),
ul.table_list li:nth-child(odd),
.table_list > p:nth-child(odd),
.table_list .item:nth-child(odd){
    background-color: #222;
    background-color: rgba(255,255,255,0.15);
}


table.std tfoot tr{
    font-weight:600;
    background-color: #000;
}
table.std tfoot tr td:first-child{
    text-align:right;
}
.table_list .payment_module:nth-child(even),
table.std tbody tr:nth-child(even),
ul.table_list li:nth-child(even),
.table_list > p:nth-child(even),
table.std tfoot tr,
.table_list .item:nth-child(even){
    background-color: #000;
    background-color: rgba(0,0,0,0.74);
}

table.std tbody tr:hover,
ul.table_list li:hover,
.table_list > p:hover,
.payment_module > a:hover{
    background-color: #000;
    background-color: rgba(255,255,255,0.25);
}
.table_list{
    list-style-type:none;
    width:100%;
    border-top:1px solid #222222;
    border-right:1px solid #222222;
    border-left:1px solid #222222;
}

.payment_module > a,
.table_list .container,
.table_list li a,
.table_list > p a{
    display:block;
    clear:both;
    font-size:14px;
    color:#fff;
    font-weight:bold;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    text-decoration: underline;
}
.payment_module > a span,
.table_list .img_wrapper,
.table_list li span,
.table_list > p span,
.table_list .item .title{
    border-right:1px solid #222222;
    padding:5px;
    display:inline-block;
    margin-right:20px;
}

.payment_module > a span{
    padding:10px;
}

.payment_module .img_wrapper{
    float:left;
}

.table_list li a:hover, .table_list > p a:hover{
    color:#fff;
    text-decoration:none;
}
.table_list li a:after{
    content:" → "
}
.table_list img{
    vertical-align:middle;
}

table.std h5{
    margin:0;
}
table.std h5 a{
    text-decoration: none;
}
table.std h5 a:hover{
    color: #5892A2;
}

h3.table_title{
    margin:0 !important;
    border-left:3px solid #000 !important;
    padding:5px;
    font-size:12px;
    text-shadow:0 0;
}

/* ************************************************************************************************
      PAIMENT - PAGE ORDER
************************************************************************************************ */

/* nav bottom ********************************************************************************** */
#order #left_column {display:none}
#order #center_column{width:757px}


/* quantity_wanted */
.cart_quantity_button{
    white-space: nowrap;
}
#quantity_wanted_p input, .cart_quantity_button input[type="text"]{
    vertical-align:middle;
    text-align:center;
    margin-right:0;
    width:20px !important;
    border-right:0 none;
    border-left:0 none;
    padding-left:0;
    padding-right:0;
}
.cart_quantity_down, .cart_quantity_up{
    padding:2px 5px;
    font-size:20px;
    line-height:19px;
    vertical-align:middle;
}
.cart_quantity_down{}
.cart_quantity_up{}
/* addresses ******************************************************************* */


#address_delivery {margin-right:10px;}
#address_invoice {margin-right:0}
#delivery_address {margin-right:65px;}

ul.address {
    list-style-type:none;
    display:inline-block;
    width:300px;
    margin:10px 10px 10px 0;
    background-color:#000;
    border:2px solid #222222;
    padding:10px;
}

ul.address li.address_title {
    font-weight: bold;
    font-size:18px;
    margin-bottom:10px;
}
ul.address li.address_firstname,
ul.address li.address_company {
    margin-top:10px
}
.address_add {
    margin:10px 0
}
.address_update, .address_delete{
    margin:10px 0 0 0
}



/* step 1 - cart ******************************************************************************* */
.cart_ghost{
    border:1px solid #9F9F9F;
    -moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5), 0 -1px 0 #9F9F9F;
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5), 0 -1px 0 #9F9F9F;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5), 0 -1px 0 #9F9F9F;
}
.cart_last_product {display:none}

#order-detail-content {margin-bottom:20px}

table#cart_summary  .cart_product {
    width:60px;
    padding:0;
    line-height:0;
    text-align:left;
}
table#cart_summary .cart_product a{
    border-left: 3px solid #FFB619;
    margin-left:-3px;
    display: block;
}

table#cart_summary  td.cart_voucher {}
table#cart_summary  th.cart_product {
    border-color:#222222;
    text-align: center;
}
table#cart_summary  td.cart_delete {border-right:none}
table#cart_summary  .cart_product  img {
    border-right:1px solid #222222
}
table#cart_summary  .cart_description {
    width:340px;
    font-weight:normal
}
table#cart_summary  .cart_unit {width:130px}
table#cart_summary  .cart_quantity {width:130px}
table#cart_summary  .cart_total {width:120px}
table#cart_summary  .cart_delete {
    width:64px;
    text-align:center
}
.cart_total_tax {display:none}
.cart_total_delivery #total_shipping,
.cart_total_price #total_price {
    border-right:none
}

.total_price_container{
    background-color: #5892a2;
}

#cart_voucher fieldset {
    margin:0;
    padding:5px 10px;
}
#cart_voucher p {}
.cart_voucher #display_cart_vouchers {}
#cart_voucher input#discount_name {
    width:200px;
}

.total_price_container p{
    font-weight:bold;
    color:#fff;
    font-size:18px;
    text-align:center;
    padding:10px;
}

#order_carrier {
    clear:both;
    margin-top:20px;
    border:1px solid #999;
    background:#fff
}
#order_carrier h4 {
    padding:0 15px;
    height: 29px;
    font-weight: bold;
    line-height:29px;
    color:#fff;
    text-transform:uppercase;
    background:url("../img/bg_address_title.png") repeat-x 0 0 #989898
}
#order_carrier span {
    display:block;
    padding:15px;
    font-weight:bold
}





/* step 2 - authentification ******************************************************************* */
#authentication #create-account_form fieldset, 
#authentication #login_form fieldset {
    width:480px;
    float:left;
    min-height:170px;
}
#authentication #create-account_form fieldset{
    margin-right:20px;
}

#authentication #create-account_form label, 
#authentication #login_form label{
    width:100px;
}
#authentication #create-account_form input[type="text"], 
#authentication #login_form input[type="text"]{
    width:180px;
}

#authentication #create-account_form p.submit,
#authentication #login_form p.submit{
    margin-left:110px;
}


#ordermsg p {padding-bottom:0}
#ordermsg p.txt {
    float:left;
    margin-right:25px;
    width:220px
}
#ordermsg .textarea {float:right}
#ordermsg .textarea textarea {
    height:90px;
    width:475px;
    border:1px solid #ccc
}

/* step 4 - paiement ************************************************************************** */

#carrierTable {
    border:1px solid #999;
    border-bottom:none;
    background:#fff
}

#carrierTable tbody{
    border-bottom:1px solid #999;
}
#carrierTable  th {
    padding:0 15px;
    height: 29px;
    font-weight: bold;
    line-height:29px;
    color:#fff;
    text-transform:uppercase;
    background:url(../img/bg_address_title.png) repeat-x 0 0 #989898
}
#carrierTable  td {
    padding:15px;
    font-weight:bold;
    border-right:1px solid #e9e9e9
}
#carrierTable  td.carrier_price {border:none}

#gift_div {
    display:none;
    padding-bottom:10px
}
#gift_div label {
    display:block;
    margin-bottom:5px
}
#gift_div #gift_message {
    height:50px;
    width:720px;
    border:1px solid #999
}


/* step 5 - paiement ************************************************************************** */

.payment_module a:after{
    content:" → "
}
.payment_module:before,
.payment_module:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden
}
.payment_module:after {clear: both}
.payment_module {zoom: 1}


/* ************************************************************************************************
      PAGE ORDER-OPC
************************************************************************************************ */
#order-opc h2 span {
    color:#ffb619;
    font-weight: bold;
}
#order-opc h2 span:after{
    content:".";
}
.opc-main-block{
    position:relative;
}
.opc-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background: url("../images/loader-big-black.gif") no-repeat center center;
    background-color: #000;
    background-color: rgba(0,0,0,.7);
    left:0;
    top:0;
    z-index:999
}
@-moz-keyframes blink {0%{opacity:1;} 50%{opacity:0.1;} 100%{opacity:1;}} /* Firefox */
@-webkit-keyframes blink {0%{opacity:1;} 50%{opacity:0.1;} 100%{opacity:1;}} /* Webkit */
@-ms-keyframes blink {0%{opacity:1;} 50%{opacity:0.1;} 100%{opacity:1;}} /* IE */
@keyframes blink {0%{opacity:1;} 50%{opacity:0.1;} 100%{opacity:1;}} /* Opera and prob css3 final iteration */

#fancybox-loading,
div.zoomPreload,
.loader{
    text-align: center;
    color: #000;
    font-weight: bold;
    position:absolute;
    top:135px;
    z-index:99999;
    height: 60px;
    width: 200px;
    padding:20px;
    left:50%;
    margin: 20px 0 20px -120px;
    background-color:#fff;
    background-color:rgba(255,255,255,0.9);
    background-image: url("../images/loader-big-black.gif");
    background-repeat: no-repeat;
    background-position: center 50%;
    -moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);

    -moz-transition:opacity 1s ease-in-out;
    -webkit-transition:opacity 1s ease-in-out;
    -o-transition:opacity 1s ease-in-out;
    -ms-transition:opacity 1s ease-in-out;
    transition:opacity 1s ease-in-out;
    /* order: name, direction, duration, iteration-count, timing-function */  
    -moz-animation:blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation:blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation:blink normal 2s infinite ease-in-out; /* IE */
    animation:blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}

.loader img{
    width:24px !important;
    height:24px !important;
}
#order-opc #opc_delivery_methods textarea {
    height:60px;
    width:755px;
}
#order-opc #opc_payment_methods {margin-bottom:20px}
#order-opc #opc_payment_methods #opc_payment_methods-content p{margin:0}

/* ************************************************************************************************
      PAGE ORDER-CARRIER
************************************************************************************************ */
.delivery_option p{}
.delivery_options.table_list{
    width:auto;
    border-top:0 none;
}
.delivery_option table td{
    padding:10px;
    vertical-align:top;
}
.delivery_option_logo{
    width: 180px;
    margin-right: 50px;
    background-color:#fff;
    border-right:1px solid #222222;
    text-align:center;
}
.delivery_option_title{
    width:350px;
    font-weight:bold;
    font-size:14px;
}
.delivery_option_price{
    font-weight: bold;
}
.delivery_options_address{
    border:1px solid #222;
}
.delivery_popup{
    margin-top:20px;
    margin-bottom:20px;
}
.delivery_option.item > span{
    float:left;
    margin:0;
    padding:9px;
}
.delivery_option.item input[type="radio"]{
    margin:5px;
}

/* ************************************************************************************************
      PAGE ADD ADRESS
************************************************************************************************ */
.addressesAreEquals input[type="checkbox"]{
    margin:0;
}
.addressesAreEquals{
    font-size:14px;
    font-weight:bold;
    margin-bottom:10px;
}

/* ************************************************************************************************
      PAGE ORDER-SPLIP
************************************************************************************************ */
#order-slip #order-list {border-bottom:1px solid #999}
#order-slip #order-list td {
    border-top: 1px solid #ccc;
    border-bottom:none
}
#order-slip #order-list td.history_invoice {border-right:none}
#order-list{
    margin:0;
}

/* ************************************************************************************************
      PAGE DISCOUNT
************************************************************************************************ */
#discount .table_block tr.last_item td {border-bottom:1px solid #999}
#discount .table_block td.discount_expiration_date {border-right:1px solid #999}
#discount .table_block td.discount_value {white-space:nowrap}

/* ************************************************************************************************
      PAGE NEW-PRODUCTS
************************************************************************************************ */
#new-products .sortPagiBar {margin-bottom:20px}


/* ************************************************************************************************
      PAGE BEST SALES
************************************************************************************************ */
#best-sales .sortPagiBar {margin-bottom:20px}

/* ************************************************************************************************
      PAGE PRICES DROP SALES
************************************************************************************************ */
#prices-drop .sortPagiBar {margin-bottom:20px}


/* ************************************************************************************************
      PAGE MANUFACTURER
************************************************************************************************ */
#manufacturer .nbrmanufacturer {
    margin: 15px 0 10px;
}

#manufacturer #product_list {margin-top:15px}

.manufacturer_list_bottom{
    position: absolute;
    top: 269px;
    z-index: 99;
    display: block;
    overflow: hidden;
    width: 100%;
}

/* ************************************************************************************************
      PAGE SUPPLIER
************************************************************************************************ */
#supplier .nbrmanufacturer {
    margin: 15px 0 10px;
    padding: 8px 7px;
    font-size:12px;
    color: #000;
    background: none repeat scroll 0 0 #f0f0f0
}
ul#suppliers_list {list-style-type:none}
ul#suppliers_list li {
    margin-bottom: 14px;
    padding: 12px 8px;
    border: 1px solid #eee;
}
ul#suppliers_list li a.lnk_img {
    display: block;
    float: left;
}
ul#suppliers_list li img {
    display: block;
    float: left;
    margin-right: 14px;
    border: 1px solid #ccc;
    vertical-align: bottom
}
ul#suppliers_list li h3 {
    padding: 0 0 10px;
    font-size: 13px;
    color: #000
}
ul#suppliers_list li .description {
    overflow: hidden;
    padding: 0;
    font-size:12px;
}
ul#suppliers_list li .right_side {float:right;}


/* ************************************************************************************************
      PAGE SEARCH
************************************************************************************************ */
#search h3.nbresult {
    margin:0 0 10px 0;
    padding:10px;
    border:1px solid #e6db55;
    font-size:13px;
    background:#ffffe0
}
#search ul.product_list {margin-top:15px}

/* ************************************************************************************************
                addon customer privacy
************************************************************************************************ */
#account-creation_form fieldset.customerprivacy label{
    padding-bottom:0;
    font-size:14px;
    text-align:left;
    cursor:pointer
}

/* ************************************************************************************************
      addon loyalty
************************************************************************************************ */
/*#product p#loyalty {
    margin:20px 0;
    padding:5px 0 0 20px;
    background:url(../img/infos.gif) no-repeat 0 2px
}*/

#footer .myaccount li.loyalty img {display:none}

/* ************************************************************************************************
        block top search
************************************************************************************************ */

/* block top search */

#search_block_top{
    margin:10px;
    height: 32px;
    overflow: hidden;
    vertical-align: top;
}

#searchbox label{
    margin:2px;
}
#search_block_top p{
    padding:0;
    white-space: nowrap;
    margin:0;
    background: #000;
}

#search_query_top {
    width:185px;
    border:0 none;
    background-color:#000;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;
    margin:0;
    padding:10px 20px 10px 10px;
/*    text-transform: uppercase;*/
    color: #fff;
    vertical-align: top;
    font-size:11px;
}
#search_query_top:-moz-placeholder,
#search_query_top::-webkit-input-placeholder,
#search_query_top:-ms-input-placeholder{
    color:#000;
}

#search_query_top.ac_loading{
    background:transparent url("../images/input-loader-black.gif") no-repeat right 8px;
}

#search_query_top:focus {
    outline: none;
}

#search_block_top .button{
    background:transparent;
    padding:2px;
    height: 32px;
    width: 32px;
}



/* ************************************************************************************************
        block firmcontact_block_top
************************************************************************************************ */
#firmcontact_block_top{
    padding-left:40px;
    margin:25px 0;
    position:relative;
    float: right;
}
#firmcontact_block_top h5:before{
    display: block;
    content:"";
    position:absolute;
    display: block;
    width:40px;
    height:40px;
    left:0;
    background: url("../images/icons_v2.9.png") no-repeat transparent 0 -25px;
}

/* ************************************************************************************************
        block user infos
************************************************************************************************ */
#header_right{
    height:50px;
    position: relative;
}
#header_right div{
    float:left;
}

#header_user_info{
    white-space: nowrap;
    height: 50px;
}
#header_user_info a{
    display: block;
    font-weight:bold;
    text-transform:uppercase;
    text-decoration: none;
    margin:0 10px;
}

#header_user{
    width:180px;
}
#header_user li{
    display: inline-block;
}

#header_user a{
    color:#424242;
    line-height:50px;
    display:block;
    white-space:nowrap;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
}
#header_user.user_logged .user_info a{
    line-height:16px;
}
#header_user.user_logged .user_info a.logout{
    text-transform: none;
    text-decoration: underline;
    color:#5892a2;
    font-size:10px;
    font-weight: normal;
    line-height: 12px;
}
#header_user.user_logged .user_info a.logout:after{
    content:"→";
}

#header_user.user_logged li.user_info{
    margin:18px auto 0;
    max-width:130px;
    vertical-align: top;
}
#header_user a.logout{}
#header_user a.my_account{
    text-transform: none;
}


#header_user .user_info a{
    margin:0;
}

#header_user.user_logged a.logout{
    margin:0;
}
#header_user.user_logged a.my_account{
    text-transform: none;
}
#header_user.user_logged i.icon_home{}

#header_user li.open:hover{}


/* ************************************************************************************************
        block header_nav
************************************************************************************************ */

#header_nav {     
    right: 0;
    top: 0;
    position: absolute;
    height: 50px;
    overflow: hidden;
    width:150px;
}
#shopping_cart{
    padding-left:30px;
    width:120px;
    margin:5px auto;
}
#shopping_cart:before{
    position: absolute;
    content: "";
    left: 10px;
    top: -10px;  
    border-left: 2px solid;
    width: 3px;
    border-right: 2px solid;
    border-color: black;
    height: 70px;
    display: block;
    -webkit-transform: rotate(15deg);
    -moz-transform:  rotate(15deg);
    -o-transform: rotate(15deg);
    transform: rotate(15deg);
}
#shopping_cart .ajax_cart_quantity {}
#header_user #shopping_cart .ajax_cart_total {
    display: block;
}
#shopping_cart b.wrapper{
    font-size:11px;
    line-height: 14px;
    margin-left:10px;
    float: left;
    font-weight: normal;
}

#shopping_cart .title{
    display: block;
    font-size:14px;
    font-weight:bolder;
    text-transform:uppercase;
}

#shopping_cart i.icon_cart{
    float: left;
}


/* ************************************************************************************************
        block social_block
************************************************************************************************ */
#social_block span{
    display: inline-block;
    padding:0;
    text-indent:-9999px;
    background:transparent url("../images/icons_v2.9.png") no-repeat;
    height: 40px;
    width: 108px;
}
#social_block span.facebook {
    background-position: -483px -174px;
}
/* ************************************************************************************************
       reinssurance footer + product
************************************************************************************************ */
.reinssurance{
    display:block;
    float:left;
    margin:20px auto;
}
.reinssurance_payment, .reinssurance_delivery{
    display: inline-block;
    text-indent:-9999px;
    background:transparent url("../images/icons_v2.9.png") no-repeat;
}
.reinssurance_payment{
    background-position: 0px -179px;
    height: 29px;
    width: 245px;
}
.reinssurance_delivery{
    background-position: -245px -179px;
    height: 29px;
    width: 235px;
}
.reinssurance_product_block{
    list-style-type:none;
}
.reinssurance_product_block li{
    text-align:right;
    width:75px;
    display:inline-block;
    font-weight:bold;
    line-height:12px;
    position:relative;
    z-index:2;
    margin-right: 10px;
    padding: 10px 0 0;
}
.reinssurance_product_block li:last-child{
    margin-right: 0;
}
.reinssurance_product_block span{
    display:block;
}
.reinssurance_product_block li:before{
    display:block;
    content:"";
    width:56px;
    height:56px;
    background:transparent url("../images/icons_v2.9.png") no-repeat;
    position:absolute;
    top:0;
    left:0;
    z-index:-1;
}

.reinssurance_product_block .reins_delivery:before{
    background-position: -57px -66px;
}
.reinssurance_product_block .reins_payment:before{
    background-position: -114px -66px;
}
.reinssurance_product_block .reins_expert:before{
    background-position: -171px -66px;
}
.reinssurance_product_block .reins_return:before{
    background-position: -228px -66px;
}

.reinssurance_product_block li span{
    color:#feb51b;
}
/* ************************************************************************************************
        block languages
************************************************************************************************ */
#languages_block_bottom ul{
    margin:10px auto 0 auto;
    text-align:center;
}
#languages_block_bottom li{
    list-style-type:none;
    display:inline-block;
    margin-left:5px;
}

#languages_block_bottom .icon{
    width:22px;
    height:20px;
}
#languages_block_bottom a{
    opacity:0.5;
}
#languages_block_bottom a:hover{
    opacity:1;
}


/* ************************************************************************************************
        block social
************************************************************************************************ */
#social_block li {
    margin-right: 5px;
    float:left;
}

/* ************************************************************************************************
        block firmcontact_block
************************************************************************************************ */
#firmcontact_block img {
    float:left;
    margin:0 10px 10px 0;
}

/* ************************************************************************************************
        pscarou
************************************************************************************************ */
#mycarousel{
    width: 960px;
}

.carousel .items{
    margin:auto;
}

/********* carroussel général **********/
.carrousel{
    position:relative;
    overflow:hidden;
}
.carrousel .inside{
    position:relative;
    overflow:hidden;
}
.carrousel .items{
    position:absolute;
    top:0;
    left:0;
    width:100000px;
    margin:auto;
}
.carrousel .item{
    display:block;
    float:left;
}

.carrousel .nav{
    width:100%;
    position:absolute;
    z-index:99;
}
.carrousel .nav ul{
    list-style-type:none;
    width:960px;
    position:relative;
    margin:auto;
}
.carrousel .next, .carrousel .prev{
    display:block;
    overflow:hidden;
    width:100px;
    height:100px;
    text-indent:-9999px;
    background:transparent url(../images/icons_v2.9.png) no-repeat;
    position:absolute;
    top:40px;
}
.carrousel .prev{
    float:left;
    left:0;
    background-position:-131px -36px;
}
.carrousel .prev:hover, .carrousel .prev:active{
    background-position:-10px -36px;
}
.carrousel .next{
    float:right;
    right:0;
    background-position:-252px -36px;
}
.carrousel .next:hover, .carrousel .next:active{
    background-position:-373px -36px;
}
.carrousel{
    width:auto;	/* la largeur totale du carrousel : 100% */
    height:180px;	/* la hauteur totale du carrousel */
}
.carrousel .inside{
    width: 100%; /* largeur de 100% */
    height:180px; /* la hauteur d'un item */
    z-index:1;
}
.carrousel .products li img{
    padding:10px;
}
.carrousel .products li{
    -moz-box-shadow:0 0;
    -webkit-box-shadow:0 0;
    box-shadow:0 0;
}
.carrousel .product_image > span{
    float:left;
    width:240px;
    height:180px;
}
.carrousel .product_image .layer{
    width:240px;
    height:180px;
    padding:0;
}
.carrousel .product_image b{
    padding:10px;
    height:70px;
    width:130px;
    line-height:14px;
    overflow: hidden;
}
.carrousel .product_image b.product_title{
    text-align:left;
}
.carrousel .product_image b.product_desc{
    text-align:right;
    float:right;
    font-size:11px;
    text-transform:lowercase;
}
.carrousel .product_image b.product_desc:first-letter{
    text-transform:uppercase;
}
.carrousel .products li a .layer{
    z-index:1;
}

.carrousel .product_image i.price{
    font-size:20px;
    bottom:-40px;
    left:-65px;
    width:150px;
    height:100px;
}
.carrousel .product_image i.on_sale{
    background-color: #ffb619;
    width: 220px;
    height: 45px;
    bottom: -10px;
    left: -100px;
    top : auto;
    padding:5px;
    font-size:11px;
    z-index:4;
    text-transform:uppercase;
}
.carrousel .product_image i.online_only{
    bottom:0;
    right:0;
    padding:10px;
    width:auto;
    text-transform:lowercase;
}
.carrousel .product_image i.discount{
    bottom: 45px;
    left: -45px;
    padding: 5px;
    top: auto;
    width: 200px;
}


/* ************************************************************************************************
        block editorial
************************************************************************************************ */
.block_editorial{
    margin: 20px 30px 20px 0;
    text-align: justify;
}
#index .editorial_block{
    margin-top:20px;
}

.img.editorial_block h1, .img.editorial_block h2, .img.editorial_block div.rte{
    margin-left:450px;
}
.img.editorial_block.category h1, .img.editorial_block.category h2, .img.editorial_block.category div.rte{
    margin-left:340px;
}
.editorial_block h1{
    margin-top:20px;
}

#editorial_block_center p {
    padding-left: 0
}
#editorial_block_center .rte p {
    color:#6c6c6c
}
#editorial_block_center p#editorial_image_legend {
    margin: 0 0 10px;
    padding:0;
    color: #6c6c6c;
    font-size: 10px;
}
.editorial_block img{
    display:block;
    float:left;
}

/* ************************************************************************************************
        CATEGORIES
************************************************************************************************ */

.resumecat b{
    color:#5892a2;
}


#categories_block_left  li, .block.myaccount li, .xoxo li li{
    border-bottom: 1px solid #222222;
    display: block;
    text-decoration: none !important;
    position: relative;
}

#categories_block_left  ul:first-child, .block.myaccount li:first-child , .xoxo li li:first-child{
    border-top:1px solid #222222;
}
#categories_block_left  li a, .block.myaccount li a, .xoxo li li a{
    color:#fff;
    font-size: 12px;
    padding:2px 10px;
    line-height:24px;
    display:block;
}
#categories_block_left  li a:hover, #categories_block_left  li.current > a, .block.myaccount li a:hover, .xoxo li li a:hover{
    background-color: #222;
    background-color: rgba(255,255,255,0.15);
    text-decoration:none;
    color:#fff;
}
#categories_block_left  li ul {
    margin-left:20px;
    padding-bottom: 10px;
}
#categories_block_left  li li {
    border:0 none;
    -webkit-box-shadow:none;
    -moz-box-shadow:none;
    box-shadow:none;
}
#categories_block_left  li li a {
    background:none;
    font-size: 11px;
    line-height: 12px;
    font-style:normal;
    white-space:normal;
    padding:5px;
}
#categories_block_left  li li li a {
    font-style:italic;
    font-size: 10px;
}
#categories_block_left i.grower{
    position:absolute;
    margin:4px;
    right:0;
    top:0;
    cursor: pointer;
}
#categories_block_left li ul li  i.grower{
    margin:2px 4px;
}
#categories_block_left ul.tree i{
    position:absolute;
    top:0;
    right:0;
}
#categories_block_left ul.tree i:hover{
    opacity:0.5;
    cursor:pointer;
}
#categories_block_left ul.tree li ul i{}

div.rte.content_only h3, div.rte.content_only p{}
.rte.content_only{
    padding:20px;
}

/* block top links */
ul#header_links {
    list-style-type: none;
}

#header_links li {
    display: inline-block;
    padding: 0 5px;
    margin:15px 0;
    border-left:1px solid #222222;
    line-height:10px;
    white-space:nowrap;
    font-size:11px;
}
#header_links li:first-child {
    border:none;
}
#header_links a {
    color:#222222;
}
#header_links a:hover {
    color:#fff;
}

/*block permanent links right and left columns*/
.permanent_links_block li {border-bottom: 1px dotted #eee}
.permanent_links_block li a {
    display: block;
    padding: 7px 11px 5px 22px;
    color: #333;
    background:url("../../../img/arrow_right_2.png") no-repeat 10px 10px;

}
/* block footer links */
ul#footer_links{
    clear:both;
    text-align: center;
    padding-bottom:6px
}
ul#footer_links li{
    display: inline;
    padding:0 10px
}


.ac_results {
    text-align: left;
    padding: 0px;
    border: 1px solid black;
    background-color: white;
    overflow: hidden;
    z-index: 99999;
}

.ac_results ul {
    width: 100%;
    list-style-position: outside;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ac_results li {
    margin: 0px;
    padding: 2px 5px;
    cursor: default;
    display: block;
    /* 
    if width will be 100% horizontal scrollbar will apear 
    when scroll mode will be used
    */
    /*width: 100%;*/
    font: menu;
    font-size: 12px;
    /* 
    it is very important, if line-height not setted or setted 
    in relative units scroll will be broken in firefox
    */
    line-height: 16px;
    overflow: hidden;
}
/*
.ac_loading {
        background: white url('indicator.gif') right center no-repeat;
}
*/

.ac_odd {
    background-color: red;
}

.ac_over {
    background-color: yellow;
    color: white;
}



/* ************************************************************************************************
        STORES
************************************************************************************************ */
#stores_loader {
    display: none;
}

#locationSelect{
    margin-left: 220px;
}
#map {
    margin:20px auto;
    height:400px;
    width:100%;
    border:1px solid #222222
}
/* ************************************************************************************************
        MENU
************************************************************************************************ */


.sf-contener {
    position: relative;
    z-index: 101;
    margin:1px -10px 0 -10px;
    border-bottom:1px solid #222;
    border-bottom:1px solid rgba(255,255,255,0.1);
}
.sf-menu li:first-child{
    display:none;
}
.sf-menu li{
    list-style-type: none;
    vertical-align: top;
}
.sf-menu .cat_wrapper_0{
    display:block;
    float:left;
    margin-top:-1px;
}
.sf-menu .cat_wrapper_0 h2{
    text-align: left;
    font-size: 45px;
    font-weight: normal;
    margin: 0 10px 10px;
    line-height: 45px;
}
.sf-menu ul.cat_right{
    width: 350px;
    float:right;
    margin-top:-65px;
}

.sf-menu .cat_wrapper_0 p{
    line-height: 16px;
    max-height: 34px;
    overflow: auto;
}

.sf-menu ul.cat_wrapper_0 li:first-child{
    width: 100%;
    max-height:65px;
    overflow:hidden;
}
.sf-menu ul.cat_right li{
    clear:both;
    border-bottom: 1px solid black;
    max-height: 120px;
    width: 100%;
}
.sf-menu ul.cat_right li:first-child{
    max-height: 120px;
}


.sf-menu ul.cat_right li:last-child{
    border-bottom: 0 none;
}
.sf-menu ul.cat_right li span{
    height: 121px;
    width:90px;
    display:block;
    float:left;
    padding:0;
    margin-right: 15px;
}
.sf-menu ul.cat_right div{
    margin-left: 100px;
    margin-right: 10px;
    margin-top: 10px;
    width: auto;
}
.sf-menu ul.cat_right b{
    display:block;
    text-align: left;
    color:#000;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    margin:0;
}
.sf-menu ul.cat_right .button{
    color: #fff;
    line-height:20px;
    font-size: 12px;
    font-weight: normal;
    display:inline-block;
    float:left;
    padding:3px 10px;
}
.sf-menu .cat_wrapper_0 p{
    color:#000;
    text-align: left;
}

.sf-menu > li > ul {
    position: absolute;
    top: -9999em;
    left:0;
    right:0;
    min-height:220px;
    background-color: #fff;
    /*    -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5);*/
    border-bottom: 1px solid #000;
    background-repeat: no-repeat;
    padding: 10px 0px 10px 10px;
}


.sf-menu > li:hover > ul,
.sf-menu > li.sfHover > ul {
    left: 0;
    top: auto; /* match top ul list item height */
    /*margin-top:-1px;*/
}
.sf-menu ul ul{
    position: static;
}

.sf-menu li {
    display: inline-block;
}
.sf-menu > li {
    width: 14.28%;
    text-align: center;
}
.sf-menu > li > a {
    /*margin-right:1px;*/
    border-right:1px solid #222;
    border-right:1px solid rgba(255,255,255,0.1);
    background-color:#000;
    background-color:rgba(0,0,0,0.5);
    text-transform :uppercase;
}
.sf-menu > li:last-child > a {
    border-right: 0 none;
    margin-right:-1px;
}
.sf-menu a {
    display:block;
    color:#fff;
    line-height: 30px;
    text-decoration:none;
    padding:10px;
    font-weight: bold;
    font-size:11px;
    text-decoration: none;
}

.sf-menu a:hover{
    color: #000;
}

/* hover and active state */
.sf-menu > li.sfHoverForce > a,
.sf-menu > li a:hover,
.sf-menu > li:hover > a{
    background-color: #fff;
    color:#000;
}
.sf-menu > li a.button:hover{
    background-color: #75c2d7;
    color: #fff;
    color: rgba(255,255,255, 0.6);
    text-decoration: none !important;
    border-color: transparent;
}
.sf-menu > li a.button:active{
    color: #fff;
    color: rgba(255,255,255, 0.9);
}
.sf-menu > li.sfHoverForce > a{
    color: #000;
    cursor:default;
}
.sf-menu > li.sfHoverForce > a:hover{
    color: #000;
    cursor:default;
}

.sf-menu > li:hover > a{
    color:#000;
}

/*Sous Menu*/
.sf-menu .cat_wrapper_0 li{
    display: block;
    float:left;
    width:160px;
}
.sf-menu .cat_wrapper_0 a{
    color:#000;
    width:auto;
    height: auto;
    font-size: 18px;
    font-weight: normal;
    line-height:14px;
    text-align: left;
}
/*Sous Sous Menu*/
.sf-menu .cat_wrapper_1{
    margin-bottom:10px;
}
.sf-menu .cat_wrapper_1 a{
    color:#000;
    display: block;
    font-weight: normal;
    text-align: left;
    text-decoration: none;
    height: auto;
    font-size: 12px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.sf-menu .cat_wrapper_1 a:hover,
.sf-menu .cat_wrapper_0 a:hover{
    color:#5892A2
}
.sf-menu .cat_wrapper_1 li{
    float: none;
    display: block;
}

.adtm_column_wrap a {
    color: #999999;
}


/* ************************************************************************************************
      addon ATOS
************************************************************************************************ */
.payment_module.atos{
    background-color:#222;
    background-color: rgba(255,255,255,0.15);
}
.atos .secure_image{
    display: block;
    position: relative;
    background-image: url("../images/credit-agricole.png");
    height: 100px;
    width: 100px;
}

.atos strong.secure{
    position: absolute;
    white-space: normal;
    color: #9F9F9F;
    font-weight: normal;
    font-size: 11px;
    top:70px;
    left:0;
    height: 30px;
    width: 100px;
    line-height: 12px;
    text-align: center;
}
.payment_module.atos span.img_wrapper{
    padding:10px;
}

.atos_label{
    padding:20px 0 15px 0;
    display: block;
}
#atos-form .card_logo{
    background-image: url("../images/bnp.png");
    display: inline-block;
    width: 80px;
    height: 50px;
    margin-right: 5px;
    color: transparent;
}
#atos-form .card_logo:hover{
    opacity:0.7;
}

.card_logo.CB{
    background-position: 98px 0;
}
.card_logo.MASTERCARD{
    background-position: 179px 0;
}
.card_logo.VISA{
    background-position: 179px 69px;
}




/* ************************************************************************************************
                addons cash on delivery with fee
************************************************************************************************ */

#module-codfee-codfee_payment #left_column {display:none}
#module-codfee-codfee_payment #center_column{width:757px}

#payment_form {
    padding: 15px;
    border: 1px solid #CCC;
    font-size: 12px;
    color: black;
    background: #F8F8F8;
}

#payment_form label {
    display: inline-block;
    padding: 6px 15px;
    width: 230px;
    font-size: 14px;
    text-align: right;
}

#payment_form p.text input, #payment_form p.select select {
    padding: 0 5px;
    height: 22px;
    width: 260px;
    border: 1px solid #CCC;
    font-size: 12px;
    color: #666;
}

#payment_form p.text, #payment_form required {
    color: #222;
}

#payment_form #errorDiv {
    margin-bottom: 15px;
}

#payment_form h3 {
    font-size: 13px;
}


/* ************************************************************************************************
                #productscategory
************************************************************************************************ */

#productscategory {
    margin: 2em auto 0;
    height: 120px;
    width: 100%;
}
#productscategory_list {
    overflow: hidden;
    float: left;
    width: 96%;
}
#productscategory_list ul {
    padding-left: 0;
    list-style-type: none;
}
#productscategory_list li {
    float: left;
    margin: 0 3px;
    cursor: pointer;
    text-align: center;
    width: 100px;
    overflow: hidden;
    line-height: 20px;
}
#productscategory_list li a { margin: auto; }



#sendfriendpage form.std fieldset {
    margin:0 0 20px 0;
    padding: 10px 15px;
    background: none repeat scroll 0 0 #eee
}

#sendfriendpage .product {}
#sendfriendpage .product .img_link {float:left}
#sendfriendpage .product .img_link img {
    margin:0 10px 0 0;
    border:1px solid #ccc;
}
#sendfriendpage .product .product_desc {
    float:left;
    width:200px;
    font-weight:bold;
    font-size:12px;
    color:#000;
}

#sendfriendpage #send_friend_form_content {margin-top:40px}
#sendfriendpage #send_friend_form_content .text {
    padding-bottom: 10px
}
#sendfriendpage #send_friend_form_content .text label {
    display: inline-block;
    padding: 6px 15px;
    width: 180px;
    font-size: 12px;
    text-align: right
}
#sendfriendpage #send_friend_form_content .text input {
    padding: 0 5px;
    height: 22px;
    width: 260px;
    border: 1px solid #ccc;
    font-size: 12px
}
#sendfriendpage #send_friend_form_content .submit {
    margin:0 20px 0 0;
    padding:5px 0;
    text-align:right
}


/* ************************************************************************************************
                Jq jquery.autocomplete
************************************************************************************************ */

.ac_results {
    color:#000;
    text-align: left;
    padding: 0px;
    border: 1px solid #9f9f9f;
    border-top:0 none;
    background-color: white;
    overflow: hidden;
    z-index: 99999;
    margin-top:5px;
    box-shadow:0 0 3px 0 rgba(0, 0, 0, 0.7);
    max-width:410px;
}
.ac_results ul {
    width: 100%;
    list-style-position: outside;
    list-style: none;
    padding: 0;
    margin: 0;
}
.ac_results li {
    margin: 0px;
    padding: 2px 5px;
    cursor: default;
    display: block;
    /*
    if width will be 100% horizontal scrollbar will apear
    when scroll mode will be used
    */
    /*width: 100%;*/
    font-size: 11px;
    /*
    it is very important, if line-height not setted or setted
    in relative units scroll will be broken in firefox
    */
    line-height: 16px;
    /*        overflow: hidden;
            text-overflow:ellipsis;
            white-space: nowrap;*/
}
.ac_odd {
    background-color: #e7e7e7;
}
.ac_over {
    background-color: #5892A2 !important;
    color: white;
}

/**** Block coordonnées Contact  ****/
.contact_coord{
    clear: both;
    width: auto;
}
.contact_coord > div{
    float: left;
    width: 33%;
    float:left;
    margin-top: 10px;
    min-height:56px;
}
.contact_coord h4, .contact_coord p{
    margin-top:0;
    margin-bottom:0;
    font-size:18px;
    line-height:28px;
}
.contact_coord h4, .contact_coord a{
    line-height:56px;
}
.contact_coord i.icon{
    margin-bottom:20px;
}




#map{
    color:#000;
}

#cluetip{
    color: #000;
}


/**** Services ****/
.bloc_service{
    float:left;
    min-height:500px;
    font-size:0.9em;
    width:240px;
    margin-right:10px;
}
.rte div.bloc_service:last-child{
    margin-right:0;
}
.bloc_service img{
    float:left;
    margin-bottom:10px;
    max-width: 100%;
}
/**** CMS ****/
.bloc_cms_product {
    float:left;
    width:240px;
    margin-right:10px;
}
.rte div.bloc_cms_product:last-child{
    margin-right:0;
}
.bloc_cms_product img{
    margin: 0 auto;
    display: block;
    max-width: 100%;
}
.bloc_cms_product h4{
    clear:both;
}
/**** Delivery ****/
.std.delivery h4 strong{
    display:block;
    font-size:1.5em;
    margin-bottom:10px;
}
table.std.delivery th{
    vertical-align:text-top;
}
table.std.delivery th img{
    margin-top:10px;
}


/* Fancybox */


/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #fff;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}
.fancybox-outer{
	background:#f00;
        background:#232323 url("../images/patern.jpg") repeat center 1024px;
        
}

.fancybox-inner {
	/*overflow: hidden !important;*/
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}
#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}
.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: #000;
    background: rgba(0,0,0,0.9);
}
.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	position: relative;
	text-shadow: none;
	z-index: 8050;
        text-transform:uppercase;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}


.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
    position: absolute;
    background: #000 url('../images/icons_v2.9.png');
    top: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    cursor: pointer;
    z-index: 1102;
    display: block;
}

.fancybox-next span {
    right:-15px;
    background-position: -150px 0;
}
.fancybox-prev span {
    left:-15px;
    background-position:  -175px 0;
}
.fancybox-close{
    z-index: 1103;
    top: 0px;
    right: 0px;
    margin-top:0;
    background-position:  -975px 0;
}





.alert-cadeaux{
    background-color:#710202;
    background-color:rgba(185,0,0,0.6);
    border-bottom:1px solid rgba(255, 255, 255, 0.17);
}
.alert-cadeaux h5{
    margin:2px 0;
}