body { 
	margin:25px;
	font:12px Verdana, Arial, Helvetica;
}

* {
	padding:0; 
	margin:0;
}

/* Link properties */
.dropdown a, 
.dropdown a:active, 
.dropdown a:visited {
	display:block;
	padding:5px;
	color:#333;
	text-decoration:none;
	background:#eaf0f2;
	width:194px;
}

.dropdown a:hover { 
	background:#d9e1e4;
	color:#000;
}

.dropdown .underline {
	border-bottom:1px solid #b9d6dc;
}


/* Main container - center accordingly */
div#container {
	width:1000px;
	overflow:hidden; /* Firefox fix */
	float:left;
	margin-left:52px;
}

.dropdown {
	float:left;
	padding-right:0px;
}

/* Parent menu item */
.dropdown dt {
	width:188px; 
	border:2px solid #e7ebf0; /* keep this to stop it from jumping around e7ebf0 */
	background-color:#e7ebf0; /* Note: changes here should be updated in the associated jscript - check rest of CSS with associated color changes */
	padding:8px;
	font-weight:500;
	cursor:pointer;
}

.fix {
	background-color:#000000;
}

.dropdown dt:hover {
    /* Set this dynamically in the jscript
	   Check function ddMenu(id,d) 
 	   border:2px solid #9ac1c9; 
	   background-color:#9ac1c9; 
	*/
}

/* Drop down menu-items */
.dropdown dd {
	position:absolute; 
	overflow:hidden; 
	width:208px; 
	display:none; 
	background:#fff;
	z-index:200;
	opacity:0;
}

.dropdown ul { 
	width:204px;
	border:2px solid #bbc3c6; /* 9ac1c9 */
	list-style:none;
	border-top:none;
}

.dropdown li {
	display:inline;
}

