/*   NAVIGATION   */


#top_nav
	{
	width:800px;
	padding:0;
	margin:0 0 10px 0;
	background:#5D5B5C url(../images/site/nav_bar_top.jpg) no-repeat;
	background-position:bottom;
	}

#top_nav ul {
	list-style:none;
	padding:5px 0 6px 0;
	margin:0;
	float:left;
}

#top_nav ul li {
	float: left;
	font-size: 1.2em;
	padding: 0 0 0 8px;
}


#top_nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#top_nav ul li {
	float: left;
	width: 80px;
	font-size: 1.2em;
	text-align: center;
	background: url('../images/site/navigation_button_drop.gif') repeat-y;
	padding: 0;
}


#top_nav ul li a:link,
#top_nav ul li a:visited,
#top_nav ul li a:hover,
#top_nav ul li a:active {
	display: block;
	width: 100%;
	color: #A6C4E8;
	font-weight: bold;
	text-decoration: none;
	padding: 7px 0 8px 0;
}

#top_nav ul li a:hover {
	background: url('../images/site/navigation_button_rollover.gif') repeat-y;
}

#top_nav ul ul {
	border-top: 2px solid #000000;
}

#top_nav ul ul li {
	width: 120px;
	font-size: 1.0em;
/* 	border-left: 4px solid #FF8FD0;
	border-bottom: 1px solid #BBBBBB; */
}

#top_nav ul ul li a:link,
#top_nav ul ul li a:visited,
#top_nav ul ul li a:hover,
#top_nav ul ul li a:active {
	background: #231F20;
	padding: 6px 0 5px 0;
}

#top_nav ul ul li a:hover {
	background: #2F2B2C;
}

#top_nav ul ul ul {
	border-top: 2px solid #000000;
}

#top_nav ul ul ul li {
	width: 150px;
	font-size: 1.0em;
	border-left: 0;
	border-bottom: 1px solid #BBBBBB;
}

#top_nav ul ul ul li a:link,
#top_nav ul ul ul li a:visited,
#top_nav ul ul ul li a:hover,
#top_nav ul ul ul li a:active {
	background: #999999;
	padding: 6px 0 5px 0;
}

#top_nav ul ul ul li a:hover {
	background: #888888;
}


.menu {
position:relative;
z-index:100;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
position:relative;
}

/* style the top level hover */
.menu :hover > a, .menu ul ul :hover > a {
background: url('../images/site/navigation_button_rollover.gif') repeat-y;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:30px;
left:-20px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:30px;
t\op:30px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:150px;
top:-2px;
left:146px;
width:150px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-150px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{
visibility:visible;
}
