@charset "UTF-8";
/* CSS Document */

/* RESET */
* {
	margin: 0;
	padding: 0;
}

/* HTML5 tags */
header, section, footer, aside, nav, article, figure {
	    display: block;
}

/* GENERAL BASE CSS */
body {
	background: #aaa;
}

/* TYPOGRAPHY */

/*
=================================================
	Reference for Basic text sizing
=================================================
	62.5%  => .625em  => 10px
	68.8%  => .688em  => 11px
	75%    => .75em   => 12px
	81.3%  => .813em  => 13px
	87.5%  => .875em  => 14px
	100%   => 1em     => 16px
	112.5% => 1.125em => 18px
	125%   => 1.25em  => 20px
=================================================

*/
body {
	font-family: Helvetica, Arial, sans-serif;
	font-size: .875em; /* 14px */
	line-height: 1.5em;
}

/*
=================================================
	Proportions based on typographic scale
	18, 20, 36
=================================================

	h1 = 36 pixels â 36 Ã· 14 = 2.57142857142857 em = 2.6em (rounded)
	h2 = 20 pixels â 20 Ã· 14 = 1.42857142857143 em = 1.5em (rounded)
	h3 = 18 pixels â 18 Ã· 14 = 1.28571428571429 em = 1.3em (rounded)
	p  = 14 pixels â 14 Ã· 14 = 1 em
*/

h1, h2, h3 {
    margin-bottom: .75em;
}

h1 {
	font-family: "Arial Black", Helvetica, Arial, sans-serif;
	font-size: 2.6em;
	line-height: 1.1em;
}

h2 {
	margin-top: 1em;
	padding: 1em;
	font-size: 1.5em;
	line-height: 1.2em;
}

h3 {
	margin-left: 2.5em;
	font-size: 1.5em;
	line-height: 1.35em;
}

p {
    margin-bottom: .75em;
}

a {
	text-decoration: none;
}

#container {
	background: #fff;
	width: 960px;
	margin: 0 auto;
	padding: 30px;
}

header {
	background: #FCF;
	height: 154px;
	padding: 30px;
	/* border-top: 1px solid #3279a1;*/
}

header p {
	font-size: 1em;
	color: #F0C;
}

.navbox {
	
	width: 960px;
	margin: 0 auto;
}

ul li {
	list-style: none;
	text-indent: 7%;
}

ul li a:hover {
	color:#FCC;
}

nav#mainnav {
	background: #aaa;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: 115%;
	text-transform:uppercase;
}

nav#mainnav ul {
	list-style: none;
	margin: 0;
}

nav#mainnav ul li {
	float: left;
}

nav#mainnav ul li a {
	color: #fff;
	text-decoration: none;
	padding: 14px 20px 15px 20px;
	display: block;
}

nav#mainnav ul li a:hover {
	color: #000;
	background: #aaa;
}

/* Clear fix */
.group:before, .group:after {
    content: "";
    display: table;
} 
.group:after {
    clear: both;
}
.group {
    zoom: 1; /* ??? For IE 6/7 (trigger hasLayout) */
}


/* @font-face : .eot is for IE9 , svg (scalable vector graphics) */

@font-face {
    font-family: 'ChunkFiveRegular';
    src: url('../fonts/Chunkfive-webfont.eot');
    src: url('../fonts/Chunkfive-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Chunkfive-webfont.woff') format('woff'),
         url('../fonts/Chunkfive-webfont.ttf') format('truetype'),
         url('../fonts/Chunkfive-webfont.svg#ChunkFiveRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}