.treeview {
width: 200px;
margin: 10px 0 0 2px;
padding: 0;
}

.treeview ul{ 
margin: 0;
padding: 0;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #FFB743 url(../images/list.gif) repeat-x left top;
list-style-type: none;
line-height:20px;
color: #FFFFFF;
padding: 0 0 0 8px;
margin-top:10px;
font-weight:bold;
cursor: hand !important;
cursor: pointer !important;
}

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


.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;
background: none;
line-height:15px!important;
padding-left:0px;
margin-top:0px;
}

.treeview a, .treeview a:link, .treeview a:hover, .treeview a:active {
color: #B11669;
/*padding-left:10px;*/
text-decoration:none;
}
.submenu ul li a, .submenu ul li a:link, .submenu ul li a:visited{ 
color: #B11669;
font-weight:bold;
font-size:10px;
}
.submenu ul li a:hover { 
color: #FFFFFF;
font-weight:bold;
font-size:10px;
}

