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

body {
	background-color: #333333;
	margin-left: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	}

body,td,th {
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
	color: #000;
}
a:link {
	color: #aa0000;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #aa0000;
}
a:hover {
	text-decoration: none;
	color: #FF0000;
}
a:active {
	text-decoration: none;
	color: #aa0000;
}

/* CSS Menu code */
/* ############################################### */
.menudiv ul{
margin: 0;
padding: 0;
list-style-type: none;
font-size:10px;
width: 150px; /* Width of Menu Items */
border-bottom: 1px solid #3f7720;
}
	
.menudiv ul li{
position: relative;
}
	
/*Sub level menu items */
.menudiv ul li ul{
position: absolute;
width: 150px; /*sub menu width*/
top: 0;
visibility: hidden;
background: #d1e6c2;
}

/* Sub level menu links style */
.menudiv ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: black;
text-decoration: none;
background: #d1e6c2;
padding: 1px 5px;
border-top: 1px solid #3f7720;
border-left: 0;
border-right: 0;
border-bottom: 0;
}

.menudiv ul li a:visited{
color: black;
}

.menudiv ul li a:hover{
background-color: #a5d089;
}

.menudiv .subfolderstyle{
background: url(/layout/menu/arrow-list.gif) no-repeat center right;
}

	
/* layout hack for IE \*/
* html .menudiv ul li { float: left; height: 1%; }
* html .menudiv ul li a { height: 1%; }

