/*
	List Expander 
*/

.subnavCategories{width:100%;}
.subnavCategories, .subnavCategories ul, .subnavCategories li{
	margin:0;
	padding:0;
	list-style:none;
}
.subnavCategories 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;
	*/ 
}
.subnavCategories li{
	line-height:200%;
	margin-top:1px;
	cursor:default;
	text-indent:30px;
	font-weight:normal;
	width:100%;
}

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

/* first level */

.subnavCategories li, .subnavCategories li.collapsed{background:#fff url(images/collapsed.gif) no-repeat 5px .4em;} 
.subnavCategories li.expanded{background:#fff url(images/expanded.gif) no-repeat 5px .4em;}
.subnavCategories li.empty{background:#fff url(images/) norepeat 5px .4em;}

/* second level */

.subnavCategories li ul, .subnavCategories li li{background:#efefef;font-weight:normal;}
.subnavCategories li li.collapsed{background:#fff url(images/collapsed.gif) no-repeat 5px .4em;} 
.subnavCategories li li.expanded{background:#fff url(images/expanded.gif) no-repeat 5px .4em;}
.subnavCategories li li.empty{background:#fff url(images/) norepeat 5px .4em;}

/* third level */

.subnavCategories li li ul, .subnavCategories li li li{background:#fff;}
.subnavCategories li li li.collapsed{background:#fff url(images/collapsed.gif) no-repeat 5px .4em;} 
.subnavCategories li li li.expanded{background:#fff url(images/expanded.gif) no-repeat 5px .4em;}
.subnavCategories li li li.empty{background:#fff url() norepeat 5px .4em;}

/* fourth level */

.subnavCategories li li li li{text-indent:0;margin-left:30px;width:auto;}

/* etc. */

/* buttons */

p.subnavCategories{
	height:1.5em;
	margin:1em 0;
	padding-left: 16px;
}
p.subnavCategories a{
	float:left;
	height:1.5em;
	line-height:1.5em;
	padding:0 10px;
	border:1px solid #eee;
	margin-right:5px;
	cursor:pointer;
}
p.subnavCategories a:hover{
	background:#f8f8f8;
}

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