.treeview {
	margin: 0 0 0 15px;
	padding: 0;
	color: #5CA0C7;
}
.treeview ul { /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0;
	list-style:none;
}
.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	width:162px;
	font-size:10px;
	color:#3b3b3b;
}

.treeview li.submenu { /* Style for LI that contains sub lists (other ULs). */
	background: white url(../images/tree_menu/plus.gif) no-repeat left 1px;
	cursor: hand !important;
	cursor: pointer !important;
}
.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 a {
	display:block;
	text-decoration: none !important;
	color:#363636;
	background:url(../images/template/maincat.gif) bottom left no-repeat;
	padding:7px 0 6px 14px;
	width:140px;
}
.treeview .submenu ul li a {
	background:url(../images/template/right_menu_item.gif) 0 8px no-repeat;
	padding:7px 0 6px 14px;
	font-weight:bold;
	border-bottom:1px #ccc dotted;
	margin-right:10px;
	display:block;
	width:127px;
}

.treeview .submenu ul li a:hover, .treeview a:hover {
	background-color:#ececec;
}
