* {
	margin: 0;
	padding: 0;
}

body {
	background-color: white;
	font-family: Arial, Tahoma, sans-serif;
	color: black;
	text-align: center;
}

a:visited {
	color: blue;
}

a:hover {
	text-decoration: none;
}

#ContainerCell {
	width: 800px;
	margin: 0 auto;
	text-align: center;
}

#Header {
	margin: 15px 0;
	width: 800px;
	height: 70px;
	text-align: center;
	border: 2px dashed #660000;
	background-color: #FFFFCC;
}

#Header h1 {
	margin-top: 15px;
}

#NavBar {
	margin: 0 auto;
	margin-bottom: 15px;

	/*position: relative;
	top: -35px;*/

	width: 800px;
	height: 40px;
	border: 1px solid #660000;
	clear: both;
}

#NavBar li {
	display: inline;
	margin-right: 15px;

	position: relative;
	top: 10px;
}

#NavBar a {
	padding: 10px;

}

#NavBar a:hover {
	padding-bottom: 11px;
	background-color: #FFFFCC;
}

#Content {
	margin-bottom: 15px;

	/*position: relative;
	top: -35px;*/

	width: 770px;
	height: auto;
	border: 1px solid #660000;

	padding: 15px;
	border-radius : 20px; 
	-moz-border-radius : 20px; /* Mozilla */
	-webkit-border-radius : 20px; /* Webkit */

	text-align: left;
}

#Content h2 {
	margin: 10px 0;
}

#ContentAds {
}

#ContentLinks {
	float: right;
	padding: 15px;
	margin: 5px;
	border: 1px dotted black;
}

#ContentLinks ul {
}

#ContentLinks li {
	list-style-type: none;
	margin-bottom: 10px;
}

#Content p {
	margin: 15px 0;
}

#Copyright {
	font-size: small;
	margin-bottom: 15px;
}

