/*
	List Expander 
*/

.listexpander{width:100%;}
.listexpander_no_collapse{width:100%;}
.listexpander, .listexpander ul, .listexpander li{
	margin:0;
	padding:0;
	list-style:none;
}
.listexpander_no_collapse, .listexpander_no_collapse ul, .listexpander_no_collapse 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;
	cursor:default;
	text-indent:30px;
	width:100%;
}

.listexpander li.sw_no_child{
	line-height:200%;
	margin-top:1px;
	cursor:default;
	text-indent:30px;
	width:100%;
	border-bottom: 1px dotted #e0e0e0;
}

.listexpander_no_collapse li{
	line-height:200%;
	margin-top:1px;
	cursor:default;
	text-indent:10px;
	width:100%;
}

.listexpander li ul li:hover{
 background-color:#FAF6EA;
 }

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

/* first level */

.listexpander li.sw_no_child:hover{background-color: #F2EBC4;}
.listexpander li#selected_outer{background-color: #F2EBC4; border-bottom: 1px dotted #e0e0e0;}
.listexpander li ul li#selected_inner{background-color: #FAF6EA;}

.listexpander li.collapsed{background:transparent url(../images/collapsed.gif) no-repeat 5px .4em; border-bottom: 1px dotted #e0e0e0;} 
.listexpander li.collapsed:hover{background-color: #F2EBC4;}

.listexpander li.expanded:hover{background-color: #F2EBC4;}
.listexpander li.expanded{background:transparent url(../images/expanded.gif) no-repeat 5px .4em; border-bottom: 1px dotted #e0e0e0;}
.listexpander li.first_leaf{border-top: 1px dotted #e0e0e0;}

.listexpander_no_collapse li{background-color:transparent; border-bottom: 1px dotted #e0e0e0;} 
.listexpander_no_collapse li:hover{background-color: #F2EBC4;}

.listexpander_no_collapse li#selected{background-color: #F2EBC4; border-bottom: 1px dotted #e0e0e0;}

/* second level */
.listexpander li ul, .listexpander li li{background:#FFFFFF; font-weight:normal;}
.listexpander li li.collapsed{background:#FFFFFF url(../images/collapsed.gif) no-repeat 5px .4em;} 
.listexpander li li.expanded{background:#FFFFFF url(../images/expanded.gif) no-repeat 5px .4em;}

/* third level */

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

/* fourth level */

.listexpander li li li li{text-indent:0;margin-left:30px;width:auto;}

/* etc. */

/* buttons */

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

.listexpander a, .listexpander_no_collapse a{
	text-decoration: none;
}

.listexpander a:hover, .listexpander_no_collapse a:hover{
	text-decoration: none;
}

.listexpander a:active, .listexpander_no_collapse a:active{
	text-decoration: none;
}

.listexpander a:visited, .listexpander_no_collapse a:visited{
	text-decoration: none;
}

/* End hide from IE-mac */
/* end float fix */