/*
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: 1px;
	border: 1px color: #7D7C55;
	cursor: default;
	text-indent: 16px;
	font-weight: bold;
	width: 97%;
}
.listexpander LI.collapsed, .listexpander LI.expanded
{
	cursor: pointer;
}
/*first level*/
.listexpander LI, .listexpander LI.collapsed
{
	background: #FFFFFF url(collapsed.gif) no-repeat 5px 0.4em;
	padding-top: 2px;
}
.listexpander LI.expanded
{
	background: #FFFFFF url(expanded.gif) no-repeat 5px 0.4em;
	padding-top: 2px;
}
/*second level*/
.listexpander LI UL, .listexpander LI LI
{
	background: #F8F8F8;
	font-weight: normal;
	font-size: small;
}
.listexpander LI LI.collapsed
{
	background: #FFF url(collapsed.gif) no-repeat 5px 0.4em;
}
.listexpander LI LI.expanded
{
	background: #F8F8F8 url(expanded.gif) no-repeat 5px 0.4em;
}
/*third level*/
.listexpander LI LI UL, .listexpander LI LI LI
{
	background: #FFF;
	font-size: x-small;
}
.listexpander LI LI LI.collapsed
{
	background: #FFF url(collapsed.gif) no-repeat 5px 0.4em;
}
.listexpander LI LI LI.expanded
{
	background: #FFF url(expanded.gif) no-repeat 5px 0.4em;
}
/*fourth level*/
.listexpander LI LI LI LI
{
	text-indent: 0;
	margin-left: 30px;
	width: auto;
}
/*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 #FFFFFF;
	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*/
