/*
.treeview
{
	position: relative;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
}
*/

#menu ul.treeview
{
	width: 183px;
	margin: 0px;
	padding: 0px;
}



.treeview ul{ /*CSS for Simple Tree Menu*/
/*position: relative;*/
margin: 0px;
padding: 0px;
padding-left: 0px;
padding-right: 0px;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
/*background: white url(../images/list.gif) no-repeat left top;*/
/*background: white no-repeat left top;*/
list-style-type: none;
/*padding-left: 22px;*/
margin-bottom: 3px;
border-bottom: 1px dotted #6EB43F;
/*
padding-bottom: 10px;
padding-top: 10px;
padding-left: 5px;
*/
display: block;
}

.treeview li a
{
padding-top: 3px;
padding-bottom: 3px;
padding-left: 3px;
padding-right: 3px;
display: block;
}

/*
.treeview li a:hover
{
padding-top: 3px;
padding-bottom: 3px;
padding-left: 3px;
padding-right: 3px;
background-color: #FF0000;
}
*/

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../images/list.gif) no-repeat left 1px;
/*cursor: hand !important;*/
cursor: pointer !important;
width: 100%;
font-weight: bold;
padding-left: 14px;
}

.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
font-weight: normal;
/*padding-left: 0px;*/
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
padding-left: 0px;
position: relative;
left: -14px;
width: 181px;
}

/*
.treeview .submenu ul li:before
{
content: "- ";
}
*/

