
/* CSS Drop Down Menu */

#menu
{
	margin-left: 0px;
	margin-right: 0px;
	float: none;
}

/* Menu at rest */
#menu a, #menu a:visited
{
	height: 2%;
	display: block;
	white-space: nowrap;
	padding-top: 8px;				/* height of the menu box above text */
	padding-bottom: 5px;				/* height of the menu box below text */
	text-align: left;
	padding-left: 5px;
	text-decoration: none;				/* this stops the default underline of links */
	color: #1082f7;					/* color of the text */
	background-color: #3d3f40;			/* color of the background */
}

#menu a.titlebar
{
	background-color: #3d3f40;
	color: #1082f7;					/* color of the text */
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 2px;
	padding-right: 0px;
	font-size: 11px;
	font-family: arial, helvetica, sans-serif;
	font-weight: bold;
	text-align: center;
	border-right: 2px solid #6d6e70;
}
#menu a.titlebar:hover
{
	background-color: #6d6e70;			/* color of background */
}


/* Attaches down-arrow to all top-parents */
 
#menu a.grandparent, #menu a.grandparent:hover
{
	background-image: url(../graphics/downarrow.gif);
	background-position: right center;
	background-repeat: no-repeat;
	padding: 4px 4px 4px 2px;
}

/* Attaches side-arrow to all parents */
#menu a.parent, #menu a.parent:hover
{
	background-image: url(/images/navigation/menu-arrow-right.gif);
	background-position: right center;
	background-repeat: no-repeat;
}

/* Menu at mouse-over  */
#menu a:hover
{
	color: #ffffff;					/* color of text */
	background-color: #6d6e70;			/* color of background */
	font-size: 11px;
	font-family: arial, helvetica, sans-serif;
	font-weight: bold;
}

/* NOTE  the width attriute below is REQUIRED IN BOTH #menu ul and #menu li rules below. */
/* If you remove these, the menu will automatically adjust to the length of the menu text. */
/* In other words, the menu becomes a variable width menu (some menus require that) */
/* HOWEVER, you must add padding to left and right make the menu text readable */

#menu ul
{
	list-style: none;				/* do not remove or alter */
	margin: 0;					/* do not remove or alter */
	padding: 0;					/* do not remove or alter */
	float: left;					/* do not remove or alter */
	width: 98.5px;					/* width of all menu boxes -- read note above*/
}

/* Font and font size */
#menu li
{
	font-size: 11px;
	font-family: arial, helvetica, sans-serif;
	font-weight: bold;
	position: relative;
	min-height: 1px;
	vertical-align: bottom;
	width: 98px;					/* width of all menu boxes -- read note above*/
}

/* ===== DO NOT REMOVE OR ALTER ANYTHING BELOW ===== */

/* parent menu */
#menu ul ul
{
	position:absolute;
	top: auto;
	left: auto;
	display:none;
	padding: 0;
	margin: 0;
	z-index: 1;
}

/* child menu */
#menu ul ul ul
{
	position:absolute;
	top: 0;
	left: 100%;
}

div#menu li:hover
{
	cursor:pointer;
}

div#menu li:hover ul ul,
div#menu li li:hover ul ul,
div#menu li li li:hover ul ul,
div#menu li li li li:hover ul ul
{display:none;}

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

/* IE stuff */
#menu
{
	float: none;
}
#menu ul li
{
	float:left;
}
#menu a
{
	height:1%;
}
