/*
* Blue Wrapper 
* A style sheet for the CCC in Moore website
* Design by Thomas Hoyt, July 2010
*/

/* 
* basic elements
*/

html {
	margin: 0;
	padding: 0;
	}

body {
	text-align: center;
	background: #bfe2f9;
	}


/*
* divs
*/

	/* wrapper */

#wrapper {
	width: 780px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px solid black;
	padding: 5px;
	text-align: left;
	background: white;
	}

	/* header */

#header {
	width: 740px;
	margin: 15px 15px 5px 15px; /* top right bottom left */
	padding: 5px 5px 5px 5px; /* top right bottom left */
	background: #fffbc6;
	}
#header h1 {
	text-align: right;
	vertical-align: bottom;
	margin-bottom: -15px;
	}
#header p {
	text-align: right;
	vertical-align: bottom;
	}
#header a {
	text-decoration: none;
	color: black;
	}

	/* nav */

#nav {
	width: 200px;
	margin: 15px 20px 15px 20px; /* top right bottom left */
	padding: 5px 5px 10px 5px;
	background: #fffbc6;
	float: left;
	}
#nav a {
	display: block;
	margin: 3px 3px 3px 20px; /* top right bottom left */
	color: #2d73b9;
	font-size: 120%;
	text-align: left;
	}
#nav table {
	text-align: center;
	font-size: 90%;
	}
#nav h2 {
	text-align: center;
	}
#nav p {
	text-align: center;
	}

	/* container */

#container {
	margin: 20px 20px 0 250px;
	}
#container p {
	text-align: left;
	/* I have no idea why I have to do this, but if I put this just */
	/* under #container it aligns right. */
	}
#container img {
	padding-right: 15px;
	float: left;
	}

	/* footer */

#footer {
	width: 740px;
	clear: both;
	margin: 15px;
	padding: 5px;
	background: #bfe2f9;
	}
#footer p {
	text-align: center; /* ditto #container p comment */
	font-size: 80%;
	}
