﻿/* CSS layout */
body {
	margin-top: 30px;
	font-family: Tahoma;
	color: white;
	background-color: black;
}

h1 {
	font-size: x-large;
	font-weight: bold;
	color: aqua;
}

h2 {
	font-size: large;
	font-weight: bold;
	color: aqua;
}

h3 {
	font-size: medium;
	font-weight: bold;
	color: aqua;
}

#header {
	margin-left: 30px;
	border-width: 0;
}

#navigation {
	font-size: xx-large;
	text-align: center;
}

#container {
	max-width: 1002px;
	margin: 30px;
}

#page_content {
	position: relative;
	max-width: 600px;
	float:left;
}

#right_column {
 	height: 500px; 
 	width: 291px;
	position: relative;
	background: blue;
	float: right;
	color: aqua;
}

#footer {
	margin-top: 300px;
	position: absolute;
	text-align: center;
	color: aqua;
	font-weight: bold;
}

