/*
	List Expander 
*/

.listexpander{
	padding: 0px;
	width: 98%;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.listexpander, .listexpander ul, .listexpander li{
	list-style-type: none;
	padding: 0px;
}
.listexpander ul{
/*display:none;*/
	/*
	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.
	
	*/ 
}
.listexpander li{
	cursor:default;
	font-weight:bold;
	padding-left: 10px;
	margin: 0px;
}

.listexpander li.collapsed, .listexpander li.expanded{
	cursor:pointer;
	margin: 0px;
} 
.listexpander /* first level */

 li.collapsed  {
	background-image: url(../images/collapsed.gif);
	background-repeat: no-repeat;
} 
.listexpander li.collapsed:hover {
	color: #3178A3;
	text-decoration: underline;
}
.listexpander li.expanded{
	background-image: url(../images/expanded.gif);
	background-repeat: no-repeat;
}

/* second level */

.listexpander li ul, .listexpander li li{
	font-weight:normal;
	background-color: #f8f8f8;
	font-size: 10.5px;
}
.listexpander li li.collapsed{
	background-image: url(../images/collapsed.gif);
	background-repeat: no-repeat;
	background-color: #f8f8f8;
} 
.listexpander li li.expanded{
	background-color: #f8f8f8;
	background-image: url(../images/expanded.gif);
	background-repeat: no-repeat;
	text-decoration: none;
}

/* third level */

.listexpander li li ul, .listexpander li li li,{
	background:#fff;
}
.listexpander li li li.collapsed{
	background-color: #fff;
	background-image: url(../images/collapsed.gif);
	background-repeat: no-repeat;
} 
.listexpander li li li.expanded{
	background-color: #fff;
	background-image: url(../images/expanded.gif);
	background-repeat: no-repeat;
	text-decoration: none;
}

/* fourth level */

.listexpander li li li li{
	width: auto;
	padding-left: 3px;
	font-size: 10.5px;
}

/* etc. */

/* buttons */

p.listexpander{
	margin-top: 0em;
	margin-right: 0;
	margin-bottom: 0em;
	margin-left: 0;
	height: 1.5em;
}
p.listexpander a{
	float:left;
	height:1.5em;
	line-height:1.5em;
	padding:0 10px;
	border:1px solid #eee;
	margin-right:5px;
	cursor:pointer;
	display: none;
}
p.listexpander a:hover{
	background:#f8f8f8;
}

/* float fix */
.listexpander li:after{
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
/* Hides from IE-mac \*/
* html .listexpander li{
	height: 1%;
}
.listexpander li{
	display: block;
}
