/*
	 Sitemap Example
	 by Chris Coyier
	 http://css-tricks.com
*/
* {
	margin: 0;
	padding: 0;
}
body {
	font: 14px Georgia, serif;
	background-image: url('images/bg2.jpg');
}
#page-wrap {
	width: 800px;
	margin: 0 auto;
	background: url(images/content-bg2.jpg) no-repeat;
}
#page-wrap div {
	width: 500px;
	margin: 0 auto;
	padding: 100px 0 0 0;
}
a {
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	padding: 4px 0;
}
a:hover {
	text-decoration: underline;
}
ul {
	padding: 8px 25px;
	list-style: none;
	-webkit-box-shadow: 2px 2px 5px black;
	background: #330066;
}
ul ul {
	background: #663399;
}
ul ul ul {
	background: #9933cc;
}
ul ul ul ul {
	background: #9966cc;
}
.bullet-square {
	list-style-type: square;
}
.bullet-round {
	list-style-type: circle;
	color: #333333;
}
.bullet-numbered {
	list-style-type: decimal;
}
