/*
	List Expander 
*/

.listexpander{clear:left;}
.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{color: #7c5c2b;border-top: 1px solid #e5c28a;font-size: 1.2em;
	line-height:180%;
	margin-top:1px;
	cursor:default;
	text-indent:30px;
	font-weight:bold;
	width:100%;
}

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

/* first level */

.listexpander li, .listexpander li.collapsed{background:#caa974 url(collapsed.gif) no-repeat 5px .5em;} 

.listexpander li.expanded{background:#caa974 url(expanded.gif) no-repeat 5px .5em;}

/* second level */

.listexpander li ul, .listexpander li li{background: #f2daaf;font-weight:normal;margin: 0;}
.listexpander li li.collapsed{background:#ffcc00 ;} 
.listexpander li li.expanded{background:#ffcc00;}

/* etc. */

/* buttons */

p.listexpander{height:1.5em;margin:3em 0;}
p.listexpander a{float:left;height:1.5em;border-left: 1px solid #caa974;line-height:1.5em;padding:0 2px;margin-right:5px;cursor:pointer;}
p.listexpander a:hover{}

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