/**
 * This file defined the CSS-styles for the Joomap sitemap tree.
 * More info at: http://www.w3schools.com/css/css_list.asp
 */

.sitemap ul {
	display		: block;
	list-style	: none;
	margin		: 0;
	padding		: 0;
}

.sitemap ul li {
	margin		: 0;
	padding		: 6px 0;
	white-space	: nowrap;
	background	: transparent;
}

.sitemap a img {
	border		: none;
}
.sitemap ul.level_0 ul {
	list-style	: none;
	padding		: 5px 0 0 0;
}

.sitemap ul.level_0 li {
	font-weight: bold;
}

.sitemap ul.level_1 li {
	padding		: 5px 0 5px 10px;
	white-space	: nowrap;
	text-transform: normal;
	font-weight: normal;
}
	
.sitemap a:link, .sitemap a:visited {
	color: #515151;
}

.sitemap a:hover, .sitemap a:active {
	color: #9d0e22;
}
	
.sitemap li.active a {
	font-style	: italic;
}

