body {
	font-family: verdana,arial,helvetica,sansserif,sans-serif;
	font-size: 0.7em;
	/* background-color: #202020; */
	background-color: #404040;
	color: #505050;
	padding: 0;
	text-align: center;
}

a {
	color: orange;
}

/*
http://www.codegobbler.com/vertically-and-horizontally-center-div-using-css
*/
div.letterbox {
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	height: 1px;
	overflow: visible;
}

div.wrapper {
	width: 640px;
	height: 480px;
	margin-left: -320px;
	position: absolute;
	top: -180px;
	left: 50%;
	padding: 0;
}

div.header {
	border: 1px solid #101010;
	background-color: #103030;
	color:#d08000;
	padding: 10px 20px;
	text-align: left;
}

div.content {
	border: 1px solid #101010;
	border-top: none;
	border-bottom: none;
	background-color: #f0f0f0;
	padding: 10px 40px;
	text-align: left;
}

div.footer {
	border: 1px solid #101010;
	background-color: #102040;
	color: #b0b0b0;
	padding: 10px 20px;
	text-align: left;
}


