/*
 * jXMLTree jQuery Plugin
 * Examples and documentation at: http://roy-jin.appspot.com/jsp/jqueryXmlMenuTreeDemo.jsp
 * Copyright (c) 2010 Roy Jin
 * Version: 1.0.0 (18-JUN-2010)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.4.2 or later
 */
/**
	Start Define the xmlMenuTree style
	(Please do not change the class name but can modify any values)
**/
.nex-treelist ul, .nex-treelist ul ul {
	list-style-type: none; 
	margin: 0; 
	padding: 0; 
	font-size: 15px; 
	font-weight: bold;
}
.nex-treelist ul ul { 
	margin-left: 10px;
}
.nex-treelist ul li { 
	margin: 0 0 0 10px; 
	padding: 0 15px 0 15px; 
	line-height: 20px; 
	background: url(../images/xmltree/node.png) no-repeat; 
	color: #369; 
	font-weight: normal;
}
.nex-treelist ul li.last { 
	background: url(../images/xmltree/lastnode.png) no-repeat; 
} 
.nex-treelist span {
	margin-left: 5px;
	cursor: pointer;
}
.nex-treelist span:hover {
	background: #CCCCCC;
}

.nex-treelist li span a:hover {
	text-decoration: underline;
}
.nex-treelist .toggleIcon {
	margin-top: 5px; 
	margin-right: 5px; 
	width:9px;
	height:9px; 
	float: left; 
	cursor: pointer;
}
.nex-treelist .parentIcon {
	width: 16px;
	height: 16px; 
	float: left; 
	cursor: pointer;
}
.nex-treelist .childIcon {
	width: 16px;
	height: 16px; 
	float: left; 
	cursor: pointer;
}


.ui-treelist{
	
}

/**
	End Define the xmlMenuTree style
**/
/*
Define toggle Icon
*/
.toggleIconDown {background: url(../images/xmltree/toggle_minus.png) no-repeat;}
.toggleIconUp {background: url(../images/xmltree/toggle_plus.png) no-repeat;}
/*
Specify the parent Icon
*/
.cdIcon {background: url(../images/xmltree/cd.png) no-repeat;}
.bookmarkIcon {background: url(../images/xmltree/bookmark_book_open.png) no-repeat;}
.groupIcon {background: url(../images/xmltree/group.png) no-repeat;}
.diskIcon {background: url(../images/xmltree/disk.png) no-repeat;}
.nuclearIcon {background: url(../images/xmltree/nuclear.png) no-repeat;}
.forderIcon {background: url(../images/xmltree/folder.png) no-repeat;}
.houseIcon {background: url(../images/xmltree/house.png) no-repeat;}
/*
Specify the child Icon
*/
.docPdfIcon {background: url(../images/xmltree/doc_pdf.png) no-repeat;}
.pageWhitePowerpointIcon {background: url(../images/xmltree/page_white_powerpoint.png) no-repeat;}
.pageWhiteWordIcon {background: url(../images/xmltree/page_white_word.png) no-repeat;}
.pageWhiteCplusplusIcon {background: url(../images/xmltree/page_white_cplusplus.png) no-repeat;}
.pageWhiteCupIcon {background: url(../images/xmltree/page_white_cup.png) no-repeat;}
.emailOpenIcon {background: url(../images/xmltree/email_open_image.png) no-repeat;}
.commentIcon {background: url(../images/xmltree/comment.png) no-repeat;}
.awardStarIcon {background: url(../images/xmltree/award_star_bronze_1.png) no-repeat;}