/*
	List Expander 
*/

.listexpander{width:100%;}
.listexpander, .listexpander ol, .listexpander li{
	margin:0;
	padding:0;
  list-style-type: none;
}
.listexpander ol{

}
.listexpander li{
	margin-top:1px;
	cursor:default;
	padding-left:30px;
	font-weight:bold;
	width:92%;
} 

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

/* first level */

.listexpander li, .listexpander li.collapsed{background:#eee url(collapsed.gif) no-repeat 5px .4em;
 font-weight: bold;	
 line-height:200%;
 } 
.listexpander li.expanded{background:#eee url(expanded.gif) no-repeat 5px .4em;
 font-weight: bold;	
 line-height:200%;
 }

/* second level */

.listexpander li ol, .listexpander li li{background:#f8f8f8;font-weight:normal; line-height:150%;}
.listexpander li li.collapsed{background:#f8f8f8 url(collapsed.gif) no-repeat 5px .4em; line-height:150%;} 
.listexpander li li.expanded{background:#f8f8f8 url(expanded.gif) no-repeat 5px .4em; line-height:150%;}

/* third level */

.listexpander li li ol, .listexpander li li li{background:#fff;font-weight:normal; line-height:125%;}
.listexpander li li li.collapsed{background:#fff url(collapsed.gif) no-repeat 5px .4em;font-weight:normal;} 
.listexpander li li li.expanded{background:#fff url(expanded.gif) no-repeat 5px .4em;font-weight:normal;}

/* fourth level */

.listexpander li li li li{text-indent:0;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 #eee;
	margin-right:5px;
	cursor:pointer;
	background:#cccccc;
}
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 */
