@charset "utf-8";
/* CSS Document */

/*
	List Expander 
*/

.listexpander{width:182px; color:#EC6800;font-size:11px; font-family:Verdana; text-decoration:none;}

.listexpander, .listexpander ul, .listexpander li a:link{color: #000033; text-decoration:none;}
.listexpander, .listexpander ul, .listexpander li a:hover{color: #EC6800; text-decoration:none;}
.listexpander, .listexpander ul, .listexpander li a:visited{color: #000033; text-decoration:none;}
.listexpander, .listexpander ul, .listexpander li{
	margin:0;
	padding:0;
	list-style:none;
	color: #ec6800;
}


.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;
	font-weight:bold;

	background:url(../images/expanded.gif) no-repeat 8px .4em;
}

li.TopHeading {
	font-size:13px;
	color:#000066;
	background:url(../images/MenuHeading.gif) top no-repeat;
	height:37px;
	padding-top:10px;
}


.listexpander li.collapsed, .listexpander li.expanded{width:180px; margin-left:3px; color:#ec6800;}
.listexpander li.collapsed{cursor:pointer; margin-left:3px; border-bottom:0px solid #c7c7c7; border-bottom-style:dashed;  width:200px; color:#ec6800;} 

/* first level */

 .listexpander li.collapsed{background:url(../images/collapsed.gif) no-repeat 5px .4em; color:#ec6800;} 
.listexpander li.expanded{background: url(../images/expanded.gif) no-repeat 5px .4em;  }

/* second level */

.listexpander li ul, .listexpander li li{font-weight:normal; margin-left:5px;}
.listexpander li li.collapsed{background:url(../images/collapsed.gif) no-repeat 9px .4em; color:#ec6800; } 
.listexpander li li.expanded{background:url(../images/expanded.gif) no-repeat 9px .4em;}

/* third level */


.listexpander li li li.collapsed{background:url(../images/collapsed.gif) no-repeat 5px .4em; width:180px; color:#ec6800;} 
.listexpander li li li.expanded{background:url(../images/expanded.gif) no-repeat 5px .4em; }

/* fourth level */

.listexpander li li li li{text-indent:0;margin-left:30px; }

/* etc. */

/* buttons */

p.listexpander{
	height:1.5em;
	margin:1em 0;
	color:#ec6800;
}
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:#ec6800;
	
}

/* 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 */

