
#nav, #nav ul {padding:0; margin:0; list-style-type: none; width: 200px; color: #000000; background: #FFFFFF;}

/* Set up the link size, color and borders */
#nav a, #nav a:visited {
	padding: 6px 10px 6px 0px;
	height: auto;
	display: block;
	color: #7f7f7f;	
	font-family: arial, helvetica, sans-serif !important;
	font-size: 13px;
	font-weight:bold;
	text-decoration: none;
	width: auto;
	 }

/* Set width and spacing of dropdowns */
#nav li li a, #nav li li a:visited {
	padding: 4px 10px 4px 4px;
	color: #000000;
	font-size: 11px;
	font-weight:normal;
	text-decoration: none;
	width: auto;
	}

/* Set up the list items */
#nav li {background:#ffffff; border-bottom: 1px solid #CCC;	}

/* For Non-IE browsers and IE7 */
#nav li:hover {position:relative;}
/* Make the hovered list color persist */
#nav li:hover > a, #nav li:hover > a:visited  {color:#c00; }
/* Set up the sublevel lists with a position absolute for flyouts and overrun padding. The transparent gif is for IE to work */
#nav li ul {
	position: absolute; 
	top: 0; 
	left: 200px;
	margin: 0;
	padding: 0;
	z-index: 1000;
	width: 175px;
	display: none;
	border-top: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
	color: #7f7f7f;
	background-color: #E8E8E8;
	}



/* For Non-IE and IE7 make the sublevels visible on list hover. This is all it needs */
#nav li:hover > ul {display:block; position:absolute; top:0px; left:200px; width:175px; }
#nav li:hover ul ul {left:175px;}


/* get rid of the table */
#nav table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* For IE5.5 and IE6 give the hovered links a position relative and a change of background and foreground color. This is needed to trigger IE to show the sub levels */
* html #nav li a:hover {position:relative; background:#fff; color:#c00;}
* html #nav li.fly a:hover {position:relative; background:#fff ; color:#c00;}

/* For accessibility of the top level menu when tabbing */
#nav li a:active, #nav li a:focus {color:#c00;}

/* Set up the pointers for the sub level indication */
#nav li.fly {background:#fff url(../images/red_arrow.gif) 97% 8px no-repeat;}
#nav li.drop li {background:#eee;}

/* backgrounds on sub levels */
#nav li.fly li { background:#eee }
#nav li.fly li:hover { background:#fff }
#nav li li.fly {background:#eee url(../images/red_arrow.gif) 97% 8px no-repeat;}
#nav li li.fly:hover { background:#fff url(../images/red_arrow.gif) 97% 8px no-repeat;}

/* This lot is for IE5.5 and IE6 ONLY and is necessary to make the sublevels appear */

/* change the drop down levels from display:none; to visibility:hidden; */
* html #nav li ul {visibility:hidden; display:block; position:absolute; top:0px; left:200px; }

/* keep the third level+ hidden when you hover on first level link */
#nav li a:hover ul ul{
visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
#nav li a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
#nav li a:hover ul a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the sixth level hidden when you hover on fourth level link */
#nav li a:hover ul a:hover ul a:hover ul a:hover ul ul {
visibility:hidden;
}

/* make the second level visible when hover on first level link and position it */
#nav li a:hover ul {
visibility:visible; left:200px; top:-1px; lef\t:200px; to\p:-1px;
}

/* make the third level visible when you hover over second level link and position it and all further levels */
#nav li a:hover ul a:hover ul{ 
visibility:visible; top:-1px; left:169px;
}
/* make the fourth level visible when you hover over third level link */
#nav li a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
#nav li a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the sixth level visible when you hover over fifth level link */
#nav li a:hover ul a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}