﻿/*
	List Expander 
*/

.listexpander{width:100%;}
.listexpander, .listexpander ul, .listexpander li{
	margin:0;
	padding:0;
	list-style:none;
	width:100%;
}
.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{
	margin-top:1px;
	line-height: 200%;
	cursor:default;
	text-indent:20px;
	font-weight:bold;
	width:100%;
	font-family: arial;
	font-size:11px;
	color:#525252;text-decoration:none;
	text-align:left;
	padding-right:15px;
}

.listexpander li.collapsed, .listexpander li.expanded{cursor:pointer;} 

/* first level */

.listexpander li, .listexpander li.collapsed{background:url(../images/bullet1.gif) no-repeat 5px .7em;} 
.listexpander li.expanded{background:url(../images/bullet2.gif) no-repeat 5px .7em;}
.listexpander li.leaf{background:url(../images/bullet3.gif) no-repeat 5px .7em;}
.listexpander li.leafH{background:url(../images/bullet3.gif) no-repeat 5px .7em;}
.listexpander li.leafH.A:visited{color:#ff0000;}
.listexpander li.leafH.A:active{color:#ff0000;}
.listexpander li.leafH.A:hover{color:#ff0000;}

/* second level */

.listexpander li ul, .listexpander li li{text-indent:35px;}
.listexpander li li.collapsed{background:url(../images/bullet1.gif) no-repeat 20px .7em;} 
.listexpander li li.expanded{background:url(../images/bullet2.gif) no-repeat 20pxt .7em;}
.listexpander li li.leaf{background:url(../images/bullet3.gif) no-repeat 20px .7em;}

/* third level */

.listexpander li li ul, .listexpander li li li{text-indent:60px;}
.listexpander li li li.collapsed{background:url(../images/bullet1.gif) no-repeat 45px .7em;} 
.listexpander li li li.expanded{background:url(../images/bullet2.gif) no-repeat 45px .7em;}
.listexpander li li li.leaf{background:url(../images/bullet3.gif) no-repeat 45px .7em;}

/* fourth level */

.listexpander li li li ul, .listexpander li li li li{text-indent:80px;}
.listexpander li li li li.collapsed{background:url(../images/bullet1.gif) no-repeat 65px .7em;} 
.listexpander li li li li.expanded{background:url(../images/bullet2.gif) no-repeat 65px .7em;}
.listexpander li li li li.leaf{background:url(../images/bullet3.gif) no-repeat 65px .7em;}

.listexpander li li li li li{text-indent:0;margin-left:80px;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;
}
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 */
