/*
	List Expander 
*/

.listexpander{width:180px;}
.listexpander, .listexpander ul, .listexpander li{
	margin:0;
	padding:0;
}
.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:23px;
	cursor:default;
	text-indent:10px;
	width:180px;
	margin:0;
	padding:0;
}

.listexpander li.collapsed { 
	cursor:pointer;
} 

.listexpander li.expanded { 
	cursor:pointer;
} 

.listexpander a,visited {
	font-family:Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration:none;
}

.listexpander a:hover,active{
	font-family:Arial, Helvetica, sans-serif;	
	font-weight: bold;
	text-decoration:none;
}

/* first level */

.listexpander li {
	background:#ABD9F5;
}

.listexpander li.collapsed {
	background:#ABD9F5;
}

.listexpander li.expanded {
	background:#ABD9F5;
}


/* float fix */
.listexpander li:after{
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
	margin:0;
	padding:0;
}
.listexpander li{
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .listexpander li{
	height: 0; 
}
.listexpander li{
	display: block;
}
/* End hide from IE-mac */
/* end float fix */