/* list-style: pos1 pos2 po3;
 *    parameter:
 *               pos1: none | disc | circle | square
 *               pos2: inside | outside
 *               pos3: none | url('arrow.gif')
 * more info under: http://www.w3schools.com/css/css_list.asp
 */

.sitemap ul {
	
    margin		    : 0;
	list-style		: none;
	margin			: 0;
	padding-left	: 0;
}
.sitemap ul li {
	margin			: 0;
    padding-left	: 20px;
	white-space		: nowrap;
	background		: transparent;
}
.sitemap a img {
	border			: none;
}	
.sitemap ul.level_0 ul {
	list-style		: inside square;
	padding			: 0;
}
.sitemap ul.level_1 li {
	padding-left	: 20px;
	white-space		: nowrap;
}
.sitemap .active {
	font-style		: normal;
}
