.top_nav ul
	{
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
	background: #00008b;
	}

/*Top level list items*/ /* overall menu background color */
.top_nav ul li
	{
	position: relative;
	display: inline;
	float: left;
	background: #00008b;
	}

/*Top level menu link items style*/ /* Width of top level menu link items */
.top_nav ul li a
	{
	color: #fff;
	font-family: trebuchet ms, verdana, times, "times new roman", sans-serif;
	font-size: .9em;
	text-decoration: none;
	display: block;
	width: 91px; 
	padding: 2px 8px;
	border-bottom: 1px solid #808080;
	}
	
/*1st sub level menu*/
.top_nav ul li ul
	{
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	}

/*Sub level menu list items (undo style from Top level List Items)*/
.top_nav ul li ul li
	{
	display: list-item;
	float: none;
	}

/*All subsequent sub menu levels offset after 1st level sub menu */
.top_nav ul li ul li ul
	{ 
	left: 159px; /* no need to change, as true value set by script */
	top: 0;
	}

/* Sub level menu links style */
.top_nav ul li ul li a
	{
	display: block;
	width: 200px; /*width of sub menu levels*/
	color: #fff;
	text-decoration: none;
	padding: 1px 5px;
	border-left: 1px solid #808080;
	border-right: 1px solid #808080;
	border-bottom: 1px solid #808080;
	}

.top_nav ul li a:hover
	{
	background-color: #00008b;
	color: #1e90ff;
	}

/*Background image for top level menu list links */
.top_nav .mainfoldericon
	{
	background: #00008b url(media/arrow-down.gif) no-repeat center right;
	}

/*Background image for subsequent level menu list links */
.top_nav .subfoldericon
	{
	background: #00008b url(media/arrow-right.gif) no-repeat center right;
	}

* html p#iepara
	{ 
	/*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
	padding-top: 1em;
	}
	
/* Holly Hack for IE \*/
* html .top_nav ul li 
	{ 
	float: left; 
	height: 1%; 
	}

* html .top_nav ul li a 
	{ 
	height: 1%; 
	}

* html .top_nav ul li ul li 
	{ 
	float: left;
	}

/* End */