.treeview {
background-color: #FFFFFF;
margin-left: 0;
padding-left: 0;
}

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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background-color: #FFFFFF;
font-family: Helvetica, Sans-Serif;
font-size: 10pt;
line-height: 16pt;
list-style: none;
padding-left: 0px;
margin-left: 0px;
margin-bottom: 1px;
}

/* LEVEL 1 */
.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background-color: #DDDDDD;
font-family: Helvetica, Tahoma;
font-size: 10pt;
color: #000000;
font-weight: bold;
padding-left:1px;
margin-left: 1px;
margin-bottom: 1px;
cursor: hand !important;
cursor: pointer !important;
border:1px;
}


.treeview li.submenu ul{
background-color: #AAAAAA;
display: none;
}

/* LEVEL 2 */
.treeview .submenu ul li{
background-color: #FFFFFF;
color: #993333;
font-family: Helvetica, Tahoma;
font-size: 10pt;
font-weight: bold;
cursor: default;
padding-left: 1px;
margin-left: 0px;
}

/* LEVEL 3 */
.treeview .submenu ul li ul li{
background-color: #EFEFEF;
font-weight: bold;
font-family: Helvetica, Tahoma;
color: black;
font-size: 10pt;
cursor: default;
padding-left: 1px;
margin-left: 0px;
padding-bottom: 2px;
margin-bottom: 2px;
}

/* LEVEL 4 */
.treeview .submenu ul li ul li ul li{
color: #000000;
cursor: default;
font-weight: normal;
font-face: Helvetica, Tahoma;
line-height: 15pt;
font-size: 12pt;
}



/* LEVEL 1 HOVER STATE */
.treeview li:hover {
  background-color:#FF9933;
}

/* LEVEL 2 HOVER STATE */
.treeview ul li:hover {
  background-color:#FDDE64;
}

/* LEVEL 3 HOVER STATE */
.treeview ul li ul li:hover {
  background-color: #FFFFCC;
}

/* LEVEL 4 HOVER STATE */
.treeview ul li ul li ul li:hover {
  background-color: #FFFFFF;
}

