﻿@charset "utf-8";

/*
Author：张浩华
Date：2011.11.25 0:12
Version：SimpleTree 1.0
*/
.st_tree{padding:10px 15px;}
/* 超链接 */
.st_tree a{color:#545454; text-decoration:none;line-height:26px;}

/* 鼠标经过的超链接 */
.st_tree a:hover{color:#545454;text-decoration:underline;}

/* 菜单 */
.st_tree ul{padding:0 0 0 8px;margin:0;}

/* 菜单项 */
.st_tree ul li{ 
	font-size:16px; 
	color:#222; 
	line-height:18px; 
	cursor:pointer;
	list-style:none; 
	background-repeat:no-repeat; 
	padding:0px;
	border-bottom:1px dashed #B9B9B9
}

/* 子菜单 */
.st_tree ul li ul{}

/* 子菜单项 */
.st_tree ul li ul li{ border-bottom:none}

/* 子菜单的父节点 */
.st_tree .folder{ 
	list-style-image:url(imgs/st_icon.png); 
	background-repeat:no-repeat; 
	padding:0px; 
}

/* 展开的父节点 */
.st_tree .open{ 
	list-style-image:url(imgs/st_icon_open.png); 
	background-repeat:no-repeat; 
	padding:0px; 
}

.st_tree .hover{
	background-color:#fff;
}