/* Begin CSS Drop Down Menu */

#header ul.nav a
	{
	text-align: left;
	font: 11px Arial;
    height: 19px;
	display: block;
	white-space:nowrap;
	margin:0;
	padding-top: 6px;
	padding-left: 15px;
	padding-right: 15px;
	width: auto;
	
	}


#header ul.nav2 a
	{
	text-align: left;
	font: 11px Arial;
    height: 19px;
	display: block;
	white-space:nowrap;
	margin:0;
	padding-top: 6px;
	padding-left: 15px;
	padding-right: 15px;
	width: auto;
	background: #2f599f;
	
	}

#header ul.nav2 a:hover						/* menu on mouse-over  */
	{
	color: #000;
	background-color: #dcdcdc;
	text-decoration:none;
	
	}	

#header ul.home a img
	{
	text-align: left;
	font: 11px Arial;
	height: 21px;
	margin:0;
	padding: 0;
	border: 0;
	width: auto;
	
	}

#header ul.parent a
	{
	text-align: left;
	font: 11px Arial;
    height: 19px;
	display: block;
	white-space:nowrap;
	padding-top: 6px;
	padding-left: 15px;
	padding-right: 15px;
	
	}
	
#header a:link, #header a:visited, #header a:active	/* menu at rest */
	{
	color: #fff;
	background: #000;
	text-decoration:none;
	
	}
	
#header ul.nav a:hover						/* menu on mouse-over  */
	{
	color: #000;
	background-color: #dcdcdc;
	text-decoration:none;
	
	}	
	
#header a.top_parent, #header a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	background-image: url(navdown_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	
	}
	
#header a.parent, #header a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	
	}

#header ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	z-index: 999;
	
	/* width of all menu boxes */
	/* NOTE: For adjustable menu boxes you can comment out the above width rule.
	However, you will have to add padding in the "#menh a" rule so that the menu boxes
	will have space on either side of the text -- try it */
	}

#header ul.parent
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 0;
	padding-bottom: 0;
	
	/* width of all menu boxes */
	/* NOTE: For adjustable menu boxes you can comment out the above width rule.
	However, you will have to add padding in the "#menh a" rule so that the menu boxes
	will have space on either side of the text -- try it */
	}

#header li
	{
	position:relative;
	min-height: 1px;		/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom;		/* Sophie Dennis contribution for IE7 */
	}

#header ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	margin:0em 0 0 -1em;
	
	}

#header ul ul.parent
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	margin:0em 0 0 -1em;
	
	}

#header ul ul ul
	{
	top:0;
	left:100%;
	}

div#header li:hover
	{
	cursor:pointer;
	z-index:100;
	}

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

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

/* End CSS Drop Down Menu */