﻿@charset "utf-8";


.st_tree{ 
	padding:10px;
}

/* 超链接 */
.st_tree a{ 
	color:#222; 
	text-decoration:none; 
}

/* 鼠标经过的超链接 */
.st_tree a:hover{ 
	color:#f33; 
}

/* 菜单 */
.st_tree ul{ 
	padding:0 0 0 18px; 
	margin:0; 
}

/* 菜单项 */
.st_tree ul li{ 
	font-size:14px; 
	color:#fff; 
	line-height:24px; 
	cursor:pointer;
	list-style:none; 
	padding:2px 0 2px 0;
	border-bottom:1px dashed #ccc;
}
.lb { padding:4px 0 4px 0; background-color:#000;}

/* 子菜单 */
.st_tree ul li ul{}

/* 子菜单项 */
.st_tree ul li ul li{}

/* 子菜单的父节点 */
.st_tree .folder{ 
	list-style-image:url(imgs/st_icon.png); 
	background-repeat:no-repeat; 
	padding:0 0 0 6px; 
}

/* 展开的父节点 */
.st_tree .open{ 
	list-style-image:url(imgs/st_icon_open.png); 
	background-repeat:no-repeat; 
	padding:0 0 0 6px; 
}

.st_tree .hover{
	background-color:#ffa;
}