/*
	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%;
	margin-top:0px;
	cursor:default;
	text-indent:20px;
	font-weight : ;
	width:100%;

}

.listexpander li.collapsed, .listexpander li.expanded{cursor:pointer;} 

/* first level */

.listexpander li{
background : #000; 
color : #fff; 
border-bottom : 1px solid #fff;
} 
.listexpander li.collapsed{
background : #000 url('collapsed.gif') no-repeat 3px .4em; 
color : #fff; 
border-bottom : 1px solid #fff;
} 

.listexpander li.expanded{
background : #560200 url('expanded.gif') no-repeat 3px .4em; 
border : 0px solid #909090; 
color : #fff;
}

/* second level */

.listexpander li ul, .listexpander li li{
background : #eee;
font-weight : normal:
border-bottom : 0px solid #eee;
	line-height:180%;

}

.listexpander li li.collapsed{
background : #EDE4E4 url('collapsed.gif') no-repeat 3px .4em; 
border-bottom: 0px solid #eee; 
color : #000; 
	line-height:180%;
} 

.listexpander li li.expanded{
background:#B69291 url('expanded.gif') no-repeat 3px .4em; 
border-bottom: 0px solid #eee; 
color : #000;
	line-height:180%;
}

/* third level */

.listexpander li li ul, .listexpander li li li{
background : #DDCCCC; 
border : 0px solid #d2d2d2;
color : #000;
}

.listexpander li li li.collapsed{
background : #fff url('collapsedz.gif') no-repeat 3px .4em; border : 0px solid #d2d2d2; 
color : #000;
} 

.listexpander li li li.expanded{
background:#fff url('expandedz.gif') no-repeat 3px .4em; 
border : 0px solid #d2d2d2; 
color : #000;}

/* fourth level */

.listexpander li li li li{text-indent:0;margin-left:30px;width:auto; border : 0px solid #d2d2d2;}

/* etc. */

/* buttons */

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 #eee;
	margin-right:5px;
	margin-left:5px;
	cursor:pointer;
	color:#eee;


}
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 */