/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/
* {
	margin: 0;
	padding: 0;
}

/* pour changer la police de tout le texte*/

body {
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	background-color: #fff;
	background-image: ;
	background-repeat: no-repeat;
	background-position: center center;
}

/* ne pas toucher */
body.section-1 { }
body.section-2 { }
body.section-3 { }

/* pour modifier les liens*/
a:link {
	text-decoration: none;
	color: #FF0000;
}
a:active {
	text-decoration: none;
	color: #0000FF;
}
a:visited {
	text-decoration: none;
	color: #FF0000;
}
a:hover { text-decoration: underline; }

/* ne pas toucher */
a img { border: none; }

/* changer width et background-color au besoin */

#menu {
	width: 150px;
	overflow: auto;
	top: 0;
	bottom: 0;
	left: 0;
	position: fixed;
	height: 100%;
	background-color: #FFFFFF;
	border-right-width: 0px;
	border-right-style: dotted;
	border-right-color: #999999;
}

/* typo du texte du menu et interlignage */

#menu ul {
	list-style: none;
	margin: 0 0 3px 0;
	font-family: Arial, Helvetica, sans-serif;
}

/* typo des sections */
#menu ul li.section-title {
	color: #FF0000;
}

/* marge du debut du contenu */
#content {
    height: 100%;
    margin: 0 0 0 200px;
    top: 0;
}

/* ne pas toucher */
.container {
    padding: 5px 5px 25px 5px;
}

/* largeur du texte */
#content p { width: 600px; margin-bottom: 9px; }


/* ne pas toucher */
p {
    margin: 0 0 9px 0;
}

/* typo extra... */
h1 {
	font-size: 11px;
	color: #0000FF;
	font-weight: normal;
	text-transform: uppercase;
}
h2 {
	font-size: 13px;
	font-style: italic;
}
h3 { font-size: 16px; }
h4 { font-size: 12px; }

/* ne pas toucher */
#img-container	{ margin: 0; padding: 0; }
#img-container p	{ width: 400px; margin: 0; padding: 0 0 12px 0; }
#once { clear: left; }