﻿@charset "utf-8";



/* 超链接 */
.st_tree a{
	display:block;
	color:#222; 
	text-decoration:none; 
	padding-left:25px;
}

/* 鼠标经过的超链接 */
.st_tree a:hover{ 
	color:#f33; 
	text-decoration:underline;
}

/* 菜单 */
.st_tree ul{ 
	
	margin:0; 
}

/* 菜单项 */
.st_tree ul li{ 
	font-size:13px; 
	color:#222; 
	line-height:18px; 
	cursor:pointer;
	list-style:none; 
	/*background:url(imgs/st_node.gif); 
	background-repeat:no-repeat; 
	padding:0 0 3px 20px;*/
}

/* 子菜单 */
.st_tree ul li ul{}

/* 子菜单项 */
.st_tree ul li ul li{}

/* 子菜单的父节点*/
.st_tree .folder{ 
	list-style-image:url(imgs/st_icon.png);
	list-style-position:inside;
	/*background:url(imgs/st_folder.gif); 
	background-repeat:no-repeat; */
	
}
 
/* 展开的父节点*/
.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 25px; */
} 
.st_tree .open1 {overflow:hidden;}
.st_tree .open1 li{ 
	list-style-image:url(imgs/st_icon_open.png) !important; 
	/*background:url(imgs/st_folder_open.gif); 
	background-repeat:no-repeat; */
	padding:0 0 0 15px;
	
} 

.st_tree .hover{
	background-color:#ffa;
}