
/* color scheme: FFF = white, 036=Navy Blue, C0C0C0 = gray */
/* NAU colors: 036 = NAU Blue, 557565 = NAU Sage */
/* color scheme: 666 = dark gray, 036=Navy Blue, CCC = gray */

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #666;
	margin: 0;
	padding: 0;
	color: #666;
}

/* ~~ Element/tag selectors ~~ */

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}


a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}


/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #036;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
	color: #557565;
	text-decoration: underline;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

ul, ol, li {
	margin-left:20;
	padding-left:20;
}

/* ~~ this fixed width container surrounds all other elements ~~ */
#container {
	width: 950px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}


#content {

	margin:auto;
	padding: 10px 0;
}

#footer {
	width: 950px;
	background: #036;
	color:#fff;
	text-align:center;
	
}
