.treeview { /*CSS for Simple Tree Menu*/
font-family: Verdana,Trebuchet MS;
font-size: 10px;
font-weight: bold;
}

.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview a:link { color:#FFFFFF; text-decoration:none}
.treeview a:visited { color:#FFFFFF; text-decoration:none}
.treeview a:hover { color:#000000; text-decoration:underline; cursor:hand}
.treeview a:active { color:#000000; text-decoration:none}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(http://www.posh.co.uk/images/list.png) no-repeat left center;
list-style-type: none;
padding-left: 14px;
margin-top: 3px;
margin-bottom: 2px;
line-height: 120%;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(http://www.posh.co.uk/images/closed.png) no-repeat left 1px;
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;
}

.menu { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: url(http://www.posh.co.uk/images/posh_back.png) no-repeat left top;
background-color: #408080;
list-style-type: none;
}
