@charset "utf-8";

.treeview {
margin:0px;
padding:0px;
}

.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(../img/file.png) no-repeat left top;
list-style-type: none;
padding-left: 22px;
margin-bottom: 3px;
color: black;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../img/closed.gif) no-repeat left 1px;
cursor: pointer !important;
color: #0070af;
margin: 0px;
padding-top: 1px;
padding-bottom: 1px;
background-position: 0px 6px;
}

.treeview li.packet{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../img/packet.png) no-repeat left 1px;
cursor: pointer !important;
color: #0070af;
margin: 0px;
padding-top: 1px;
padding-bottom: 1px;
background-position: 0px 5px;
}

.treeview li.newpacket{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../img/packet.png) no-repeat left 1px;
cursor: pointer !important;
color: green;
font-weight: bold;
margin: 0px;
padding-top: 1px;
padding-bottom: 1px;
}

.treeview li.oldpacket{ /* Style for LI that contains sub lists (other ULs). */
background: white url(../img/packet.png) no-repeat left 1px;
cursor: pointer !important;
color: red;
font-weight: bold;
margin: 0px;
padding-top: 1px;
padding-bottom: 1px;
}

.treeview li.newfile{ /* Style for LI that contains sub lists (other ULs). */
color: green;
font-weight: bold;
margin: 0px;
padding-top: 1px;
padding-bottom: 1px;
}

.treeview li.oldfile{ /* Style for LI that contains sub lists (other ULs). */
color: red;
font-weight: bold;
margin: 0px;
padding-top: 1px;
padding-bottom: 1px;
}

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

.treeview li.packet ul{ /*Style for ULs that are children of LIs (packet) */
display: none; /*Hide them by default. Don't delete. */
cursor: default !important;
}

.treeview li.newpacket ul{ /*Style for ULs that are children of LIs (packet) */
display: none; /*Hide them by default. Don't delete. */
cursor: default !important;
font-weight: normal;
}

.treeview li.oldpacket ul{ /*Style for ULs that are children of LIs (packet) */
display: none; /*Hide them by default. Don't delete. */
cursor: default !important;
font-weight: normal;
}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;
}