* {
	margin: 0;
	padding: 0;
}

body {
	background-color: #000;
}

#container {
	position: absolute;
	width: 550px;
	left: 50%;
	margin-left: -275px;
	top: 20%;
}

	p.copyright {
		color: #222;
		margin-top: 15px;
		font-size: 9px;
		font-family: "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif;
	}

#main {
	margin-top: 20px;
	padding: 40px;
	padding-bottom: 15px;
	background-color: #fff;
}

	#main * {
		font-size: 11px;
		font-family: "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif;
		line-height: 140%;
		color: #666;
	}

	#main p {
		margin-bottom: 10px;
	}
	
	#main a {
		color: #009ac0;
		text-decoration: none;
	}
	
		#main a:hover {
			text-decoration: underline;
		}
		
	#main table {
		margin: 10px auto;
		width: 80%;
		border-bottom: 2px solid #fff;
		padding: 0;
	}
	
		#main table,
		#main table * {
			border-collapse: collapse;
		}
		
		#main table th,
		#main table td {
			padding: 7px 0;
			vertical-align: bottom;
			text-align: left;
			width: 50%;
		}
			
		#main table th {
			font-weight: bold;
			border-bottom: 1px dotted #ccc;
		}
			
		#main table td {
			padding-left: 30px;
			text-transform: uppercase;
			font-size: 9px;
			border-bottom: 1px dotted #ccc;
			text-align: right;
		}
		
			#main table td a {
				font-size: 9px;
				text-transform: none;
				display: block;
			}
