/*
	List Expander 
*/

.listexpander{
	width:95%;
	margin: auto;
}
.listexpander, .listexpander ul, .listexpander li{
	margin:0;
	padding:0;
	list-style:none;
}
.listexpander ul{
	margin: 0px;
	padding-top: 1em;
	padding-right: 0em;
	padding-bottom: 1em;
}
.listexpander li{
	line-height:200%;
	margin-top:1px;
	cursor:default;
	width:95%;
	font-weight: normal;
	font-size: 0.95em;
	color: #376FA6;
}

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

/* first level */

.listexpander li, .listexpander li.collapsed{
	background:url(../images/bullets/collapsed.gif) no-repeat 5px 0.6em;
	color: #20488B;
} 
.listexpander li, .listexpander li.collapsed:hover {
	background:#357DB3 url(../images/bullets/collapsed.gif) no-repeat 5px 0.6em;
	color: #FFF;
	text-indent: 30px;
}

.listexpander li.expanded{
	background: #376FA6 url(../images/bullets/expanded.gif) no-repeat 5px 0.6em;
	color: #FFF;
}

/* second level */

.listexpander li ul, .listexpander li li{
	background:#EDF4FE;
	width: 97%;
	padding-left: 17px;
	padding-right: 5px;
	color: #20488B;
	font-size: 0.95em;
	line-height: 1.5em;
	text-indent: 0px;
}
.listexpander li ul p       {
	width: 97%;
	color: #20488B;
	font-size: 0.95em;
}
.listexpander li ul li ol li{
	list-style-position: inside;
	list-style-type: decimal;
	display: list-item;
	padding-left: 0px;
}


.listexpander li li.collapsed{
	background:url(../images/bullets/collapsed.gif) no-repeat 5px 0.4em;
} 
.listexpander li li.expanded{
	background:url(../images/bullets/expanded.gif) no-repeat 5px 0.4em;
}

/* third level */

.listexpander li li ul, .listexpander li li li{
}
.listexpander li li li.collapsed{
	background:url(../images/bullets/collapsed.gif) no-repeat 5px 0.4em;
} 
.listexpander li li li.expanded{
	background:url(../images/bullets/expanded.gif) no-repeat 5px 0.4em;
}

/* fourth level */

.listexpander li li li li{
	margin-left:20px;
	width:auto;
}

/* etc. */

/* buttons */

p.listexpander{
	height:1.5em;
	margin:1em 0 0em 25px;
	font-size: 0.7em;
	float: none;
	color: #204875;
}
p.listexpander a{
	float:none;
	height:1.5em;
	line-height:1.5em;
	padding:0 10px;
	border:1px solid #DBDBDB;
	margin-right:5px;
	cursor:pointer;
}
p.listexpander a:hover{
	text-decoration: underline;
}

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