/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */

/* HTML element (SMACSS base) rules */
@import "normalize.css";

/* Layout rules */
@import "layouts/responsive.css";

/* Component (SMACSS module) rules */
@import "components/misc.css";
/* Optionally, add your own components here. */
@import "print.css";

/* Font Faces */
@import "fonts/webfont.css";

*{
    margin:0;
    padding:0;
}

body {
    font-family:Arial, sans-serif;
/*  min-width: 940px;*/
}
@media only screen and (min-device-width : 768px) {
    body {
        /*min-width: 940px;*/
        /*padding: 5px 5px 5px 5px;*/
    }

}

hr {
    border: none;
    border-bottom: 1px solid #FFF;
}

.title {
    font-family:'Avenir LT W01 65 Medium';
    font-size:20px;
}

.title1,
.block-content-center.title1 {
    font-size: 20px;
    border-bottom:1px solid #dcdad8;
    /* padding-left:3px; cf RTE_VOUS > HP > Découvrez également */
    margin-bottom:25px;
    padding-top:35px;
    padding-bottom:12px;
    line-height:26px;
    color:#222;
    font-family:'Avenir LT W01 65 Medium';
}

.title2 {
    z-index:99;
    position: absolute;
    top: 0px;
    left: 0;
    background: #005e82;
    min-width: 180px;
    padding: 0 20px;
    text-align: center;
    color: white;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    font-family: 'Avenir LT W01 65 Medium';
}

.button_link {
    display:inline-block;
    border:1px solid;
    text-transform:uppercase;
    padding:10px 18px 10px 18px;
    font-size:12px;
    font-weight:bold;
}

div#htmlcaption-1 {
    display: none;
}

.button_link.arrow_blue,
.button_link.arrow_black,
.button_link.arrow_red,
.button_link.arrow_navy,
.button_link.arrow_gray,
.button_link.arrow_white {
    background-position-x:18px;
    background-position:18px 50%;
}

.button_link.arrow_black a {
    color:black;
}

.button_link.arrow_blue a,
.button_link.arrow_navy a,
.button_link.arrow_black a,
.button_link.arrow_red a,
.button_link.arrow_gray a,
.button_link.arrow_white a {
    padding-left:25px;
}


.arrow_blue, .arrow_black, .arrow_red, .arrow_gray, .arrow_white, .arrow_navy,
.mini_arrow_black, .mini_arrow_navy, .mini_arrow_blue, .mini_arrow_red, .mini_arrow_gray, .mini_arrow_white {
    background-position-y:center;
    background:0 50% no-repeat;
    padding-left:10px;
}

.arrow_blue {
    background-image:url('img/arrow_blue.png');
}
.arrow_navy {
    background-image:url('img/arrow_navy.png');
}
.arrow_black {
    background-image:url('img/arrow_black.png');
}
.arrow_gray {
    background-image:url('img/arrow_gray.png');
}
.arrow_red {
    background-image:url('img/arrow_red.png');
}
.arrow_white {
    background-image:url('img/arrow_white.png');
}

.mini_arrow_black {
    background-image:url('img/mini_arrow_black.png');
}

.mini_arrow_blue {
    background-image:url('img/mini_arrow_blue.png');
}
.mini_arrow_red {
    background-image:url('img/mini_arrow_red.png');
}
.mini_arrow_gray {
    background-image:url('img/mini_arrow_gray.png');
}
.mini_arrow_white {
    background-image:url('img/mini_arrow_white.png');
}
.mini_arrow_navy {
    background-image:url('img/mini_arrow_navy.png');
}

a.mini_arrow_navy {
    color:#025f81;
}

a.mini_arrow_white {
    color:white;
}
a.mini_arrow_black {
    color:black;
}

.bold {
    font-weight:bold;
}

.center {
    text-align:center;
}

.float_right {
    float:right;
}

.right {
    float: right;
    width: 300px;
}

@media only screen and (max-width: 960px){
    .right{
        width: 100%;
    }
}

.left {
    width: 600px;
    float: left;
}
@media only screen and (max-width: 960px){
    .left{
        width: 100%;
    }
}

.pr {
    position: relative;
}

.element-invisible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
}

.user {
    height: 23px;
    float: right;
    margin-top: 0;
    margin-left: -220px;
    width: 168px;
    padding: 9px;
    background-color: #45c6e4;
}
.domain-rteetvous .user {

    background-color: #f5a091;
    height: 24px;

}

.user a {
    color: white;
}

.user:before {
    content: url(../images/profil.png);
    margin-right: 10px;
}

.user:after {
    content: url(../images/flecha-desplegable.png);
    margin-left: 20px;
}

/* ------------------ MARGIN & PADDING CLASSES ------------------ */

.mt0 { margin-top:0px;}
.mt10 { margin-top:10px;}
.mt20 { margin-top:20px;}
.mt30 { margin-top:30px;}
.mt40 { margin-top:40px;}
.mt50 { margin-top:50px;}
@media only screen and (max-width: 960px){
    .mt50 {
        margin-top: 320px;
    }
    
}
.mt60 { margin-top:60px;}

.mb10 { margin-bottom:10px;}
.mb20 { margin-bottom:20px;}
.mb30 { margin-bottom:30px;}
.mb40 { margin-bottom:40px;}
.mb50 { margin-bottom:50px;}
.mb60 { margin-bottom:60px;}
.mt100 { margin-top:100px;}

.pt10 { padding-top:10px;}
.pt20 { padding-top:20px;}
.pt30 { padding-top:30px;}
.pt40 { padding-top:40px;}
.pt50 { padding-top:50px;}
.pt60 { padding-top:60px;}

.pb10 { padding-bottom:10px;}
.pb20 { padding-bottom:20px;}
.pb30 { padding-bottom:30px;}
.pb40 { padding-bottom:40px;}
.pb50 { padding-bottom:50px;}
.pb60 { padding-bottom:60px;}

.nmt10 { margin-top:-10px;}
.nmt20 { margin-top:-20px;}
.nmt30 { margin-top:-30px;}
.nmt35 { margin-top:-35px;}
.nmt40 { margin-top:-40px;}
.nmt50 { margin-top:-50px;}
.nmt60 { margin-top:-60px;}

.nmb10 { margin-bottom:-10px;}
.nmb20 { margin-bottom:-20px;}
.nmb30 { margin-bottom:-30px;}
.nmb40 { margin-bottom:-40px;}
.nmb50 { margin-bottom:-50px;}
.nmb60 { margin-bottom:-60px;}

.npt10 { padding-top:-10px;}
.npt20 { padding-top:-20px;}
.npt30 { padding-top:-30px;}
.npt40 { padding-top:-40px;}
.npt50 { padding-top:-50px;}
.npt60 { padding-top:-60px;}

.npb10 { padding-bottom:-10px;}
.npb20 { padding-bottom:-20px;}
.npb30 { padding-bottom:-30px;}
.npb40 { padding-bottom:-40px;}
.npb50 { padding-bottom:-50px;}
.npb60 { padding-bottom:-60px;}

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

/* SMACSS theme rules */
/* @import "theme-A.css"; */
/* @import "theme-B.css"; */

#page, .region-bottom{
    max-width: 2000px;
    position:relative;
}
#page{
}

.page-content > div:last-child, #content > div:last-child {
    padding-bottom:0px;
}

@media only screen and (max-width: 960px){
    #page {
        position:relative;
        width:100%;
        right:0;
        left:0;
    }
}

a:hover{
    text-decoration: underline;
}

#main {
    clear:both;
    padding:0;
}

@media only screen and (max-width: 960px) {
    #header {
      height: 150px;
      margin-bottom: 1em;
    }

    #main{
        /*margin-top:-50%;*/
    }

}

.lire-plus {
    text-align: center;
    text-decoration: none;
    padding: 13px;
    color: white;
    background: #00a8d9 !important;
    width: 190px;
    margin-top:0;
}

.lire-plus:before{
    content: url(../images/play.png);
    margin-right: 10px;
}

.item-list {
    /*float: right;*/
}

.wrap,
.center-wrapper {
    width:940px;
    margin:0 auto;
}

.wrap .view-content img
{
    width: 100%;
	height: auto;
}

@media only screen and (max-width: 960px) {
    .wrap{
        width:100%;
        margin:0;
    }

}


@media only screen and (max-width: 960px) {
    .center-wrapper{
        width:100%;
        margin:0;
    }

}

.panel-2col-bricks .panel-col-first {
    width: 620px;
    float: left;
}

@media only screen and (max-width: 960px) {
    .panel-2col-bricks .panel-col-first{
        width:100%;
    }

}


.panel-2col-bricks .panel-col-last {
    float: right;
    width: 300px;

}

@media only screen and (max-width: 960px) {
    .panel-2col-bricks .panel-col-last{
        /*float: none;
        width: 100%;*/
        float: left;
    }

}

.panel-col-last .sidebloc {
    background:#f5f3f0;
    padding:35px;
    margin-bottom: 20px;
}

.panel-col-middle {
    clear: both;
}


.sidebloc#links h3,
.sidebloc#contacts h3 {
    font-family: 'Avenir LT W01 85 Heavy';
    font-size: 20px;
    color: #025F81;
    margin-top: 0;
}

.scroll-to-top {
    position: fixed;
    background:url('../images/scroll_to_top.png') no-repeat;
    cursor: pointer;
    width:60px;
    height: 58px;
    bottom: 1em;
    right: calc((100% - 940px )/2 - 98px);
    right: -moz-calc((100% - 940px )/2 - 98px);
    right: -webkit-calc((100% - 940px )/2 - 98px);
    padding-right: 1em;
    display: none;
    z-index: 999;
}



.views-row-odd {
    background:#f8f8f8;
}

/* HEADER Module Profiling */
#header .profil ul.profil-list li a:hover {
    text-decoration:underline;
}



.menu_bar{
    display:none;
    -webkit-font-smoothing:antialiased;
    font-family: 'Avenir LT W01 65 Medium';
    font-size: 13px;
}

.menu_bar1{
    display:inline-block;
    -webkit-font-smoothing:antialiased;
    font-family: 'Avenir LT W01 65 Medium';
    font-size: 13px;
    color: #fff;
    font-size: 14px;
    line-height: 3em;
    display: inline-block;
    position: relative;
    z-index: 10000;
    outline: none;
    text-decoration: none;
    /* margin-right: 20px; */
}
.domain-rteetvous ul.profil-list {
    background: #f5a091;
    margin-left: -505px !important;
}

.domain-rteetvous #carousel{
    display:none !important; 
}

@media only screen and (max-width: 960px){
    .menu_bar1 {
        display:none;
    }
    ul.profil-list{
        display:none;
    }
}



header > .rte_search-wrapper #rte_search a {
  display: none;
}
@media only screen and (max-width: 960px){
  header > .rte_search-wrapper #rte_search a {
    display: block;
  }
}
.barprin_menu{
    display:none;
    -webkit-font-smoothing:antialiased;
    font-family: 'Avenir LT W01 65 Medium';
    font-size: 13px;
}

.submenu_bar{
    display:none;
    -webkit-font-smoothing:antialiased;
    font-family: 'Avenir LT W01 65 Medium';
    font-size: 13px;
}

.menu_sec{
    background:url('../images/mbeurgue.png') no-repeat 15px 0px;
    display:none;
    -webkit-font-smoothing:antialiased;
    font-family: 'Avenir LT W01 65 Medium';
    font-size: 13px;
}

.submenu2_bar{
    display:none;
    -webkit-font-smoothing:antialiased;
    font-family: 'Avenir LT W01 65 Medium';
    font-size: 13px;
}

#header .profil {
    background:#005e82;
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:40px;
    line-height:40px;
    display:none;
}


@media only screen and (max-width: 960px){
    #header .profil {
        padding:0;
        margin:auto;
        height: auto;
        position: relative;
        width: auto;
    }
}


#header .profil .item-list {
    width: 940px;
    margin: 0 auto;
}


@media only screen and (max-width: 960px){
        #header .profil .item-list{
            margin:auto;
            position: relative;
            width: 100%;
        }
        .menu_bar{
            display:inline-block;
            height:33px;
            /*width:50%;*/
            font-family: 'Avenir LT W01 65 Medium';
            font-size: 15px;
            color:#fff;
            background:rgba(255, 255, 255, 0);
            /*margin-top: 5px;*/
            z-index:1;
        }
        
        .barprin_menu{
            display:inline-block;
            height:33px;
            /*width:50%;*/
            font-family: 'Avenir LT W01 65 Medium';
            font-size: 15px;
            color:#fff;
            background:rgba(255, 255, 255, 0);
            /*margin-top: 5px;*/
            float:right;
            z-index:-1;
        }
        /*.submenu_bar{
            display:none;
            position:relative;
            height:33px;
            width:100%;
            font-family: 'Avenir LT W01 65 Medium';
            font-size: 15px;
            color:#fff;
            background:#288FB7;
        }
        .submenu2_bar{
            display:none;
            position:relative;
            height:33px;
            width:100%;
            font-family: 'Avenir LT W01 65 Medium';
            font-size: 15px;
            color:#fff;
            background:#288FB7;
        }*/
        .icon-profil{
      display: block;
      height: 40px;
      width: 40px;
      background: url('../images/mbeurgue.png') no-repeat 0 1px;
      margin-left: 10px;
      margin-top: 10px;
        }
        .icon-menu{
      display: block;
      height: 32px;
      width: 32px;
      margin-right: 10px;
      margin-top: 7px;
      background: url('../images/engrenage_005e82.png') no-repeat 0 1px;
      background-size: contain;
        }
}



#header {
  position: relative;
  height: 150px;
  z-index: 5;
}

#header .profil h3 {
    display:inline-block;
    width:200px;
    margin: 0;
}

@media only screen and (max-width: 960px){
    #header .profil h3 {
    display:none;
    }
}



#header .profil h3 span {
    font-family:'Avenir LT W01 85 Heavy';
    font-size:14px;
    text-transform:uppercase;
    color:white;
    width:200px;
    padding-left:40px;
    background:url('../images/profil.png') no-repeat 15px 0px;
    -webkit-font-smoothing:antialiased;
}


@media screen and (max-width: 760px){
    #header .profil{
        background:#005E82;
        width:100%;
        height:30%;
        margin:0px;
        position:relative;
        z-index:1;
        display:none;
    }
    #header .profil ul li{
        display:block;
        float:none;
                
    }
    
}


#header .logo {
    float: left;
    background: white;
    padding-left: 8px;
    position: relative;
  	z-index: 5;
}

@media only screen 
and (min-device-width : 569px) 
and (max-device-width : 740px){
    #header .logo {
        margin-left:250px;
        height: auto;
        vertical-align: middle;
        width: auto;
        /*margin-top: 20%;*/
    }
}

@media only screen and (max-width: 640px){
  #header .logo {
        margin-top: 0;
        margin-left: 0;
    display: table;
    }
}

@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) {
  #header .logo {
        height: auto;
        vertical-align: middle;
        margin: 0 auto;
    float: none;
    position: initial;
    width: 256px;
    text-align: center;
    display: block;
    }
}

#header .profil ul.profil-list {
    margin:0;
    padding:0;
    display:inline;
}
#header .profil ul.profil-list li {
    display:inline-block;
    list-style-type:none;
    font-family:'Avenir LT W01 65 Medium';
    font-size:13px;
    text-transform:uppercase;
    margin:0;
    padding:0;
}
@media only screen and (max-width: 960px){
    #header .profil ul.profil-list li {
        display:block;
        list-style-type:none;
        font-family:'Avenir LT W01 65 Medium';
        font-size:13px;
        text-transform:uppercase;
        margin:0;
        margin-left: 15px;
        padding:0;
        border-bottom:1px solid #fff;
    }
}

#header .profil_resp ul.profil_resp-list {
    margin:0;
    padding:0;
    display:inline;
}
#header .profil_resp ul.profil_resp-list li {
    display:inline-block;
    list-style-type:none;
    font-family:'Avenir LT W01 65 Medium';
    font-size:13px;
    text-transform:uppercase;
    margin:0;
    padding:0;
}

img.header__logo-image {
    width:90px;
    height:90px;
}

@media only screen and (max-width: 960px){
    img.header__logo-image {
      height: 75px !important;
      width: 75px !important;
      max-width: 75px !important;
      margin-right: 5px;
    }
}

.rte_search-wrapper_resp{
    display:none;
}

@media only screen and (max-width: 960px){
.rte_search-wrapper{
  display: block;
  height: 40px;
  width: 40px;
  float: right;
  margin-top: 11px;
  z-index: 1001;
    }
}
.pA{
  position: absolute;
  top: 0;
}

.tagline {
  color: #999;
  font-family: 'Avenir LT W01 85 Heavy';
  font-size: 12px;
  clear: both;
  padding-bottom: 1em;
}
@media only screen and (max-width: 960px){
  .tagline {
      display: none;
    }
  .pA{
    float: none;
    position: initial;
  }
}



#header .profil ul.profil-list li a {
    color:white;
    text-decoration:none;
    margin-right:45px;
}


#header .profil ul.profil-list li a:hover,
#header .profil ul.profil-list li a.active {
    text-decoration: none;
    border-bottom: 2px solid #fff;
}


.fR{
    position:absolute;
    top:0;
    right:0;
}
.fL{
    float: left;
    height:185px;
}

.bg-line {
  background: transparent url('../images/bg-header.png') no-repeat 50% 50%;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 65px;
}
.domain-rtefrance .cbp-tm-menu > li > a.rte-2nd-nav--item-2::before{
    display:none; /*taki*/
}

@media only screen and (max-width: 960px) {
    .bg-line {
        display:none;
    }
}


@media only screen and (min-width: 1024px) {
    #headerwrapper {
        margin-top:16px;
        position:relative;
        z-index: 2;
    }


}


/*.not-menu-public #headerwrapper{
    margin-top:0;
}
*/
#header, #content, #navigation, .region-sidebar-first, .region-sidebar-second, #footer{
    padding-left: 0;
}


/* IMAGE FAKE DIAPO */
.fake-diapo{
    width: 100%;
}
/*END IMAGE FAKE DIAPO */
#navigation #main-menu{
    /*max-width: 970px;*/
    max-width: 810px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}

@media only screen and (max-width: 960px) {
    #navigation #main-menu{
        width:100%;
    }
}

#top-footer-cols-wrapper > .inner,
#footer-cols-wrapper > .inner,
#rte-core-footer-1 .rte-core-footer-1-content,
#rte-core-footer-2{
    width: 940px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 960px) {
#top-footer-cols-wrapper > .inner,
#footer-cols-wrapper > .inner,
#rte-core-footer-1 .rte-core-footer-1-content,
#rte-core-footer-2{
        width:100%;
        /*margin:8px;*/
    }

}

@media only screen and (max-width: 360px){
#top-footer-cols-wrapper > .inner,
#footer-cols-wrapper > .inner,
#rte-core-footer-1 .rte-core-footer-1-content,
#rte-core-footer-2{
        padding:0;
        margin:0;
    }
}

@media only screen and (max-width: 320px){
#top-footer-cols-wrapper > .inner,
#footer-cols-wrapper > .inner,
#rte-core-footer-1 .rte-core-footer-1-content,
#rte-core-footer-2{
        padding:0;
        margin:0;
    }
}



#navigation {
    height:50px;
    line-height:50px;
}
#navigation #main-menu ul{

}
#navigation #main-menu ul li{
}
#navigation #main-menu ul li a{
    color: #fff;
    font-family:'Avenir LT W01 65 Medium';
    font-size: 14px;
    text-decoration: none;
}

#navigation #main-menu ul.menu li {
    padding-right:40px;
}
#navigation #main-menu{
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

#menu-top{
    float: right;
}
#menu-top ul.menu{
    margin-top: 17px;
    float: left;
}
#menu-top .search{
    background:  transparent url('../images/search-loupe.png') no-repeat;
    width: 45px;
    height: 50px;
    float: left;
}
#menu-top .flagfr{
    background:  transparent url('../images/fr-flag.png') no-repeat;
}
#menu-top .flaguk{
    background:  transparent url('../images/uk-flag.png') no-repeat;
}
#menu-top .flag{
    width: 16px;
    height: 11px;
    float: left;
    margin-top: 24px;
    margin-left: 13px;
}
#menu-top ul li.menu__item{
    float: right;
    list-style: none;
    margin-right: 10px;
    font-size: 13px;
}
#menu-top ul li.menu__item a{
    color: #999999;
    text-decoration: none;
}
#menu-top > ul {
    margin:0; padding:0;
}

#menu-top > ul > li > ul {
    display:none;
}

#menu-top > ul > li > a:after {
    content: url('../images/arrow_down.png');
    margin-left:10px;
    line-height:18px;
    vertical-align:text-bottom;
}
#menu-top > ul > li > a:only-child:after { content: ''; }

.header__site-slogan{
    font-family:'Avenir LT W01 65 Medium';
    font-size:20px;
    color: #00a7d9;
    margin-left: 0.8em;
    /*width: 150px;*/
    width: 0;
    line-height: 24px;
}

@media only screen and (max-width: 960px){
    .header__site-slogan {
        height: auto;
        position: relative;
        margin:0;
    }
}
/*#logo img{
    margin-top: 50px;
}

@media only screen and (max-width: 960px){
    #logo img {
        margin-top:0;
    }
}*/


#block-locale-language ul li{
    float: right;
    list-style: none;
    margin-right: 10px;
}

.social .fa.dailymotion {
    background: url('./img/dailymotion_icon-16_16-white.png') no-repeat center center;
    position: relative;
    bottom: -1px;
    width: 16px;
    height: 16px;
    left: -2px;
}

.langSelection {
    vertical-align: text-bottom;
}

.language-switcher-locale-url {
    position: relative;
}

.i18n-fr .language-switcher-locale-url .fr,
.i18n-en .language-switcher-locale-url .en {
    display: none;
}

.language-switcher-locale-url a {
  display: block;
  text-indent: -999px;
  width: 16px;
  height: 16px;
  overflow: hidden;
  color: transparent;
}

.language-switcher-locale-url a:hover {
    color: transparent;
    text-decoration: none;
}
.language-switcher-locale-url .fr a {
    background: url('../images/fr-flag.png') center center no-repeat;
}

.language-switcher-locale-url .en a {
    background: url('../images/uk-flag.png') center center no-repeat;
}
@media only screen and (max-width: 960px){
  .language-switcher-locale-url a {
    width: auto;
    height: auto;
  }
}
#navigation{
    background-color: #00a7d9;
}

.breadcrumb {
    background:#f5f3f0;
    width:100%;
}

@media only screen and (max-width: 960px){
    .breadcrumb{
        /*margin-top:200px;*/
    }
}

@media only screen and (max-width: 320px){
    .breadcrumb{
        margin-top:140px;
    }
}

.breadcrumb > ol {
    width:940px;
    line-height: 1.25;
    margin:0 auto;
    padding: 8px 0;
}
@media only screen and (max-width: 960px){
    .breadcrumb > ol{
        width: auto;
    }
}
.breadcrumb > ol > li {
    font-size:14px;
    color:#999;

}
.breadcrumb > ol > li > a {
    color:#999;
    text-decoration:none;
}

.breadcrumb > ol > li > a:hover {
    text-decoration:underline;
}

.breadcrumb > ol > li:after {
    content:url('../images/bread_arrow.png');
    margin:-3px 12px 0 12px;
}

.breadcrumb > ol > li:last-child:after {
    content:'';
    margin:0;
}
#footer{
    background-color: #033558;
    padding-left: 0
}

li.n1 > a {
    text-transform:uppercase;
}

#top-footer-cols-wrapper,
#rte-core-footer-1{
    background-color: #02538B;
}



#top-footer-cols-wrapper > .inner,
#rte-core-footer-1 .rte-core-footer-1-content{
 padding: 1em;
 display: table;
}

@media only screen and (max-width: 960px){
  #top-footer-cols-wrapper > .inner,
  #rte-core-footer-1 .rte-core-footer-1-content{
    padding: 2%;
    margin: 0;
    box-sizing: border-box;
    }
	
  .region-top-footer-col1,
  .region-top-footer-col2,
  .region-top-footer-col3{
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }	
}

#top-footer-cols-wrapper .block {
    margin-bottom: 0;
}

.region-top-footer-col1,
.region-top-footer-col2,
.region-top-footer-col3 {
  width: 33%;
  box-sizing: border-box;
  display: inline-block;
}

.region-top-footer-col2,
.region-top-footer-col3 {
  padding-top: 10px;
}

.domain-rteetvous #block-rte-common-social-links .block-title,
.domain-rtefrance #block-rte-common-social-links .block-title{
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

#block-rte-common-social-links .social-network img{
    margin-right: 5px;
}
#block-rte-common-newsletter-subscription-form {
	text-align: right;
}
#block-rte-common-cookies-link {
	text-align: center;
}

#block-rte-common-newsletter-subscription-form a.block-title,
#block-rte-common-cookies-link span.block-title{
    color: #fff;
    font-size: 14px;
	font-weight: 700;
    text-transform: uppercase;
	cursor: pointer;
}

#block-rte-common-newsletter-subscription-form a.block-title:hover,
#block-rte-common-cookies-link span.block-title:hover{
    color: rgb(1,141,202);
	text-decoration: none;
}

@media only screen and (max-width: 960px){
  #block-rte-common-newsletter-subscription-form,
  #block-rte-common-social-links,
  #block-rte-common-cookies-link  {
    text-align: center;
	margin: 0;
    width: 100%;
    float: none;
    overflow: hidden;
  }
  
  .region-top-footer-col1,
  .region-top-footer-col2,
  .region-top-footer-col3 {
    width: 100%;
    box-sizing: border-box;
    display: inline-block;
	text-align: center;
  }
  
  .region-top-footer-col1 {
    padding-top: 10px;
  }
}

.formnews,
#rte-core-footer-1 .form-newsletter form{
    float: right;
}

@media only screen and (max-width: 960px){
  #block-rte-common-newsletter-subscription-form .block-title,
  #rte-core-footer-1 .form-newsletter .title{
    margin: 0;
    text-align: center;
    float: none;
  }
  .formnews, #rte-core-footer-1 .form-newsletter form {
    float: none;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  .formnews > div, #rte-core-footer-1 .form-newsletter form > div {
    display: inline-block;
  }
}

.header .formnews {
    float: none;
}

.header .formnews .form-text {
    outline: none;
    background-color: #FFF;
    border: 1px solid #E3E3E3;
    color: #999;
    padding: 0 16px;
    width: 190px;
    height: 38px;
    font-size: 13px;
}
.header .formnews .form-text:focus {
    color: #000;
}

.header .formnews .form-submit {
    outline: none;
    border: 1px solid #EAEAEA;
    background-color: #EAEAEA;
    color: #959898;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    width: 40px;
    height: 38px;
    font-size: 13px;
    padding: 0;
}

.header .formnews .form-submit:hover {
    background-color: #BABBBF;
    color: #FFF;
}

.formnews .form-item,
#rte-core-footer-1 .form-newsletter form .form-item {
    margin: 0;
    float: left;
    width: 190px;
}

.formnews .form-text,
#rte-core-footer-1 .form-newsletter form .form-text{
    background-color: #003459;
    border: 0 none;
    color: #95A1AD;
    float: left;
    font-size: 14px;
    padding: 10px;
    margin: 0;
}

.formnews .form-text:focus,
#rte-core-footer-1 .form-newsletter form .form-text:focus{
    color: #fff;
}

.formnews .form-submit,
#rte-core-footer-1 .form-newsletter form .form-submit{
    background-color: #018dca;
    border: 0 none;
    color: #fff;
    font-size: 14px;
    padding: 10px;
}
.fa-stack.dailymotion {
    background: url('./img/dailymotion_icon.png') no-repeat center center;
    position: relative;
    bottom: 1px;
}
.fa-stack.dailymotion:hover {
    background: url('./img/dailymotion_icon-white.png') no-repeat center center;
}

#footer-cols-wrapper {
    background-color: #033558;
}

#footer-cols-wrapper .inner {
    display: table;
}


#footer-cols-wrapper .block-title {
    font-size: 13px;
    line-height: 23px;
    color: #fff;
    margin-bottom: 13px;
    text-transform: uppercase;
    font-weight: bold;
}

@media only screen and (max-width: 960px){
    #footer-cols-wrapper .block-title{
        margin-left: 30px;
        margin-bottom: 5px;
    }

    #footer-cols-wrapper .block{
        margin-bottom: 5px;
    }

    #footer-cols-wrapper ul {
        margin-left: 30px;
    }

    #footer-cols-wrapper img {
        margin-left: 30px;
    }
}

#footer-cols-wrapper li {
    font-size: 12px;
    line-height: 18px;
    list-style-image: none;
    list-style-type: 0;
    display: block;
}

#footer-cols-wrapper li a {
    color: #fff;
}

#footer-cols-wrapper .region{
    float: left;
    width: 215px;
    margin-top: 50px;
    margin-bottom: 0px;
    margin-left: 0;
    padding-left: 5px;
    margin-right: 20px;
}

@media only screen and (max-width: 960px){
    #footer-cols-wrapper .region{
        margin-top: 10px;
        width: 100%;

    }
}

#footer-cols-wrapper .region-footer-col4 {
    margin-right: 0;
}


#block-rte-common-other-rte-sites-links .block-title {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

#block-rte-common-other-rte-sites-links li {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    line-height: 23px;
}

#block-rte-common-other-rte-mag li {
    font-weight: bold;
    font-size: 13px;
    line-height: 23px;
}

#block-rte-common-social-links .dailymotion a{
    display: block;
    height: 100%;
    width: 100%;
}

.region-bottom-footer {
    background-color: #033558;
    padding: 20px 0;
}

#block-rte-common-rte-slogan p{
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    margin: 0;
}

#block-rte-common-rte-slogan p.slogan0 {
    font-weight: normal;
}

#block-rte-common-rte-slogan p.slogan2 {
    font-weight: normal;
    font-size: 12px;
}

.copyright{
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 1.45em;
}
#main #content{
    padding-left: 0;
    padding-right: 0;

}

.block-home{
    color: #fff;
    float: left;
    width: auto;
}
.block-home img{
    height: 130px;
    width: 300px;
}
.block-home .content-b a{
    font-family:'Avenir LT W01 85 heavy';
    border: 2px solid #fff;
    color: #fff;
    font-size: 11px;
    margin-top: 15px;
    padding: 4px;
    background:url('../images/arrow.png') no-repeat 20px 50%;
    padding:5px 20px 5px 35px;
    background-position-y:center;
    background-position-x:20px;
    text-decoration: none;
    text-transform: uppercase;
    position:absolute;
    bottom:20px;
    left:20px;
    text-align:center;
    -webkit-font-smoothing:antialiased;
}
.block-home .content-b{
    height: 130px;
    width: 260px;
    font-size: 14px;
    position:relative;
}
.block-home .content-b p{
    margin:0 0 10px 0;
    font-size:15px;
    line-height:20px;
}
.block-home .title-b{
    height: 130px;
}
.block-0,.block-1,.block-3,.block-4,.block-6,.block-7,.block-9,.block-10 {
    margin-right: 20px;
}

@media only screen and (max-width: 960px){
    .block-0,.block-1,.block-3,.block-4,.block-6,.block-7,.block-9,.block-10 {
        margin-right: 0;
    }
    
}

@media only screen and (max-width: 960px){
    .block-0,.block-1, .block-2, .block-3,.block-4,.block-6,.block-7,.block-9,.block-10 {
        margin-left: calc((100% - 300px)/2);
        margin-top:10px;
    }
    
}

.topnav { 
    font-size: 0.8em;
    color: #000;
    background-color: #FFCF29;
    border: 1px #00009C solid;
    padding: 0.5em;
    width:100%;
}

h3.title {
    font-family:'Avenir LT W01 85 Heavy';
    margin:0;
    line-height:18px;
    -webkit-font-smoothing:antialiased;
}
.content-b h3.title {
    font-size:18px;
    font-weight:normal;
    -webkit-font-smoothing:antialiased;
}
.content-b {
    padding:20px;
}
.block-0 .content-b {
    background:#00a8d9 !important;
}
.block-1 .content-b {
    background:#ff6666 !important;
}
.block-2 .content-b {
    background:#009999≤ !important;
}

.block-economix .content-b{
    background-color: #01A9DA;
}
.block-electricite .content-b{
    background-color: #F06F59;
}
.block-projet .content-b{
    background-color: #02A9B1;
}
.block-content-center{
    width: 940px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 960px){
    .block-content-center{
        width: 100%;
        margin-left: auto;
        margin-bottom: 15px;
    }
}
.node ul.links{
    display: none;
}
.panel-2col-stacked .panel-col-top .inside{
    margin-bottom: 0;
}
.front .center-wrapper{
    display: none;
}
.item-discover-also a{
    text-decoration: none;
}

.pane-rte-core-rte-discover-also .block-content-center .actualite a:hover {
    color:#02548C;
    text-decoration:underline;
}

.pane-rte-core-rte-discover-also .block-content-center .projet a:hover {
    color: #E8153E;
    text-decoration:underline;
}

.pane-rte-core-rte-discover-also .block-content-center .evenement a:hover {
    color: #00B6C1;
    text-decoration:underline;
}


/* EXPOSED / CUSTOM FILTERS */
.view-filters form {
    display: none;
}

.tab-side-container {
    background: #fff;
    border: 1px solid #e9e9e9;
    transition: max-height 0.15s ease-out;
    overflow: auto;
    color: #333;
    font-size: 15px;
    margin: 25px auto;
}

.tab-side-container .etabs {
    width: 25.8%;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fbfbfb;
    float: left;
}

.tab-side-container .etabs .tab {
    margin: 0;
    padding: 0 12.5% 0 0;
    text-align: right;
    border-bottom: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
}

.tab-side-container .etabs .tab a {
    display: block;
    padding: 12px 0;
    outline: none;
    color: #333;
}

.tab-side-container .etabs .tab a::before {
    content: url('../images/menu-collapsed.png') no-repeat;
    float: left;
    margin-left: 20px;
}

.tab-side-container .etabs .tab a:hover {
    text-decoration: underline;
}

.tab-side-container .etabs .tab.selected-tab {
    background: #fff;
    position: relative;
    border-right: none;
}

.tab-side-container .etabs .tab:first-child.selected-tab {
    border-top: none;
}

#custom-filters-wrapper + .controls {
    position: relative
}

#custom-filters-wrapper + .controls a.button_link {
    position: absolute;
    top: -10px;
}

#custom-filters-wrapper + .controls a.button_link:hover {
    cursor: pointer;
}

a.adjust {
    display:block;
    text-align:center;
    clear:both;
    width:160px;
    margin:0 auto;
    margin-bottom:25px;
    cursor:pointer;
    font-size:14px;
    font-weight:bold;
    color:#222;
    background:#fbfbfb;
    border-radius:12px;
    padding:0 10px 0 10px;
}

a.adjust.more:before {
    content: url('../images/menu-collapsed.png') no-repeat;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    display:inline-block;
    margin-right:10px;
}

a.adjust.less:before {
    content: url('../images/menu-collapsed.png') no-repeat;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    display:inline-block;
    margin-right:10px;
}


.tab-side-container .etabs .tab a.selected-tab {
    text-decoration: none;
}

.tab-side-container .panel-container {
    background: #fff;
    padding-top: 20px;
    margin-left: 26%;
}

.panel-container .block__title {
    font-size: 0;
}

.custom-filter-niv2,
.panel-container .leaf {
    display: inline-block;
    vertical-align: middle;
    width: 44%;
    padding-left: 4.8%;
    margin-bottom: 10px;
}

.custom-filter-niv2 span,
.panel-container .leaf a {
    color: #b2b2b2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.custom-filter-niv2 span:hover,
.panel-container .leaf a:hover {
    cursor: pointer;
    color: #333;
}

.custom-filter-niv2.selected span,
.panel-container .leaf a.facetapi-active,
.current-search-item-active a,
.current-search-item-rte-search-active a,
.block-facet-created a.facetapi-active {
    display: inline-block;
    color: #333;
    padding: 1px 20px 1px 12px;
    border-radius: 12px;
    background: url('img/close-filter.png') no-repeat right center #F6F2EE;
    border-right: 10px solid rgba(0, 0, 0, 0);
}

/*
.custom-filter-niv2.selected span:after,
.panel-container .leaf a.facetapi-active:after,
.current-search-item-active a:after {
  content: '';
  width: 5px;
  border-radius: 0 12px 12px 0;
  background: #f6f2ee;
}
*/

.current-search-item-rte-search-active li,
.current-search-item-active li {
    font-size: 13px;
    margin-top: 11px;
    margin-right: 8px;
    display: inline-block;
}

/*------ Map Leaflet -------*/
.marker-cluster,
.marker-cluster > div {
    background: rgba(6, 165, 208, 0.75);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
}

.marker-cluster {
    background: rgba(6, 165, 208, 0.25);
    border: 5px solid rgba(6, 165, 208, 0.25);
}

.domain-rteetvous .marker-cluster,
.domain-rteetvous .marker-cluster > div {
    background: rgba(232, 82, 87, 0.75);
}

.domain-rteetvous .marker-cluster {
    background: rgba(232, 82, 87, 0.25);
    border: 5px solid rgba(232, 82, 87, 0.25);
}

.leaflet-control-attribution.leaflet-control {
    display: none;
}


/*--------- Agenda -------------*/
/* item is invisible, but used for layout */
.item,
.item-content {
    width: 220px;
    height: 220px;
    box-sizing: border-box;
}

.item {
    border: none;
    background: transparent;
    margin-bottom:20px;
}

/* item-content is visible, and transitions size */
.item-content {
    color: #fff;
    width: 220px;
    overflow:hidden;
    height: 220px;
    position:relative;
    background: #005e82;
    -webkit-transition: width 0.4s;
    -moz-transition: width 0.4s;
    -o-transition: width 0.4s;
    transition: width 0.4s;
}

.item-content * {
    box-sizing: border-box;
}

.item-content a:hover {
    color: #fff;
}

.item-content .left {
    width:220px;
    height:220px;
    display:table;
    padding:30px 20px 30px 20px;
}

.item-content .left .content {
    display:table-cell;
    vertical-align:middle;
}

.item-content .left .title a {
    color:white;
    line-height:25px;
}

.item-content .right {
    width:220px;
    height:220px;
    display:table;
    margin-left:20px;
    padding:0 20px 0 20px;
}

.item-content .right .body {
    display:table-cell;
    vertical-align:middle;
    font-size:14px;
    color:white;
    line-height:18px;
}

.item-content .right .body a {
    font-weight:bold;
    z-index:8;
    color: #fff;
}

.item:hover .item-content {
    cursor: pointer;
}

.bottom {
    bottom:20px;
    position:absolute;
}
.item-content .left .content .date {
    position:absolute;
    width:180px;
    font-family:'Avenir LT W01 65 Medium';
    font-size:20px;
    line-height:22px;
    text-transform:uppercase;
    color:white;
    top:30px;
}

.item-content .left .content .title {
    position: absolute;
    top: 85px;
    width:185px;
}

.date_divider {
    background:url(img/date_divider.png) no-repeat;
    width:29px;
    height:46px;
    float:left;
}

.item-content .left .content .date .start {
    display:inline-block;
    float:left;
    width:73px;
    text-align:center;
}

.item-content .left .content .date .end {
    display:inline-block;
    float:right;
    width:73px;
    text-align:center;

}
.item-content .left .content .category {
    color:white;
    font-size:12px;
}

.item-content .left .content .bottom {
    width:180px;
    font-size: 12px;
    line-height: 20px;
}

.category,
.button_expand {
    display:inline-block;
}
.button_expand {
    float:right;
    width:18px;
    height:18px;
    line-height:12px;
    font-size: 14px;
    border:1px solid white;
    text-align:center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.button_expand:before {
    vertical-align:middle;
    width:18px;
    height:18px;
    color:white;
    content:'+';
}

.item.is-expanded .button_expand:before {
    content:'-';
}

/* both item and item content change size */
.item.is-expanded,
.item.is-expanded .item-content {
    width: 460px;
    height: 220px;
}

.item.is-expanded {
    z-index: 2;
}

.item.is-expanded .item-content {
    background: #004964;
}


/*--------- Boite à outils -------------*/
#toolbox.statique {
    width: 210px;
    position: absolute;
    right: 0;
    top: 43px;
    z-index: 997;
}

.domain-rteetvous #toolbox.statique
{
  top: 21px;
}

.statique .toolbox-title,
.statique .toolbox-options li {
    height: 40px;
    color: #FFF;
    padding-left: 46px;
    line-height: 40px;
    list-style: outside none none;
}

.statique .toolbox-options li a {
    color: #fff;
}

.statique .toolbox-title {
    background: 88% 50% no-repeat;
    background-image: url('img/arrow_down_white.png');
    background-position-y:center;
    background-color: #004964;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Avenir LT W01 85 Heavy';
    cursor: pointer;
}

.statique .toolbox-title::before {
    content: url('img/tool2.png');
    position: absolute;
    left: 6px;
    top: 4px;
}

.statique .toolbox-options {
    background: #005E82;
    font-size: 14px;
    font-family: 'Avenir LT W01 65 Medium';
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

#toolbox.statique:hover .toolbox-options {
    display: block;
    opacity: 1;
}

#toolbox.small {
    position: fixed;
    cursor: pointer;
    bottom: 85px;
    right: calc((100% - 940px )/2 - 98px);
    right: -moz-calc((100% - 940px )/2 - 98px);
    right: -webkit-calc((100% - 940px )/2 - 98px);
    padding-right: 1em;
    z-index: 999;
}

#toolbox.small .toolbox-title {
    text-indent: -9999px;
    width:60px;
    height: 58px;
    border-radius: 3px;
    background-image: url('img/tool.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #004964;
}

#toolbox.small .toolbox-options {
    position: absolute;
    right:15px;
    border: 1px solid #c4c4c4;
    padding: 12px 0;
    background: #fff;
    visibility: hidden;
    opacity: 0;

    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;

    -moz-box-shadow: 3px 3px 5px 0px #ccc;
    -webkit-box-shadow: 3px 3px 5px 0px #ccc;
    -o-box-shadow: 3px 3px 5px 0px #ccc;
    box-shadow: 3px 3px 5px 0px #ccc;
    filter:progid:DXImageTransform.Microsoft.Shadow(color=#999999, Direction=134, Strength=5);
}

#toolbox.small .toolbox-options::after {
    bottom: -5px;
    border-right: 1px solid #C4C4C4;
    border-bottom: 1px solid #C4C4C4;
    background: #fff;
    content: " ";
    height: 8px;
    width: 8px;
    position: absolute;
    right: 10%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#toolbox.small .toolbox-options.is-shown {
    visibility: visible;
    opacity: 1;
}

#toolbox.small .toolbox-options li {
    width: 170px;
    height: 40px;
    padding-left: 58px;
    line-height: 40px;
    color: #999;
    list-style-image: none;
    list-style-type: none;
}

.small .toolbox-options li a {
    color: #999;
}


@media only screen and (max-width: 425px) {
    #header #toolbox.statique{
        display: none;
    }

}


/* --------- ECO2MIX ET IFRAME RH -------------- */

article.node-eco2mix {
    width: 940px;
    margin: 0 auto;
}

@media only screen and (max-width: 960px) {
    article.node-eco2mix{
        width:100%;
    }
}


/* --------- PAGE CONTRIBUABLE ----------------*/
.content-header {
    background-color: #09C;
    height: 448px;
    overflow: hidden;
    position: relative;
}

.cover-image {
    height: 467px;
}

.cover-image img {
    width: 100%;
}

.content-infos {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
}

.content-surtitre {
    font-size: 14px;
    text-transform: uppercase;
}

.content-title {
    font-family: 'Avenir LT W01 85 Heavy';
    font-size: 45px;
    margin-top: 30px;
}


/* ------- Generic styles for main content ---------------- */
/* ------- Article, Actu, Projet, Page contribuable ------- */

#main-body h2,
.main-body.left h2 {
    font-size: 20px;
    border-bottom: 1px solid #DCDAD8;
    margin-bottom: 25px;
    padding-top: 35px;
    padding-bottom: 12px;
    line-height: 26px;
    color: #222;
    font-family: 'Avenir LT W01 65 Medium';
}

@media only screen and (max-width: 960px) {
    #main-body h2,
    .main-body.left h2 {
        margin-left: 10px;
    }
}

#main-body a,
.main-body.left a {
    color: #005E82;
}

#main-body a:hover,
.main-body.left a:hover {
    text-decoration: underline;
}

#main-body ul,
#main-body ol,
.main-body.left ul,
.main-body.left ol,
.node-screen-by-screen-content .texte ul,
.node-screen-by-screen-content .texte ol {
    padding-left: 30px;
    list-style: none;
}
#main-body ul li:before,
.main-body.left ul li:before,
.node-screen-by-screen-content .texte ul li:before {
    color: #00A7D9;
    content: "•";
    position: relative;
    left: -7px;
    font-size: 18px;
    margin-left: -7px;
}

#main-body ol li,
.main-body.left ol li,
.node-screen-by-screen-content .texte ol li {
    list-style-type: none;
    counter-increment: list;
    position: relative;
}
#main-body ol li:before,
.main-body.left ol li:before,
.node-screen-by-screen-content .texte ol li:before {
    content: counter(list) ".";
    position: absolute;
    left: -2.5em;
    width: 2em;
    text-align: right;
    color: #00A7D9;
}

#main-body ul li,
#main-body ol li,
.main-body.left ul li,
.main-body.left ol li,
.node-screen-by-screen-content .texte ul li ,
.node-screen-by-screen-content .texte ol li {
    color: #000;
}

#main-body img ,
.main-body.left img {
  max-width: 100%;
  height: auto !important;
}

/* --------- META ICONS -------------- */
.meta-icons {
    margin-top:30px;
    color:#b3b3b3;
}

.meta-icons i {
    padding:12px;
    color:#b3b3b3;
}

.meta-icons a, .meta-icons div.twitter {
    display:inline-block;
    border:1px solid #e8e8e8;
    width: 40px;
    cursor: pointer;
    text-align: center;
    margin-right: 0;
    color: #005E82;
}

.meta-icons div.twitter {
	position: relative;
	overflow: hidden;
	height: 40px;
	vertical-align: bottom;
}
.meta-icons div.twitter iframe.twitter-share-button {
	position: absolute !important;
	top: 6px;
	opacity: 0.01;
}

.meta-icons a:hover, .meta-icons div.twitter:hover {
    color: #00A7D9;
    border: 1px solid #00A7D9;
}

.meta-icons a:hover i, .meta-icons div.twitter:hover i {
    color: #00A7D9;
}

/* ---- Page 404 ----- */
.e404 .title {
    color: #00A7D9;
    line-height: 30px;
}

.domain-rteetvous .e404 .title {
    color: #e85257;
}

.e404 .body {
    width: 470px;
    margin-top: 5px;
    margin-bottom: 20px;
}

/* A Lire Aussi */
#content #block-views-lire-aussi-block {
    background:#f5f3f0;
    padding-bottom:30px;
}

.a_lire_aussi .wrap {
    position:relative;
}

.a_lire_aussi:after {
    content: "";
    display: table;
    clear: both;
}
.a_lire_aussi .title2 {
    background:#eb504e;
    top:-30px;
}

.a_lire_aussi .views-row {
    margin-top:70px;
    width:460px;
    padding: 0;
    background-color: transparent;
}

@media only screen and (max-width: 960px){
    .a_lire_aussi .views-row {
          width: 100%;
    }
    
}

.a_lire_aussi .views-row-odd {
    float: left;
}

.a_lire_aussi .views-row-even {
    float: right;
}


.a_lire_aussi .image {
    margin-bottom:20px;
}

.a_lire_aussi .views-row a{
    font-size:18px;
    font-family:'Avenir LT W01 65 Medium';
}

.bean-bundle-infos_rteetvous > .content,
.bean-decouverte > .content,
.bean-decouverte > .content,
.page-block #page-title,
.page-block .entity-bean > .content,
.bean-bundle-decouverte > .entity-bean,
.bean-bundle-decouverte > .block-title,
.pane-bean-decouverte > .entity-bean,
.pane-bean-decouverte > .block-title,
.bean-bundle-infos_rteetvous .block-title{
    width: 940px;
    margin: 10px auto 0;
    line-height:1.2em;
}

.front .pane-title {
    display: none;
}

.bean-bundle-infos_rteetvous .block-title,
.pane-bean-decouverte .pane-title,
.bean-bundle-decouverte .block-title {
    display: block;
    font-family:'Avenir LT W01 65 Medium';
    font-size:20px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 20px;
    padding-bottom: 15px;
    color: #202020;
    margin-top: 50px;
}



.field-name-field-discover-contents .field-item{
    float: left;
    width: 300px;
    margin-right: 20px;
}


.field-name-field-discover-contents .field-item-3{
    margin-right: 0px;
}

.field-name-field-discover-contents .field-collection-view {
    margin: 0;
    padding: 0;
    border: 0;
}

.field-name-field-discover-contents .image-wrapper{
    height: 200px;
    position: relative;
    background-color: #00a8d9;
}

.field-name-field-discover-contents .type{
    position: absolute;
    color: #fff;
    font-family:'Avenir LT W01 85 Heavy';
    -webkit-font-smoothing:antialiased;
    font-size:18px;
    height: 100px;
    padding-left: 30px;
    line-height:125px;
    width: 190px;
}

.field-name-field-discover-contents .field-item-1 .type{
    background-color: #005f95;
}

.field-name-field-discover-contents .field-item-2 .type{
    background-color: #c51c4d;
}

.field-name-field-discover-contents .field-item-3 .type{
    background-color: #00b6c3;
}

.field-name-field-discover-contents .title{
  font-family:'Avenir LT W01 85 Heavy';
  -webkit-font-smoothing:antialiased;
  font-size:18px;
  margin-top: 30px;
  display: block;
}

.field-name-field-discover-contents .field-item-1 .title a{
    color: #005f95;
}

.field-name-field-discover-contents .field-item-2 .title a{
    color: #c51c4d;
}

.field-name-field-discover-contents .field-item-3 .title a{
    color: #00b6c3;
}

.field-name-field-discover-contents .description {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.field-name-field-discover-contents  ul.field-collection-view-links {
    margin-right: 0;
}

.field-name-field-discover-contents  .field-collection-view-links a {
    color: #888;
    margin-right: 0;
    margin-left: 1em;
}

/* ---- LOCAL MENU ----- */
/* pages /contact        */
/* pages /carte-projets  */
.page-contact .page__title,
.page-carte-projets .page__title {
    color: #00A5DB;
    padding: 25px 0 15px 0;
    width: 940px;
    margin: 0 auto;
}

@media only screen and (max-width: 960px) {
    .page-contact .page__title,
    .page-carte-projets .page__title {
        width:auto;
    }
}

.styled-tabs-menu {
    background: #014C69;
    height: 60px;
    line-height: 60px;
}

.styled-tabs-menu-title {
    padding: 0;
    margin: 0;
    list-style: none;
}

.styled-tabs-menu-title > li {
    border-right: 1px solid #FFF;
    padding: 0 30px 0 30px;
    box-sizing: border-box;
    float: left;
    text-align: center;
}

.section-carte-projets .styled-tabs-menu-title > li {
    width: 50%;
}

/* Hide tabs on English pages of carte projet */
.i18n-en.page-carte-projets .styled-tabs-menu {
  display: none;
}

.styled-tabs-menu-title > li:first-child {
    border-left: 1px solid #FFF;
}

.styled-tabs-menu-title > li.active {
    position: relative;
}

.styled-tabs-menu-title > li.active:after {
    bottom: 0;
    left: 50%;
    border: solid rgba(0, 0, 0, 0);
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #FFF;
    border-width: 8px;
    margin-left: -8px;
}

.styled-tabs-menu-title a {
    font-family: 'Avenir LT W01 65 Medium';
    font-size: 15px;
    color: #FFF;
    text-decoration: none;
}

.styled-tabs-menu-title a:hover {
    color: #FFF;
    text-decoration: underline;
}


/* Carte 10 ans */
.page-carte-projets .pane-title {
    display: none;
}


.bean-rtefrance-accueil-decouverte-en .pane-title,
.bean-rtefrance-accueil-decouverte-fr .pane-title,
.pane-bean-decouverte .pane-title {
    display: block;
    width: 940px;
    margin: 0 auto;
    font-size: 20px;
    border-bottom:1px solid #dcdad8;
    /* padding-left:3px; cf RTE_VOUS > HP > Découvrez également */
    margin-bottom:25px;
    padding-top:35px;
    padding-bottom:12px;
    line-height:26px;
    color:#222;
    font-family:'Avenir LT W01 65 Medium';
}

@media only screen and (max-width: 960px) {
    .bean-rtefrance-accueil-decouverte-en .pane-title,
    .bean-rtefrance-accueil-decouverte-fr .pane-title,
    .pane-bean-decouverte .pane-title{
        width:auto;
    }
}

.bean-carte-10-ans {
    width: 940px;
    margin: 40px auto 0;
}

@media only screen and (max-width: 960px) {
    .bean-carte-10-ans{
        width:auto;
    }
}

.pane-focus-projets {
    margin-bottom: 50px;
}

/* -- BEAN Mosaïque -- */
.pane-bean-rteetvous-accueil-mosaique {
    background: #F5F3F0;
    /*padding: 30px 0;*/
}

.bean-mosaique .field-collection-container {
    margin-bottom: 0;
    border-bottom: 0;
}

.bean-mosaique .content {
    width: 940px;
    margin: 0 auto;
}

@media only screen and (max-width: 960px) {
    .bean-mosaique .content{
        width:auto;
    }
}

.bean-mosaique .field-items {
    width: 940px;
}

@media only screen and (max-width: 960px) {
    .bean-mosaique .field-items{
        width:auto;
    }
}

.bean-mosaique .field-collection-view {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.bean-mosaique .field-item {
    height: 230px;
    background: #FFF;
    float: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
    border-bottom: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Admin only */
.bean-mosaique .field-collection-view ul.field-collection-view-links {
    position: absolute;
    top:0;
    right: 0;
}

.bean-mosaique .field-item:nth-of-type(1),
.bean-mosaique .field-item:nth-of-type(6) {
    width: 940px;
    position: relative;
}
@media only screen and (max-width: 960px) {
    .bean-mosaique .field-item:nth-of-type(1),
    .bean-mosaique .field-item:nth-of-type(6){
        width:100%;
    }
}

.bean-mosaique .field-item:nth-of-type(2),
.bean-mosaique .field-item:nth-of-type(5) {
    position: relative;
    width: 310px;
}

.bean-mosaique .field-item:nth-of-type(3),
.bean-mosaique .field-item:nth-of-type(4) {
    position: relative;
    width: 620px;
}

.bean-mosaique .field-item:nth-of-type(2) {
    background: #005e82;
}

.bean-mosaique .field-item:nth-of-type(3) {
    margin-left: 10px;
}

.bean-mosaique .field-item:nth-of-type(4) {
    background: #E85257;
}

.bean-mosaique .field-item:nth-of-type(5) {
    margin-left: 10px;
}

@media only screen and (max-width: 425px)
{
    .bean-mosaique div.field-item.even,
    .bean-mosaique div.field-item.odd
    {
        width: 300px;
        margin: auto;
    }
    div.mosaique-content::after
    {
        display: none;
    }
    
    .bean-mosaique .field-collection-container
    {
        width: 300px;
        margin: auto;
    }
    .bean-mosaique .field-collection-container .mosaique-content,
    .bean-mosaique .field-collection-container .mosaique-content .subtitle,
    .bean-mosaique .field-collection-container .mosaique-content a
    {
        color: white !important;
        text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    }
    .bean-mosaique .field-collection-container .mosaique-content .button_link
    {
        background-image:url('img/arrow_white.png');
        background-repeat: no-repeat;
    }
}

@media only screen and (max-width: 940px) {
  .clearfix::after {
    height: auto;
  }
}

.bean-mosaique .field-item:nth-of-type(1) .mosaique-content,
.bean-mosaique .field-item:nth-of-type(6) .mosaique-content {
    width: 630px;
  box-sizing: border-box;
}

.bean-mosaique .field-item:nth-of-type(6) .mosaique-content {
    margin-left: 310px;
}

.bean-mosaique .field-item:nth-of-type(3) .mosaique-content,
.bean-mosaique .field-item:nth-of-type(5) .mosaique-content {
    width: 310px;
  box-sizing: border-box;
}

.bean-mosaique .mosaique-content {
    padding: 20px 40px 30px 40px;
    z-index: 2;
    position: relative;
    height: 170px;
}

.bean-mosaique .field-item:nth-of-type(1),
.bean-mosaique .field-item:nth-of-type(3),
.bean-mosaique .field-item:nth-of-type(6) {
    border: 1px solid #D2D2D2;
}

.bean-mosaique .field-item:nth-of-type(1) .mosaique-content::after,
.bean-mosaique .field-item:nth-of-type(3) .mosaique-content::after,
.bean-mosaique .field-item:nth-of-type(6) .mosaique-content::after {
    left: 100%;
    z-index: 1;
    top: 50%;
    border: solid rgba(0, 0, 0, 0);
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-left-color: #FFF;
    border-width: 25px;
    margin-top: -25px;
}

.bean-mosaique .field-item:nth-of-type(6) .mosaique-content::after {
    left: -50px;
    border-left-color: transparent;
    border-right-color: #fff;
}

@media only screen and (max-width: 940px) {
  .bean-mosaique .field-item:nth-of-type(6) .mosaique-content {
    margin: 0 auto;
  }
  .bean-mosaique .field-item:nth-of-type(3), .bean-mosaique .field-item:nth-of-type(4) {
    width: auto;
  }
}
@media only screen and (max-width: 550px) {
  .bean-mosaique .field-item:nth-of-type(1) .mosaique-content,
  .bean-mosaique .field-item:nth-of-type(2) .mosaique-content,
  .bean-mosaique .field-item:nth-of-type(3) .mosaique-content,
  .bean-mosaique .field-item:nth-of-type(4) .mosaique-content,
  .bean-mosaique .field-item:nth-of-type(5) .mosaique-content,
  .bean-mosaique .field-item:nth-of-type(6) .mosaique-content,
  .bean-mosaique .field-item:nth-of-type(3), .bean-mosaique .field-item:nth-of-type(4) {
    width: auto;
    margin: 0;
  }
}

.bean-mosaique .mosaique-thumb {
    position: absolute;
    top:0;
    left: 0;
}

.bean-mosaique .image {

}

.bean-mosaique img {
    /*height: 230px;*/
}

.bean-mosaique .mosaique_long {
    width: 620px;
    height: 230px;
  box-sizing: border-box;
}

.bean-mosaique .field-item:nth-of-type(1) .mosaique-thumb,
.bean-mosaique .field-item:nth-of-type(3) .mosaique-thumb {
    left: auto;
    right: 0;
}

.bean-mosaique .mosaique_with_border {
    margin-top: 4px;
    margin-right: 4px;
}

.bean-mosaique .mosaique-item-5 .mosaique_with_border {
    margin-right: 0;
    margin-left: 4px;
}

.bean-mosaique .mosaique-content .surtitre {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.bean-mosaique .mosaique-content .title {
    font-size: 1.2em;
    /*line-height: 28px;*/
    font-family: 'Avenir LT W01 65 Medium';
    margin-bottom: 10px;
    color: #000;
}

.bean-mosaique .mosaique-content .subtitle {
    text-shadow: #AAAAAA 1px 1px;
    font-size: 12px;
    color: #999;
}

.bean-mosaique .field-item:nth-of-type(2) .surtitre,
.bean-mosaique .field-item:nth-of-type(2) .title,
.bean-mosaique .field-item:nth-of-type(2) .subtitle,
.bean-mosaique .field-item:nth-of-type(4) .surtitre,
.bean-mosaique .field-item:nth-of-type(4) .title,
.bean-mosaique .field-item:nth-of-type(4) .subtitle,
.bean-mosaique .field-item:nth-of-type(5) .surtitre,
.bean-mosaique .field-item:nth-of-type(5) .title,
.bean-mosaique .field-item:nth-of-type(5) .subtitle{
    color: #fff;
}

.bean-mosaique .button_link {
   /* position: absolute;*/
    bottom: 20px;
    padding: 5px 18px 5px 10px;
}

.bean-mosaique .button_link.arrow_white {
    border-color: #fff;
}

.bean-mosaique .button_link.arrow_white a {
    color: #fff;
}

.bean-mosaique .button_link.arrow_black a {
    color: #000;
}

/* BEAN Mosaique on Hoempage Profilée */
.node-type-panel .bean-mosaique .content,
.node-type-panel .bean-mosaique .field-items {
    width: 620px;
}
.node-type-panel .bean-mosaique .field-item:nth-of-type(1),
.node-type-panel .bean-mosaique .field-item:nth-of-type(2),
.node-type-panel .bean-mosaique .field-item:nth-of-type(3),
.node-type-panel .bean-mosaique .field-item:nth-of-type(6) {
    width: 620px;
    position: relative;
    background: #fff;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(4),
.node-type-panel .bean-mosaique .field-item:nth-of-type(5) {
    position: relative;
    width: 310px;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(1),
.node-type-panel .bean-mosaique .field-item:nth-of-type(6) {
    background: #E85257;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(3) {
    margin-left: 0px;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(5) {
    margin-left: 10px;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(2) .mosaique-content {
    margin-left: 310px;
    width: 230px;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(3) .mosaique-content {
    width: 230px;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(2),
.node-type-panel .bean-mosaique .field-item:nth-of-type(3) {
    border: 1px solid #D2D2D2;
    color: #000;
}

.node-type-panel .bean-mosaique .field-item .mosaique-content::after {
    border: none;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(2) .mosaique-content::after,
.node-type-panel .bean-mosaique .field-item:nth-of-type(3) .mosaique-content::after{
    left: 100%;
    z-index: 1;
    top: 50%;
    border: solid rgba(0, 0, 0, 0);
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-left-color: #FFF;
    border-width: 25px;
    margin-top: -25px;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(2) .mosaique-content::after {
    left: -50px;
    border-left-color: transparent;
    border-right-color: #fff;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(3) .mosaique-thumb {
    left: auto;
    right: 0;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(1) .surtitre,
.node-type-panel .bean-mosaique .field-item:nth-of-type(1) .title,
.node-type-panel .bean-mosaique .field-item:nth-of-type(1) .subtitle,
.node-type-panel .bean-mosaique .field-item:nth-of-type(6) .surtitre,
.node-type-panel .bean-mosaique .field-item:nth-of-type(6) .title,
.node-type-panel .bean-mosaique .field-item:nth-of-type(6) .subtitle {
    color: #fff;
}

.node-type-panel .bean-mosaique .field-item:nth-of-type(2) .surtitre,
.node-type-panel .bean-mosaique .field-item:nth-of-type(2) .title,
.node-type-panel .bean-mosaique .field-item:nth-of-type(2) .subtitle,
.node-type-panel .bean-mosaique .field-item:nth-of-type(3) .surtitre,
.node-type-panel .bean-mosaique .field-item:nth-of-type(3) .title,
.node-type-panel .bean-mosaique .field-item:nth-of-type(3) .subtitle {
    color: #000;
}


/**
 * NODE TYPE "PAGE"
 */
.node-type-page #page-title,
.node-type-page .node-page{
    width: 940px;
    margin: 20px auto;
}

@media only screen and (max-width: 960px) {
    .node-type-page #page-title,
    .node-type-page .node-page{
        width:100%;
    }
}

.node-page .link-wrapper {
    margin-top: 20px;
    border-top: 1px solid #e9e9e9;
    padding-top: 20px
}

/*****************************/
/* Article & projets sidebar */
/*****************************/

/*
 * Points clés
 */
.right .sidebloc {
    background:#f5f3f0;
    padding:35px;
}

.right .sidebloc h2,
.right .sidebloc h3 {
    margin-top: 0;
}

.sidebloc#les-points-essentiels {
    background:#e85257;
    color:white;
}

.points_cles ol {
    color:#333;
    list-style:none;
    padding:0;
    font-size:14px;
}

.points_cles ol li .chiffre {
    font-family:'Avenir LT W01 85 Heavy';
    display:inline-block;
    font-size:24px;
    position:absolute;
    top:0;
    left:0;
}

.points_cles ol li p {
    display:inline-block;
    line-height:18px;
    margin:0 0 0 50px;
    width:160px;
}

.points_cles ol li {
    font-family:Arial;
    position:relative;
    font-size:14px;
    color:white;
    margin-bottom:20px;
}

.points_cles ol li:last-child {
    margin-bottom:0;
}

/*
 * Block Benefices on sidebar
 */
.benefices ol {
    list-style:none;
    margin:0;
    font-size:14px;
    line-height:18px;
    padding:0;
}

.benefices .chiffre {
    font-family:'Avenir LT W01 85 Heavy';
    font-size:20px;
    margin-bottom: 10px;
}

.benefices .chiffre span {
    font-size:40px;
    line-height: 1;
}

.benefices.sidebloc {
    background:#00a7d9;
    padding:32px;
    color:white;
}

.benefices h3 {
    font-family:'Avenir LT W01 85 Heavy';
    font-size:20px;
    margin-bottom:25px;
}

.benefices .descriptif {
    font-size:14px;
    margin: 0;
}

.benefices .citation {
    font-size:14px;
    position:relative;
}
.benefices li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid;
}
.benefices li.last {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}


/**
 * Page profil
 */

.page-vocabulary-profil .pane-title {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
}

/**
 * Bannière cookies (module EU Cookies compliance)
 * Override eu_cookies_compliance.css file
 */
#sliding-popup .info {
    width: 940px;
    position: relative;
}

@media only screen and (max-width: 960px) {
    #sliding-popup .info{
        width:100%;
        position: relative;
    }
}

#sliding-popup .info:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

#sliding-popup .popup-content #popup-text {
    width: 840px;
    margin: 17px 0;
    max-width: 100%;
}

#sliding-popup .popup-content #popup-text p,
#sliding-popup .popup-content #popup-text span {
    font-weight: normal !important;
    margin: 0 !important;
    font-size: 12px !important;
    font-family: arial !important;
    line-height: 18px !important;
    color: #fff !important;
}

#sliding-popup .popup-content #popup-buttons {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    width: 75px;
    height: 25px;
}

#sliding-popup .popup-content #popup-buttons button {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    height: 25px;
    font-weight: normal;
    box-shadow: none;
    width: 75px;
    color: #FFF;
    background: #00A6DA;
    font-size: 12px;
    text-shadow: none;
    padding: 0;
    margin: 0;
}

#sliding-popup .popup-content #popup-buttons button:hover {
    background: #005E82;
}

#sliding-popup .popup-content #popup-buttons .find-more-button {
    display: none;
}

@media screen and (max-width: 1000px) {
	#sliding-popup .popup-content #popup-text {
		margin: 10px 0;
	}
	#sliding-popup .popup-content #popup-buttons {
		position: static;
		clear: both;
		padding-bottom: 10px;
	}
}


/* Default Drupal Views pager */
.pager a {
    color:#00A8D9;
}

.domain-rteetvous .pager a {
    color: #E85257;
}

/* Show Hide Video / Data block on homepages */
.front .show-data .bean-type-video-homepages,
.front .show-video .pane-bean-rteetvous-accueil-datavisu,
.front .show-video .pane-datavisus {
    display: none;
}

.front .show-video .bean-type-video-homepages {
    margin-top: 40px;
}

.ajax-loader {
    text-align: center;
    visibility: hidden;
}

/* Custom Filters HOTFIX */
/* Show terms from public taxonomy on one domain only */
.domain-rtefrance #cf-207,
.domain-rtefrance #cf-208,
.domain-rtefrance #cf-209 {
    display: none;
}


/**
 * Documents 
 */
.node-document.view-mode-full > .inner {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    padding-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 24px;
    width: 940px;
}

@media only screen and (max-width: 960px) {
    .node-document.view-mode-full > .inner{
        width:100%;
    }
}

.node-document .field-name-field-image img {
    float: right;
    margin-left: 20px;
}

@media only screen and (max-width: 960px) {
    .node-document .field-name-field-image img{
        float: none;
        margin-left: 0;
    }
}
.node-document h1, 
.node-document h2,
.node-document h2 > a{
    color: #00a8d9;
    font-family: "Avenir LT W01 65 Medium";
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
}

.node-document .date-tags {
    color: #023557;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
}

.node-document .body {
    color: #333333;
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
}

.node-document .body p {
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}

.node-document .links {
    margin-top: 20px;
}

.node-document .links li {
    display: inline-block;
}

.node-document .links .button_link {
    border-color: #000;
    color: #01a7d7;
    padding-left: 30px;
}

.actu-texte p {
    margin: 5px 0 0 0;
}

.views-slideshow-cycle-main-frame-row-item {
    width: 800px;
}

@media only screen and (max-width: 960px){
    .views-slideshow-cycle-main-frame-row-item {
        width: 100%;
    }
}

.bean-decouverte {
  font-family: 'Avenir LT W01 65 Medium', sans-serif;
}

/* ---------------------------------------------------------------- */
/*         CUSTOM STYLING FOR VIEWS 'diaporama_homepage'            */
.node-diapo.node-teaser {
  font-family: 'Avenir LT W01 65 Medium', sans-serif;
  position: relative;
}
.view-diapo-homepage .flexslider .node-diapo.node-teaser img,
.node-diapo.node-teaser img,
.node-diapo.node-teaser .field_image {
  width: 100%;
  margin: 0 auto;
  display: block;
  height: 450px !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.view-diapo-homepage .flex-direction-nav{
    display:none;
}

.node-diapo.node-teaser .caption,
.view-diapo-homepage .view-content .flexslider div.caption
 {
  width: 940px;
  margin: 0 auto;
}

@media only screen and (max-width:768px)
{
    .node-diapo.node-teaser .caption,
    .view-diapo-homepage .view-content .flexslider div.caption
    {
        width: 100%;
    }
}


.view-diapo-homepage .view-content .flexslider .caption .flex-control-resizer
{
    position: relative;
    width: 620px;
    padding: 0 1.5em;

}

@media only screen and (max-width:568px)
{
    .view-diapo-homepage .view-content .flexslider .caption .flex-control-resizer
    {
        width: 90%;
    }
}
@media only screen and (max-width: 480px)
{
    .view-diapo-homepage .view-content .flexslider .caption ol
    {
        display: none;
    }
}

@media only screen and (max-width: 425px)
{
    .view-diapo-homepage .view-content .flexslider .caption .flex-control-resizer
    {
        width: 85%;
    }    
}

.view-diapo-homepage .view-content .flexslider .caption ol li
{
    text-align: center;
}

.node-diapo.node-teaser .caption-inner {
  position: absolute;
  padding: 1.5em;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.8);
  width: 620px;
}
.node-diapo.node-teaser .title {
  font-family: 'Avenir LT W01 85 Heavy', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1.3em;
  color: #005e82;
}

/*Couleur spécifique dans le diaporama pour l'accueil RTE et vous*/
div.block-rteetvous-accueil .pane-inner .pane-wrap .view-diapo-homepage .flexslider 
.node-diapo.node-teaser .title
{
     color: #EA7762;
}

.node-diapo.node-teaser .field-name-body {
  margin: 0.5em 0 1em 0;
  font-size: 0.9em;
  line-height: normal;
}
.node-diapo.node-teaser .field-name-body p {
  margin: 0;
}
.node-diapo.node-teaser a {
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
  padding: 1.2em 2em 1.1em 2.7em;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 0.7em;
  line-height: normal;
  background: url('img/arrow_white.png') 1.3em center no-repeat #00A8D9;
  position: relative;
  z-index: 20;
}

/*Couleur spécifique dans le diaporama pour l'accueil RTE et vous*/
div.block-rteetvous-accueil .pane-inner .pane-wrap .view-diapo-homepage .flexslider 
.node-diapo.node-teaser .caption .caption-inner a
{
     background-color: #EA7762;
}


.view-diapo-homepage .flexslider {
  margin: 0;
  border: none;
  position: relative;
}
.view-diapo-homepage .flexslider .flex-viewport {
  display: inline-block;
  width: 100%;
}
.view-diapo-homepage .flexslider .flex-control-nav {
  display: inline;
  width: auto;
  right: 1.5em;
  text-align: right;
  bottom: 55px;
  z-index: 10;  
}
.view-diapo-homepage .flexslider .flex-control-nav.flex-control-paging li a {
  width: 10px;
  height: 10px;
  background: #abc6cf;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.view-diapo-homepage .flexslider .flex-control-nav.flex-control-paging li {
  margin: 0 8px;
}
.view-diapo-homepage .flexslider .flex-control-nav.flex-control-paging li a:hover {
  background: #00A8D9;
}
.view-diapo-homepage .flexslider .flex-control-nav.flex-control-paging li a.flex-active {
  width: 14px;
  height: 14px;
  background: #00A8D9;
  top: -2px;
  position: relative;
}

/*Couleur #EA7762 spécifique dans le diaporama de l'acceuil Rte et vous*/
div.block-rteetvous-accueil .pane-inner .pane-wrap .view-diapo-homepage .flexslider 
.flex-control-nav.flex-control-paging li  a.flex-active,
div.block-rteetvous-accueil .pane-inner .pane-wrap .view-diapo-homepage .flexslider 
.flex-control-nav.flex-control-paging li  a:hover,
div.block-rteetvous-accueil .pane-inner .pane-wrap .view-diapo-homepage .flexslider 
.flex-control-nav.flex-control-paging li  a:focus
{
    background-color: #EA7762;
}

@media only screen and (max-width: 940px) {
  .node-diapo.node-teaser .caption {
    width: auto;
  }
}
@media only screen and (max-width: 620px) {
  .node-diapo.node-teaser .caption-inner {
    width: auto;
    margin: 0 10px;
  }
  .view-diapo-homepage .flexslider .flex-control-nav {
    bottom: -4px;
    margin: 0 auto;
    left: 0;
  }
}

@media only screen and (max-width:568px)
{
    .view-diapo-homepage .flexslider .flex-control-nav {
    bottom: 55px;
  }
}
/* ---------------------------------------------------------------- */
/*         CUSTOM STYLING FOR VIEWS 'actualites_frontpage'          */

.pane-actualites-frontpage {
  background-color: #f5f3f0;
}
.pane-block-homepage {
  padding: 1.5em 0;
}
.view-actualites-frontpage-en, .view-actualites-frontpage {
  background-color: #f5f3f0;
  border-top: 3px solid #005E82;
  padding-bottom: 1em;
  width: 940px;
  display: table;
  table-layout: fixed;
  font-family: 'Avenir LT W01 65 Medium', sans-serif;
  top: -10px;
  position: relative;
  margin: 0 auto;
  z-index: 20;
}
.view-actualites-frontpage-en:before, .view-actualites-frontpage:before,
.view-actualites-frontpage-en:after, .view-actualites-frontpage:after {
  display: block;
  position: absolute;
  top: -3px;
  width: 10px;
  height: 70px;
  content:"";
}
.view-actualites-frontpage-en:before, .view-actualites-frontpage:before {
  background-image: url('img/left_shadow.png');
  left: -10px;
}
.view-actualites-frontpage-en:after, .view-actualites-frontpage:after {
  background-image: url('img/right_shadow.png');
  right: -10px
}
.view-actualites-frontpage-en .view-content, .view-actualites-frontpage .view-content {
  margin-bottom: 2em;
}
.view-actualites-frontpage-en .views-row, .view-actualites-frontpage .views-row {
  display: table-cell;
  width: 30%;
  padding: 1.5em 2em 0 2em;
  border-right: 1px solid #abc6cf;
}
.view-actualites-frontpage-en .views-row:first-child, .view-actualites-frontpage .views-row:first-child {
  padding-left: 1.25em;
}
.view-actualites-frontpage-en .views-row:last-child, .view-actualites-frontpage .views-row:last-child {
  border-right: none;
  padding-right: 1.25em;
}
.view-actualites-frontpage-en .views-row.views-row-odd, .view-actualites-frontpage .views-row.views-row-odd,
.view-actualites-frontpage-en .views-row.views-row-even, .view-actualites-frontpage .views-row.views-row-even {
  background: none;
}
.view-actualites-frontpage-en .views-row .views-field-created, 
.view-actualites-frontpage .views-row .views-field-created {
  color: black;
  font-size: 0.8em;
}
.view-actualites-frontpage-en .views-field-field-texte-long,
.view-actualites-frontpage .views-field-field-texte-long {
  font-size: 0.9em;
  line-height: 1.6em;
}

.view-actualites-frontpage-en .views-row .views-field-view-node a,
.view-actualites-frontpage .views-row .views-field-view-node a {
  color: #00a8d9;
  text-decoration: none;
  border-bottom: 1px solid #00a8d9;
  text-transform: lowercase;
  font-size: 0.9em;
}
.view-actualites-frontpage-en .more-link,
.view-actualites-frontpage .more-link {
  text-align: center;
}
.view-actualites-frontpage-en .more-link a,
.view-actualites-frontpage .more-link a {
  color: #00a7d9;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.8em 1em 0.5em 2.2em;
  text-decoration: none;
  text-align: center;
  border: 2px solid #abdce9;
  font-weight: bold;
  font-size: 0.8em;
  line-height: normal;
  background: url('img/arrow_blue.png') 1em center no-repeat;
}
@media only screen and (max-width: 1010px) {
  .pane-actualites-frontpage {
    padding: 10px;
    background: none;
  }
  .view-actualites-frontpage-en, .view-actualites-frontpage {
    width: 100%;.
    margin: 0 auto;
  }
  .view-actualites-frontpage-en:before, .view-actualites-frontpage:before,
  .view-actualites-frontpage-en:after, .view-actualites-frontpage:after {
    display: none;
  }
  .view-actualites-frontpage-en .views-row, .view-actualites-frontpage .views-row {
    display: block;
    width: auto;
    border: none;
    border-top: 1px solid #abc6cf;
    margin: 1em 0;
  }
  .view-actualites-frontpage-en .views-row:first-child, .view-actualites-frontpage .views-row:first-child {
    border: none;
  }
  .view-actualites-frontpage-en .views-row:first-child, 
  .view-actualites-frontpage .views-row:first-child, 
  .view-actualites-frontpage-en .views-row:last-child, 
  .view-actualites-frontpage .views-row:last-child {
    padding: 1.5em 2em 0 2em
  }
}

div.diapo--header
  {
    position: absolute;
    top: -3.1em;
    left: 0;
    width: 100%
  }

  div.diapo--header span
  {
    float: left;
    color: white;
    background-color: black;
    padding: 9px 2%;
    text-transform: uppercase;
    font-size: small;
    margin-top: 1%;
    font-weight: bolder;
    border-top: solid 1px black;
  }

  img#lemag_logo_diapo
  {
    height: auto !important;
    width: 10%;
    padding: 1.5%;
    margin-top: 1%;
    float: left;
    border: solid 1px black;
    background-color: rgba(255, 255, 255, 0.8);
  }

  @media only screen and (max-width: 425px)
  {
    img#lemag_logo_diapo
    {
        width: 96px;
        margin-top: 1.5%;   
    }
  
     div.diapo--header span
    {
        margin-top: 1.6%;
        padding: 8px 2%;
    }  
  }

   @media only screen and (max-width: 768px) 
  {
    #sbs-contents + .sub_content.mt50
    {
        margin-top: 0;
    }

    #sbs-contents .node-video
    {
        max-width:100%;
    }
     
    #sbs-contents .node-video .video-type-wrapper .media-wrapper.video a img
    {
        width: 100%
    }

  }

   @media only screen and (max-width: 568px)
  {
    #sbs-contents .node-video .text-wrapper
    {
        position: relative;
        width: 39%;
        float: right;
        margin: 0;
        padding: 0 1vw 1vw 0;       
    }

    #sbs-contents .node-video .video-type-wrapper .media-wrapper.video 
    {
        max-width: 59%;
        left: 0;
    }
  }

   @media only screen and (max-width: 425px)
  {
    #sbs-contents .node-video .text-wrapper
    {
        display: none;
    }
    
    #sbs-contents .node-video .video-type-wrapper
    {
        width: 100%;
        max-height:none;
        height:auto;
    }
    
    #sbs-contents .node-video .video-type-wrapper .media-wrapper.video 
    {
        position: relative;
        width: 100%;
        margin: auto;
    }
  }

  .strong_actualite
  {
    font-family: 'Avenir LT W01 65 Medium', sans-serif;
    font-size:  14px;
  }

@media only screen and (max-width: 940px){
  
    .pane-bean-rteetvous-accueil-mosaique .bean-mosaique .field-items,
    .pane-bean-rteetvous-accueil-informatif1 .field-items,
    .pane-bean-rteetvous-prefooter .field-items{
        max-width: 900px;
        margin: auto;
        width: auto;
    }
  
  
    .pane-bean-rteetvous-accueil-mosaique .bean-mosaique .field-item{
        position: relative  ;
        width: 300px  ;
        margin: 0 auto;
        padding: 0  ;
        margin-bottom: 10px  ;
        float: none;
    }
  
    .pane-bean-rteetvous-accueil-mosaique .bean-mosaique .field-item .subtitle{
        display: none;
    }

    .pane-bean-rteetvous-accueil-mosaique .bean-mosaique .field-item .title,
    .pane-bean-rteetvous-accueil-mosaique div.bean-mosaique .field-item .surtitre
    {
        width: 100%;
        margin-bottom: 10px  ;
        text-shadow: #AAAAAA 1px 1px  ;  
        color: #EEE  ;
    }

    .node-actualite > .inner,
    #main-menu .rte-submenu,
    .bean-mosaique .content,
    .block-content-center,
    .doc-slider,
    #content .pane-bean-rteetvous-prefooter .pane-title,
    #footer-cols-wrapper > .inner,
    #top-footer-cols-wrapper > .inner,
    .bean-rtefrance-accueil-decouverte-fr .pane-title,
    .bean-decouverte > .content, .bean-decouverte > .content,
    .bean-bundle-decouverte > .block-title,
    .breadcrumb > ol,
    .bean-bundle-decouverte > .entity-bean,
    .page-node .node-actualite h1,
    .art-header-wrap,
    #content .wrap,
    #header .wrap,
    #content .node-video.view-mode-full > .inner,
    .page-vocabulary-profil  .pane-datavisus .pane-wrap,
    #content .bean-bundle-infos_rteetvous .block-title,
    #sbs-menu .item-list,
    .node-screen-by-screen-content > .inner,
    .next-link-inner,
    .sbs-wrap,
	#content ul.tabs-primary 
    {
        width: 100%;
    }

    .domain-rteetvous .node-video,
    .center-wrapper{
        width: 100% !important;
    }

    #top-footer-cols-wrapper > .inner{
        padding-right: 0;
        padding-left: 0;
    }

    .bean-mosaique .field-item .link{
        width: auto  ;
        margin-top: 10px  ;
        border-color: #fff  ; 
    }

    .bean-mosaique .field-item .link a{
        text-shadow: #AAAAAA 1px 1px  ;  
        color: #EEE  ;
    }

    .pane-bean-rteetvous-accueil-mosaique .bean-mosaique .field-item .mosaique-content{
        width: 100%;
        padding: 20px 20px 0px 20px;
        margin: 0;
    }

    .bean-mosaique .field-item .mosaique-content:after{
        display: none;
    }

    .bean-mosaique .field-item .mosaique-thumb img{
        height: 230px;
        margin: 0;
        width: 100%;
    }

    .rte-menu ul.rte-sub-submenu{
        max-width: 180px;
    }

    .field-name-field-discover-contents .field-item,
    .block-home
    {
        display:block;
        float: none;
        width: 300px;
        margin: auto;
        margin-bottom: 10px;
    }

    #dataTextSlider{
        float: none;
        display: block;
        width: 100%;
        height: auto;
        min-height: 150px;
    }

    #dataTextSlider .data-title,
    #dataTextSlider .summary{
        width:  100%;
    }


    #dataImgSlider{
        margin: auto;
        display: block;
        float: none;
    }

    #main #content{
        padding: 0 5px;
    }

    .left{
        width: 100%;
    }

    .main_content .wrap .right.art-sidebar,
    .right,
    .panel-2col-bricks .center-wrapper .panel-col-last{
        clear:both;
        float: none;
        width: 100%;
    }

    .main_content .wrap .right.art-sidebar .points_cles ol li{
        display: inline-block;
        vertical-align: top;
        margin-left: 10px;
    }
    
    #content .video-type-wrapper{
        height: auto;
    }

    #content .video-type-wrapper .media-wrapper{

        position: relative;
        width: 100%;
        left: 0;    
    }    


    #content .video-type-wrapper .text-wrapper{

        position: relative;
        display: block;
        width: 100%;
        height: auto;
        padding: 0 10px;
        line-height: 200px;
        background-image: none;    
    }

    .media-wrapper.video img {
        width: 100% !important;
        height: auto;
    }
    
}

@media only screen and (max-width: 425px)
{
    .pane-bean-rteetvous-accueil-mosaique .bean-mosaique .field-items
    {
        overflow: hidden;
    }
}

.wrap .view-content .projet-actu-wrapper img {
    width: auto !important;
}


/* Customisation Site Map */
#site-map {
	margin: auto;
	width: 940px;
}

#site-map .site-map-menu .expanded a {
	font-size: 20px;
    border-bottom: 1px solid #DCDAD8;
    line-height: 100px;
    padding-bottom: 10px;
    color: #222;
    font-family: 'Avenir LT W01 65 Medium';
    text-decoration: none;
}

#site-map .site-map-menu .expanded ul a {
	color: rgb(0, 94, 130);
    border-bottom: none;
	font-size:16px;
	font-family:Arial, sans-serif;
	line-height:18px;
	font-weight:bold;
}

#site-map .site-map-menu ul li:before {
	color: #00A7D9;
    content: "-";
    position: relative;
    left: -7px;
    margin-left: -7px;
}

#site-map .site-map-menu .expanded ul a:hover {
	text-decoration: underline;
}

#site-map .site-map-menu .expanded ul ul a {
	font-weight: normal;
}

#body-showroom {
	margin: auto;
	width: 940px;
}

.showroom_image, .showroom_description, .showroom_webform {
	margin-top: 30px;
}

.showroom_image {
	text-align: center;
}

.showroom_image img, .views-field-field-showroom-image img {
	text-align: center;
	max-width: 100%;
	height: auto;
}

.showroom_webform legend {
	font-size: 20px;
    border-bottom: 1px solid #DCDAD8;
    margin-bottom: 10px;
    padding-top: 15px;
    padding-bottom: 12px;
    line-height: 16px;
    color: #222;
    font-family: 'Avenir LT W01 65 Medium';
	margin-left: 20px;
}

.showroom_webform {
	background: #f5f3f0;
	border: solid 0.5px #DCDAD8;
}

.showroom_webform h2 {
	text-align: center;
	margin-top: 5px;
	margin-bottom: 5px;
}

.showroom_webform fieldset, .showroom_webform .form-item {
	border: none;
    margin-top: 5px;
    margin-bottom: 5px;
	margin-left: 30px;
}

.showroom_webform .form-actions {
	text-align: center;
	margin-bottom: 15px;
	margin-top: 40px;
}

.showroom_webform #edit-submit {
	font-size: 15px;
	font-weight: bold;
	padding: 15px;
	color: #f5f3f0;
	background: #005f95;
	border: none;
	border-radius: 0.5em;
	margin-bottom: 10px;
	margin-top: 20px;
}

.showroom_webform #edit-submit:hover {
	color: #f5f3f0;
	background: #00a8d9;
}

.showroom_webform .fieldset-wrapper .fieldset-description {
	font-style: italic;
	font-size: 13px;
	margin: -10px 0px 10px 25px;
}

.showroom_webform .webform-component-markup {
  border: solid 1px #707070;
  margin-right: 30px;
  margin-bottom: 25px;
}

.showroom_webform .webform-component-markup p {
  margin: 20px;
  color: #707070; 
  font-style: italic;
  line-height: 18px; 
  font-size: 14px;
}
.showroom_webform .form-type-checkbox {
  margin-right: 30px;
  margin-left: 0px;
}

.showroom_webform .form-type-checkbox label {
  font-size: 14px;
  color: rgb(51, 51, 51);
  float: left;
  width: 95%;
}

.showroom_webform .form-type-checkbox input {
  float: left;
  width: 5%;
  margin-top: 5px;
}

.showroom_webform .captcha legend {
  padding-top: 50px;
}


/* Slider on article page */ 
#slider-section {
	float: left;
	width: 890px;
}
#slider-section,
#slider-section .view-showrooms,
#slider-section .view-content,
#slider-section .optionset-showrooms-slider,
#slider-section .optionset-showrooms-slider ul, 
#slider-section .optionset-showrooms-slider ul li {
	max-height: 650px;
	margin-bottom: 0px;
	border: none;
}
#slider-section .views-field-title {
	position: relative;
	top: -180px;
	background: rgba(255,255,255,0.8);
	text-indent: 5px;
	padding: 20px;
	padding-bottom: 100px;    
	font-family: 'Avenir LT W01 85 Heavy', sans-serif;
    margin: 20px;
    font-size: 1.3em;
    color: #005e82;
}
#slider-section .views-field-field-showroom-description {
	position: relative;
	top: -290px;
	font-size: 14px;
	padding-left: 40px;
	padding-right: 40px;
	
}
#slider-section .caption {
	position: relative;
	top: -115px;
	z-index: 10;
}
#slider-section .flex-
#slider-section ol li a {
	width: 10px;
    height: 10px;
    background: #abc6cf;
}
#slider-section a.flex-active {
	width: 14px;
    height: 14px;
    background: #00A8D9;
    top: -2px;
    position: relative;
}
#slider-section .views-field-field-showroom-description p a.views-more-link {
	display: block;
    float: right; 
    width: 220px;
    margin-top: 8px;
    padding: 1.1em 1.8em 1.0em 2.5em;
	color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    line-height: normal;
    font-weight: bold;
    font-size: 0.9em;
    background: url(img/arrow_white.png) 1.3em center no-repeat #00A8D9;   
}

/* POPIN *********************************************************************************************************/
.hide { display: none; }
#blocker, .pos-popin {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
#blocker {
	background-color: rgba(200,200,200,.8);
}
.pos-popin {
	z-index: 11;
}
.popin {
	width: 90%;
	max-width: 650px;
	max-height: 90%;
	overflow: auto; 
	background: #fff;
	box-shadow: 5px 5px 5px #999;
	margin: 3% auto;
	box-sizing: border-box;
	padding: 15px;
	position: relative;
}

.popin .titre-popin {
	font-size: 1.2em;
	border-bottom: 1px solid #999;
	margin-bottom: 15px;
}
.popin .titre-popin::before {
	content: "";
	width: 10px;
	height: 10px;
	display: inline-block;
	background-color: #00A8D9;
	margin-right: 5px;
}
.popin .texte-popin {
	font-size: .8em;
	margin-bottom: 15px;
}
.popin .texte-popin p {
	margin: 0 0 5px;
}
.confirm-btn {
  border: 1px solid #00A8D9;
  padding: 1.2em 2em 1.1em 2.7em;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.7em;
  line-height: normal;
  background: url('img/arrow_white.png') 1.3em center no-repeat #00A8D9;
  cursor: pointer;
  outline: none;
}
.cancel-btn {
  border: 1px solid #666;
  background-color: #ffffff;
  padding: 1.2em 2em 1.1em 2em;
  color: #666;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.7em;
  line-height: normal;
  cursor: pointer;
  outline: none;
  margin-bottom: 5px;
}
.cancel-btn::before {
  content: "+";
  display: inline-block;
  transform: rotate(45deg);
  font-size: 20px;
  line-height: 0;
  position: relative;
  top: 3px;
  left: -8px;
  margin-bottom: 5px;
}

.btn-popin {
	text-align: right;
}
.btn-popin .confirm-btn {
	margin-left: 15px;
}



@media only screen and (max-width: 960px) {
	#body-showroom {
		margin: auto;
		width:100%;
	}
	#body-showroom .form-text, #body-showroom .form-select {
		width: 250px;
	}
	#slider-section {
		width: auto;
	}
	#slider-section,
	#slider-section .view-showrooms,
	#slider-section .view-content,
	#slider-section .optionset-showrooms-slider,
	#slider-section .optionset-showrooms-slider ul, 
	#slider-section .optionset-showrooms-slider ul li {
		max-height: 500px;
		margin-bottom: 0px;
		border: none;
	}
	#slider-section .views-field-field-showroom-description {
		position: relative;
		font-size: 14px;
		line-height: 15px;
	}
	#slider-section .caption {
		top: -80px;
	}
	.block-reso {
		width:100%;
	}
}
@media screen and (max-width: 500px) {
	#slider-section .caption {
		top: -200px;
	}
}
@media only screen and (max-width: 350px) {
	#slider-section .views-field-title {
		position: relative;
		top: 0px;
		padding: 0px;
		padding-bottom: 100px;
	}
	#slider-section .views-field-field-showroom-description {
		position: relative;
		top: -100px;
		font-size: 12px;
		line-height: 14px;
	}
	#slider-section .caption {
		top: -100px;
	}
}

/* issu du fichier de preprod : on garde ? */
.noTracker {
    border: solid 1px grey;
    width: 100%;
    margin-top: 30px;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #f5f3f0;    
}


.title-page-reso {
	color: #000;
}

.content-reso {
	max-width: 960px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-family: "AvenirLTStd-Heavy", "Helvetica Neue", helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 15px;
	height: auto;
}

.content-main-reso {
	max-width: 590px;
	float: left;
	background-color: #ebeae5;
	margin: 0px 5px 10px 5px;
	padding: 20px;
	width: 100%;
}

.content-main-reso-title {
	font-size: 20px;
	line-height: 20px;
	text-transform: uppercase;
	padding-bottom: 10px;
	font-family: "AvenirLTStd-Black", "Helvetica Neue", helvetica, Arial, sans-serif;
}

.content-main-image-reso {
	text-align:center;
	margin-bottom: 25px;
}

.content-right-reso {
	max-width: 310px;
	float: left;
	margin-left: 5px;
	margin-right: 5px;
	height: auto;
}

.content-regions-reso {
	background-color: #ebeae5;
	padding: 20px 15px 20px 15px;
	font-size: 13px;
	line-height: 20px;
}

.section-bref-reso {
	background-color: #7a99ad;
	padding: 10px 16px 30px 16px;
	margin-bottom: 10px;
}

.entete-bref-reso {
	text-transform: uppercase;
	border: 1px #000 solid;
	font-size: 13px;
	margin: 20px auto 19px auto;
	padding-top: 3px;
	line-height: 21px;
	text-align: center;
	font-weight: bold;
	width: 120px;
	font-family: "AvenirLTStd-Black", "Helvetica Neue", helvetica, Arial, sans-serif;
}

.titre-bref-reso {
	font-size: 12px;
	text-align: center;
	text-transform: uppercase;
	line-height: 14px;
	margin-bottom: 8px;
	margin-top: 7px;
	font-family: "AvenirLTStd-Black", "Helvetica Neue", helvetica, Arial, sans-serif;
}

.contenu-bref-reso {
	color: #ffffff;
	text-align: center;
	line-height: 15px;
	font-family: "AvenirLTStd-book", "Helvetica Neue", helvetica, Arial, sans-serif;
}

.entete-regions-reso {
	text-transform: uppercase;
	border: 1px #000 solid;
	font-size: 13px;
	margin: 5px auto 19px auto;
	padding-top: 3px;
	line-height: 21px;
	text-align: center;
	font-weight: bold;
	width: 170px;
	font-family: "AvenirLTStd-Black", "Helvetica Neue", helvetica, Arial, sans-serif;
}

.content-legende-reso {
	background-color: #000000;
	color: #ffffff;
	font-size: 10px;
	text-align: left; 
	line-height: 12px;
	padding: 6px 10px 6px 10px;
	margin: auto;
	margin-top: -5px;
}

.content-access-reso {
	background-color: #ebeae5;
	margin-top: 10px;
	padding: 20px 15px 20px 15px;
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	text-align: center;
}

.art-header-reso {
	width: 100%;
	height: 350px;
	min-height: 350px;
	position: relative;
	background-position: center;
	background-repeat-x: no-repeat;
}

.art-header-wrap-reso {
	bottom: 0px;
}

.view-reso {
	max-width: 940px;
	width: 100%;
	margin: auto;
}

.block-reso {
	float: left;
	background-color: #ebeae5;
	padding: 15px;
	margin: 10px 10px 0px 0px;
	border-top: 5px solid #000000;
	min-height: 270px;
}


@media screen and (min-width: 760px) {
	.block-reso {
		width:28%;
	}
}
.views-field-field-image-reso .field-content img {
	width: 100%;
	height: auto;	
}
.views-field-field-image-reso .field-content img:hover {
	opacity: 0.7;
}

.views-field-field-titre-reso {
	font-family: "AvenirLTStd-Light", "Helvetica Neue", helvetica, Arial, sans-serif;
	color: #000000;
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;	
	float: right;
	width: 100%;
	text-align: center;
	margin: 5px 0px 5px 0px;
	height: 50px;
	position: relative;
}
.views-field-field-titre-reso  .field-content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.views-field-field-annee-reso {
	font-family: "AvenirLTStd-Book", "Helvetica Neue", helvetica, Arial, sans-serif;
	color: #000000;
	font-size: 13px;
	line-height: 24px;
	font-weight: 700;
	text-transform: uppercase;	
	float: right;
}

.views-field-field-num-reso {
	color: #00a6d9;
	float: left;
	font-size: 20px;
}

.views-field-field-num-reso .field-content:before {
	content: "N°";
}

#abo-iframe {
    margin-top: 20px;
    margin-left: 25%;
}


@media screen and (max-width: 760px) {
  .styled-tabs-menu-title {
    display: flex;
	align-items: stretch;
	height:60px;
  }
  .styled-tabs-menu-title > li {
    padding: 0 10px;
	line-height: 14px;
	display:flex;
	align-items:center;
  }
  .styled-tabs-menu-title a {
    font-size:14px;
  }
  .a_lire_aussi .views-row a.mini_arrow_black {
    margin-left: 10px;
	display: inline-block;
	background-position-y: 8px;
  }
  .a_lire_aussi .views-row + .views-row {
    margin-top: 20px;
  }
}