/*
	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{
text-indent: 20px;
	line-height:250%;
	margin-top:0px;
	margin-bottom:0px;
	cursor:default;
	font-weight : ;
	width:100%;
border-bottom : 1px dotted #000;

}

.listexpander li.collapsed, .listexpander li.expanded{cursor:pointer;} 


//* edit *//

/* first level */

.listexpander li{
background : #eee; 
color : #000; 
border-bottom : 1px dotted #000;
} 
.listexpander li.collapsed{
background : #eee url('collapsed.gif') no-repeat 3px .4em; 
color : #000; 
border-bottom : 1px dotted #000;
} 

.listexpander li.expanded{
background : #eee url('expanded.gif') no-repeat 3px .4em; 
border-bottom : 0px solid #fff; 
color : #000;
}


/* second level */



.listexpander li ul, .listexpander li li{
background : #fff;
font-weight : normal:
border-bottom : 0px solid #eee;
line-height:180%;

}

.listexpander li li.collapsed{
background : #B69291 url('collapsed.gif') no-repeat 3px .4em; 
border-bottom: 0px dotted #eee; 
color : #000; 
line-height:200%;
} 

.listexpander li li.expanded{
background : #B69291 url('expanded.gif') no-repeat 3px .4em; 
border-bottom: 0px solid #eee; 
color : #000;
line-height:180%;
}

/* thirdlevel */

.listexpander li li li {text-indent:0;margin-left:20px; margin-right:5px;width:auto; padding : 2px 0px 2px 0px;
}


//* edit end *//


p.listexpander{
	height:1.5em;
	margin:1em 0;
}
p.listexpander a{
	float: left;
	height:1.5em;
	line-height:1.5em;
	padding:0 10px;
	border: 1px solid #000;
	margin-right:5px;
	margin-left:5px;
	margin-bottom:10px;
	cursor:pointer;
	color:#000;

}
p.listexpander a:hover{
	background:#55000;
}

/* 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 */
