
/* exposer styling */
/* set up the overall width of the menu div, the font and the margins */

.menu {
position:relative;
left:0px;
top:0px;
font-family: arial, sans-serif; 
margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px;
border-style:hidden;	
z-index:50;		
width:573px;
height:22px;
background:url('../images/bgsousmenu.gif');
background-repeat:no-repeat;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu ul {
position:relative;
margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px;
list-style-type: none;	  	
border:0px solid #000 ;
background:#6096D5;
}

/* 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;	  		
height:19px;
}
/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.menu ul li a, .menu ul li a:hover {
display:block; 
text-align:center; 
line-height:20px;
text-decoration:none; 
width:auto; 
height:21px; 
color:#fff; 	
background:#6096D5;							 
font-weight:bold;
font-style:normal;
border:1px solid #003A7F;
border-width:0px 2px 0px 0px;
font-size:12px;	 		
padding:0px 11px 0px 10px;
margin:0px 0px 0px 0px;
}

/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.menu .main ul li a  {
display:block; 
text-align:center; 
text-decoration:none; 
width:240px; 
height:19px; 
color:#000; 
border:1px solid #5A173E;
border-width:1px 1px 1px 1px;
background:#c9c9a7; 
line-height:20px; 
font-size:11px;
padding:0px 0px 0px 8px;
margin:0px 0px 0px 0px;	

}

.mainNow{
color:#fff;
text-align:center; 
margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px; 

}

/* make the dropdown ul invisible */
.menu ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a {
color:#6096D5;
text-align:center; 
background:#fff;
}
/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
display:block; 				
position:absolute; 
top:19px; 
left:0px; 
width:96px;
}
/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a {
text-align:left;
display:block; 
font-style:normal;
font-weight:bold;
background:#6096D5; 
color:#fff;
}
/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li a:hover {
background:#FFF; 
color:#6096D5;		   
}  		
