.MainMenu
{
	font-weight: bold; 
	z-index: 1024; 
	position: relative;
	width:100%;
}
.MainMenu ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
}

/*Top level list items*/
.MainMenu ul li
{
	position: relative;
	display: inline;
	float: left;
	text-align: left;
}

/*Top level menu link items style*/
.MainMenu ul li a
{
	display: block;
	/*width: 90px; /*Width of top level menu link items*/
	padding: 10px 0px;
	border-left-width: 0;
	text-decoration: none;
	color: #999999;	
}
.MainMenu ul li a.IsSelected
{
	color: #00276a;
}
/*1st sub level menu*/
.MainMenu ul li ul
{
	left: 0;
	position: absolute;
	top: 1em; 
	display: block;
	visibility: hidden;
	background-color: #fff;
	border: solid 1px #ccc;
	z-index: 99999;
	zoom: 1;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.MainMenu ul li ul li
{
	display: list-item;
	float: none;
	background-color: #fff;	
	text-align: center;
	width:200px;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.MainMenu ul li ul li ul
{
	left: 200px; /* no need to change, as true value set by script */
	top: 0;	
	background-color: #fff;
	width: 200px;
}

/* Sub level menu links style */
.MainMenu ul li ul li a
{
	display: block;
	width: 190px; /*width of sub menu levels*/
	color: #999999;
	text-decoration: none;
	padding: 10px 0px;
	background-color: #fff;
	
}

.MainMenu ul li a:hover
{
	/*background-color: black;*/
	color: #00276a;
}

/*Background image for top level menu list links */
.MainMenu span.mainfoldericon
{
	background: #fff url(../Images/DownArrow.gif) no-repeat center right;
	padding-right: 20px;
}

/*Background image for subsequent level menu list links */
.MainMenu span.subfoldericon
{
	background: #fff url(../Images/RightArrow.gif) no-repeat center right;
	padding-right: 20px;
}

* html p#iepara
{
	padding-top: 1em;
}

/*Hack for IE \*/
* html .MainMenu ul li
{
	float: left;
	height: 1%;
}
* html .MainMenu ul li a
{
	height: 1%;
}
