﻿.treeview ul{ /*CSS for Simple Tree Menu*/
margin: 0;
text-transform: capitalize
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
list-style-type: none;
padding-left: 18px;
margin-bottom: 4px;
font-family: Verdana, Arial, Helvetica, sans-serif; 
font-size: 8pt; 
color: #1f456b; 
line-height: 11pt;
text-transform: capitalize
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: url(../images/+.gif) no-repeat 5px 3px;
cursor: hand !important;
cursor: pointer !important;
margin-top: 5px;
}


.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: 14px;}

ul
{
	margin-left: 0;
	padding-left: 0;
}

.print
{
	float:right; 
	text-align:right;
	display: none;
}

.treeview li a:visited  
{
	color: #1f456b; 
	text-decoration: none;
	background-color: transparent
}

.treeview li a:link  
{
	color: #1f456b; 
	text-decoration: none;
	background-color: transparent;
}

.treeview li a:hover 
{
	color: #1f456b; 
	text-decoration: underline;
	background-color: transparent
}



