@charset "utf-8";
/* CSS Document */

.ddsmoothmenu{
	clear:both;
	float:left;
	display:inline;
	margin:0 0 0 50px;
	width:700px;
	height:30px;
	background-image: url(images/topnavback.gif);
	background-repeat: no-repeat;
	padding:0;
	background-position:left 0;
}

.ddsmoothmenu ul{
	list-style-type: none;
	margin:0 0 0 5px;
	padding:0;
	width:100%;
}

/*Top level list items*/
.ddsmoothmenu ul li{
	position: relative;
	float: left;
}

.ddsmoothmenu ul li.active {
	border:1px solid #fff;
}

/*Top level menu link items style*/

*html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
	display:inline-block;
}

*html .ddsmoothmenu ul li a:hover{ /*IE6 hack to get sub menu links to behave correctly*/
	display:inline-block;
}

*html .ddsmoothmenu ul li ul {
	margin-top:0px;
}

.ddsmoothmenu ul li a {
	font-family:Verdana, Geneva, sans-serif;
	font-size:75%;
	color: #555;
	font-weight:bold;
	text-decoration: none;
	padding:7px 23px 7px 23px;
	display:block;

}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	color:#008CD1;
	text-decoration:none;
	border-left:solid 1px #cccccc;
	border-right:solid 1px #cccccc;
	border-top:solid 1px #cccccc;
	padding:6px 22px 10px 22px;
	background-color:#FFF;
}

.ddsmoothmenu ul li a.current{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	color:#008CD1;
	text-decoration:none;
}

.ddsmoothmenu ul li a:hover{
	color:#008CD1;
	text-decoration:none;
}

	
/*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;
	background-color:#fff;
	margin:2px 0 0 0px;
	padding:10px 3px 10px 8px;
	overflow: hidden;
	width:129px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #ccc;
	border-bottom-color: #ccc;
	border-left-color: #ccc;
	border-top:none;
}

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

.ddsmoothmenu ul li ul li a:hover {
	color:#008CD1;
	border:none;
	text-transform: none;
	font-weight: normal;
}

/*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:none;
	font-family:Verdana, Geneva, sans-serif;
	font-size:70%;
	color: #444;
	text-transform: none;
	font-weight: normal;
	background-color:none;
	width:130px;
	padding:3px 0 3px 13px;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


