/* CSS Document */


body {
	background-color: #CCCCCC;
}
.Style1 {
	color: #FFFFFF;
	font-style: italic;
}
.Style2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: italic;
}
a:link {
	color: #0099FF;
}
a:visited {
	color: #0099FF;
}
a:hover {
	color: #00CCFF;
}
a:active {
	color: #0099FF;
}
.Style5 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: italic;
	color: #333366;
	font-weight: bold;
}

#menu-deroulant, #menu-deroulant ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
#menu-deroulant {
/* on centre le menu dans la page */
    text-align: center;
}
#menu-deroulant li {
/* on place les liens du menu horizontalement */
    display: inline-block;
}
#menu-deroulant ul li {
/* on enlève ce comportement pour les liens du sous menu */
    display: inherit;
}
#menu-deroulant a {
    text-decoration: none;
    display: block;
	color:#000;
}
#menu-deroulant ul {
	position: absolute;
	/* on cache les sous menus complètement sur la gauche */
    left: -999em;
	text-align: left;
	z-index: 1000;
	background-color: #FFFFFF;
}
#menu-deroulant li:hover ul {
/* Au survol des li du menu on replace les sous menus */
    left: auto;
}
