.treeview { /*CSS for Simple Tree Menu*/
  	
	font-size: 12px;
  	text-align:left;
	padding:0;
	margin:0;
}
.treeview ul{
  margin: 0;
  padding: 0;
}

.treeview li{
  background: transparent url(../images/empty.gif) no-repeat scroll 0 6px;
  list-style-type: none;
  line-height:15px;
  padding:2px 0 2px 12px;
  margin:0;
  white-space: nowrap;
  border-bottom:1px solid #CCCCCC;
 
}
.treeview li li{
	line-height:18px;
	list-style-type:none;
	margin:0 5px 0 0;
	padding:0 0 0 12px;
	white-space:nowrap;
	border:0;
}

.treeview li a{ font-size:11px; text-decoration:none; text-transform:uppercase; font-weight:bold}
.treeview li li a{ font-size:11px; text-decoration:none; text-transform:lowercase; font-weight:normal !important}


.treeview li.last{ border:0}

.treeview li.submenu{
  background: transparent url(../images/plus.gif) no-repeat left 5px;
  cursor: hand !important;
  cursor: pointer !important;
  white-space: nowrap;
  font-weight:bold  
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
  display: none; /*Hide them by default. Don't delete. */
  margin-left:-10px;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
  cursor: default;
  white-space: nowrap;
  background: transparent url(../images/arrow-menu.gif) no-repeat scroll 9px 8px;
}


	ul.treeview a:link,
	ul.treeview a:visited,
	ul.treeview a:hover,
	ul.treeview a:active{
		text-decoration:none;
	}
	ul.treeview a:hover,ul.treeview a.final,ul.treeview a.open  {
    text-decoration:none;
    color:#db4775;
	}
	
	ul.treeview li ul li a.open { color:#333 !important; font-weight:bold !important}
	

