/*
	List Expander 
*/

.listexpander2{width:100%;}
.listexpander2, .listexpander2 ul, .listexpander2 li{
	margin:0;
	padding:0;
list-style:none;

}
.listexpander2 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;
	*/ 
}
.listexpander2 li{
	line-height:200%;
	margin-top:0px;
	cursor:default;
	text-indent:30px;
	font-weight:bold;
	width:100%;
}

.listexpander2 li.collapsed, .listexpander2 li.expanded{cursor:pointer;} 

/* first level */

.listexpander2 li, .listexpander2 li.collapsed{background:#ffffff url(collapsed.gif) no-repeat 5px .4em;} 
.listexpander2 li.expanded{background:#ffffff url(expanded.gif) no-repeat 5px .4em;}

/* second level */

.listexpander2 li ul, .listexpander2 li li{background:#ffffff;font-weight:normal;}


/* etc. */

/* buttons */

p.listexpander2{
	height:1em;
	margin:1em 0;
}
p.listexpander2 a{
	float:left;
	height:1.5em;
	line-height:1.5em;
	padding:0 10px;
	border:1px solid #eee;
	margin-right:5px;
	cursor:pointer;
}
p.listexpander2 a:hover{
	background:#ffffff;
}

/* float fix */
.listexpander2 li:after{
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.listexpander2 li{
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .listexpander2 li{
	height: 1%;
}
.listexpander2 li{
	display: block;
}
/* End hide from IE-mac */
/* end float fix */