/* Start of CMSMS style sheet 'Default_js_dropdown' */
/*	This removes the indents browsers tend to make, as well as the bullets.
	The "position:relative" is needed since we will arrange some of the
	contained elements with position:relative and absolute. The  line-height
	will center the link text vertically without the need to play with margins
	and paddings.
*/
#dropdown, #dropdown ul {
	margin: 0 0 0 14px;
	padding: 0;
	/*background-color: #fff;*/
	list-style-type: none;
	list-style-position: outside;
	position: relative;
	line-height: 20px;
	height: 45px;
	/*width: 778px;*/
	z-index: 1000;
}

#dropdown a {
margin-top: 5px;
	padding: 10px 15px 10px 15px;
}

#dropdown a:link, #dropdown a:active, #dropdown a:visited {
	display: block;
	color: #333;
	text-decoration: none;
	/*background-color: #fff;*/
	padding: 10px 15px 10px 15px;
}

#dropdown a:hover {
	background: #000  url(uploads/ngrey/darknav.png) repeat-x left center;
	color: #fff;
}

/*	This will align our list elements horizontally  */
#dropdown li {
	float: left;
	position: relative;
}

/*	This will position the nested Lists right beyond the main menu and give them a
	width of 12em. The width attribute is needed so that the list items within
	display vertically again. The Top attribute should have the same value as the
	line-height attribute we defined for #dropdown.
*/
#dropdown ul {
	margin: 0;
	position: absolute;
	width: 182px;
	top: 40x;
	display:none;
	border-top: #dbe2e5 1px solid;
}

#dropdown li ul a {
	margin: 0;
	width: 150px;
	float: left;
	background-color: #fff;
	border-left: #dbe2e5 1px solid;
	border-right: #dbe2e5 1px solid;
	border-bottom: #dbe2e5 1px solid;
}

/*	#nav ul ul and #nav li ul ul define where we display the sub menus.  */
#dropdown ul ul {
	top:auto;
}	

#dropdown li ul ul {
	left:200px;
	margin:0px 0 0 10px;
}

/*	The hover states define which items we want to show when hovering over an item
	(only the next sub level, not all of them)
*/
#dropdown li:hover ul ul, #dropdown li:hover ul ul ul, #dropdown li:hover ul ul ul ul {
	display:none;
}
#dropdown li:hover ul, #dropdown li li:hover ul, #dropdown li li li:hover ul, #dropdown li li li li:hover ul {
	display:block;
}

.clearb {
	clear: both;
}
/* End of 'Default_js_dropdown' */

