@charset "utf-8";
/* CSS Document */

/*
    Auteur : Yann Gilbert (Lenox47)
        Date de Création : 22/07/2013
*/


/* FONTS -----------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Croissant+One|Armata|Lily+Script+One|Racing+Sans+One|Numans|Oxygen:400,700,300|Actor);
@import url(http://fonts.googleapis.com/css?family=Monda:400,700&subset=latin,latin-ext);
@import url(http://fonts.googleapis.com/css?family=Expletus+Sans:400,400italic,500,500italic,600,600italic,700,700italic&subset=latin,latin-ext);

/* HTML, BODY ------------------------------------*/
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    
    background-color: #339999;
}

/* IMG -------------------------------------------*/
img {
    border: none;
}

.cafesImg {
    border: 2px solid #FFF;
}

/* A -----------------(---------------------------*/
a, a:link, a:hover, a:active, a:visited {
    text-decoration: none;
    color: #333;
}

/* Loader ----------------------------------------*/
#Loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(51, 51, 51, 0.66);
    font-size: 100px;
    color: #FFF;
    text-transform: uppercase;
    font-family: 'Actor', sans-serif;
    z-index: 1000;
}

#Loader table {
    position: relative;
    top: 20%;
    margin-right: auto;
    margin-left: auto;
    width: 85%;
    height: 70%;
}

#Loader td {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/* mainGlobal ------------------------------------*/
#mainGlobal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* mainBanner ------------------------------------*/
#mainBanner {
    position: fixed;
    left: 0;
    height: 72px;
    z-index: -1;
    opacity: 1;
    margin-left: 40px;
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

/* mainContainer ---------------------------------*/
#mainContainer {
    position: relative;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* mainMenu --------------------------------------*/
#mainMenu {
    position: fixed;
    top: 0px;
    right: 15px;
    width: 100%;
    z-index: 10;
    background-color: #feed01;
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

#mainMenu ul li:nth-child(1) {
    padding-right: 34px;
}

#mainMenu:hover {
    width: 100%;
    padding: 0px;

    background-color: rgba(255, 255, 255, 0.3);
}

#mainMenu:hover img {
}

#mainMenu:hover ul li {
    font-size: 16px;
}

#mainMenu ul {
    margin: 0;
    padding: 0;
}

#mainMenu ul li {
    display: inline;
    float: right;
    list-style-type: none;
    padding: 15px;
    color: #333;
    font-size: 0px;
    font-style: normal;
    font-weight: 300;
    font-family: 'Actor', sans-serif;
    cursor: default;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

#mainMenu ul li:hover {
    background-color: #feed01;
    /* padding-left: 30px; */
    color: #333;
}

.mainMenuIcons {
    height: 42px;
    z-index: 2;
}

.mainMenuText {
    text-align: right;
    margin-top: -35px;
    margin-left: 50px;
}

/* mainContent -----------------------------------*/
#mainContent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 148px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

#mainContent:hover {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

#mainContent ul li {
    display: inline;
    list-style-type: none;
    padding-right: 10px;
    opacity: 0.7;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

#mainContent ul li:hover {
    opacity: 1;
}

#mainContentCafes img {
    margin-bottom: 50px;
}

#mainContentCafes:hover ~ #arrowRight {
    opacity: 0.4;
}

#mainContentCafes:hover ~ #arrowLeft {
    opacity: 0.4;
}
*#mainContentCafes {
    opacity: 1;
}

/* arrows ----------------------------------------*/
#arrowLeft {
    margin-left: 15px;
    position: fixed;
    bottom: -5px;
    left: -20px;
    z-index: 2;
    opacity: 0;
    transition: all ease-in-out 0.6s;
    -webkit-transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
}

#arrowRight {
    margin-right: 15px;
    position: fixed;
    bottom: -5px;
    right: -4px;
    z-index: 2;
    opacity: 0;
    transition: all ease-in-out 0.6s;
    -webkit-transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
}

/* lastArticle -----------------------------------*/
#lastArticle {
    opacity: 0;
}

/* articles --------------------------------------*/
.articleShow {
    position: fixed;
    overflow-x: hidden;
    height: 100%;
    overflow-y: visible;
    margin-left: -15px;
}

.articleShow table {
    border-spacing: 0;
    background-color: rgba(0, 0, 0, 1);
    margin: auto;
    width: 100%;
}

.articleShow:hover ~ #mainContent {
    opacity: 0;
}

.article {
    margin-top: 72px;
    display: none;
    padding: 50px 50px 0px 50px;
    text-align: justify;
    font-size: 16px;
    color: #FFF;
    font-family: 'Actor', sans-serif;
    z-index: 1000;
    margin-bottom: 150px;
}

.articleAffiche {
    position: relative;
    width: 180px;
    margin: auto;
}

.articleAffiche img {
    border: 3px solid #FFF;
    opacity: 0.7;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.articleAffiche img:hover {
    opacity: 1;
}

.articleTitle {
    width: 188px;
    height: 40px;
    font-size: 26px;
    text-align: left;
    font-weight: bold;
    color: #000000;
    background-color: #feed01;
    font-family: 'Expletus Sans', cursive;
}

.articleTitle p {
    margin-top: -44px;
    margin-left: 150px;
}

.articleTitleIntro {
    float: right;
    font-size: 50px;
    text-align: right;
    color: #feed01;
    width: 55%;
}

.articleSubTitle {
    position: relative;
    width: 100%;
    font-size: 60px;
    text-align: right;
    color: #feed01;
    background-color: #161612;
    padding: 25px 0px 10px 0px;
}

.articleDate {
    position: relative;
    text-align: left;
    color: #969189;
    font-size: 18px;
    padding: 10px 0px 6px 15px;
    background-color: #161612;
}

/* articlePictures -------------------------------*/
.articlePictures {
    position: relative;
    margin: auto;
}

.articlePictures img {
    border: 3px solid #FFF;
}

.articlePictures ul li {
    display: inline;
    list-style-type: none;
    opacity: 0.7;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.articlePictures ul li:hover {
    opacity: 1;
}

.articlePictures ul {
    margin: 0;
    padding: 0;
}

/* articlePicturesWide ---------------------------*/
.articlePicturesWide {
    position: relative;
    margin: auto;
}

.articlePicturesWide img {
    border: 3px solid #FFF;
}

.articlePicturesWide ul li {
    display: inline;
    list-style-type: none;
    opacity: 0.7;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.articlePicturesWide ul li:hover {
    opacity: 1;
}

.articlePicturesWide ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

/* articleText -----------------------------------*/
.articleText {
    text-align: justify;
    color: #FFF;
    font-size: 16px;
    font-family: 'Actor', sans-serif;
}

.articleText p:first-of-type::first-letter {
    margin-left: 0px;
    font-size: 300%;
}

/* articleTextOnly -------------------------------*/
.articleTextOnly {
    text-align: justify;
    color: #FFF;
    font-size: 22px;
    font-family: 'Actor', sans-serif;
}

.articleTextOnly p:first-of-type::first-letter {
    font-size: 300%;
}

/* articleContentTop -----------------------------*/
.articleContentTop {
    padding: 50px 50px 25px 50px;
    background-color: rgba(0, 0, 0, 1);
    vertical-align: top;
}

/* articleContentBottom --------------------------*/
.articleContentBottom {
    padding: 50px 50px 25px 50px;
    background-color: rgba(0, 0, 0, 1);
    vertical-align: top;
}

/* articleImg ------------------------------------*/
.articleImgContent {
    padding: 25px 0px 0px 0px;
    text-align: center;
}

.articleImgDescription {
    padding: 0px 0px 25px 0px;
    text-align: center;
}

/* articleSignature ------------------------------*/
.articleSignature {
    text-align: right;
    padding-top: 50px;
}

/* articlePress ----------------------------------*/
.articlePress {
    position: relative;
text-align: center;
    margin: auto;
}

.articlePress img {
    border: 3px solid #FFF;
}

.articlePress ul li {
    display: inline;
    list-style-type: none;
    opacity: 0.7;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.articlePress ul li:hover {
    opacity: 1;
}

.articlePress ul {
    margin: 0;
    padding: 0;
}

/* articlePressWide ------------------------------*/
.articlePressWide {
    position: relative;
    margin: auto;
}

.articlePressWide img {
    border: 3px solid #FFF;
}

.articlePressWide ul li {
    display: inline;
    list-style-type: none;
    opacity: 0.7;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.articlePressWide ul li:hover {
    opacity: 1;
}

.articlePressWide ul {
    margin: 0;
    padding: 0;
}

/* about -----------------------------------------*/
#about {
    overflow-x: hidden;
}

/* intervenants ----------------------------------*/
#intervenants {
    position: relative;
    left: 0;
}

.listContainer {
    width: 100%;
}

.listContainer ul li {
    list-style-type: none;
    display: list-item;
    font-size: 18px; 
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.listContainer ul li a {
    color: #FFF;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.listContainer ul li a:hover {
    color: #feed01;
}

.listContainer ul li:hover {
    cursor: default;
}

/* newsletter ------------------------------------*/
#newsletterContentInformations {
    width: 100%;
}

#newsletterContentInformations table {
    width: 100%;
    padding: 50px;
}

#newsletterContentInformations table tr td {
    padding: 50px 0px 50px 0px;
}

#newsletterContentInformations table:first-child td:first-child {
    width: 70%;
    padding-right: 100px;
}

#newsletterContentInformations img {
    float: right;
}

.articleTextNewsletter {
    text-align: justify;
    color: #FFF;
    font-size: 16px;
    font-family: 'Actor', sans-serif;
}

#listRight {
    float: right;
    padding-right: 25%;
    text-align: right;
}

#listLeft {
    float: left;
    padding-left: 25%;
}

/* cafes -----------------------------------------*/
.articleTextCafes {
    text-align: justify;
    color: #FFF;
    font-size: 16px;
    font-family: 'Actor', sans-serif;
}

.articleTextCafes ul li {
    list-style-type: none;
    display: inline;
    padding: 15px;
}

.articleTextCafes ul {
    text-align: center;
}

.articleTextCafes img {
    border: 4px solid #FFF;
    border-radius: 8px;
    opacity: 0.6;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.articleTextCafes img:hover {
    opacity: 1;
}

/* contacts --------------------------------------*/
.articleTextContacts {
    text-align: right;
    color: #FFF;
    font-size: 16px;
    font-family: 'Actor', sans-serif;
}

.articleTextContacts a:hover, #newsletterContentInformations a {
    color: #FFF;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.articleTextContacts a:hover, #newsletterContentInformations a:hover {
    color: #feed01;
}

.articleContentTopWide {
    padding: 10px 50px 10px 50px;
    background-color: rgba(0,0,0,0.7);
    vertical-align: top;
}

.articleTitleWide {
    width: 100%;
    font-size: 50px;
    text-align: right;
    color: #feed01;
}

/* accueil -----------------------------------------*/
.articleAccueil {
    margin-top: 72px;
    display: none;
    padding: 50px;
    text-align: justify;
    font-size: 16px;
    color: #FFF;
    font-family: 'Actor', sans-serif;
    z-index: 1000;
}

/* select ----------------------------------------*/
select {
    width: 200px; 
    border: 4px solid #FFF; 
    border-radius: 4px; 
    font-family: 'Actor', sans-serif;
}

/* buttons ---------------------------------------*/
input[type=submit]  {
    width: 200px; 
    border: 4px solid #FFF; 
    border-radius: 4px; 
    font-family: 'Actor', sans-serif;
    background: #FFF;
    color: #666;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

input[type=submit]:hover  {
    width: 200px; 
    border: 4px solid #FFF; 
    border-radius: 4px; 
    font-family: 'Actor', sans-serif;
    background: #DDD;
    color: #333;
    cursor: pointer;
}

.invisible {
    opacity: 0;
}

.articleContentTop {
    width: 50%;
}

.articlePictures img {
    border: 3px solid #FFF;
}

.articlePopupInfo {
    position: fixed;
    bottom: 164px;
    width: auto;
    height: 100px;
    padding: 0px 20px 15px 20px;
    margin-left: -40px;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    display: none;
    font-size: 16px;  
    color: #FFF; 
    font-family: 'Actor', sans-serif;
}

#mainContentCafes a:hover .articlePopupInfo {
    display: block;
}

.popupInfoTitle {
    font-size: 16px;
    color: #feed01;
}

.popupInfoInvite {
    font-size: 22px;
    color: #FFF;
}

.articleSiteInvite {
    font-size: 26px;
    margin-top: -17px;
    text-align: center;
    width: 100%;
    height: 55px;
    color: #333;
    padding-top: 25px;
}

.articleSiteInvite:hover {
    color: #FFFFFF;
}

.articleSiteInvite a {
    color: #333;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.articleSiteInvite a:hover {
    color: #FFF;
}

.commentForm {
    position: relative;
    width: 100%;
    height: auto;
}

.commentFil {
    position: relative;
    width: 100%;
    height: 350px;
    padding: 0px 50px;
}

textarea {
    padding:5px;
    border:2px solid #ddd;
    width:100%;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;  
    font-family: 'Actor', sans-serif;
    resize: none;
}

.comment {
    position: relative;
    padding: 15px 50px 10px 50px;
    background-color: #333;
}

.nameAuthor {
    padding-left: 50px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #feed01;
    color: #000;
}

.buttonCommentConfirm {
    text-align: right;
}

#newform {
    height: auto;
    margin: 0 auto;
    padding: 0px 1%;}

#newform .text {
    width: 99%;
    height: 40px;
    margin: 5px 0px 10px 0px;
    color: #000;
    border: 2px solid #ddd;
    font-family: 'Actor', sans-serif;
    padding-left: 2px;
}

#newform .code {
    width: 40%;
    height: 40px;
    margin: 5px 0px 10px 10px;
    color: #000;
    border: 2px solid #ddd;
    font-family: 'Actor', sans-serif;
    padding-left: 2px;
}

#newform input[type=submit] {
    background-color: #feed01;
    height: 50px;
    width: 100%;
    border: none;
    color: #000;
    font:15px/18px PTSerif;
    -webkit-box-shadow: 0 6px 6px -6px black;
    -moz-box-shadow: 0 6px 6px -6px black;
    box-shadow: 0 6px 6px -6px black;
    -webkit-transition:all 0.5s ease;
    -moz-transition:all 0.5s ease;
    -o-transition:all 0.5s ease;
    transition:all 0.5s ease; 
    font-family: 'Actor', sans-serif;
}

#newform input[type=submit]:hover{ 
    color:#feed01; 
    text-decoration:none; 
    background-color:#161612; 
    border-radius: 5px 10px 5px;
    cursor: pointer;
}

/* CORRECTIONS ---------------------------------*/

#mainContentCafes {
    margin:auto;
    overflow-x: scroll;  
    overflow-y: hidden;
    width: 90%;
    height: 164px;
}

#mainContentCafes ul {
    width: 3650px;
}

#mainContent {
    height: 164px!important;
}

/* @MediaQueries ---------------------------------*/
@media screen and (max-width: 800px) {
    .articleAffiche {
        width: 180px;
    }

    .articleTitle {
        width: 100%;
        font-size: 24px;
    }


    .articleTitleIntro {
        float: right;
        font-size: 38px;
        text-align: right;
        color: #feed01;
        width: 100%;
    }

    .articleSubTitle {
        width: 100%;
        font-size: 22px;
    }

    .articleSubTitle img {
        width: 12px;
    }

    .articlePictures {
        width: 180px;
    }

    #mainBanner {
        display: none;
    }

    .mainMenuText {
        margin-left: 0;
    }

    #mainMenu img {
        opacity: 1;
        transition: all ease-in-out 0.2s;
        -webkit-transition: all ease-in-out 0.2s;
        -moz-transition: all ease-in-out 0.2s;

        -ms-transition: all ease-in-out 0.2s;
        -o-transition: all ease-in-out 0.2s;
    }

    #mainMenu:hover img {
        opacity: 0;
    }

    #mainMenu ul li:nth-child(1) {
        padding-left: 17px;
    }

    .articlePress {
        width: 180px;
    }

    .articlePicturesWide {
        width: 180px;
    }

    .articleDate {
        position: relative;
        text-align: right;
        font-size: 15px;
        margin-top: 0;
        padding-bottom: 4px;
    }

    .articleDate img {
        width: 12px;
    }

    .articleSiteInvite {
        font-size: 18px;
        text-align: center;
        width: 100%;
        height: 48px;
        color: #333;
    }
}

/* @MediaQueries ---------------------------------*/
@media screen and (max-width: 1366px) {
    #mainMenu:hover #mainBanner {
        opacity: 0;
    }
