@charset "utf-8";

.st_tree {
	padding: 10px;
}


/* 超链接 */

.st_tree a {
	color: #000;
	text-decoration: none;
}


/* 鼠标经过的超链接 */

.st_tree a:hover {
	color: #2eaf58;
	text-decoration: none;
}


.st_tree a.set{
	background:#2eaf58;
	color:#FFFFFF;
}

/* 菜单 */

.st_tree ul {
	padding: 0 12px;
	margin: 0;
}


/* 菜单项 */

.st_tree ul li {
	font-size: 15px;
	color: #222;
	line-height: 20px;
	cursor: pointer;
	list-style: none;
	/*background: url(imgs/st_node.gif);*/
	background-repeat: no-repeat;
	padding: 0 0 3px 10px;
}


/* 子菜单 */

.st_tree ul li ul {}


/* 子菜单项 */

.st_tree ul li ul li {}


/* 子菜单的父节点 */

.st_tree .folder {
	list-style-image: url(imgs/st_icon.png);
	/*background: url(imgs/st_folder.gif);*/
	background-repeat: no-repeat;
	/*padding: 0 0 0 20px;*/
}


/* 展开的父节点 */

.st_tree .open {
	list-style-image: url(imgs/st_icon_open.png);
	/*background: url(imgs/st_folder_open.gif);*/
	background-repeat: no-repeat;
	/*padding: 0 0 0 20px;*/
}