/* 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 ERIC MEYER RESET*/




/*remove all decoration from links*/

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

/*END removal of decoration from links*/













/*BEGIN PAGE STYLING*/
/*NOTE: use codebeauty.org before final submission*/


/*borders around all elements for workflow only. comment out before final release*/

/* {
	border: 1px solid white;
}*/


body {
	background-color: rgba(166, 95, 33, 1.0);
	min-width: 900px;
	max-width: 1800px;
	}


a {
	color: rgba(211, 199, 151, 1.0);
}

a:hover, a:visited {
	color: gold;
}


h1 {
	font-size: 3.0em;
}


h3 {
	font-size: 1.5em;
	color: rgba(251, 229, 151, 1.0);
}


#wrapper {
	background: rgba(64, 24, 1, 1.0) url("img/bb-background.png") local no-repeat; 
	width: 90%;
	margin: 0 auto;
}


header {
	background-color: rgba(166, 95, 33, 1.0);
	color: rgba(237, 187, 80, 1.0);
	padding-top: 40px;
	text-align: center;
}


header span {
	font-size: 0.6em;
}


#poem {
	color: rgba(211, 199, 151, 1.0);
	position: relative;
	width: 100%;
}


.stanza {
	display: none;
	font-size: 1.3em;
	color: rgba(64, 24, 1, 1.0);
	width:	50%;
	margin: 0 50%;
}


.number {
	display: block;
	width: 20%;
	margin: 0 50%;
	color: rgba(64, 24, 1, 1.0);
}


.number a {
	color: rgba(64, 24, 1, 1.0);
	text-align: center;
}

.number:hover + .stanza {
	display: block;
}


aside {
	display: block;
	color: rgba(237, 187, 80, 1.0);
	margin-top: 400px;
}


aside p, ul {
	margin: 0 auto;
	width:	50%;
	background-color: rgba(89, 49, 14, 1.0);
	padding: 1% 20%;
}


aside h2 {
	background-color: rgba(237, 187, 80, 1.0);
	color: rgba(64, 24, 1, 1.0);
	width: 200px;
	padding: 1% 0%;
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
} 


figure img {
	display: block;
	position: absolute;
}


footer {
	color: rgba(237, 187, 80, 1.0);
	padding: 1%;
	margin-top: 30px;
}


