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

.menu_headerv2 {
margin:-20px 0 0 190px;
font-family:Segoe UI, arial, helvetica, verdana, sans-serif;
height:40px;
position:relative;
z-index:100;
}

/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu_headerv2 ul {
padding:0; 
margin:0 0 0 0px;
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 */
.menu_headerv2 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. */
.menu_headerv2 ul li a, .menu_headerv2 ul li a:visited {
display:block; 
text-align:center; 
text-decoration:none; 
width:130px;
height:30px; 
color:#bab9b5; 
background:#000000; 
border:none;
line-height:30px; 
font-size:13px;
font-weight:bold;
font-style:italic;
margin-right:2px;
}

/* make the dropdown ul invisible */
.menu_headerv2 ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu_header li on hover */
.menu_headerv2 ul li:hover a {
color:#f09d9d; 
background:#444444;
}

/* make the sub menu_header ul visible and position it beneath the main menu_header list item */
.menu_headerv2 ul li:hover ul {
display:block; 
position:absolute; 
top:30px; 
left:0; 
width:130px;
}

/* style the background and foreground color of the submenu_header links */
.menu_headerv2 ul li:hover ul li a {
display:block; 
background:#000000; 
color:#bab9b5;
font-size:12px;
}

/* style the background and forground colors of the links on hover */
.menu_headerv2 ul li:hover ul li a:hover {
background:#000000; 
color:#bab9b5;
/*border:1px ridge #f6840b;*/
border:1px ridge #f09d9d;
}

.imagemenuhorizontalbar {
	margin-left:2px;
	vertical-align:center;
}
