/*  
Description: Beyer's Flyers Stylesheet	
Author:Kyle Rose
*/

/* General Styling */

body {
	background-color:#5BB6E5;
	font-family:"Trebuchet MS" Arial, Helvetica, sans-serif;
	font-size:62.5%; /* around 10px */
	color:#222222;
	}

* {               
	margin:0;
	padding:0;
	}/* To start with the same margins on any browser */



p {
	margin-bottom:1.75em;
	margin-top: 1.75em;
	}

a {
	text-decoration:none; /*takes out the underline */
	color:#B4C835;
	}
a:hover {
	text-decoration:underline; /*only shows underline when hovered over */
	color:#6CC7DC;
	}
.smallblue {
	font-size: 1.5em;
	font-weight: bold;
	color: #5BB6E5;
	}	

/* Structure */

#container {
	margin:0 auto;
	width:800px;
	background:#ffffff;
	font-size:1.20em;

	}
#header {/* just contains my header graphic*/
	height:160px;
	background:url(images/header.jpg) no-repeat;
	}
#menu { 
	height:35px;
	line-height:35px;
	background-color:#000;
	padding:0 20px;
	}

	
#content {
	float:left;
	width:780px;
	min-height:400px;
	padding-right: 10px;
	padding-left: 10px;
	}
#footer {
	clear:both;
	height:60px;
	background:url(images/footer.jpg) no-repeat;
	margin-top: -5px;
	}
	
.stats { /* this is the stats box floated to the right of the page */
	border:5px solid #5BB6E5;
	float:right;
	width:200px;
	max-height:400px;
	padding-left: 5px; 
	margin-top: -15px;
	}



/* Menu */

#menu ul {
	list-style-type:none;
	}
#menu li {
	float:left;
	}
#menu li a {
	padding:0 15px;
	padding-left:100px;
	display:block;
	color:#ffffff;
	margin-right:4px;
	}
#menu li a:hover {
	font-weight: normal;
	}



/* Footer */

#footer-valid {
	float:left;
	padding-top:2px;
	padding-left:20px;
	color:#ffffff;
	}

.footertxt {font-size: 14px}

	


/* Headers */

h1 {
	font-size:3em;
	font-weight:bold;
	letter-spacing:-2px;
	color:#5BB6E5;
	font-style:normal;
	}
