/* 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
 */
<html>

<head>
<style type="text/css">
h1 {color: #0033ff}  /*#00ff00*/
h2 {color: #0033ff}
p {color: #0033ff)}
</style>
</head>

<body>
<h1>This is header 1</h1>
<h2>This is header 2</h2>
<p>This is a paragraph</p>
</body>

</html>


.sitemap ul {
	display		: block;
	list-style	: none;
	margin		: 0;
	padding		: 0;
        color: #0033ff;

}
.sitemap ul li {
	margin		: 0;
	padding		: 0;
	white-space	: nowrap;
        background	: transparent;
	
        color: #0033ff;

}
.sitemap a img {
	border		: none;
color: #0033ff;
        
}
.sitemap ul.level_0 ul {
          
	list-style	: inside square;
           padding		: 0;
color: #0033ff;

          }
.sitemap ul.level_1 li {
	padding		: 0 0 0 2em;
	white-space	: nowrap;
          color            : #0033FF
color: #0033ff;
		 		  

}
.sitemap .active {
	font-style	: verdana;
          color            : #0033ff;
}
