ul.treeview { /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
list-style-type:none;
position: relative;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	position: relative;
	list-style-type:none;
	margin: 0px 0px 0px 0px; 
	padding:0px 0px 0px 0px;
	width: 148px;
	display: block;
	border-bottom: 1px #dcdcdc solid;						
	background: white url(../images/marker-c.gif) no-repeat left;
	padding-left: 12px;
	font-size:11px;
	font-weight:600;
	font-variant: normal;
	font-family: Arial, Helvetica, Verdana, Arial, Geneva,  sans-serif;					
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
/*
cursor: hand !important;
cursor: pointer !important;*/
border-bottom: none;
background: none;
padding-left: 0px;
margin-right: 0px;
padding-right:0px;
}
/*.treeview li.submenu0{

background: white url(../images/bullet-plus.gif) no-repeat left;
}
*/


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: block; 
	position:relative;
	padding:0px;
	margin:0px;
	list-style:none;
	margin-left:12px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
background: white url(../images/blue-arrow-c.gif) no-repeat left;
margin-left: 1px;
border-bottom: none;
display: block;
padding-left: 10px;
width:120px;

}
.treeview .submenu ul li a{ /*Style for LIs of ULs that are children of LIs (submenu) */
background: none;
color: #407aad;
text-decoration: none;

}
.treeview .submenu ul li a:hover{ /*Style for LIs of ULs that are children of LIs (submenu) */
background: none;
color: #ff9933;
text-decoration: none;
}

.treeview   li#selected
{
	background: white url(../images/bullet-plus.gif) no-repeat left;
}

.treeview  li#selected a{ 
background: none;
color: #ff9933;
text-decoration: none;

}
.treeview   li#selected a:hover{ 
background: none;
color: #ff9933;
text-decoration: none;
}
.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: block; /*Hide them by default. Don't delete. */
}

.treeview .submenu ul li#selected{ /*Style for LIs of ULs that are children of LIs (submenu) */
background: white url(../images/arrows.gif) no-repeat left;
margin-left: 1px;
border-bottom: none;
display: block;
padding-left: 10px;
}

.treeview .submenu ul li#selected a{ /*Style for LIs of ULs that are children of LIs (submenu) */
background: none;
color: #ff9933;
text-decoration: none;

}
.treeview .submenu ul li#selected a:hover{ /*Style for LIs of ULs that are children of LIs (submenu) */
background: none;
color: #407aad;
text-decoration: none;
}
.belowsubmenu {
	border-top: 1px #dcdcdc solid;
}
.treeview li a
{
background: none;
/*color: #3bb2e3;color:#0099FF;*/
color:#407aad;
text-decoration: none;
}
.treeview li a:hover
{
background: none;
color: #ff9933;
text-decoration: none;
}

