/* wrapper to align center of homepage */
#wrapper {
/*aligns the page to the center horizontal (x)
margin-left:auto;
margin-right:auto; */
position: absolute;
/*we need to tell the browser the size of the wrapper div*/
width:1048px;
/*aligns the age to the center vertical (y)*/
left: 50%;
/*resets the offset (should be half the width and height*/
margin-left:-524px;
/*allows us to see wrapper for testing
background-color:red;*/
}
/* wrapper to align center of article page */
#wrap-article {
/*aligns the page to the center horizontal (x)
margin-left:auto;
margin-right:auto; */
position: absolute;
/*we need to tell the browser the size of the wrapper div*/
width:800px;
/*aligns the age to the center vertical (y)*/
left: 50%;
/*resets the offset (should be half the width and height*/
margin-left:-400px;
/*allows us to see wrapper for testing
background-color:red;*/
}
A:link {
	COLOR: #3366cc; TEXT-DECORATION: none
}
A:visited {
	COLOR: #3366cc; TEXT-DECORATION: none
}
A:hover {
	COLOR: #ff6633
}
a:active {
	color: #0000FF
}
P.article {
	FONT-SIZE: 13px; COLOR: #000000; FONT-FAMILY: palatino linotype; palatino; Georgia, Courier New; MS Serif; letter-spacing: 0.1em;
}
P.poem-title {
	FONT-SIZE: 18px; COLOR: #000000; FONT-FAMILY: palatino linotype; palatino; Georgia, Courier New; MS Serif; letter-spacing: 0.1em;
}
span.articletitle {
	font-size: 26pt; color: #555555; font-family: Times New Roman; 
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

img {
    padding: 0;
    display: block;
    margin: 0 auto;
    max-height: 70%;
    max-width: 70%;
}
