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

.menu2 {
font-family:Arial, Helvetica, sans-serif;
margin:0; 
position:relative;
z-index:100;
float: left;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu2 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 */
.menu2 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. */
.menu2 ul li a, .menu2 ul li a:visited {
display:block; 
text-align:center; 
text-decoration:none; 
width:106px; 
height:30px; 
color:#000; 
border-width:1px 1px 0 0;
line-height:30px; 
font-size: .85em;
border-bottom:2px solid #f58220;
padding: 6px 0px;
}
/* make the dropdown ul invisible */
.menu2 ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main.menu2 li on hover */
.menu2 ul li:hover a {
color:#fff; 
background:#67BF7D;
}
/* make the sub.menu2 ul visible and position it beneath the main.menu2 list item */
.menu2 ul li:hover ul {
display:block; 
position:absolute; 
top:44px; 
left:0; 
width:105px;
border: none;
}
/* style the background and foreground color of the su.menu2 links */
.menu2 ul li:hover ul li a {
display:block; 
background:url(../images/menu-white.png); 
color:#000;
padding: 4px 0px;
height: 100%;
line-height: 1.5em;
}
/* style the background and forground colors of the links on hover */
.menu2 ul li:hover ul li a:hover {
background:#67BF7D; 
color:#fff;
}
