/*
	List Expander - Collapsible Columns Version 
*/

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

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

/* first level */

.col_cats li.collapsed{background: url(collapsed.gif) no-repeat 5px .4em;} 
.col_cats li, .col_cats li.expanded{background: url(expanded.gif) no-repeat 5px .4em;}

/* second level */

.col_cats li ul, .col_cats li li{padding-left:8px;font-weight:normal;}
.col_cats li li.cat-item {list-style-type:none;}
.col_cats li li.collapsed{background: url(collapsed.gif) no-repeat 5px .4em;} 
.col_cats li li, .col_cats li li.expanded{background: url(expanded.gif) no-repeat 5px .4em;}

/* third level */

.col_cats li li ul, .col_cats li li li{padding-left:8px;}
.col_cats li li li.collapsed{background: url(collapsed.gif) no-repeat 5px .4em;} 
.col_cats li li li, .col_cats li li li.expanded{background: url(expanded.gif) no-repeat 5px .4em;}

/* fourth level */

.col_cats li li li li{padding-left:35px;text-indent:0;/*margin-left:30px;*/width:auto;background: url(expanded.gif) no-repeat 5px .4em}

/* etc. */

/* buttons */

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

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