/* CSS Document */


/* CSS issu des tutoriels http://css.alsacreations.com */

/*dl, dt, dd, ul, li {
margin: 0;
padding: 0;
list-style-type: none;
}
#menu {
position:absolute;
float:left;
margin-top:57px;

width: 1000px;
}
#menu dl {
float: left;
width: 200px;

}
#menu dt {
cursor: pointer;
text-align: center;

background: #66543E;


}
#menu dd {
width: 200px;
}
#menu li {
text-align: center;
background: #66543E;
border-top:1px solid gray;
}
#menu li a, #menu dt a {
color:#FFFFFF;
text-decoration: none;
display: block;
height: 100%;
border: 0 none;
font-weight: bolder;
}
#menu li a:hover, #menu dt a:hover {
background: gray;
}

#menu dt a.selected
{
color:gray;
}*/
dl, dt, dd, ul, li {
margin: 0;
padding: 0;
list-style-type: none;
}
#menu {
position: absolute; /* placement du menu, à modifier selon vos besoins */
float:left;
z-index:100;
margin-top:57px;
width: 100%; /* correction pour Opera */
}
#menu dl {
float: left;
width: 12em;
}
#menu dt {
cursor: pointer;
text-align: center;
font-weight: bold;
background: #66543E;

margin: 1px;
}
#menu dd {
display: none;
border: 1px solid gray;
}
#menu li {
text-align: center;
background: #66543E;
}
#menu li a, #menu dt a {
color:#FFFFFF;
text-decoration: none;
display: block;
height: 100%;
border: 0 none;
}
#menu li a:hover, #menu li a:focus, #menu dt a:hover, #menu dt a:focus {
background: gray;
}


