/*
	List Expander 
*/

.listexpander{width:100%;}
.listexpander, .listexpander ul, .listexpander li{
	margin:0;
	padding:0;
	list-style:none;
}
.listexpander ul{
	/*
	Uncomment this if you want to initially hide the child lists. 
	If you do, Javascript disabled and CSS enabled browsers will not be able to use this list.
	display:none;
	*/ 
}
.listexpander li{
	line-height:250%;
	margin-top:1px;
	cursor:default;
	text-indent:25px;
	font-weight:bold;
	width:100%;
	border-bottom: 1px solid #ccc;
}

.listexpander li.collapsed, .listexpander li.expanded{cursor:pointer;} 

/* first level */

.listexpander li, .listexpander li.collapsed{background:#eee url(http://www.ngbw.org/images/folder-collapsed.gif) no-repeat 5px .4em;} 
.listexpander li.expanded{background:#eee url(http://www.ngbw.org/images/folder-expanded.gif) no-repeat 5px .4em;}

/* second level */

.listexpander li ul, .listexpander li li {background:#f8f8f8;font-weight:normal; text-indent:0px; border: none;}
.listexpander li li.collapsed {background: none 0 0;}  
.listexpander li li.expanded {background: none 0 0;}  

.listexpander li ul, .listexpander li li span.tool {background:#f8f8f8;font-weight:normal;padding:3px 0 3px 20px; border: none;}
.listexpander li li.collapsed span.tool{background:#f8f8f8 url(http://www.ngbw.org/images/tool-icon.gif) no-repeat 0 0;}  
.listexpander li li.expanded span.tool{background:#f8f8f8 url(http://www.ngbw.org/images/tool-icon.gif) no-repeat 0 0;}

.listexpander li ul, .listexpander li li span.data {background:#f8f8f8;font-weight:normal;padding:3px 0 3px 20px; border: none;}
.listexpander li li.collapsed span.data{background:#f8f8f8 url(http://www.ngbw.org/images/data-icon.gif) no-repeat 0 0;}  
.listexpander li li.expanded span.data{background:#f8f8f8 url(http://www.ngbw.org/images/data-icon.gif) no-repeat 0 0;}    

/* third level */

.listexpander li li ul, .listexpander li li li{background:#f8f8f8; border: none;}
.listexpander li li li.collapsed{background:none;} 
.listexpander li li li.expanded{background:none;}

/* fourth level */

.listexpander li li li li{text-indent:0;margin-left:30px;width:auto;}

/* etc. */

/* buttons */

p.listexpander{
	height:0;
	margin:0;
}
p.listexpander a{
	height:0;
	padding:0;
}
p.listexpander a:hover{
	background:#f8f8f8;
}

/* float fix */
.listexpander li:after{
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.listexpander li{
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .listexpander li{
	height: 1%;
}
.listexpander li{
	display: block;
}
/* End hide from IE-mac */
/* end float fix */
