/*DEFAULT MENU STATE*/
.ddsmoothmenu{
position: relative;
right: -15px;
z-index: 1000;
}

/*MENU POSITIONING*/
.ddsmoothmenu ul li{
position: relative;
display: inline;
float: right;
}

.ddsmoothmenu br{
clear: both;
}

.ddsmoothmenu ul{
z-index: 1000;
margin: 0;
padding: 0;
list-style-type: none;
}



/*MENU HEADERS*/
.ddsmoothmenu ul li a{
display: block;
margin-right: 15px;
padding: 5px 10px;
text-decoration: none;
}

* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{
color: #666;
}

.ddsmoothmenu ul li a.selected, .ddsmoothmenu ul li a:hover{ /*menu header rollover*/
background: black; 
color: #3CF;
}
	
/*DROP MENU*/
.ddsmoothmenu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}

.ddsmoothmenu ul li ul li{/*drop menu items (undo style from menu headers)*/
display: list-item;
float: none;
}

.ddsmoothmenu ul li ul li ul{/*All subsequent sub menu levels vertical offset after 1st level sub menu */
top: 0;
}

.ddsmoothmenu ul li ul li a{/* drop menu style */
background: #222;
width: 160px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid #000;
}

.ddsmoothmenu ul li ul li a:hover{
color: #FFF;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu { /*Holly Hack for IE7 and below*/
	height: 1%;
} 


