﻿/* Menu 1 - Left */
.treeview1 ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview1 li, .treeview1 li a{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #a60f1e;
list-style-type: none;
margin:0px;
padding-left:0px;
font-size:14px;
text-decoration:none;
color: #ffffff;
}

.treeview1 li.submenu1{ /* Style for LI that contains sub lists (other ULs). */
background: #2b2f6f;
margin: 0;
padding-top:5px;
padding-left:0px;
}


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

.treeview1 .submenu1 ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin:0px;
padding-top:5px;
padding-left:0px;
}


/* Menu 2 - Right */
.treeview2 ul{ /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
}

.treeview2 li, .treeview2 li a{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background: #2b2f6f;
list-style-type: none;
margin:0px;
padding-left:0px;
font-size:14px;
text-decoration:none;
color: #ffffff;
}

.treeview2 li.submenu2{ /* Style for LI that contains sub lists (other ULs). */
background: #2b2f6f;
margin: 0;
padding-top:5px;
padding-left:0px;
/*cursor: hand !important;
cursor: pointer !important; */
}


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

.treeview2 .submenu2 ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
margin:0px;
padding-top:5px;
padding-left:0px;
}
