.ddsmoothmenu{
	font-size: 12px;
	font-weight: bold;
}

.ddsmoothmenu ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.ddsmoothmenu ul li{
	position: relative;
	display: inline;
	float: left;
	margin-right: 3px;
	margin-left: 3px;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
	display: block; /*background of menu items (default state)*/
	color: white;
	color: #333333;
	text-decoration: none;
	line-height: 38px;
	height: 38px;
	padding-right: 21px;
	padding-left: 21px;
	text-transform: capitalize;
	background-image: url(../images/tm.gif);
	background-repeat: repeat-x;
	background-position: left top;
	font-size: 15px;
	font-weight: lighter;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCCCCC;
	border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	font-family: 'Roboto Condensed', sans-serif;
	box-shadow: 0 2px 2px #666666;
}

* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	text-decoration: none;
	color: #FF9A00;
}

.ddsmoothmenu ul li a:hover{
	text-decoration: none;
	color: #0F4C85;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	text-align: left;
	padding-bottom:5px;
	box-shadow: 0px 2px 3px #666666;
	width: 360px;
	background-color: #A4CD3A;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
	display: list-item;
	float: left;
}

/*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{
	width: 150px;
	margin: 0;
	border-top-width: 0;
	border-bottom-width: 0;
	line-height: 30px;
	height: 30px;
	text-align: left;
	text-transform: none;
	background-image: none;
	border-right-width: 0;
	border-left-width: 0;
	text-shadow: none;
	text-decoration: none;
	font-weight: lighter;
	padding-right: 5px;
	text-shadow: 1px 1px 1px #666666;
	font-size: 14px;
}
.ddsmoothmenu ul li ul li a:hover{
	text-decoration: none;
	background-image: none;
	color: #333333;
	text-shadow: 1px 1px 1px #FFFFFF;
}
/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### 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;
}
