.treeview 
{
 margin-top: 0px;
 margin-right: 0px;
 margin-bottom: 0px;
 margin-left: 0px;
 padding: 0;
}

.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)*/
/*background: url(../image/list.gif) no-repeat left center;*/

 list-style-type: none;
 margin: 0;
 padding: 9px 11px 9px 13px;
 font-size: 14px;
 font-family: arial, helvetica, tahoma, verdana, sans-serif;
 font-weight: bold;
 color: #ffffff;
 vertical-align: middle;
}

.treeview li.submenu 
{
 /* Style for LI that contains sub lists (other ULs). */
/*background: url(../image/closed.gif) no-repeat left 5px;*/
/*padding-top: 2px;*/

 cursor: hand ! important;
 cursor: pointer ! important;
 margin: 0;
 padding: 9px 11px 9px 13px;
 font-size: 14px;
 font-family: arial, helvetica, tahoma, verdana, sans-serif;
 font-weight: bold;
 color: #ffffff;
}

/*
* HTML .treeview li.submenu {
	padding-top: 0px;
}
*/
.treeview li.submenu ul 
{
 /*Style for ULs that are children of LIs (submenu) */

 display: none; /*Hide them by default. Don't delete. */
}

.treeview .submenu ul li 
{
 /*Style for LIs of ULs that are children of LIs (submenu) */

 cursor: default;
 list-style-type: square;
 vertical-align: middle;
 padding: 2px;
 margin-left: 21px;
 font-size: 12px;
}

.treeview li a
{
 font-family: arial, helvetica, tahoma, verdana, sans-serif;
 font-weight: bold;
 text-decoration: none;
 color: #ffffff;
 border-bottom-color: #3e7d93;
 border-bottom-width: 2px;
 border-bottom-style: solid;
}

.treeview li a.selected_item
{
 border-bottom-color: white;
 border-bottom-width: 2px;
 border-bottom-style: solid;
}