@charset "utf-8";
/* CSS Document */

.treemenu {
	margin-left: 15px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 15px;
	margin-bottom: 0px;
	width: 870px;
}

.treemenu ul{
	margin:0px;
	padding: 0px;
	list-style-type: none;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: left;
}

/*Top level list items*/
.treemenu ul li{
	position: relative;
	display: inline;
	float: left;
	margin: 0px;
	padding: 0px;
	background-color: #216bc4;
}

/*Top level menu link items style*/
.treemenu ul li a{
	display: block;
	width: 201px; /*Width of top level menu link items*/
	padding: 1px 8px;
	text-decoration: none;
	text-align:center;
	color: #FFFFFF;
	background-attachment: scroll;
	background-image: url(../images/menu_nonactive.jpg);
	background-repeat: no-repeat;
	background-position: left;
	font-weight: bold;
}
	
/*1st sub level menu*/
.treemenu ul li ul{
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	margin: 0px;
	padding: 0px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.treemenu ul li ul li{
	display: list-item;
	float: none;
	margin: 0px;
	padding: 0px;
	background-color: #0000CC;
}

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

/* Sub level menu links style */
.treemenu ul li ul li a{
	display: block;
	width: 200px; /*width of sub menu levels*/
	color: #FFFFFF;
	text-decoration: none;
	text-align:left;
	padding: 1px 5px;
	border: 1px solid #ccc;
}

.treemenu ul li a:hover{
	background-color: #0f3683;
	color: white;
	background-attachment: scroll;
	background-image: url(../images/menu_active.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

/*Background image for top level menu list links */
.treemenu .mainfoldericon{
	background-attachment: scroll;
	background-image: url(../images/menu_nonactive.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

/*Background image for subsequent level menu list links */
.treemenu .subfoldericon{
	background-attachment: scroll;
	background-image: url(../images/menu_nonactive.jpg);
	background-repeat: no-repeat;
	background-position: left center;
}

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