/* 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 {
	display		: block;
	list-style	: none;
	margin		: 0;
	padding		: 0;
	color:	#9900FF;
	text-decoration:none;
}

/* First Level */
.sitemap ul li {
	margin		: 0;
	padding		: 0;
	white-space	: nowrap;
	background	: transparent;
}

.sitemap a img {
	border		: none;
}

/* senond level */
.sitemap ul.level_0 ul {
	list-style	: inside square;
	padding		: 0;
	font-size	:95%;
	font-weight:normal;
	color:	#9900FF;
	text-decoration:none;
}

.sitemap ul.level_1 li {
	padding		: 0 0 0 2em;
	white-space	: nowrap;
	color:	#9900FF;
	font-size:95%;
	text-decoration:none;
}

.sitemap ul.level_1 ul {
	list-style	: inside square;
	padding		: 0;
	text-decoration:none;
}
.sitemap ul.level_2 li {
	padding		: 0 0 0 2em;
	white-space	: nowrap;
	text-decoration:none;
}
.sitemap .active {
	font-style	: italic;
}