/* common styling */
/* set up the overall width of the menu div, the font and the margins */

#navigation .menu {
font-family: verdana; 
width:675px;
/*width:655px;*/
margin:0; 
position:relative;
z-index:100;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
#navigation .menu 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 */
#navigation .menu ul li {
float:left; 
position:relative;
height: 31px;
background: transparent url('/assets/templates/new/images/button-left.gif') left top no-repeat;
margin-right: 5px;
}
/* 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. */
#navigation .menu ul li a, #navigation .menu ul li a:visited {
display:block; 
text-align:center; 
text-decoration:none; 
min-width:1px;
height:31px; 
color:#000000; 
line-height: 30px;
font-size:12px;
font-weight: bold;
background: transparent url('/assets/templates/new/images/button-right.gif') right top no-repeat;
padding: 0px 10px 0px 10px;
white-space: nowrap;
}

#navigation .menu ul li a:hover {
text-decoration: none;
}


/* make the dropdown ul invisible */
#navigation .menu ul li ul {
display: none;
}

#navigation .menu ul li ul li {
background-image: none;
height: 23px;
}

#navigation .menu ul li ul li a, #navigation .menu ul li ul li a:visited {
	text-align: left;
    padding-left: 8px;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
#navigation .menu ul li:hover a {
text-decoration: none;
color: #000000;
}
/* make the sub menu ul visible and position it beneath the main menu list item */
#navigation .menu ul li:hover ul {
display:block; 
position:absolute; 
top:31px; 
left:0;
padding-bottom: 10px;
width: 129px;

}
/* style the background and foreground color of the submenu links */
#navigation .menu ul li:hover ul li a {
background-image: none;
background-color: #DFF2FB;
display:block; 
border-right: none;
color:#000000;
font-size: 12px;
font-weight: normal;
white-space: nowrap;
height: 23px;
line-height: 23px;
text-decoration: none;
width: 165px;
/*width: 125px;*/
}
/* style the background and forground colors of the links on hover */
#navigation .menu ul li:hover ul li a:hover {
color: #C60A27;
background-color: #A3D4EE;
}
