@CHARSET "UTF-8";

.ddsmoothmenu ul {
	z-index: 100;
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-decoration: none;
}
/*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;
	color: white;
	text-decoration: none;
	padding-left: 10px !important;
	padding-right: 10px !important;
	text-align: left;
	opacity: 1.0;
	filter:alpha(opacity=100);
}
* 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 {
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	background-image: none;
	text-align: left;
	opacity: 0.9;
	filter:alpha(opacity=90);
}
/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li {
	display: list-item;
	float: none;
	background-image: none;
	text-align: left;
}
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul {
	top: 0;
	text-align: left;
}
/* Sub level menu links style */
.ddsmoothmenu ul li ul li a {
	width: 180px; /*width of sub menus*/
	margin: 0px;
	padding: 5px;
}
/* Holly Hack for IE \*/
* html .ddsmoothmenu {
	height: 1%; /*Holly Hack for IE7 and below*/
}
/* CSS classes applied to down and right arrow images */
.ddsmoothmenu .downarrowclass {
	position: absolute;
	top: 12px;
	right: 7px;
}
.ddsmoothmenu .rightarrowclass {
	position: absolute;
	top: 6px;
	right: 5px;
}