@CHARSET "UTF-8";

/* ----------------------------------------------
    Reset
---------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ----------------------------------------------
    Reset END
---------------------------------------------- */

/* ----------------------------------------------
    Global
---------------------------------------------- */

html {
    background: #EEF6FB;
}

body {
    font-family: "Lucida Grande", Arial, sans-serif;
    font-size: 14px;
    color: #4b4b4b;
}

*:focus {
    outline: none;
    -moz-outline-style: none;
}

a, a:visited {
    text-decoration: none;
    color: #539CD1;
}

a:hover {
    text-decoration: underline;
    color: #035A98;
}

.c {
    max-width: 990px;
    margin: 0 auto;
    padding: 0px 10px;
}

.cBoth {
    display: block;
    clear: both;
}

.dNone {
    display: none;
}

p {
    clear: both;
    line-height: 20px;
    margin-bottom: 15px;
    text-align: justify;
}

.section {
    padding-bottom: 10px;
}

.section:last-child {
    padding-bottom: 0;
}

em {
    font-weight: bold;
}

[class*='col-'] {
    float: left;
    padding-right: 20px; /* column-space */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.grid {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.grid:after {
    content: "";
    display: table;
    clear: both;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.col-1-2, .col-6-12 {
    width: 50%;
}

.ad {
    text-align: center;
}

@media handheld, only screen and (max-width: 767px) {
    .grid {
        width: 100%;
        min-width: 0;
        padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
    }

    [class*='col-'] {
        width: auto;
        float: none;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding-left: 0px;
        padding-right: 10px; /* column-space */
    }

    /* Mobile Layout */
    [class*='mobile-col-'] {
        float: left;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 10px;
        padding-left: 0px;
        padding-right: 10px; /* column-space */
        padding-bottom: 0px;
    }

    .mobile-col-1-1 {
        width: 100%;
    }
}

/* ----------------------------------------------
    Global END
---------------------------------------------- */

/* ----------------------------------------------
    Header
---------------------------------------------- */
.wr {
    background: #fff;
    max-width: 1100px;
    margin: 10px auto 0;
    padding: 40px 50px 50px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#header {
    border-bottom: 5px solid #539CD1;
}

#header .c {
    position: relative;
}

#header .logo {
    display: block;
    height: 100px;
    margin-bottom: 20px;
    width: 100%;
    text-indent: -5000px;
    background: url('logo.png') top left no-repeat;
    background-size: auto 100px;
}

#search-form {
    position: absolute;
    right: 0;
    top: 20px;
    width: 250px;
    /*box-shadow: 0 0 1px rgba(0,0,0,0.3);*/
}

#search-form label {
    text-align: center;
    color: #539CD1;
    font-size: 16px;
    display: block;
    text-transform: uppercase;
}
#search-form .search-wr-input {
    border-radius: 10px;
    padding: 10px 20px;
    background: #539CD1;
    position: relative;
}
#search-form input {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.3);
    font-size: 14px;
    padding: 5px;
    color: #999;
    width: 200px;
    text-align: center;
}

#search-form input:focus, #search-form:hover input {
    color: #666;
    border: 1px solid rgba(0,0,0,0.6);
}

.autocomplete-suggestions {
    background: #539CD1;
    width: 250px;
    left: 20px;
    margin-top: 5px;
}

.autocomplete-suggestion {
    border-top: 2px solid #fff;
    padding: 0 20px;
    display: block;
    line-height: 24px;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.1);
    text-indent: 4px;
}

.autocomplete-suggestions .selected a, #search-results li:hover a {
    color: #fff;
}

#search-results a:hover {
    text-decoration: none;
}

.autocomplete-suggestions .result {
    display: flex;
    flex-direction: row;
}

.autocomplete-suggestions .result-cp {
    flex-grow: 0;
}

.autocomplete-suggestion {
    position: relative;
    cursor: pointer;
    line-height: 22px;
    padding: 0 5px;
}

.autocomplete-selected, .autocomplete-suggestion:hover {
    background-color: #035A98;
}

.autocomplete-suggestions strong {
    font-weight: bold;
}

.breadcrumb {
    font-size: 12px;
    height: 16px;
    line-height: 16px;
    overflow: hidden;
    padding-bottom: 20px;
}

.breadCrumb li {
    display: inline-block;
    text-indent: 0px;
}

/* ----------------------------------------------
    Header END
---------------------------------------------- */

/* ----------------------------------------------
    Page
---------------------------------------------- */
h1 {
    font-size: 36px;
    letter-spacing: -1px;
    margin: 0px 0px 20px;
    color: #2F3540;
}

h2 {
    font-size: 26px;
    letter-spacing: -1px;
    margin: 6px 0px 15px;
    color: #2F3540;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 18px;
    margin: 0px 6px 6px;
}

#page {
    padding-top: 20px;
}

#page .list {
    margin-bottom: 20px;
}

#page ul {
    list-style: disc;
}

#page .s li {
    list-style: disc inside;
    overflow: hidden;
    float: left;
    width: 25%;
    line-height: 22px;
    text-indent: 12px;
    height: 22px;
}

#page li a {

}

#page ul.i {
    margin-bottom: 15px;
    margin-left: 12px;
}

#page ul.i li {
    list-style: disc inside;
    line-height: 18px;
    margin: 4px 0;
}

#page ul.i ul {
    margin-left: 12px;
    margin-bottom: 0;
}

#page .list li.telephone a {
    color: #035A98;
    font-size: 1.1em;
    text-decoration: underline;
}

#page .list li.telephone a:hover {
    text-decoration: none;
}

#page .da li {
    float: none;
    width: auto;
    height: auto;
}

#page ul.da ul {
    margin-left: 40px;
    font-size: 90%;
}

#page ul.col50 li {
    width: 50%;
}

#page .item {
    height: 80px;
    border-bottom: 1px solid #e9e9e9;
    position: relative;
    padding: 10px 40px 10px 100px;
    cursor: pointer;
    overflow: hidden;
}

#page .item.over a {
    text-decoration: underline;
}

#page .item h4 {
    line-height: 24px;
    height: 24px;
    margin: 0px;
}


#page .item p {
    margin: 0px;
    font-size: 12px;
    height: 20px;
    overflow: hidden;
}

#page .item .thumb {
    display: block;
    height: 100px;
    width: 100px;
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(sprite2.png) -10px 0px no-repeat;
}

#page .item:nth-child(3n+1) .thumb {
    background-position: -110px 0px;
}

#page .item:nth-child(3n+2) .thumb {
    background-position: -210px 0px;
}

#page .item .arrow {
    display: none;
    height: 36px;
    width: 36px;
    position: absolute;
    top: 32px;
    right: 10px;
    background: url(sprite2.png) -590px 0px no-repeat;
}

#page .item.over .arrow {
    display: block;
}

#page .item.lad {
    width: 100%;
    padding: 0;
}

#page .item.lad .thumb {
    display: none;
}

#page .pages {
    margin-bottom: 20px;
}

#page .pages p {
    margin-top: 20px;
    text-align: center;
}

#page .pages span,
#page .pages a {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: #68bdff;
    border-radius: 100%;
    text-align: center;
    line-height: 26px;
    color: #f0f0f0;
    margin-left: 40px;
    text-shadow: none;
}

#page .pages span {
    background: #4f94c6;
}
#page .pages a:hover {
    text-decoration: none;
    background: #035A98;
}

#page .phone {
    height: 100px;
}

#phone {
    width: 272px;
    height: 50px;
    display: block;
    background: #539CD1 url('sprite2.png') -310px -55px no-repeat;
    margin: 10px auto 10px;
    position: relative;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 5px 0 #3E78A2;
    cursor: pointer;
    color: #fff;
    transition: box-shadow ease 300ms;
}

#phone:hover {
    box-shadow: 0 5px 0 #3E78A2,
    0 5px 10px rgba(0,0,0,0.6);
    text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
    background-color: #2E8FD5;
}
#phone:active {
    box-shadow: 0 4px 0 #3E78A2,
    0 5px 5px rgba(0,0,0,0.6)
}

#phone span {
    left: 80px;
    line-height: 45px;
    position: absolute;
    top: 5px;
    cursor: pointer;
}

#phone:hover span {
    text-decoration: underline;
}

#phone.disabled {
    font-family: Georgia, serif;
    cursor: default;
    font-size: 28px;
}

#phone.disabled:hover span {
    text-decoration: none;
}

#page p.info {
    font-size: 10px;
    color: #999;
    text-align: center;
    margin-left: 60px;
    margin-right: 60px;
    line-height: 16px;
}

#page p.info a {
    color: #999;
    text-decoration: underline;
}

#page p.info a:hover {
    color: #333;
}

div.info h2 {
    background: rgba(255, 255, 255, 0.4);
}

/* ----------------------------------------------
    Page END
---------------------------------------------- */

/* ----------------------------------------------
    Footer
---------------------------------------------- */
#footer .c {
    height: 120px;
    font-size: 11px;
}

#footer .section {
    border: none;
    padding-top: 20px;
}

#footer p {
    margin-bottom: 10px;
    color: #525d70;
    line-height: 16px;
}

#footer a {
    color: #2F3540;
}

/* ----------------------------------------------
    Footer END
---------------------------------------------- */

/* ----------------------------------------------
    Media < 800px
---------------------------------------------- */
@media screen and (max-width: 950px) {
    #search-form {
        display: none;
    }

    .wr {
        padding: 30px;
    }
}

@media screen and (max-width: 800px) {

    body {
    }

    .wr {
        padding: 20px;
    }

    .c {
        width: auto;
        padding: 0 10px;
    }

    #header .c {
        height: auto;
        margin-bottom: 20px;
    }

    #header .logo {
        background-size: auto 80px;
        height: 80px;
    }

    .breadcrumb {
        position: relative;
        bottom: -20px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    .section {
        padding-bottom: 0;
    }

    #page .items {
        width: 100%;
        overflow: hidden;
    }

    #page .item {
        min-height: 80px;
        height: auto;
    }

    #page .item.over .arrow {
        display: none;
    }

    #page .item.lad {
        width: 100%;
        overflow: hidden;
    }

    #page .pages p {
        text-align: center;
        padding-left: 0;
        padding-top: 20px;
    }

    #page .pages span, #page .pages a {
        float: none;
        display: inline-block;
    }

    #page .infoAdr {
        width: -moz-calc(100% - 320px);
        width: -webkit-calc(100% - 320px);
        width: calc(100% - 320px);
    }

    #page .rightLinks {
        width: 300px;
        height: 250px;
        overflow: hidden;
    }

    #page .phone {
        height: 80px;
    }

    #page p.info {
        margin-left: 0;
        margin-right: 0;
        line-height: 14px;
    }

    #footer .c {
        padding-bottom: 60px;
    }
}

/* ----------------------------------------------
    Media < 800px END
---------------------------------------------- */
/* ----------------------------------------------
    Media < 600px
---------------------------------------------- */
@media screen and (max-width: 600px) {

    body {
        font-size: 13px;
    }

    .wr {
        margin-top: 0px;
        padding: 10px 0; /* Pour ads full width */
        border-radius: 0;
    }

    .breadcrumb {
        padding-bottom: 0;
        bottom: -12px;
        height: auto;
        line-height: 18px;
    }

    .breadcrumb div:first-child {
        display: none;
    }

    #header {
        margin: 0;
    }

    #header .c {
        min-height: 80px;
    }

    #header .logo {
        background-size: auto 60px;
        height: 60px;
        background-position-x: center;
    }

    #page .s li {
        width: 50%;
    }

    #page .items {
        margin-bottom: 10px;
    }

    #page .item {
        padding: 10px 0;
    }

    #page .item h4 {
        height: auto;
        line-height: 22px;
    }

    #page .item p {
        height: auto;
        line-height: 16px;
        margin-top: 4px;
    }

    #page .item .thumb {
        display: none;
    }

    #page .item:nth-child(3n+1) .thumb {
        background-position: -55px 0px;
    }

    #page .item:nth-child(3n+2) .thumb {
        background-position: -105px 0px;
    }

    #page .item.lad .thumb {
        background-size: 50px auto;
    }

    #page .infoAdr {
        width: 100%;
    }

    #page .rightLinks {
        float: none;
        clear: both;
        margin: 0 auto 10px;
    }

    #page ul.col50 li {
        width: 100%;
        height: auto;
    }

    .list.data {
        display: none;
    }

    #page h2 {
        line-height: 30px;
        margin: 4px 0 6px;
    }

    .info p {
        margin-bottom: 10px;
    }

    #phone {
        height: 45px;
        font-size: 16px;
        background-position: -310px -57px;
    }

    #phone span {
        left: 90px;
        line-height: 35px;
    }
}

/* ----------------------------------------------
    Media < 600px END
-------------

--------------------------------- */

#eu-notice {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
}
.eu-notice-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.8);
    z-index: 0;
}
.eu-notice {
    max-width:1100px;
    width: 80vw;
    margin : 0;
    padding : 0;
    background : #eee;
    z-index : 2000;
    font-family : Roboto, Tahoma, Verdana, Arial, sans-serif;
    box-sizing: border-box;
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    box-shadow: 0 0 5px rgba(0,0,0,0.6);
    z-index: 1;
    margin : 0 auto;
    padding: 1rem;
}
.eu-notice-g {
    display: flex;
    flex-direction: row;
    /*justify-content: center;*/
    align-items: center;
}
.eu-notice-title {
    font-size: 1.8rem;
    padding: 2rem 0;
    margin: 0;
    line-height: 2rem;
    text-align: left;
}
.eu-notice-yes {
    text-align: center;
    background: #24A9F3;
    color: #fff;
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 3px;
    line-height: 2rem;
    height: 2rem;
    font-size: 1.4rem;
    margin: 1rem;
    width: 250px;
    transition: background-color 500ms;
    cursor: pointer;
}
.eu-notice-yes:hover {
    transition: all 300ms;
    background: #26B1FF;
    text-decoration: none;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
    color: #fff;
}
.eu-notice-yes svg {
    fill: #fff;
}
.eu-notice-neutral, .eu-notice-desc {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 0.4rem;
}
.eu-notice-neutral a,.eu-notice-desc a {
    color: #666;
    text-decoration: none;
    border-bottom: 1px dotted #666;
}
.eu-notice-desc a:hover, .eu-notice-neutral a:hover {
    text-decoration: none;
    border-bottom-style: solid;
}

.eu-notice-off {
    opacity: 0;
    transition: opacity 500ms;
}

@media screen and (max-width: 540px) {
    .eu-notice-g {
        display: flex;
        flex-direction: column;
    }
    .eu-notice-yes {
        margin-top: 0;
    }
    .eu-notice {
        width: 90%;
    }
}

.ddncc_c {
    background : none;
    width : 100%;
    overflow : hidden;
}
.ddncc_b {
    width : 260px;
    height : 32px;
    display : block;
    margin : 0 auto 10px;
    position : relative;
    overflow : hidden;
}
.ddncc_b[data-t='m'] {
    width : 288px;
}
.ddncc_b img {
    position : absolute;
    top : 0;
    left : 0;
    width : 100%;
    height : auto;
}
.ddncc_b a {
    display : block;
    position : absolute;
    margin : 0;
    padding : 0;
    top : 0;
    left : 0;
    right : 0;
    bottom : 0;
    text-decoration : none;
}
.ddncc_b span {
    color : #21a5d0;
    display : block;
    position : absolute;
    width : 153px;
    line-height : 32px;
    height : 32px;
    text-align : center;
    font-family : Arial, sans-serif;
    font-weight : bold;
    font-size : 20px;
}
.ddncc_b[data-t='b'] span {
    color : #91919b;
}
.ddncc_b[data-t='g'] span {
    color : #78b41e;
}
.ddncc_b[data-t='m'] span {
    color : #000;
}
.ddncc_i {
    font-family : Arial, sans-serif;
    font-size : 10px;
    line-height : 15px;
    margin : 0 0 10px;
    text-align : center;
    padding : 0px 20px;
    color : #888;
}
.ddncc_i a {
    color : #888;
    text-decoration : underline;
    border:0;
}
.ddncc_c[data-s='L'] .ddncc_b {
    height : 48px;
    width : 394px;
}
.ddncc_c[data-s='L'] .ddncc_b[data-t='m'] {
    width : 434px;
}
.ddncc_c[data-s='L'] .ddncc_b span {
    width : 234px;
    height : 48px;
    line-height : 48px;
    font-size : 32px;
}