@charset "utf-8";
/*
Author：张浩华
Date：2011.11.25 0:12
Version：SimpleTree 1.0
*/
.st_tree{padding:10px;}
/* 超链接 */
.st_tree a{text-decoration:none;color:#5a5a5a;}
/* 鼠标经过的超链接 */
.st_tree a:hover{color:#FE8815;text-decoration:none;}
/* 菜单 */
.st_tree ul{
	/*padding:0 18px;*/
	margin:0;
}
/* 菜单项 */
.st_tree ul li{
	font-size:16px;
	color:#5a5a5a;
	line-height:30px;
	cursor:pointer;
	list-style:none;
	/*background:url(imgs/st_node.gif);
	background-repeat:no-repeat;*/
	padding:0 0 3px 20px;
}
/*.st_tree ul li:hover{
	background:#FE8815;
}
.st_tree ul li:hover a{
	color:#fff;
}*/
/* 子菜单 */
.st_tree ul li ul{

}
/* 子菜单项 */
.st_tree ul li ul li{

}
.st_tree ul ul li a{
	font-size:14px;
}

/*三级子菜单*/
.st_tree ul li ul li ul{

}
.st_tree ul ul ul li a{
	font-size:12px;
}


/* 子菜单的父节点 */
.st_tree .folder{
	/*list-style-image:url(imgs/st_icon.png);*/
	background:url(imgs/st_folder.gif);
	background-repeat:no-repeat;
	background-position: left center;
	background-size:18px;
	padding:0 0 0 25px;
}
/*.st_tree .folder:hover{
	background:#FE8815 url(imgs/st_folder.gif);
	background-repeat:no-repeat;
	background-position: left center;
	background-size:18px;
	padding:0 0 0 25px;
}*/
/* 展开的父节点 */
.st_tree .open{
	/*list-style-image:url(imgs/st_icon_open.png);*/
	background:url(imgs/st_folder_open.gif);
	background-repeat:no-repeat;
	background-position: left center;
	background-size:18px;
	padding:0 0 0 25px;
}
/*.st_tree .open:hover{
	background:#FE8815 url(imgs/st_folder_open.gif);
	background-repeat:no-repeat;
	background-position: left center;
	background-size:18px;
	padding:0 0 0 25px;
}*/