@charset "utf-8";
body {
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;
}
#container {
	width: 70em;
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: center;
}
a {
	font-family: arial, verdana, helvetica, sans-serif;
	font-size:16px;
	background-color: #FFFFFF;
	text-decoration: none;
	color: #cc0000;
	font-weight: bold;
}

a:hover {
	color:#cc0000;
	background-color:#FFFFFF;
	text-decoration:underline;
}
#container #mainContent .enter {
	width: 1000px;
	text-align: right;
}

