.ddsmoothmenu{
	width: 100%;
	font-family: Verdana;
	font-size: 12px;
	font-weight: lighter;
	color: #5b1d59;
	border-top-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #000000;
	border-left-color: #FFFFFF;
	border-bottom-width: thin;
	height: 30px;
	background-color: #4A1D3C;
	padding: 0px;
}

.ddsmoothmenu ul{
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
	color: #4A1D3C;
	font-weight: lighter;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a {
	display: block; /*background of menu items (default state)*/
	color: #fcf8ed;
	text-decoration: none;
	font-weight: lighter;
	background-color: #4A1D3C;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #778;
	margin: 0px;
	padding-top: 8px;
	padding-right: 15px;
	padding-bottom: 8px;
	padding-left: 15px;
}

* html .ddsmoothmenu ul li a { /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
	padding: 0px;
	margin: 0px;
}

.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{
	color: #fcf8ed;
	font-weight: lighter;
}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: #ffffff;
	color: #4A1D3C;
}

.ddsmoothmenu ul li a:hover{
	color: #4A1D3C;
	background-color: #ffffff;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	padding: 0px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
	display: list-item;
	float: none;
	padding: 0px;
	margin: 0px;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
	top: 0;
	padding: 0px;
	margin: 0px;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
	width: 150px;
	border-top-width: 0;
	font-family: Verdana;
	font-size: 12px;
	font-style: normal;
	font-weight: lighter;
	font-variant: normal;
	border-bottom-width: 1px;
	border-bottom-style: none;
	border-bottom-color: gray;
	margin: 0;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 15px;
}


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 12px;
right: 7px;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.8;
}

