/*
	List Expander 
*/

.listexpander{
	text-align: left;
	font-family: Garamond, Georgia, "Times New Roman", Times, serif;
}
.listexpander, .listexpander ul, .listexpander li{
	list-style:none;
	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:200%;
	margin-top:1px;
	cursor:default;
	font-weight:normal;
	text-indent: 16px;
	text-transform: uppercase;
	color: #FFFFFF;
	font-size: 12px;
}

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

/* first level */

.listexpander li, .listexpander li.collapsed{
	background-repeat: no-repeat;
	background-position: 0px 0.4em;
	background-image: url(collapsed.gif);
} 
.listexpander li.expanded{
	background-image: url(expanded.gif);
	background-repeat: no-repeat;
	background-position: 0px 0.4em;
}

/* second level */

.listexpander li ul, .listexpander li li{
	font-weight:normal;
}
.listexpander li li.collapsed{
} 
.listexpander li li.expanded{
}
.listexpander li li{
	margin-left: 22px;
	margin-right: 10px;
	text-indent: 0px;
	background-color: #6B000C;
	background-image: none;
	text-transform: capitalize;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


/* etc. */

/* buttons */

p.listexpander{
	display:none;
}
p.listexpander a{
	display: none;
}
p.listexpander a:hover{
	display:none;
}

/* 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 {
	color: #A6781E;
	text-decoration: none;
	font-size: 13px;
}
#subNavigation hr {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #A6781E;
	padding: 0px;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 15px;
}
