/* CSS Document */

body {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 15px;
	margin: 0px;
	background: #FEF898 url(background.jpg) no-repeat;
}

#navigation {
	position: absolute;
	top: 150px;
	left: 20px;
	background-color: #ffff00;
	padding: 4px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}

#navigation a {
	color: #FF0000;
	text-decoration: none;
	padding: 4px;
	margin-right: 10px;
}

#navigation a:hover {
	color: #000000;
	background-color: #FF0000;
	text-decoration: none;
}

#content {
	position: absolute;
	width: 850px;
	top:  180px;
	left: 25px;
}

#content a {
	text-decoration: none;
	color: #FF0000;
	padding: 1px;
}

#content a:hover {
	color: #FFFF00;
	background-color: #FF0000;
}

h1 {
	font-size: 25px;
	color: #FF0000;
	font-style: italic;
	border-bottom: solid 1px #FF0000;
}

h2 {
	font-size: 20px;
	color: #000000;
	font-style: italic;
}

.rightline {
	border-right: solid 1px #FF0000;
}

.bottomline {
	border-bottom: solid 1px #FF0000;
}

#footer {
	margin-top: 150px;
	border-top: solid 1px #FF0000;
	padding: 20px 0px 20px 0px;
	font-size: 12px;
}




