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

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

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url('menu_bg.gif') repeat-x;
list-style-type: none;
padding:0;
margin:0;
}

.treeview ul li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: white url('menu_level_bg.gif') repeat-x;
list-style-type: none;
padding:0;
margin:0;
}

.treeview li a {display:block; padding:4px 0px 4px 20px; height: 18px;  background: url('arrow.gif') no-repeat 4px 2px; color:#D4D9E0;}
.treeview ul li a {display:block; padding:3px 0px 3px 30px; height: 18px;  background: url('arrow_level.gif') no-repeat 16px 8px; color:#536683;}
.treeview ul li ul li a {display:block; padding:3px 0px 3px 40px; height: 18px;  background: url('arrow_level.gif') no-repeat 26px 8px; color:#536683;}
.treeview ul li ul li ul li  a {display:block; padding:3px 0px 3px 50px; height: 18px;  background: url('arrow_level.gif') no-repeat 36px 8px; color:#536683;}

.treeview li a:hover {text-decoration: none; background: #6B83A8 url('arrow_hover.gif') no-repeat 4px 2px;} 
.treeview ul li a:hover {text-decoration: none; background: #C4C6C9 url('arrow_level_hover.gif') no-repeat 16px 8px;} 
.treeview ul li ul li a:hover {text-decoration: none; background: #C4C6C9 url('arrow_level_hover.gif') no-repeat 26px 8px;} 
.treeview ul li ul li ul li a:hover {text-decoration: none; background: #C4C6C9 url('arrow_level_hover.gif') no-repeat 36px 8px;} 

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url('menu_bg.gif') repeat-x;
}

.treeview ul li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url('menu_level_bg.gif') repeat-x;
}


.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;
}

.treeview-link{
text-align: center;
background: #536683;
color:#D4D9E0;
padding: 3px;
}

.treeview-link a{
color:#D4D9E0;
}
