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

/*newcss*/
#navtree span.new{color:#CCCC00; font: italic 10px Arial, Helvetica, sans-serif;}
#navtree {
	font: bold 1.15em "Trebuchet MS", Arial, sans-serif;
	line-height: 100%;
	border-radius: 1em;

	color: #e7e5e5;
	text-decoration: none;
	display: block;
	padding:  0;
	margin: 0;
	-webkit-border-radius: 0.2em;
	-moz-border-radius: 0.2em;
	
	text-shadow: 0 1px 1px rgba(0,0,0, .3);
	}
	
#navtree li {
	margin-top: 5px;
	padding-left: 2px;
	float: left;
	position: relative;
	list-style: none;
	border-right: 1px #136092 solid;
}
#navtree li.lastnav {
	margin-top: 5px;
	float: left;
	position: relative;
	list-style: none;
	border:none;
}

#navtree li.nolink{
	padding:  5px;
	margin-top: 5px;
	
	color: #e7e5e5;
	text-decoration: none;
	display: block;
	}

/* main level link */
#navtree a {
	
	color: #e7e5e5;
	text-decoration: none;
	display: block;
	padding:  5px;
	-webkit-border-radius: 0.2em;
	-moz-border-radius: 0.2em;
	
	text-shadow: 0 1px 1px rgba(0,0,0, .3);
}
#navtree a.selected {
	
	color: #e7e5e5;
	text-decoration: none;
	display: block;
	padding:  5px;
	-webkit-border-radius: 0.2em;
	-moz-border-radius: 0.2em;
	
	text-shadow: 0 1px 1px rgba(0,0,0, .3);
	background: #333;
	color: #fff;
}



#navtree a:hover {
	background: #333;
	color: #fff;
}

/* main level link hover */
#navtree .current a, #nav li:hover > a {
	background-color: #333;
	color: #444;
	border-top: solid 1px #f8f8f8;

	-webkit-box-shadow: 0 1px 1px rgba(0,0,0, .2);
	-moz-box-shadow: 0 1px 1px rgba(0,0,0, .2);
	box-shadow: 0 1px 1px rgba(0,0,0, .2);

	text-shadow: 0 1px 0 rgba(255,255,255, 1);
}

/* sub levels link hover */
#navtree ul li:hover a, #nav li:hover li a {
	background-color:#003366;
	border: none;
	color: #666;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
#navtree ul a:hover {
	background-color:#81B6D8;
	color: #fff !important;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;

}

/* dropdown */
#navtree li:hover > ul {
	display: block;
}

/* level 2 list */
#navtree ul {
	z-index: 10;
	display: none;
	margin: 0;
	padding: 0;
	width: 185px;
	position: absolute;
	top: 20px;
	left: 0;
	background-color:#0084c6;
	border: solid 1px #024884;
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;

	-webkit-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	box-shadow: 0 1px 3px rgba(0,0,0, .3);
}
#navtree ul li {
	float: none;
	margin: 0;
	padding: 0;
	
}

#navtree ul a {
	font-weight: normal;
	
	color:#fff;
	padding-top: 5px;
	border-bottom: 1px #136092 solid;
}


/* rounded corners of first and last link */
#navtree ul li:first-child > a {
	-webkit-border-top-left-radius: 0px;
	-moz-border-radius-topleft: 0px;

	-webkit-border-top-right-radius: 0px;
	-moz-border-radius-topright: 0px;
}
#navtree ul li:last-child > a {
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;

	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
}

/* clearfix */
#navtree:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#navtree {
	display: inline-block;
} 
html[xmlns] #navtree {
	display: block;
}
 
* html #navtree {
	height: 1%;
}