/* start with the reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* *************************  end the reset ************************* */

/*The design is based off of a 1200px mock-up*/

body {
   background-color: #969dbf; 
    width: 100%; /* 1200px */
    margin: auto;
    
}


.banner {
    width: 91.6667%; /* 1100px */
    background-color: #212e6d;
    font-size: 40px;
    font-family: 'Sans', sans-serif;
    color: #f0dcb7;
    text-align:center;
    padding:40px;
    margin-top: 5px;
    margin-right: .6666%;
    margin-left: .6666%;
    text-shadow: #22201d 5px 5px 7px;
    box-shadow: #0e142d 5px 5px 7px;
}

.nav {
    width: 91.6667%; /* 1100px 91.6667% */
    font-family: 'Sans', sans-serif;
    font-size: 15px; /* 15px */
    line-height:10px;
    margin-top: 8px;
    margin-right: 3.33333%;
    margin-left: 3.33333%;  
    background-color: #39478d;
    height:15%; /* 66px */
    float:left;
    padding:12px; 
    margin-bottom: 3px;
}

.nav ul {
    list-style-type: none;
    width: 83%; /*   */  
    margin: 8px;
    margin-right: 8.11111%;
    margin-left: 8.11111%;
    overflow: hidden;
    background-color:#54609a;
    border-radius:5px;
    border-color: #32395c;
    text-shadow: #747271 3px 3px 5px;
    box-shadow: #32395c 4px 4px 7px;
}

.nav li {
    float: left;
    display: inline;
    overflow: hidden;
}

.nav li a {
    display: block;
    color: white;
    margin: 15px;
    padding-left: 2px;
    text-decoration: none;
}

.nav a:hover:not(.active) {
    background-color: #374898;
    padding: 10px;
    border-radius:5px;
    box-shadow: #2a356b 4px 4px 7px;
    text-shadow: #747271 3px 3px 5px;
}

.section {
    width: 62.5%; /* 1200px */
    background-color: #969dbf;
    color: #18120f;
    margin-left: 18.75%;
    margin-right: 18.75%;
    margin-top: 18px;
    margin-bottom: 10px;
    float:left;
}

.section h1 {
    font-size: 30px;
    
}

.hold {
    width: 300px; 
    height: 180px; 
    overflow: hidden;
    box-shadow: #717c70 4px 4px 7px;
}

.hold img {    
    width: 120%;
}

.footer {
    width: 91.6667%; /* 1100px */
    background-color:#212e6d; 
    margin-top: 8px;
    margin-right: 4.166%;
    margin-left: 4.166%;
    font-size: 12px;
    color: #fff5e3;
    clear:both;
    text-align:center;
    padding:5px; 
}