@charset "UTF-8";
body {
	font: 13px/1.2 Georgia, Georgia, "Times New Roman", Times, serif;
	background: #FFF;
	margin-top: 60px;
	padding: 0;
	color: #000;
}

ul, ol, dl {
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding-right: 15px;
	padding-left: 15px;
	text-align: center;
}

h1 {
	font: 36px Helvetica, Arial, sans-serif;
	font-weight: bold;
}

.center {
	width: 400px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}

a img {
	border: none;
}

a:link {
	color: #FC0;
	text-decoration: none;
}
a:visited {
	color: #FC0;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	color: #CF6;
	text-decoration: none;
}

.container {
	width: 600px;
	background: #FFF;
	margin: 0 auto;
}

.header {
	background: #FFF;
}

.content {
	padding: 30px 0;
}

.footer {
	padding: 10px 0;
	background: #FFF;
}

.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}