/*Top level list items*/
.ddsmoothmenu ul li {
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a {
display: block;
text-decoration: none;
color: #fff;
}

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

	
/*1st sub level menu*/
.ddsmoothmenu ul li ul {
width:130px;
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
margin-top:8px;
/* Fallback for web browsers that doesn't support RGBa */
background: rgb(0, 0, 0);
/* RGBa with 0.6 opacity */
background: rgba(0, 0, 0, 0.8);
padding:5px;
z-index:999;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li {
display: list-item;
float: none;
margin-top:4px;
margin-bottom:4px;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a {
margin: 0;
color: #fff;
}

.ddsmoothmenu ul li ul li a:hover {
	color:#f7ff22;
	}
/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass {
display:none;
position: absolute;
top: 5px;
right: 7px;
}