
.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: #F2F1F6 url('bullet.gif') no-repeat left center;*/
    list-style-type: none;
    list-style-image: url('images/bullet.gif');
    padding-left: 0px;
    margin-left: 0px;
    margin-bottom: 3px;
    font-size:14px;
    font-weight:bold;
    font-family:Arial;
}

.treeview li.submenu { /* Style for LI that contains sub lists (other ULs). */
    /*background: white url(bullet.gif) no-repeat left 1px;*/
    cursor: hand !important;
    list-style-type: none;
    cursor: pointer !important;
    padding-left: 0px;
    margin-bottom: 16px;    
}

.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;
    padding-left: -10px;
    margin-left: 15px;
    font-size: 12px;
    font-weight: normal;
    font-family: Arial;
    margin-top: 6px;
    margin-bottom: 6px;
}

.treeview li a
{
    color:#000000;
    text-decoration:none;
    }
    
:hover.submenu ul li a 
{
    color:#000000;
    text-decoration:underline;
    }
    
ul#treemenu1 a {
	color: #000000;              /*MenuText Colour*/
	text-decoration: none;
}

ul#treemenu1 a:hover {
	color: #000000;
	text-decoration: underline;
	
}