/* 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: 200%;*/
	line-height: 1.5em;
	*line-height: 1.7em;
	cursor: default;
	text-indent: 21px;
	*text-indent: 25px;
	font-weight: normal;
	width: 100%;
	}

.listexpander li.collapsed, .listexpander li.expanded {
	cursor: pointer;
	} 





/* first level */
.listexpander li, .listexpander li.collapsed {
	background-image: url(../images/icon_collapsed.gif); 
	background-repeat: no-repeat; 
	background-position: 1px .3em; 
	*background-position: 5px .4em;
	} 
	
.listexpander li.expanded {
	background-image: url(../images/icon_expanded.gif); 
	}





/* second level */
.listexpander li ul {
	*margin: 0 0 0 -15px;
	}
	
.listexpander li ul li {
	padding-top: 5px;
	}
	
.listexpander li ul, .listexpander li li {
	background: none;
	font-weight: normal;
	}
	
.listexpander li li.collapsed {
	background: #f8f8f8 url(../images/icon_collapsed.gif) no-repeat 5px .4em;
	} 
	
.listexpander li li.expanded {
	background: #f8f8f8 url(../images/icon_expanded.gif) no-repeat 5px .4em;
	}





/* third level */
.listexpander li li ul, .listexpander li li li {
	background: #fff;
	}
	
.listexpander li li li.collapsed {
	background: #fff url(../images/icon_collapsed.gif) no-repeat 5px .4em;
	} 
	
.listexpander li li li.expanded {
	background: #fff url(../images/icon_expanded.gif) no-repeat 5px .4em;
	}





/* fourth level */
.listexpander li li li li {
	text-indent: 0;
	margin-left: 30px;
	width: auto;
	}





/* buttons */
p.listexpander {
	display: none;
	height: 1.5em;
	margin: 1em 0;
	}
	
p.listexpander a {
	float: left;
	height: 1.5em;
	line-height: 1.5em;
	padding: 0 10px;
	border: 1px solid #eee;
	margin-right: 5px;
	cursor: pointer;
	}
	
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 */