@charset "utf-8";
/* CSS Document */

/* 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-weight: normal;
	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;
}

*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

/*typography*/

/*measurements: defaults for an html page: 1em = 12pt = 16px = 100%*/

body {
	
	background-image: linear-gradient(#56644A, #FFFFCC);
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
	color: #56644A;
	
	}

h1, h2 {
	font-weight: bold;
	margin: 5px 0;
}

p {
	font-size: 1em;
	margin: 12px 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 1.2em;
	color: #666666;
}

ul {
	padding-left: 10px;
	margin: 10px 0;
	list-style-type: disc;
}

li {
	margin-left: 10px;
	padding-left: 10px;
}

/*borders and white space*/

header, article, aside, footer {
	/*border: 1px solid #56644A;*/
	padding: 10px 1em; 
	margin: 0 5% 10px;
	background-color: white;
}

header {
	margin-top: 10px;
}

header p {
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	text-align: center;
	color: #FFFFCC;	
}

aside p {
	font-style: italic;
	font-family: "Times New Roman", Times, serif;
	color: #56644A;
	text-align: center;
	
}

aside img {
	display: block;
    margin-left: auto;
    margin-right: auto
}

article li {
	font-size: 1em;
	margin: 6px 5em 0 5em;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 1.2em;
	color: #666666;
}

article h3 {
	font-size: 1.1em;
	font-style: italic;
	font-weight: bold;
	color: #56644A;
	margin: 12px 0 0 0;
}




/*Columns*/


@media only screen and (min-width: 36em) {
	
	article {
		width: 67%; 
		Float: left;
		margin-right: 0;
	}
	aside {
		width: 21%;
		float: right;
		margin-left: 0;
	}
	footer {
		clear: both;
}

}

/*This ruleset sets a maximum width of 63em*/

#fullpage {
	max-width: 63em;
	margin: auto;
}

/*The ruleset below styles images only in the article tag*/

article img {
	float: right;
	padding-left: 3%; 
	padding-bottom: 10px;
	width: 50%; 
}

/*When images gets too small, we make i the size of the element width, no longer 50%*/

@media only screen and (max-width: 28em) {
	article img {
		width: auto;
		float: none;
		padding-left: 0;
	}
	
		aside img {
		width: 75%;
		float: none;
		padding-left: 0;
	}

}

img {
	max-width: 100%;
}

/*Add image background to the header element*/

header {
	/*background-image: url(Quill.jpg);
	background-position: center top;*/
	background-color: #56644A; 
	}

header h1 {	
	
	font-family: "Baskerville Old Face";
	font-size: 2.25em;
	text-align: center;	
	color: #FFFFCC;
}

/*navigation*/

nav ul {
	list-style-type: none;
	padding: 0;
	margin: 25px 0 0;
}

nav li {
	
	background-color: #56644A;
	padding: 10px 1em;
	margin: 3px 0 0;
	text-align: center;
}

nav li a {
	text-decoration: none;
	font-size: 1.2em;
	color: #FFFFCC;
	  
}

nav .current{
	color: orange;
	font-weight: bold;
}

/*media query to adjust nav section to display links horizontally*/

@media only screen and (min-width: 53em) {
	nav li {
		display: block;
		float: left;
		width: 20%;
	}
	nav {
		padding-bottom: 3em;
	}
}



































