/* CSS MENU Déroulant */

body {
	padding: 0;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 10px;
	background-color: #212010;
	color: #696052;
	font-style: italic;
	font-weight: bold;
}
dl, dt, dd, ul, li {
margin: 0;
padding: 0;
list-style-type: none;
}
#menu {
position: relative; /* placement du menu, à modifier selon vos besoins */
top: 0;
left: 0;
z-index:100;
width: 100%; /* correction pour Opera */ 
}
#menu dl {
	float: left;
	height: 27px;
	line-height: 26px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: italic;
	letter-spacing: 1px;
}
#menu dt {
	cursor: pointer;
	text-align: center;
	height: 28px;
	color: #FFFFFF;
}
#menu dt a {
	color: #FFF;
	text-decoration: none;
	display: block;
	height: 100%;
/*border-bottom: #FFF solid 1px;*/
}
#menu dt a:hover, #menu dt a:focus {
	color: #212010;
	background-color: #FFFFFF;
/*filter:alpha(opacity=75); -moz-opacity:0.75; opacity: 0.75; -khtml-opacity: 0.75;*/
}
#menu dd {
position: absolute; /* placement du menu, à modifier selon vos besoins */
width: inherit;
top: 28px;
display: none;
right: auto;/*border: #3A3327 1px solid;*/
}
#menu li {
text-align: center;

/*filter:alpha(opacity=75); -moz-opacity:0.75; opacity: 0.75; -khtml-opacity: 0.75;*/
height:28px;
background-color: #FFFFFF;
}
#menu li a {
color: #212010;
text-decoration: none;
display: block;
height: 100%;
}
#menu li a:hover, #menu li a:focus {
color: #FFFFFF;
background-color: #212010;
}
#site {
	z-index: 1;
	/* centrage horizontal en utilisant les propriété de marges auto dispo avec DTD XHTML */
	/*margin-left: auto;
	margin-right: auto;
	width: 1000px;*/
	/* centrage horizontal et vertical du site avec marges négatives
	position:absolute;
	left: 50%; 
	top: 50%;
	width: 1000px;
	height: 633px;
	margin-top: -315px;
	margin-left: -500px; */
}
.first {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
}
.between {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}
.last {
	border-bottom-style: none;
}

