#treemenu1 {
	padding: 0px;
	margin: 0px;
}
.treeview ul { /*CSS for Simple Tree Menu*/
	margin: 0;
	padding: 0px;
}
.treeview li { /*Style for LI elements in general (excludes an LI that contains sub lists)*/
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #f00;
	background: white url(/img/sipka1.gif) no-repeat left center;
	list-style-type: none;
	padding-left: 20px;
	margin-bottom: 4px;
	white-space: nowrap;
}
.treeview li a, .treeview li a:visited {
	text-decoration:none;
	color: #f00;
}
.treeview li a:hover {
	text-decoration:underline;
}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
	background: white url(/img/closed2.gif) no-repeat left 0px;
	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;
}