/*
	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{
font-family:Arial, Helvetica, sans-serif;
color: black; 
line-height:200%;
cursor:default;
padding-left: 20px;
/* text-indent:30px;*/
font-weight:bold;
width:100%;
}

.listexpander li.collapsed, .listexpander li.expanded{cursor:pointer;} 

/* first level */

.listexpander li, .listexpander li.collapsed{background:url(arrow-list-red.gif) no-repeat 5px .4em; font-size: 110%;} 
/*.listexpander li.expanded{background:url(expanded.gif) no-repeat 5px .4em;}*/
.listexpander li.expanded{list-style:none;}

/* second level */

.listexpander li ul, .listexpander li li{list-style: none; font-weight:normal;color: black; font-family: Helvetica, sans-serif; line-height: 14pt; padding-bottom: 12px; font-size: 98%; padding-right: 24px;}
.listexpander li li.collapsed{background:#f8f8f8 url(arrow-list-red.gif) no-repeat 5px .4em;} 
/*.listexpander li li.expanded{background:#f8f8f8 url(expanded.gif) no-repeat 5px .4em; list-style: none; }*/
.listexpander li.expanded li {background: #ffffff; list-style: none; margin-left: -20px;}
.listexpander li li.expanded{background: #ffffff; list-style: none; }


/* 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;
	cursor:pointer;
}
p.listexpander a:hover{
	background:#f8f8f8;
}

/* float fix */

.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 */
