/*
	List Expander 
*/

.listexpander{width:95%;}
.listexpander, .listexpander ul, .listexpander 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;
	padding-left:30px;
}


.listexpander li ul li{
	line-height:150%;
	background:url(/library/images/common/sub-cat-list.gif) no-repeat 0 10px;
	margin-top:1px;
	cursor:default;
	margin-left:10px;
	padding:0 0 10px 10px;
	display:block;
}

.listexpander li ul{
	margin-top:5px;
}

.listexpander li.collapsed, .listexpander li.expanded{cursor:pointer;} 

.listexpander li.expanded{color:#cd3715;}


/* first level */

.listexpander li, .listexpander li.collapsed{background:url(/library/images/common/collapsed.gif) no-repeat 5px .4em;} 
.listexpander li.expanded{background:url(/library/images/common/expanded.gif) no-repeat 5px .4em;}


.listexpander_sub li, .listexpander_sub li.collapsed{background:none 5px .4em;}
.listexpander_sub li.expanded{background:none 5px .4em;}



/* 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;
}
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 */


