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

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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

*, *:before, *:after {

  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;

 }
 .clear{clear: both;}
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@font-face {

    font-family: 'TCM';

    src: url('fonts/TCM.eot');

    src: url('fonts/TCM.eot#iefix') format('embedded-opentype');

    src: url('fonts/TCM.TTF') format('truetype');
	
	src: url('fonts/TCM.woff') format('woff');

    font-weight: normal;

    font-style: normal;

}

@font-face {

    font-family: 'BRLNSR';

    src: url('fonts/BRLNSR.eot');

    src: url('fonts/BRLNSR.eot#iefix') format('embedded-opentype');

    src: url('fonts/BRLNSR.TTF') format('truetype');
	
	src: url('fonts/BRLNSR.woff') format('woff');

    font-weight: normal;

    font-style: normal;

}

body{
	background-color: #FFF;
	font-family: "TCM";
	background-image: url(img/bg.png);
	background-position: center top;
	background-repeat: no-repeat;
	font-size: 18px;
}

a{
	color: #e40329;
}


#wrapper{
	margin: 0 auto;
	padding-top: 280px;
	width: 800px;
	min-height: 450px;
	height: auto;
	
}

header[role="heading"]{	
	height: 120px;
	width: 100%;
	background-color: #e40329;	
	box-shadow: 0px 0px 10px 0px #404040;
	-moz-box-shadow: 0px 0px 10px 0px #404040;
	-webkit-box-shadow: 0px 0px 10px 0px #404040;
	-o-box-shadow: 0px 0px 10px 0px #404040;
}

#logo{
	margin: 0 auto;
	width: 400px;
}

#logo img{
	margin-top: -50px;
}

#header_menu{	
	width: 100%;
	padding-top: 35px;
	text-align: center;
	font-size: 16px;	
}


#header_menu li{
	text-transform: uppercase;
	list-style-type: none;
	display: inline;
	margin: 4px 10px;
}

#header_menu a{
	text-decoration: none;
	color: #FFF;
}

footer[role="contentinfo"]{
	padding: 15px;
	width: 100%;
	height: 300px;
	margin: 15px 0 0 0;
	background-color: #131313;
	color: #FFF;
	position: relative;
	margin-top: 50px;
}
footer[role="copyright"]{
	width: 100%;
	text-align: center;
	color: #767676;
	font-size: 12px;
	position: absolute;
	bottom: 5px;
	left: 0;
}
#content{ text-align: justify;
			clear: both;
			position: relative;
			margin-bottom: 20px;
			margin-top: 20px;}
			
#footer_content{
	width: 800px;
	min-height: 250px;
	margin: 0 auto;
}

#footer_menu{
	float: right;
	margin: 100px;
		
}

#footer_menu a{
	color: #FFF;
	text-decoration: none;	
	font-size: 16px;
	text-transform: uppercase;
}
#footer_content li{
	list-style-type: none;
}

#gotop{
	width: 75px;
	margin: -50px auto;
}


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

p{
	font-size: 18px;
	line-height: 1.3em;
	margin-bottom: 1em;
}

h1{
	font-family: "BRLNSR";
	font-size: 50px;
	font-weight: bold;
	color: #e40329;
	margin: 0 0 5px 0;
	transform: rotate(-2deg);
	margin-bottom: 30px;
	text-align: left;
	
}

h2{
	font-family: "BRLNSR";
	font-size: 18px;
	margin: 0 0 5px 0;
}

h3{
	font-family: "BRLNSR";
	font-size: 18px;
}

strong{ font-weight:bold;}

li{ list-style-image: url(img/list-style.png);
}

@keyframes AutoSlide {
    0% {
        left: 0px; /*1ère image*/
    }
    15% {
        left: 0px; /*idem pour attente*/
    }
    35% {
        left: -800px; /*2ème image*/
    }
    50% {
        left: -800px; /*idem pour attente*/
    }
    70% {
        left: -1600px; /*3ème image*/
    }
    85% {
        left: -1600px; /*idem pour attente*/
    }
    100% {
        left: 0px; /*1ère image*/
    }
}

#slideshow {
    position: relative;
    width: 800px;
    height: 250px;
    margin:  50px auto 20px auto;
    overflow: hidden;
}
#sContent li {
    display: inline;
}

#sContent {
    position: absolute;
    top: 0;
    left: 0;
    width: 2400px;
    margin: 0;            
    padding: 0;
    
    /*CSS3 keyframes animation*/
    animation-name: AutoSlide;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}