/* Start of CMSMS style sheet 'menu' */
#menu {
	width: 150px;
	float: left;
	display: inline;
	margin: 10px 0 0 35px;
} 

#menu ul { /* remove bullets and list indents */
	list-style-type:none; 
	margin: 0;
	padding: 0;
}

/* style, color and size links and headings to suit */
#menu a {
	font: normal 12px/20px Verdana, Arial, Sans-Serif;
	display: block;
	border: 0px solid #fff;
	border-bottom: 1px solid #FFF;
	background: #45AAFF;
	padding:2px 4px;
	margin:0; 

	color: #FFF;
	text-decoration: none;
}

#menu ul ul a {
}
#menu a:hover {
	background: #0066CC;
	text-decoration: underline;
}

#menu li {
/* make the list elements a containing block for the nested lists */
position: relative;
z-index: 99;
} 

#menu ul ul, #menu ul ul ul {
position: absolute;
top: 0;
left: 100%; /* to position them to the right of their containing block */
width: 140%; /* width is based on the containing block */
border-left: 3px solid #FFF;
}

div#menu ul ul, div#menu ul ul ul,
div#menu ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul
{display: block;}
/* End of 'menu' */

