.treeview 
{
 margin-top: 34px;
 margin-right: 9px;
 margin-bottom: 11px;
 margin-left: 11px;
 padding: 0;
 list-style: none;
 font-size: 14px;
 font-family: arial, sans-serif;
 line-height: normal;
}

.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-image: url(../image/open_folder_icon.gif);
 background-repeat: no-repeat;
 background-position: left top;
 margin-top: 0;
 margin-right: 0;
 margin-bottom: 18px;
 margin-left: 0;
 padding-top: 0;
 padding-right: 0;
 padding-bottom: 0;
 padding-left: 24px;
 font-weight: bold;/*
 border-bottom-color: #ffffff;
 border-bottom-width: 1px;
 border-bottom-style: solid;
 */
}

.treeview li.submenu 
{
 /* Style for LI that contains sub lists (other ULs). */

 background-image: url(../image/closed.gif);
 background-repeat: no-repeat;
 background-position: left top;
 padding-top: 2px;
 cursor: hand ! important;
 cursor: pointer ! important;
 padding-left: 24px;
 padding-right: 0;
 font-weight: bold;
 color: #ddd;
}

/*
* HTML .treeview li.submenu {
	padding-top: 0px;
}
*/
.treeview li.submenu ul 
{
 /*Style for ULs that are children of LIs (submenu) */

 display: none;/*Hide them by default. Don't delete. */

 margin-top: 4px;
 margin-right: 0;
 margin-bottom: 4px;
 margin-left: 0;
}

.treeview .submenu ul li 
{
 /*Style for LIs of ULs that are children of LIs (submenu) */

 cursor: default;
 background-image: url(../image/arrow.gif);
 background-repeat: no-repeat;
 background-position: left center;
 list-style-type: none;
 padding-left: 18px;
 padding-right: 9px;
 font-weight: normal;
 border-width: 0;
 margin-top: 4px;
 margin-right: 0;
 margin-bottom: 4px;
 margin-left: -5px;
}

.treeview .submenu ul li.submenu 
{
 background-image: url(../image/closed.gif);
 background-repeat: no-repeat;
 background-position: left top;
}

.treeview li a 
{
 padding-top: 4px;
 padding-right: 0px;
 padding-bottom: 4px;
 padding-left: 0px;
 color: #ddd;
 text-decoration: none;
 margin: 0;
}

.treeview li a:hover 
{
 color: #325ba0;
}