/* common styling */
/* set up the overall width of the menu div, the font and the margins */

.menuddbar{
font-family: verdana,arial, sans-serif; 
width:334px; 
margin:0;
padding: 0 ; 
position:relative;
z-index:900;
}

/* remove the bullets and set the margin and padding to zero for the unordered list */
.menuddbar ul {
padding: 0 ;
margin:0;
list-style-type: none;
}

/* 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 */
.menuddbar ul li {
float:left; 
position:relative;
}

/* 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. */
.menuddbar ul li a, .menuddbar ul li a:visited {
display:block; 
text-align:center; 
text-decoration:underline; 
width:334px; 
color:#666; 
border:1px solid #cccccc;
border-right:2px solid #cccccc;
border-left:2px solid #cccccc;


 background-image: url('/assets/images/site/back3.jpg'); background-repeat: repeat;

 padding: 2px 0 0 0 ;
font: 600 16px garamond,verdana,arial;
line-height:50px;
}
/* make the dropdown ul invisible */
.menuddbar ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menuddbar ul li:hover a {
color:#666; 

height:50px;
text-decoration:none; 
 padding: 2px 0 0 0 ;
}
/* make the sub menu ul visible and position it beneath the main menu list item */
.menuddbar ul li:hover ul {
display:block; 
position:absolute; 
top:53px;
 padding:0 ;
left:0; 
width:336px;

font: 100 11px verdana,arial;

}
/* style the background and foreground color of the submenu links */
.menuddbar ul li:hover ul li a {
display:block; 
background:#fff; 
color:#333;
height:20px;
padding: 8px 0 0 0 ;
font: 100 12px verdana,arial;
}
/* style the background and forground colors of the links on hover */
.menuddbar ul li:hover ul li a:hover {
background:#666; 
color:#fff;
line-height:20px;
padding: 8px 0 0 0 ;
font: 100 12px verdana,arial;
}
