/*
	List Expander 
*/

.listexpander, .listexpander ul, .listexpander li{
	margin:0 0 0 40px;
	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:1px;
	cursor:default;
	text-indent:30px;
	font-weight:bold;
	width:80%;
}

.listexpander li.collapsed, .listexpander li.expanded{cursor:pointer;} 

/* first level */

.listexpander li, .listexpander li.collapsed{background:#000 url(../images/collapsed.gif) no-repeat 5px .4em;margin:0 !important;} 
.listexpander li.expanded{background:#000 url(../images/expanded.gif) no-repeat 5px .4em;}

/* second level */

.listexpander li ul{padding:10px 0;margin:0 0 0 30px;}
.listexpander li li{width:500px;background:#3a3a3a;border:1px solid #cfcfcf;font-weight:normal;margin:0 0 0 0px !important;padding:10px;text-indent:0;line-height:11pt;}

/* third level */
.listexpander li li ul{display:block !important;}
.listexpander li li li{display:block !important;list-style-type:disc !important;margin:0 0 0 20px !important;padding:0 0 0 20px !important;list-style-position:inside !important;}

/* 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: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 */

.listexpander li.none{background:#000 !important;margin:0 !important;} 
