/* CSS Document */
.treeview a:link
{
    color: #00ae9c;
    text-decoration: none;
}

.treeview a:visited
{
    color: #595a5a;
    text-decoration: none;
}

.treeview a:hover
{
    color: #deb306;
    text-decoration: underline;
}

.treeview a:active
{
    color: inherit;
    text-decoration: none;
}
.treeview{
 	font-family: Arial, Helvetica, sans-serif;
	font-size: 6pt;
	width: 190px;
	color: #00ae9c;
	float: right;
	margin-top: 0px;
	background-color: #e2f4fd;
	margin: 0px;
	padding: 0px;
}
.treeview ul{ /*CSS for Simple Tree Menu*/
	margin: 0px;
    padding: 0px;
    font-weight: 500;
	font-size:8pt;
}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/

 	background: no-repeat left 1px;
    list-style-type: none;
    padding-left: 8px;
    font-size: 9pt;
    font-weight: 500;
	cursor: pointer !important;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: no-repeat left 1px;
    cursor: pointer;
    font-weight: 700;
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: pointer !important;
	font-weight: 500;
    font-size: 8pt;
}
.Topbar
{
    text-align: center;
    background-color: #deb306;
    height: 10px;
    vertical-align: top;
}

