/* 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-left       : 20px;
	padding		: 0;
         color              : #666666;
         font-size          : 14px;
}
.sitemap ul li {
	margin		: 0;
	padding		: 8px 0px 0px 0px;
	white-space	: nowrap;
	background	: transparent;
         font-size          : 12px;
}
.sitemap ul li a{
         color:#000000;
	margin		: 0;
	padding		: 0px;
	white-space	: nowrap;
	background	: transparent;
         text-decoration   : none;
         list-style        : square;
         font-size          : 12px;

}
.sitemap ul li a:hover{
         color:#ff9905;
	margin		: 0;
	padding		: 0px;
	white-space	: nowrap;
	background	: transparent;
         text-decoration   : underline;
         list-style        : square
}


.sitemap a img {
	border		: none;
}
.sitemap ul.level_0 ul {
	list-style	: inside square;
	padding		: 0;
         font-weight       : bold;
         color             : #666666;
         margin-left        : 10px;
}
.sitemap ul.level_1 li {
	padding		: 8px 0 0 2em;
	white-space	: nowrap;
}
.sitemap .active {
	font-style	: italic;
}