.ddsmoothmenu{
	display: block;
	position: relative;
	z-index: 100;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: normal;
	font-weight: bold;
	text-align: center;
	border: none;
	margin: 0;
	padding: 0;
	height: 22px;
}

.ddsmoothmenu li{
	padding: 0;
	text-indent: 0;
	margin: 0;
}

.ddsmoothmenu ul{
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
	height: 22px;
}

/*Top level list items*/
.ddsmoothmenu ul li{
	position: relative;
	z-index: 100;
	display: inline;
	float: left;
	margin-top: 0px;
	margin-bottom: 0px;
}

/*Top level menu non-link items style*/
.ddsmoothmenu ul li p{
	display: block; /*background of menu items (default state)*/
	color: white;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin: 0px;
	border: none;
	border-left: 1px solid white;
	text-decoration: none;
	background-color: #000000;
	width: 128px;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
	display: block; /*background of menu items (default state)*/
	color: white;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin: 0px;
	border: none;
	border-left: 1px solid white;
	text-decoration: none;
	background-color: #000000;
	width: 80px;
}

* 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: white;
}

.ddsmoothmenu ul li p:hover{
	color: white;
	background-color: orange;
	cursor: pointer;
}
.ddsmoothmenu ul li a:hover{
	color: white;
	background-color: orange;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	z-index: 100;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	right: 0;
	
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
	display: list-item;
	float: none;
	z-index: 100;
}

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

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
	margin: 0;
	border-top: none;
	border-left: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	padding: 0px;
	padding-top: 4px;
	padding-bottom: 4px;
	width: 128px;

}

.ddsmoothmenu ul li ul li:first-child a {
	border-top: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
}
.ddsmoothmenu ul li ul li:last-child {
	border-bottom: none;
}

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

.downarrowclass{
	position: absolute;
	top: 8px;
	right: 4px;
}

.rightarrowclass{
	position: absolute;
	top: 7px;
	right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: Orange;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
	opacity: 0.8;
}

