/*
 * applies to everything
*/

ul.sitemap *{
		list-style-type:	none;
		}

/*
 * top level 
*/

ul.sitemap{
		margin:			0;
		padding:		0;
		}
ul.sitemap li {
		margin:			0 0 8px 0;
		padding:		0;
		}

/*
 * sub level 1
*/

ul.sitemap ul{
		padding-left:	0px;
		margin:			8px 0 8px 0;
		}
ul.sitemap ul li{
		}

/*
 * sub level 2
*/

ul.sitemap ul ul{
		padding-left:	30px;
		margin:			0 0 4px 0;
		}
ul.sitemap ul ul li{
		}

/*
 * upper level links - just page icons
*/

.sitemap a:link {
		padding-left:		30px;
		background-image:	url('../pics/layout/page1.gif');
		background-repeat:	no-repeat;
		text-decoration:	none;
		}
.sitemap a:visited {
		padding-left:		30px;
		background-image:	url('../pics/layout/page3.gif');
		background-repeat:	no-repeat;
		text-decoration:	none;
		}
.sitemap a:hover {
		padding-left:		30px;
		background-image:	url('../pics/layout/page2.gif');
		background-repeat:	no-repeat;
		text-decoration:	underline;
		}
.Sitemap a:active {
		padding-left:		30px;
		background-image:	url('../pics/layout/page1.gif');
		background-repeat:	no-repeat;
		text-decoration:	none;
		}
/*
 * lower level links with dotted sub-paths
*/

.sitemap ul a:link {
		padding-left:		60px;
		background-image:	url('../pics/layout/page1a.gif');
		background-repeat:	no-repeat;
		text-decoration:	none;
		}
.sitemap ul a:visited {
		padding-left:		60px;
		background-image:	url('../pics/layout/page3a.gif');
		background-repeat:	no-repeat;
		text-decoration:	none;
		}
.sitemap ul a:hover {
		padding-left:		60px;
		background-image:	url('../pics/layout/page2a.gif');
		background-repeat:	no-repeat;
		text-decoration:	underline;
		}
.Sitemap ul a:active {
		padding-left:		60px;
		background-image:	url('../pics/layout/page1a.gif');
		background-repeat:	no-repeat;
		text-decoration:	none;
		}

