/*
	List Expander 
*/

.listagem{width:100%;}
.listagem, .listagem ul, .listagem li{
	margin:0;
	padding:0;
	list-style:none;
}
.listagem 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;
	*/ 
}

a{
	text-decoration:none;
	color:#057fac;
	font-size:12px;
	font-family:"tahoma";
}
a:hover{
	text-decoration:none;
	color:#999;
}
.listagem li{
	line-height:200%;
	margin-top:1px;
	font-family:"tahoma";
	font-size:11px;
	cursor:default;
	text-indent:0px;
	font-weight:bold;
	width:100%;
}

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

/* first level */

.listagem li, .listagem li.collapsed{background:#eee url(mais.gif) no-repeat 5px .4em;} 
.listagem li.expanded{background:#eee url(menos.gif) no-repeat 5px .4em;}

/* second level */

.listagem li ul, .listagem li li{background:#fff;font-weight:normal;}
.listagem li li.collapsed{background:#fff url(mais.gif) no-repeat 5px .4em;} 
.listagem li li.expanded{background:#fff url(menos.gif) no-repeat 5px .4em;}

/* third level */

.listagem li li ul, .listagem li li li{background:#fff;}
.listagem li li li.collapsed{background:#fff url(mais.gif) no-repeat 5px .4em;} 
.listagem li li li.expanded{background:#fff url(menos.gif) no-repeat 5px .4em;}

/* fourth level */

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

/* etc. */

/* buttons */

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

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