/* Start of CMSMS style sheet 'GVA-Menu' */
/***
 * Vertical Pop Out Menu
 */
/*#menu {
	position: absolute;
	width: 153px; /* menu width */
	margin-left: 3px;
	background: white;
	z-index:30;
}*/
/#menu {
	border: 1px solid green;
	height: 500px;
}

/*** remove bullets and list indents ***/
#menu ul {
	list-style:none;
	margin: 0;
	padding: 0;
}


/*** style, color and size links and headings to suit ***/
#menu a, #menu h2 {
	font: bold 12px arial, helvetica, sans-serif;
	display: block;
	border: 1px solid #990000;
	padding: 1px 10px;
	margin-top: -1px;
	m/argin-left: -1px;
}

#menu h2 {
	color: blue;
	background: yellow;
	text-transform: uppercase;
}

#menu a {
	background: #CCCCCC;
	text-decoration: none;
}

#menu a:hover{
	color: white;
	background: #990000;
}

/***
 * Positioning the Pop Outs
 */
#menu li{
	position: relative;
}

#menu ul ul{
	position: absolute;
	margin-top: 1px;
	margin-left: -1px;
	top: 0;
	left: 100%;
	width: 100%;
}
 
#menu ul ul, #menu ul li:hover ul ul {
	display: none;
}

#menu ul li:hover ul, #menu ul ul li:hover ul{
	display: block;
}


/*** make the list elements a containing blockof the nested lists 
#menu li {
	position: relative;
	z-index: 100;
}

#menu ul ul ul {
	position: absolute;
	top: 0;
	left: 100%; /* This position them to the right of their containing block 
	width: 100%; /* width is baesd on the containing block 
	z-index: 100;
} */


/***
 * Hiding and Revailing using :hover
 *
#menu ul ul ul, #menu ul ul li:hover ul ul{
	display: none;
}

#menu ul ul li:hover ul, #menu ul ul ul li:hover ul{
	display: block;
}*/

dfn{
	display:none;
}
/* End of 'GVA-Menu' */

