/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/artists_dd.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* common styling */
/* set up the overall width of the menu div, the font and the margins */

.menu {
font-family: verdana, arial, sans-serif; 
width:934px; 
margin:0;
position:relative;
z-index:100;
}

/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu ul {
padding:0; 
margin:0;
list-style-type: none;
border-left: 1px solid #d7d1bb;
border-right: 1px solid #d7d1bb;
}
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.menu ul li {
float:left; 
position:relative;
}


/* style the links to be 150px wide by 30px high. Set the color and the font size. */
.menu ul li a, .menu ul li a:visited {
display:block; 
text-align:left;
padding-left: 3px;
text-decoration:none;
line-height:18px; 
color: #787262;
font-weight: bold;
font-size:10px;
}

.ssrubrique li{
width: 160px;
background:url("../img/uniopss_separateur.jpg") repeat-x bottom left;
}

.ssrubrique li a{
margin: 0;
padding: 0;
}

/* make the dropdown ul invisible */
.menu ul li ul {
visibility:hidden;
position:absolute;
background-color: #f8f5ed;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a {
color:#787262;

}


/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
visibility:visible; 
top:18px; 
left:0;
}
/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a {
display:block; 
color:#787262;
background:url("../img/uniopss_separateur.jpg") repeat-x bottom left;
line-height: 16px;
padding-top:3px;
padding-bottom: 3px;
}

/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li a:hover {
color: #3c382c;
background-color: #f3ead1;
}