@charset "utf-8";
/* CSS Document */
ul, li {	/* list use for the menu  */
list-style-type: none;	/* suppression of list markers */
margin:0;
padding:0;
}
ul {
background: transparent url(/images/menu_haut.png) top left no-repeat;	/* general menu background */
width: 1000px;
text-align: center;
}
li {float: left;}
li a {
display: block;
height: 70px;
text-decoration: none;
}
li a#menu1 {
width: 211px;
}
li a#menu2 {
width: 206px;
}
li a#menu3 {
width: 177px;
}
li a#menu4 {
width: 182px;
}
li a#menu5 {
width: 224px;
}
li a:hover {
background: transparent url(/images/menu_haut.png) top left no-repeat;
}
a#menu1:hover {
background-position: 0% -70px;
}
a#menu2:hover {
background-position: -211px -70px;
}
a#menu3:hover {
background-position: -417px -70px;
}
a#menu4:hover {
background-position: -594px -70px;
}
a#menu5:hover {
background-position: -776px -70px;
}
/*
Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!

Note: a:active MUST come after a:hover in the CSS definition in order to be effective!!


*/
