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

.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	list-style-type: none;
	background-color: #FFFFFF;
	margin-left: 0px;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	cursor: hand !important;
	cursor: pointer !important;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
	display: none;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
	cursor: default;
}
#treemenu a {
	text-decoration: none;
	height: 25px;
	display: block;
	background-color: #E5E5E5;
	line-height: 2.2em;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	color: #666666;
	padding-left: 15px;
	font-size: 12px;
}
#treemenu a:hover {
	background-color: #B3B3B3;
	color: #FFFFFF;
}
#treemenu {
	width: 168px;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding-top: 30px;
	background-image: url(../elements/treemenu_bg.gif);
	background-repeat: repeat-y;
}
#treemenu body {
	margin: 0px;
}
#treemenu .over {
	background-color: #F2F2F2;
	padding-left: 25px;
}
