body,html{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

#container{
    width: 100%;
    height: 150%;
    background-image: url(/resources/container.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    background-attachment: fixed;
    margin: 0;
    /*position: absolute;
    position: relative;*/
    /*overflow-y: auto;*/
    z-index: -100;
    font-family: 'Play', sans-serif; /*Acme /Play*/
}

/*************BANDEAU***********/
header{
    margin: 0;
    padding-top:10px;
    height: 100px;
    background: linear-gradient(0deg, rgba(250,235,215,1) 0%, rgba(100, 149, 237,1) 30%, rgba(100, 149, 237,1) 60%, rgba(250,235,215,1) 100%); 
    background: -moz-linear-gradient(0deg, rgba(250,235,215,1) 0%, rgba(100, 149, 237,1) 30%, rgba(100, 149, 237,1) 60%, rgba(250,235,215,1) 100%); 
    background: -webkit-linear-gradient(0deg, rgba(250,235,215,1) 0%, rgba(100, 149, 237,1) 30%, rgba(100, 149, 237,1) 60%, rgba(250,235,215,1) 100%); 
    /*background : url('/resources/header_small.jpg'); */
    background-size: cover;
    position: relative;
    z-index: 3;
}

/***********TITRE*****************/
#image_titre{
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#image_titre h1{
    margin-left: 35%;
    margin-right: 5%;
    display: inline;
    font-size: 45px;
    font-family: 'Lobster', cursive;
    text-shadow: 2px 0 0 white, 0 2px 0 white, 0 -2px 0 white, -2px 0 0 white, 2px 2px 0 white, 2px -2px 0 white, -2px 2px 0 white, -2px -2px 0 white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#image_titre h1 a{
    color: #000;
    text-decoration: none;
}

#image_titre h2{
    display: inline;
    font-family: 'Aldrich', sans-serif;
    font-size: 18px;
    font-style: italic;
}

#image_titre h2 a{
    color: #000;
    text-decoration: none;
}

/*************SEPARATOR***********/
#separator{
    height: 15px;
    margin-top: -31px;
    background: radial-gradient( ellipse, rgba(255,0,0,1) 0%, rgba(0,0,0,1) 100%);
    background: -moz-radial-gradient(center, ellipse cover, rgba(255,0,0,1) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(255,0,0,1) 0%, rgba(0,0,0,1) 100%);
    /*background: -o-radial-gradient(center, ellipse cover, rgba(255,0,0,1) 0%, rgba(0,0,0,1) 100%);*/
}

/***************MENU**************/
#menu {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 25px;
    height: 51px;
    text-align: center;
    margin-top: -27px;
    overflow: hidden;
    font-family: 'Acme', sans-serif; /*Acme //Play*/
    /*z-index: 50;
    position: relative;*/
}

/******LISTE*******/
#menu li {
    display: inline-block;
    border: 2px solid;
    border-radius: 15px;
    background-color: antiquewhite; /*rgb(250,235,215)*/
    margin-right:20px;
    margin-left:20px;
    padding: 6px;
    overflow: hidden;
}
#menu li:hover ul {
    left: auto;
}
#menu li:hover {
    background-color: burlywood;
}
#menu a {
    text-decoration: none;
    color:#000;
    padding: 0px;
}
#menu ul {
    position: absolute;
    font-size: 20px;
    left: -999em;
    padding: 0;
    margin: 0;
    margin-top: 8px;
    margin-left:-5px;
    overflow: hidden;
}

/**********SOUS-LISTE*********/
#menu ul li {
    display: inherit;
    margin: 0;
    text-align: left;
}
#menu ul li a {
    display: block;
    padding: 0;
    margin: 0;
}



