@charset "UTF-8";
.ddsmoothmenu {
	background-color: #dddbdb;
	height: 27px;
	text-transform: lowercase;
	width: 100%;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #999999;
	padding: 0px;
	line-height: normal;
	clear: both;
	margin: 0px;
}
.ddsmoothmenuhm {
	width: 100%;
	clear: both;
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: #999999;
	background-color: transparent;
	height: 15px;
	line-height: normal;
}
.ddsmoothmenu ul {
	z-index:100;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
/*Top level list items*/
.ddsmoothmenu ul li {
	position: relative;
	display: inline;
	float: right;
	margin: 0px;
	padding: 0px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	border-right-style: none;
}
/*Top level menu link items style*/
.ddsmoothmenu ul li a {
	display: block; /*background of menu items (default state)*/
	color: white;
	color: #666666;
	text-decoration: none;
	background-color: #DDDBDB;
	font-size: 12px;
	text-align: center;
	margin: 0;
	height: 19px;
	padding-top: 8px;
	padding-right: 3px;
	padding-bottom: 0px;
	padding-left: 3px;
	width: 145px;
}
* 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 {
	text-decoration: none;
}
.ddsmoothmenu ul li a.selected { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	color: #FFFFFF;
	background-color: #2D63A8;
}
.ddsmoothmenu ul li a:hover {
	color: #2D63A8;
	background-color: #ccdded;
}
/*1st sub level menu*/
.ddsmoothmenu ul li ul {
	position: absolute;
	left: 0px;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	margin: 0px;
	padding: 0px;
}
/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li {
	display: list-item;
	float: none;
	margin: 0px;
	padding: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul {
	top: 0px;
}
/* Sub level menu links style */
.ddsmoothmenu ul li ul li a {
	width: 143px;
	margin: 0px;
	text-align: left;
	font-size: 12px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: lowercase;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
	line-height: normal;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	color: #666666;
}
/* ######### CSS classes applied to down and right arrow images  ######### */
.downarrowclass {
	position: absolute;
	top: 12px;
	right: 7px;
	visibility: hidden;
}
.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;
	background: silver;
}
.toplevelshadow { /*shadow opacity. Doesn't work in IE*/
	opacity: 0.8;
}
