/**
 * Pretty Semantic Simple CSS Framework
 * @url http://kristinbradley.com/
 * @author Kristin Bradley
 * @version: 1.0
 */

body
{
	margin: 0;
	padding: 0;
	/*background: url(../images/logo-bg.png) top center no-repeat;*/
	background: #ffffff;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	background-size:cover;
}
.guts {
	margin: 0 auto;
	width: 980px;
	opacity: .9;
	text-align: center;
}
.guts .header {
	/*background: #000000;*/
	color: #333333;
	padding: 6px 20px;
	font-family: "Georgia", Times, serif;
	font-size: 5em;
	display: inline-block;
	margin-bottom: 2px;
}
.guts .sub {
	color: #333333;
	padding: 6px 20px;
	font-family: "Georgia", Times, serif;
	font-size: 3em;
	display: inline-block;
	margin-bottom: 2px;
}
.guts .sub a {
	color: #bf1e2e;
}
.guts .sub a:hover {
	color: #333333;
}



/* iPads (portrait and landscape) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) {
	.guts {
		width: 80%;
	}
}		
@media only screen and (max-width : 767px) {
	.guts {
		width: 95%;
	}
}	




