﻿.DDMenu{
font: bold ;
background: #414141; /*background of menu bar (default state)*/
width: 100%;
}

.DDMenu ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.DDMenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.DDMenu ul li a{
display: block;
background: #414141; /*background of menu items (default state)*/
color: black;
padding: 0px 10px;
border: 1px solid #778;
text-decoration: none;
}

* html .DDMenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.DDMenu ul li a:link, .DDMenu ul li a:visited{
color: black;
}

.DDMenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: black; 
color: #FF6D01;
}

.DDMenu ul li a:hover{
background: black; /*background of menu items during onmouseover (hover state)*/
color: #FF6D01;
}
	
/*1st sub level menu*/
.DDMenu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.DDMenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.DDMenu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.DDMenu ul li ul li a{
font: normal;
width: 200px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid gray;
}

/* Holly Hack for IE \*/
* html .DDMenu{height: 1%;} /*Holly Hack for IE7 and below*/
