body { behavior:url("csshover.htc"); }

#menu-container
	{
	position: absolute;		
	top: 70px;
	left: 540px;
	_left: 530px;
	}
	
#menu-container-home
	{
	position: absolute;		
	top: 0px;
	left: 540px;
	_left: 530px;
		}	

#menu
	{
	font-size: 11px;
	font-family: arial, helvetica, sans-serif;
	width:100%;
	float:left;
	margin-top: 10px;
	text-transform: uppercase;
	}
		
#menu a
	{
	text-align: center;
	display:block;
	white-space:nowrap;
	margin:0;
	padding: 5px 20px 5px 15px;
	}
	
#menu a:link, #menu a:visited, #menu a:active	/* menu at rest */
	{
	color: #CCC;
	text-decoration:none;
	float:left;
	}
	
#menu a:hover						/* menu on mouse-over  */
	{
	color: #ebeba5;
	border-bottom:double #FFF;
	text-decoration:none;
	background:#000;
	}	
	
#menu a.top_parent, #menu a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	background-image: url(images/navdown_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
	
#menu a.parent, #menu a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(images/nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}

#menu ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:auto;	/* 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 */
	}

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

#menu ul ul
	{
	position:absolute;
	z-index:1000;
	top:auto;
	display:none;
	padding: 0;
	margin:2em 0 0 0;
	background:#000;
	left:0;
	}

#menu ul ul ul
	{
	position:absolute;
	z-index:1000;
	top:auto;
	display:none;
	padding: 0;
	margin:2em 0 0 0;
	background:#000;
	left: 70%;
	}
	
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
div#menu ul li ul li ul{
top: 0;
}	

div#menu li:hover
	{
	cursor:pointer;
	z-index:1000;
	}

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;}

/* End CSS Drop Down Menu */
