body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    font-family: Verdana, Arial, sans-serif;
    font-size: 14px;
    background-color: #f0efed;
    color: #605656;
    min-width: 1150px;
}

input[type="text"], input[type="password"] {
    background-color: white;
    border: 1px solid #b9b6af;
    border-radius: 4px;
    height: 37px;
    line-height: 37px;
    padding: 0px;
    padding-left: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="text"]:focus, input[type="password"]:focus {
    border: 1px solid #eb7d00;
    color: #eb7d00;
    outline: none;
}

textarea {
    width: 80%;
}

fieldset {
    border: none;
    border-left: 1px solid #b2b2b2;
    padding: 12px;
    margin-top: 20px;
}

legend {
    font-size: 1.7em;
    font-weight: bold;
}

h2 {
    color: #3f6799;
    font-size: 24px;
}

h3 {
    font-size: 16px;
}

h4 {
    color: #3f6799;
    font-size: 14px;
}

a {
    cursor: pointer;
}

a:active, a:focus {
    outline: 0;
}

.error {
    display: block;
    background-color: #fdebeb;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #a42e2e;
    border-radius: 3px;
    padding: 10px;
    color: #a42e2e;
    text-align: center;
}
.warning {
    background-color: #ffe6c7 !important;
    border-color: #a4752d !important;
    color: #a4752d !important;
}
.message {
    background-color: #e3fde2 !important;
    border-color: #37a42d !important;
    color: #37a42d !important;
}

.clear_left {
    clear: left;
    border: 0px;
}

.clear_right {
    clear: right;
    border: 0px;
}

.messagebox_message p {
    display: block;
    width: 600px;
    margin-bottom: 20px;
}
.messagebox {
    text-align: center;
}
.messagebox h2 {
    margin: 20px 50px 20px 50px !important;
}

div.three_cols > div > div {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;

    float: left;
    width: 33%;
}
div.three_cols > div > div:last-child {
    float: right;
    width: 34% !important;
}

/*
 * Styles Wt
 */
.Wt-invalid {
    color: #e93434 !important;
}
.Wt-invalid.force-invalid {
    border-color: #e93434;
}

.Wt-spinbox {
    background: url('images/spin_buttons.png') top right no-repeat;
    padding-right: 16px;
}
.Wt-spinbox-up {
    background-position: right -74px;
}
.Wt-spinbox-dn {
    background-position: right -37px;
}

.Wt-edit-emptyText {
    color: #b9b6af;
}

.Wt-loading {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    width: 200px !important;
    margin-left: -100px !important;
    margin-top: -30px !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #315A8C !important;
    border: 1px solid #315A8C !important;
    padding: 20px 0px !important;
    text-align: center !important;
    z-index: 10000 !important;
}

.Wt-tabs {
    margin: 0px;
    padding: 0px;
    margin-bottom: 4px;
    width: 98%;
    padding-left: 2%;
    overflow: hidden;
    list-style-type: none;
    border-bottom: 1px solid #b2b2b2;
}
.Wt-tabs li {
    display: inline;
}

.Wt-tabs a > span {
    background: url('images/tabs_right.png') no-repeat right top;
    float:left;
    display:block;
    cursor:pointer;
    margin-right: 5px;
    margin-left: 6px;
}
.Wt-tabs li.itemselected a > span {
    background-position:100% -40px;
}
.Wt-tabs a > span > span {
    float: left;
    background: url('images/tabs_left.png') no-repeat left top;
    white-space: nowrap;
    padding: 0px 10px 0px 16px;
    margin-left: -6px;
    color: #b9b6af;
    line-height: 30px;
    height: 30px;
}
.Wt-tabs li.itemselected a > span > span {
    background-position:0% -40px;
    color:#ffffff;
    text-shadow: #643802 1px 1px 2px;
}

.Wt-domRoot {
    background: url('images/banner_bg.png') top repeat-x;
    overflow: hidden;
    min-height: 900px;
}

.page_page > .Wt-stack {
    margin-top: 13px;
    padding: 20px;
    padding-bottom: 68px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: #b9b6af 2px 2px 6px;
}

/*
 * Spinner
 */
.spinner {
    display: inline-block;
    background-color: white;
    border: 1px solid #b9b6af;
    border-radius: 4px;
    text-align: center;
}
.spinner input {
    border: none !important;
    text-align: center;
    height: 35px !important;
    padding: 0px;
}
.spinner input:focus {
    border: none !important;
}
.spinner_up, .spinner_down {
    display: block;
    width: 27px;
    height: 26px;
    z-index: 1;
    background-image: url('images/spinner.png');
    background-repeat: no-repeat;
    cursor: pointer;
}
.spinner_down {
    float: left;
    margin: 6px 0px 0px 6px;
    background-position: 0px 0px;
}
.spinner_down:hover { background-position: 0px -26px; }
.spinner_up {
    float: right;
    margin: 6px 2px 0px 3px;
    background-position: -27px 0px;
}
.spinner_up:hover { background-position: -27px -26px; }

.small_spinner {
    width: 110px;
}
.small_spinner input {
    width: 45px;
}

/*
 * Formulaires
 */
.form_ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}
.form_ul li {
    display: block;
    height: 39px;
    margin-bottom: 6px;
}
.form_ul li > label {
    display: block;
    width: 40%;
    float: left;
    line-height: 37px;
    white-space: nowrap;
}
.form_ul li > label.right {
    text-align: right;
}
.form_ul li > div {
    height: 37px;
    line-height: 37px;
    margin-left: 45%;
    width: 55%;
    border: none;
}
.form_ul li > div input[type="text"], .form_ul li > div input[type="password"], .form_ul li > div select {
    vertical-align: middle;
    width: 100%;
}
.form_ul li > .three_cols > div > div {
    width: 33%;
}
.form_ul span.required {
    color: #e93434;
}

.userinfoform_accept {
    margin-top: 5px;
}
.userinfoform_accept span {
    white-space: normal !important;
}
.userinfoform_accept, .userinfoform_accept span {
    line-height: 20px !important;
}

/*
 * Checkbox
 */
.checkbox input {
    display: none;
}
.checkbox label {
    margin-right: 3px;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background-image: url('images/checkbox.png');
}

.checkbox label { background-position: 0px 0px; }
.checkbox label:hover { background-position: 0px -20px; }
.checkbox input:checked + label { background-position: -20px 0px; }
.checkbox input:checked + label:hover { background-position: -20px -20px; }

/*
 * Bouton
 */
.text_button, .image_button {
    cursor: pointer;
    margin-bottom: -5px;
    vertical-align: top;
    display: -moz-inline-stack;
    display: inline-block;
}

.image_button {
    background-position: -1000px 0px;
    background-repeat: no-repeat;
}
.image_button:hover {
    background-position: 0px 0px;
}
.image_button:hover > img {
    visibility: hidden;
}

.text_button {
    background-position: left 0px;
    padding-left: 12px;
}
.text_button > div {
    background-position: right -50px;
}

.text_button:hover {
    background-position: left -100px;
}
.text_button:hover > div {
    background-position: right -150px;
}

.text_button.orange, .text_button.orange > div
    { background-image: url('images/orange_button.png'); }
.text_button.orange_small, .text_button.orange_small > div
    { background-image: url('images/orangesmall_button.png'); }
.text_button.blue, .text_button.blue > div
    { background-image: url('images/blue_button.png'); }
.text_button.blue_big, .text_button.blue_big > div
    { background-image: url('images/bluebig_button.png'); }
.text_button.gray, .text_button.gray > div
    { background-image: url('images/gray_button.png'); }
.text_button.gray_big, .text_button.gray_big > div
    { background-image: url('images/graybig_button.png'); }

.text_button span {
    display: block;
    color: #ffffff;
    font-weight: bold;
    text-shadow: #643802 1px 1px 2px;
    text-decoration: none;
    padding-bottom: 5px;
    padding-right: 17px;
}
.text_button.blue span, .text_button.blue_big span {
    text-shadow: #1f344d 1px 1px 2px;
}
.text_button.gray span, .text_button.gray_big span {
    text-shadow: #404040 1px 2px 2px;
}

.text_button.orange span, .text_button.blue span, .text_button.gray span {
    height: 37px;
    line-height: 31px;
}
.text_button.blue_big, .text_button.gray_big {
    height: 43px;
    line-height: 38px;
}
.text_button.orange_small span {
    height: 31px;
    font-size: 0.9em;
    line-height: 26px;
    padding-bottom: 0px !important;
}

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

/*
 * Popups
 */
.silk_screen {
    position: fixed;
    z-index: 50;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #ffffff;

    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    -moz-opacity:0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

.popup_container {
    position: absolute;
    z-index: 300;
    width: 100%;
    top: 0px;
    left: 0px;
}

.popup_container > div {
    float: left;
    clear: left;
    position: relative;
    left: 50%;
}

.popup {
    clear: left;
    float: left;
    position: relative;
    right: 50%;
    top: 100px;
}

.popup_topleft {
    background: url('images/popup_topleft.png') top left no-repeat;
    padding-left: 24px;
}
.popup_topright {
    background: url('images/popup_topright.png') top right no-repeat;
    padding-right: 24px;
}
.popup_top {
    background: url('images/popup_top.png') top repeat-x;
    height: 24px;
}
.popup_left {
    background: url('images/popup_left.png') left repeat-y;
    padding-left: 24px;
}
.popup_right {
    background: url('images/popup_right.png') right repeat-y;
    padding-right: 24px;
}
.popup_middle {
    padding: 7px;
    padding-bottom: 20px;
    background-color: #ffffff;
}
.popup_bottomleft {
    background: url('images/popup_bottomleft.png') top left no-repeat;
    padding-left: 24px;
}
.popup_bottomright {
    background: url('images/popup_bottomright.png') top right no-repeat;
    padding-right: 24px;
}
.popup_bottom {
    background: url('images/popup_bottom.png') top repeat-x;
    height: 24px;
}

.popup_button {
    float: right;
    margin-right: -29px;
    cursor: pointer;
}

.popup h2 {
    color: #416899;
    margin-top: 30px;
    margin-bottom: 20px;
}

/*
 * Wizard
 */
.breadcrumb {
    text-align: center;
}

.wizard_container {
    margin-top: 25px;
    margin-bottom: 25px;
}

.wizard_intro {
    max-width: 600px;
    text-align: center;
    margin: 0px 100px 20px 100px;
}

.wizard_popup {
    padding-bottom: 40px !important;
}
.wizard_popup .next_button, .wizard_popup .done_button {
    float: right;
}

/*
 * Liste des magasins
 */
.store_list > span, .store_list .filter_zone {
    display: block;
    width: 360px;
    margin: auto;
    margin-top: 10px;
}
.store_list .filter_zone input {
    width: 296px;
    height: 33px;
    line-height: 33px;
    margin-right: 10px;
}
.store_list_pagination {
    margin: 40px 0px 10px 0px;
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
    text-align: center;
}
.store_list_pagination span {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    border-left: 1px solid white;
    border-right: 1px solid white;
    line-height: 36px;
    width: 36px;
    height: 36px;
}
.store_list_pagination span.current {
    font-weight: bold;
    color: #ec8505;
}
.store_list_pagination span:hover {
    color: #ec8505;
    border-left: 1px solid #b2b2b2;
    border-right: 1px solid #b2b2b2;
}
.store_list_message {
    width: 100%;
    text-align: center;
    font-style: italic;
}
.store_list_list {
    padding-top: 10px;
    max-height: 500px;
    overflow: auto;
}
.store_list_warning {
    display: block;
    color: #b9b6af;
    font-style: italic;
    text-align: justify;
    width: 100% !important;
}

.store_entry {
    display: table;
    margin: auto;
    width: 360px;
    background-color: #f1f1f1;
    border: 1px solid #9295b9;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 12px;
}
.store_entry > div { display: table-row; }
.store_entry > div > div {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}
.store_entry > div > div:first-child { text-align: left !important; }
.store_entry .text_button { margin-top: 4px; }

.store_entry.selected {
    background-color: #faefe1 !important;
    border: 1px solid #ceb89a;
    color: #d5802c;
}

.checkable_store_entry .text_button span {
    width: 100px;
    text-align: center;
}

/*
 * Menu latéral
 */
.keep_on_screen {
    z-index: 4;
}
.sidemenu_parent {
    float: left;
    width: 259px;
}
.sidemenu {
    float: left;
    z-index: 1;
    width: 259px;
}

.skip_sidemenu {
    margin-left: 279px;
}

.sidemenu_entry {
    margin-bottom: 21px;
    border: 1px solid #b9b6af;
    border-radius: 3px;
    background-color: #f5f5f4;
    overflow: hidden;
}

.sidemenu_entry h3 {
    margin: 0px;
    padding: 0px;
    padding-left: 22px;
    font-size: 14px;
    text-transform: uppercase;
    overflow: hidden;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
    text-align: left;
    height: 32px;
    line-height: 32px;
    border-bottom: 1px solid #cbc9c5;
    background: url('images/left_menu_header_small.png');
}
.sidemenu_anchorsentry h3 {
    height: 42px !important;
    line-height: 42px !important;
    background: url('images/left_menu_header.png') !important;
}

.sidemenu_empty_text {
    display: block;
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 5px;
    text-transform: uppercase;
    padding: 11px 0px 11px 0px;
}


.sidemenu_entry ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.sidemenu_entry ul li {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;

    display: block;
    overflow: hidden;
    width: 100%;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #dad3cb;
    padding: 10px 10px 10px 20px;
    color: #5f5f5f;
}
.sidemenu_anchorsentry ul li, .sidemenu_itemsentry ul li {
    text-transform: uppercase;
}
.sidemenu_entry ul li:last-child {
    border-bottom: none;
}
.sidemenu_entry ul li:hover {
    background-color: #ffffff;
}
.sidemenu_entry ul li.current {
    background: #ea8508 url('images/left_menu_link_current.png') top left repeat-x;
    border-top: 1px solid #d38a2f;
    border-bottom: 1px solid #b76029;
    color: #ffffff;
}

.sidemenu_maxheight ul {
    max-height: 209px;
    overflow: auto;
}

.sidemenu_anchorsentry .arrow {
    float: right;
    width: 15px;
    height: 8px;
    margin-right: 22px;
    margin-bottom: -8px;
    margin-top: -1px;
    z-index: 30;
    background: url('images/left_menu_arrow.png') top left no-repeat;
}

.sidemenu_anchorsentry a {
    display: block;
    color: inherit;
    text-decoration: none;
    margin: -10px -10px -10px -22px;
    padding: 10px 10px 10px 22px;
}

.sidemenu_anchorsentry li.ticked a {
    background: url('images/left_menu_ticked.png') right no-repeat;
    padding-right: 31px;
}

.product_filter_filter {
    line-height: 35px;
}
.product_filter_filter .units {
    float: right;
    margin-left: -100px;
}
.product_filter .quantity {
    float: right;
    position: relative;
    right: 50%;
    margin-right: -55px;
}

/*
 * Commentaires
 */
.comments_lang {
    border: 1px solid #b9b6af;
    border-radius: 3px;
    background-color: #f0efed;
    padding: 9px 6px;
    margin-top: 20px;
}

.comments_container {
    max-height: 600px;
    overflow: auto;
}

.comments_info {
    border-top: 1px solid #b9b6af;
    font-style: italic;
    margin-top: 20px;
    text-align: right;
}

.comments_info .stars {
    float: left;
}

.comments_text {
    padding: 12px;
}

.comments_login {
    text-align: center;
}
.comments_login .text_button {
    vertical-align: middle;
}

.comment_box {
    margin-top: 20px;
    background-color: #f0efed;
    border: 1px solid #b9b6af;
    border-radius: 4px;
    padding: 12px;
}
.comment_box h2 {
    margin-top: 0px;
}
.comment_box .stars {
    height: 37px;
}

/*
 * Aide
 */
.help {
    background-color: #40699d;
    border-radius: 5px;
    box-shadow: 1px 1px 6px #aaa;
    padding: 20px 0px 20px 0px;
}
.help .image_button {
    float: right;
    margin-right: 20px;
    margin-bottom: -30px;
}
.help h2 {
    color: #fff;
    margin-top: 0px;
    text-transform: uppercase;
    font-size: 28px;
    text-align: center;
}

.help_third {
    float: left;
    width: 29%;
    height: 150px;
    margin-left: 3.1%;
    background-color: #355885;
    border-radius: 5px;
    box-shadow: inset 0px 0px 10px #114777;
    border: 1px solid #4b76ac;
}
.help_third_number {
    float: left;
    display: block;
    width: 49px;
    height: 50px;
    margin: 16px 0px 0px -22px;
    text-align: center;
    line-height: 49px;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: #643802 1px 1px 2px;
    background: url('images/help_number.png') top left no-repeat;
}
.help_third h3, .help_third p {
    text-shadow: 1px 1px 2px #2a3b4e;
}
.help_third h3 {
    text-align: center;
    color: #eba525;
    text-transform: uppercase;
    font-size: 14px;
    margin: 20px 16px 16px 30px;
}
.help_third p {
    color: #fff;
    margin: 0px 16px 0px 30px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    line-height: 15px;
}

/*
 * Authentification
 */
.auth_widget {
    float: left;
    text-align: left;
    line-height: 29px;
    padding-top: 2px;
    padding-bottom: 2px;
    color: #ffffff;
}

.auth_widget > strong a {
    color: #ffffff;
    text-decoration: none;
}

.auth_widget > a:hover {
    text-decoration: underline;
}

.auth_widget .text_button {
    margin-left: 5px;
}

.login_popup_table {
    display: table;
    border-spacing: 20px;
    border-collapse: separate;
    margin: -20px;
    border: none;
}
.login_popup_row { display: table-row; }
.login_popup_el {
    display: table-cell;
    vertical-align: bottom;
    width: 320px;
    border: 1px solid #b9b6af;
    border-radius: 4px;
    background-color: #f0efed;
    padding: 12px;
    padding-top: 16px;
    overflow: visible;
}

.login_popup_el .error {
    margin-top: 0px;
}

.login_popup_register h3 {
    font-size: 21px;
    line-height: 21px;
    margin: 0px;
}
.login_popup_register p {
    text-align: justify;
}

.login_popup_el .text_button {
    display: block;
    float: right;
}
.login_popup_el > p {
    overflow: hidden;
}

.login_popup_forgotten {
    margin-bottom: 0px;
    width: 344px;
    text-align: center;
}
.login_popup_forgotten a {
    text-decoration: none;
}
.login_popup_forgotten a:hover {
    text-decoration: underline;
}

.login_popup input[type="text"], .login_popup input[type="password"] {
    margin-top: 3px;
    margin-bottom: 3px;
    width: 100%;
}

/*
 * Enregistrement
 */
.registerstepinfo_left_col {
    float: left;
    width: 420px;
}
.registerstepinfo_right_col {
    margin-left: 450px;
    width: 470px;
}

.registerstepstores {
    width: 920px;
}
.registerstepstores > img {
    float: right;
    margin: -6px 690px -96px 0px;
}
.register_step_retailer_form {
    margin-bottom: 20px !important;
    width: 660px !important;
}
.register_step_retailer_form .checkbox {
    padding-left: 4px;
}
.register_step_retailer_form > div > div {
    float: left;
    width: 200px;
    margin: 5px;
    padding: 5px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 5px;
}
.register_step_retailer_form > div {
    overflow: hidden;
}

/*
 * Bannière
 */
.page_container {
    width: 1011px;  /* FIXED */
    margin: auto;
}

#workaround_bugs_in_scrapers {
    display: none;
}

#go_top {
    position: absolute;
    top: 95px;
    left: 50%;
    margin-left: 540px;
}
#go_top_inner {
    display: none;
}
#go_top_link {
    display: block;
    width: 16px;
    height: 14px;
    background: url('/static/images/go_top.png') top left no-repeat;
}
#go_top_link:hover {
    background-position: 0px -14px;
}

#banner {
    height: 160px;
    margin: 0px -18px 66px -16px;
}

#banner_logo {
    position: absolute;
    top: 36px;
}

.show_basket_container {
    float: right;
    text-align: center;
    width: 215px;
}
.show_basket {
    margin-top: 2px;
}

.banner_lang {
    float: right;
    margin: 0px;
    list-style-type: none;
    padding-right: 1px;
    padding-left: 0px;
}

.banner_lang li {
    display: inline;
    line-height: 28px;
}

.banner_lang li a {
    display: block;
    float: left;
    text-align: center;
    width: 28px;
    height: 27px;
    text-decoration: none;
    color: #ffffff;
    text-shadow: #1f344d 1px 1px 2px;
}

.banner_lang li a:hover, .banner_lang li a.current_lang {
    text-shadow: none;
}
.banner_lang li a.current_lang {
    background-color: #ffffff;
    color: #234173;
}

.search_header {
    background: url('images/search_left.png') left no-repeat;
    padding-left: 14px;
    width: 410px;
    margin: 40px 0px 0px 225px;
}
.search_header > div {
    background: url('images/search_right.png') right no-repeat;
    height: 35px;
    padding: 8px 0px 8px 0px;
    line-height: 35px;
}
.search_header input {
    border: none !important;
    height: 35px;
    font-size: 16px;
    width: 346px;
    margin-right: 10px;
}
.search_header input[type="text"]:focus { border: none !important; outline: none; }
.search_header .Wt-edit-emptyText {
    font-style: italic;
}

.search_suggestions {
    overflow-y: auto;
    padding: 1px;
    background: #ffffff;
    position: absolute;
    top: 124px;
    left: 50%;
    width: 420px;
    margin-left: -296px;
    z-index: 400;
    max-height: 140px;

    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.search_suggestions > span {
    display: block;
    padding: 0px 3px;
    cursor: pointer;
}
.search_suggestions > span:hover {
    background: #f29100;
    color: white;
}

.basket_header {
    float: right;
}

.basket_header > div {
    float: left;
    padding-top: 10px;
    margin-left: 5px;
    width: 107px;
    background: url('images/basketheader.png') top left no-repeat;
    text-align: center;
    height: 94px;
}
.basket_header > div.preferred_retailer {
    background-position: 0px -104px;
}
.basket_header a {
    display: block;
    text-decoration: none;
    color: #605656;
    margin-top: 8px;
    font-size: 28px;
}
.basket_header > div.preferred_retailer a {
    color: #ec8505;
}

/*
 * Menu des catégories
 */
#category_menu_wrapper {
    margin-right: -3px;
    position: absolute;
    top: 160px;
    left: 0px;
    width: 100%;
    min-width: 1000px;
    overflow: hidden;
}

#category_menu {
    position: relative;
    float: left;
    left: 50%;
}

#category_menu > div {
    float: left;
    clear: left;
    position: relative;
    overflow: hidden;
    right: 50%;
}

.category_menu_table {
    height: 50px;
    width: 1051px;
    margin: 0px;
    padding: 0px;
    padding-left: 4px;
    border-collapse: separate;
    border-spacing: 0px;
}

.category_menu_table td {
    cursor: pointer;
}

.category_menu_table td a {
    background-image: url('images/menu_bg_middle.png');
    background-repeat: repeat-x;
}
.category_menu_table td.first a {
    background-image: url('images/menu_bg_first.png');
    background-position: 0px -50px;
    background-repeat: no-repeat;
}
.category_menu_table td.last a {
    background-image: url('images/menu_bg_last.png');
    background-repeat: no-repeat;
}

.category_menu_table td a { background-position: 0px 0px; }
.category_menu_table td.last a { background-position: right 0px; }
.category_menu_table td.in_menu a { background-position: 0px -100px; }
.category_menu_table td.in_menu.last a { background-position: right -100px; }
.category_menu_table td.current a { background-position: 0px -150px; }
.category_menu_table td.current.last a { background-position: right -150px; }
.category_discount:hover a { background-position: 0px -200px !important; }
.category_bio a { background-position: 0px -250px !important; }
.category_bio:hover a { background-position: 0px -300px !important; }

.category_menu_table td a {
    display: block;
    color: white;
    font-weight: bold;
    font-size: 13px;
    text-shadow: #1f344d 1px 1px 2px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    height: 43px;
    line-height: 43px;
    padding: 2px 0px 5px 0px;
}
.category_discount td a {
    text-shadow: #430a0a 1px 1px 2px;
}
.category_bio td a {
    text-shadow: #557218 1px 1px 2px;
}
.category_menu_table td.in_menu a {
    color: #ec8505;
    text-shadow: none;
    position: relative;
    z-index: 300;
}

.category_menu_table td span {
    display: block;
    border-left: 1px solid #6b91ba;
    border-right: 1px solid #315b8c;
}
.category_menu_table td.first span {
    border-left: none !important;
    border-right: 1px solid #912929;
}
.category_menu_table td.last span {
    border-right: none !important;
    padding-right: 4px;
}
.category_menu_table td.current span {
    border-left: 1px solid #bf7628;
    border-right: 1px solid #aa6320;
}
.category_menu_table td.in_menu span {
    border-left: 1px solid white;
    border-right: 1px solid white;
}
.category_discount:hover span, .category_bio span {
    border-color: transparent !important;
}

/*
 * Pile des catégories
 */
.category_menu_stack {
    position: relative;
    top: -7px;
    margin-right: 3px;
    margin-left: 4px;
    border: 3px solid #ec8505;
    background-color: #dde7f1;
    overflow: hidden;
    z-index: 30;
}

.category_menu_stack > div {
    float: left;
    position: relative;
    left: 50%;
}

.category_submenu_row {
    clear: left;
    float: left;
    position: relative;
    right: 50%;
}

.category_submenu_row > div {
    float: left;
    width: 190px;
    margin: 0px 5px 0px 5px;
    color: #5f5f5f;
    position: relative;
}
.four_cols .category_submenu_row > div {
    margin: 0px 27px 0px 27px;
}

.category_submenu_row img {
    width: 190px;
    height: 80px;
}

.category_submenu_row ul {
    padding-left: 0px;
    margin-left: 0px;
    list-style-type: none;
}

.category_submenu_row li {
    background: url('images/list_bullet.png') left no-repeat;
    margin-left: 2px;
    padding-left: 12px;
}

.category_submenu_row a {
    color: #5f5f5f;
    text-decoration: none;
}

.category_submenu_row a:hover {
    color: #ec8505;
}

.category_submenu_row .highlight a, .category_submenu_row .highlight h3 {
    color: #ec8505;
    font-weight: bold;
}

/*
 * Tri des produits
 */
.product_sort {
    border: 1px solid #b9b6af;
    border-radius: 3px;
    background-color: #f0efed;
    padding: 9px 6px;
    margin-bottom: 20px;
}
.product_sort.keep_on_screen {
    position: relative;
}
.product_sort.keep_on_screen:before {
    content: " ";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: -21px -1px 0px -1px;
    border-top: 20px solid #ffffff;
}

.product_sort input {
    vertical-align: middle;
}

.product_sort_side {
    float: right;
}

/*
 * Liste des produits
 */
.lowest_price span, span.lowest_price {
    color: #ec8505;
}

.product_image {
    height: 120px;
    line-height: 120px;
    text-align: center;
}
.product_image .icon {
    display: none;
    float: left;
    margin-right: -15px;
}
.product_image .image {
    cursor: pointer;
    vertical-align: middle;
}
.no_click_action .product_image .image {
    cursor: default !important;
}

.product_list {
    margin-left: 20px;
}
.skip_sidemenu .product_list {
    margin-left: 0px;
}
.product_list_list {
    text-align: left;
    margin-right: -25px;
}

.product_list_view {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    width: 196px;
    margin-right: 25px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 1px solid #b2b2b2;
    border-radius: 3px;
    padding: 8px;
}
.product_list .product_view.product_in_basket {
    background-color: #fcf3e8 !important;
    border-color: #ec8505 !important;
}

.product_list_view .product_promo {
    width: 64px;
    height: 64px;
    background: url('images/promo.png') top right no-repeat;
    margin: -14px -14px 0px -48px;
    z-index: 3;
    float: right;
    position: relative;
}
.product_list_view .product_bio {
    width: 64px;
    height: 64px;
    background: url('images/bio.png') top right no-repeat;
    margin: -14px -48px 0px -14px;
    z-index: 3;
    float: left;
    position: relative;
}
.product_view_overlay {
    float: right;
    position: relative;
    border-radius: 3px;
    margin: -9px -9px -9px -213px;
    padding: 8px;
    width: 196px;
    height: 355px;
    z-index: 2;
}

.product_list_more {
    text-align: right;
}
.product_list_no_products {
    display: block;
    text-align: center;
    font-style: italic;
}

.product_list_spec {
    text-align: center;
    padding: 8px;
    border-bottom: 1px solid #b2b2b2;
    margin-bottom: 13px;
    line-height: 20px;
    height: 80px;
    overflow: hidden;
}

.product_list_spec > span {
    display: block;
    height: 40px;
    overflow: hidden;
}
.product_list_spec span[onclick] {
    cursor: pointer;
}
.no_click_action .product_list_spec span[onclick] {
    cursor: default !important;
}

.product_list_spec strong {
    color: #3d6598;
    font-size: 16px;
}
.product_list_spec strong:hover {
    color: #558dd4;
}
.no_click_action .product_list_spec strong {
    color: #3d6598 !important;
}
.privatelabel {
    font-size: 12px;
    white-space: nowrap;
}

.product_list_prices, .product_list_action .product_spinbox {
    float: left;
    width: 96px !important;
}
.product_list_action.no_action .product_spinbox {
    float: none !important;
    width: 166px !important;
}
.product_list_action .product_spinbox input {
    width: 30px;
}
.product_list_action.no_action .product_spinbox input {
    width: 100px;
}
.disabled_quantity .product_spinbox div {
    display: none !important;
}
.disabled_quantity .product_spinbox input {
    color: #b9b6af;
}

.product_list_view .stores, .product_list_action .image_button {
    margin-left: 108px;
    display: block !important;
}

.product_list_prices {
    text-align: center;
    line-height: 22px;
    margin-left: 8px;
    padding-top: 11px;
    padding-bottom: 11px;
    white-space: nowrap;
}

.product_list_prices strong {
    color: #f29100;
    font-size: 22px;
}

.product_list_view .stores img {
    display: block;
    height: 22px;
    margin: auto;
}

.product_list_action {
    margin: -8px;
    margin-top: 10px;
    padding: 8px 16px;
    border-top: 1px solid #b2b2b2;
    border-radius: 0px 0px 2px 2px;
    background-color: #f0efed;
}
.product_list_action.no_action {
    text-align: center;
}

/*
 * Popup de produit
 */
.stars img {
    margin-left: 2px;
    margin-right: 2px;
    vertical-align: middle;
}

.product_popup .product_image {
    float: left;
    margin-bottom: -220px;
    width: 210px;
}
.product_popup .product_image img {
    max-width: 210px;
    max-height: 210px;
}

.product_tabs {
    margin-left: 240px;
    margin-top: 40px;
    width: 700px;
    overflow: visible;
}

.product_popup_pane {
    margin-top: 12px;
}
.product_popup_pane .stars {
    float: right;
    margin-top: 2px;
    line-height: 32px;
}
.product_popup_pane .stars img {
    vertical-align: middle;
}
.product_popup_pane h2, .product_popup_pane h3, .product_popup_spec {
    margin-top: 2px;
    margin-bottom: 2px;
}
.product_popup_pane h2, .product_popup_pane .privatelabel { font-size: 28px; white-space: normal; }
.product_popup_pane h3 { font-size: 20px; }

.product_popup_description {
    margin-top: 12px;
    margin-bottom: 14px;
    padding-bottom: 26px;
    border-bottom: 1px solid #b2b2b2;
}

.product_popup_controls { text-align: center; }
.product_popup_controls .text_button {
    margin-left: 10px;
}
.product_popup_controls .spinner {
    width: 96px;
    margin-right: 10px;
}
.product_popup_controls input {
    width: 30px;
}

.product_popup_pane .stores {
    clear: right;
    margin-top: 17px;
    margin-bottom: 20px;
    overflow: hidden;
}

.product_popup_pane .stores img {
    display: block;
    margin: auto;
    margin-bottom: 5px;
}
.product_popup_pane .stores > div {
    float: left;
    width: 33%;
    text-align: center;
}
.product_popup_pane .stores strong {
    font-size: 18px;
}

.product_price_chart {
    margin: auto;
    clear: both;
    display: block;
}

.product_popup_pane_left {
    float: left;
    width: 60%;
}
.product_popup_pane_right {
    margin-left: 70%;
    width: 30%;
}
.product_popup_pane_buttons {
    padding-top: 12px;
}

.product_popup_pane_note {
    display: block;
    float: right;
    clear: both;
}
.product_popup_pane_note a {
    color: #b9b6af;
    font-size: 0.9em;
    font-style: italic;
    text-decoration: none;
}
.product_popup_pane_note a:hover {
    text-decoration: underline;
}

.product_nutri {
    width: 100%;
    margin-top: 20px;
    border-collapse: separate;
    border-top: 1px solid #b75f29;
}
.product_nutri th {
    line-height: 41px;
    height: 41px;
    background: url('images/table_bg.png') top left repeat-x;
    color: #ffffff;
    text-shadow: #643802 1px 1px 1px;
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
    border-left: 1px solid #ffb859;
    border-right: 1px solid #b75f29;
    border-bottom: 1px solid #b75f29;
}
.product_nutri th:first-child {
    border-left: 1px solid #b75f29;
}
.product_nutri td {
    line-height: 33px;
    background: #f3f2f1;
    border-left: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #b9b6af;
    border-bottom: 1px solid #b9b6af;
}
.product_nutri td:first-child {
    border-left: 1px solid #b9b6af;
}
.product_nutri td, .product_nutri th {
    width: 50%;
}
.product_nutri td {
    padding-left: 5px;
}
.product_nutri p {
    margin: 0px;
}
.product_nutri td img {
    float: right;
    margin-top: 9px;
    margin-right: 5px;
}
.product_nutri_name {
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 6px;
}
.product_nutri_subname {
    padding-left: 20px;
}

.product_formats {
    float: left;
    width: 240px;
    margin-top: 240px;
    margin-left: -28px;
    padding-bottom: 10px;
    background: url('images/product_formats_triangle.png') bottom left no-repeat;
}
.product_formats > span {
    display: block;
    height: 32px;
    line-height: 32px;
    font-weight: bold;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
    background: url('images/left_menu_header_small.png') top left repeat-x;
    border: 1px solid #b9b6af;
    border-radius: 4px 4px 0px 0px;
    border-bottom: none;
    padding-left: 12px;
}
.product_formats_list {
    height: 243px;
    overflow: auto;
    border: 1px solid #b9b6af;
    border-top: none;
    background-color: #ffffff;
}
.product_formats_entry {
    display: table;
    border-collapse: separate;
    border-spacing: 12px;
    border-bottom: 1px solid #b9b6af;
    min-height: 42px;
    width: 100%;
    cursor: pointer;
}
.product_formats_entry:last-child { border-bottom: none !important; }
.product_formats_entry > div { display: table-row; }
.product_formats_entry > div > div { display: table-cell; }
.product_formats_image {
    width: 42px;
    vertical-align: middle;
}
.product_formats_image img {
    max-width: 42px;
    max-height: 42px;
}
.product_formats_text {
    margin-left: 52px;
    vertical-align: middle;
}
.product_formats_entry:hover .product_formats_text > span {
    color: #558dd4;
}

/*
 * Panier
 */
.basket_list {
    margin-left: 0px !important;
}
.basket_list_header {
    overflow: hidden;
}
.basket_list_header > div {
    float: left;
    width: 230px;
    text-align: center;
    border: 1px solid #b9b6af;
    border-bottom: none;
    border-radius: 3px 3px 0px 0px;
    padding: 0px 20px 0px 20px;
    margin-right: 20px;
    background: url('images/basket_header_bg.png') -17px -17px;
}
.basket_list_header .blue_big {
    line-height: 16px !important;
}
.basket_list_header .blue_big > div > span {
    padding-top: 3px !important;
    padding-bottom: 9px !important;
}

.basket_list_entry {
    clear: left;
}
.basket_list_product {
    float: left;
    width: 214px;
    border: 1px solid #b9b6af;
    border-top: 1px solid #dfdcd6;
    border-bottom: none;
    padding: 22px 28px 2px 28px;
    background: url('images/basket_header_bg.png') -17px -17px;
}
.basket_list_product_sep {
    float: left;
    width: 20px;
    border-top: 1px dashed #dfdcd6;
}
.basket_list_button {
    float: left;
    width: 80px;
    height: 247px;
    margin-bottom: -1px;
    padding: 170px 0px 0px 12px;
    border: 1px solid #dfdcd6;
    border-right: 1px solid #b9b6af;
    background: url('images/basket_header_bg.png') -17px -17px;
}
.basket_list_entry.even .basket_list_product, .basket_list_entry.even .basket_list_button {
    background: #f0efed !important;
}
.basket_list_summary_sep {
    float: left;
    width: 18px;
    height: 46px;
    margin-left: 2px;
    border-top: 1px dashed #dfdcd6;
    border-bottom: 1px dashed #dfdcd6;
}

.product_view_overlay > span {
    display: block;
    margin: 90px -12px 102px -12px;
    height: 36px;
    line-height: 33px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}
.product_view_overlay > .text_button {
    margin-left: 24px;
}
.product_view_overlay > .text_button > div {
    width: 140px;
    text-align: center;
}
.product_view_overlay > .image_button {
    margin-left: 82px;
    margin-top: 20px;
}

.product_not_available {
    border: 1px solid #1b70af;
    background: url('images/basket_bg_not_available.png');
}
.product_not_available > span {
    background: url('images/basket_title_not_available.png') top left no-repeat;
}
.product_replaced {
    border: 1px solid #e37e05;
    background: url('images/basket_bg_replaced.png');
}
.product_replaced > span {
    background: url('images/basket_title_replaced.png') top left no-repeat;
}
.product_abandoned {
    border: 1px solid #525256;
    background: url('images/basket_bg_abandoned.png');
}
.product_abandoned > span {
    background: url('images/basket_title_abandoned.png') top left no-repeat;
}

.basket_list_footer {
    clear: left;
}
.basket_summary {
    float: left;
    width: 234px;
    border: 1px solid #b9b6af;
    padding: 0px 18px 22px 18px;
    text-align: center;
    background: url('images/basket_header_bg.png') -17px -17px;
}
.basket_summary h3 {
    background: url('images/basket_summary_bg.png') top left no-repeat;
    height: 51px;
    line-height: 48px;
    margin: -1px -21px 0px -20px;
    padding: 0px 20px 0px 20px;
    color: #ffffff;
    text-shadow: 0px 1px 1px #222222;
}
.basket_summary h3 > span > span {
    font-weight: normal;
    font-size: 0.7em;
    position: relative;
    top: -5px;
}
.basket_summary > p, .basket_summary > h3 {
    text-align: right;
}
.basket_summary > p > span, .basket_summary > h3 > span {
    display: block;
    float: left;
}
.basket_summary > p > span {
    font-weight: normal;
    color: #605656;
}
.basket_summary > p {
    font-weight: bold;
    color: #dc7703;
}
.basket_summary > p.shaded {
    padding-left: 20px;
    color: #b9b6af !important;
}
.basket_summary > p.shaded > span {
    color: #b9b6af !important;
}

.basket_replace_container {
    overflow: hidden;
}
.basket_replace_container .product_sort {
    margin-left: 319px;
    width: 439px;
}
.basket_replace_popup h2 {
    margin-bottom: 25px;
}
.basket_replace_popup .original_product {
    float: left;
    margin-left: 20px;
    margin-top: 5px;
}
.basket_replace_popup .arrow {
    float: left;
    width: 40px;
    height: 81px;
    padding-top: 140px;
    background: url('images/basket_replace_arrow.png') bottom left no-repeat;
}
.basket_replace_popup .replace_list {
    float: left;
    width: 510px;
    max-height: 480px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-top: 0px;
    padding-top: 5px;
}

.basket_asterisk {
    display: block;
    clear: left;
    padding-top: 24px;
    padding-bottom: 10px;
    color: #b9b6af;
    font-size: 0.9em;
    font-style: italic;
}

/*
 * Compte retailer
 */
.account_retailer_identifiers {
    display: table;
    margin-top: -17px;
    width: 100%;
    border-collapse: separate;
    border-spacing: 17px;
    margin-bottom: 13px;
    text-align: left;
}
.account_retailer_identifiers > div { display: table-row; }
.account_retailer_identifiers > div > div {
    display: table-cell;
    vertical-align: middle;
    border: 1px solid #b9b6af;
    border-radius: 4px;
    background-color: #f0efed;
    padding: 12px;
    width: 50%;
}

.account_retailer_identifiers input, .account_retailer_identifiers label {
    margin-top: 3px;
    margin-bottom: 3px;
}

.account_retailer_identifiers input {
    width: 100%;
}

.account_retailer_logo {
    float: left;
    width: 140px;
    height: 90px;
    line-height: 90px;
    margin-right: -140px;
    text-align: center;
}
.account_retailer_logo img {
    vertical-align: middle;
}

.accountsuperbudget_body {
    background-color: #f0efed;
    border: 1px solid #b9b6af;
    border-radius: 4px;
    padding: 20px;
    margin: auto;
    margin-bottom: 22px;
}
.accountsuperbudget_body h2 {
    margin-top: 0px;
    margin-bottom: 22px;
}

/*
 * Injection
 */
.inject_step_date_form, .injectstepinject_progress, .popup_form {
    width: 500px;
    margin: auto;
    margin-bottom: 30px;
    border: 1px solid #b9b6af;
    border-radius: 4px;
    background-color: #f0efed;
    text-align: center;
    padding: 10px;
}

.inject_step_password_table {
    display: table;
    border-spacing: 20px;
    border-collapse: separate;
    border: none;
    margin: auto;
}
.inject_step_password_table > div { display: table-row; }
.inject_step_password_table > div > div {
    display: table-cell;
    vertical-align: middle;
    width: 350px;
    border: 1px solid #b9b6af;
    border-radius: 4px;
    background-color: #f0efed;
    padding: 10px;
}

.inject_step_password_table h3 {
    font-size: 21px;
    line-height: 21px;
    margin: 0px;
}

.inject_step_password_table input[type="text"], .inject_step_password_table input[type="password"] {
    margin-top: 6px;
    margin-bottom: 6px;
    width: 100%;
}



#inject_pgs {
    width: 300px;
    margin: auto;
    border: 1px solid black;
    border-radius: 3px;
    background-color: #b9b6af;
    height: 15px;
    overflow: hidden;
}

#inject_pgs_bar {
    height: 15px;
    background-color: #ec8505;
    float: left;
}

#inject_message {
    text-align: center;
}

/*
 * Pages statiques
 */
#faq {
    text-align: justify;
}
#faq p {
    margin-bottom: 50px;
    border-left: 5px solid #e5e9ee;
    padding-left: 20px;
}
#faq h2 {
    margin-top: 0px;
    text-align: left;
    font-size: 22px;
}

.toc {
    margin: 10px;
    border: 1px solid #b9b6af;
    background-color: #f8f8f8;
    padding: 10px 10px 10px 20px;
}
.toc li {
    list-style-type: none;
}
.toc a {
    text-decoration: none;
    color: #444;
}
.toc a:hover {
    text-decoration: underline;
}

.stores_table {
    border-collapse: collapse;
    width: 700px;
    margin: auto;
}
.stores_table td:first-child {
    width: 200px;
}
.stores_table td, .stores_table th {
    border: 1px solid #b9b6af;
    padding: 2px;
}
.stores_table th {
    background-color: #eee;
}

/*
 * Footer
 */
#footer {
    margin: -50px -21px 0px -16px;
    background: url('images/footer_left.png') left no-repeat;
    padding-left: 13px;
    z-index: 2;
}

#footer > div {
    background: url('images/footer_right.png') right no-repeat;
}

#footer_left {
    height: 40px;
    line-height: 33px;
}

#footer_left * {
    color: #ffffff;
    text-shadow: #1f344d 1px 1px 2px;
    font-weight: bold;
    font-size: 12px;
    text-decoration: none;
}
#footer_left span {
    margin-right: 6px;
}

#footer_left a:hover {
    color: #ec9327;
}

#footer_right {
    float: right;
    margin-right: 18px;
}
#footer_right * {
    color: transparent;
    font-size: 0px;
    display: block;
    width: 24px;
    height: 24px;
    margin: 6px 0px 0px 6px;
    float: right;
    background-image: url('images/icons.png');
}
#footer_right a:hover {
    background-image: url('images/icons_hover.png');
}
#facebook { background-position: 0px 0px; }
#googleplus { background-position: 0px -24px; }
#linkedin { background-position: -24px -24px; }
#twitter { background-position: 0px -48px; }
#email { background-position: -24px -48px; }
#facebook2 { background-position: 0px -72px; }
#googleplus2 { background-position: -24px 0px; }

#bottompage {
    margin: 30px 20px 10px 20px;
    color: #888;
    font-style: italic;
    font-size: 0.9em;
}
.popups_shown #bottompage {
    margin-bottom: 600px;
}
#prices_date {
    float: right;
}

#applet_iframe {
    position: absolute;
    width: 1px;
    height: 1px;
    top: -20px;
    left: -20px;
}

#share_buttons {
    position: absolute;
    width: 99px;
    height: 25px;
    top: 32px;
    left: 50%;
    margin-left: -50px;

    background-color: #eeeef8;
    border: 1px solid #a8a8d6;
    border-top: none;
    border-radius: 0px 0px 4px 4px;
}
#share_buttons a {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin: 5px 4px 0px 4px;

    color: transparent;
    font-size: 0px;
    background-image: url('images/icons.png');
}
#share_buttons a:hover {
    background-image: url('images/icons_hover.png');
}
#share_buttons div {
    float: left;
    height: 25px;
    border-left: 1px solid #e0e0f6;
}
