/* the reset selector */
* {
	margin: 0;
	padding: 0;
}

/* the styles for the elements */
html {
	background-color: white;
}
body {
	font-family: Arial, Helvetica, sans-serif;
    	font-size: 100%;
	width: 600px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-style: solid;
	border-color: #931420;
	border-width: 3px;
	background-color: #fffded;
}

/* the styles for the header */
header {
	background-image: -webkit-linear-gradient(30deg, #f6bb73 0%, #f6bb73 30%, white 50%, #f6bb73 80%, #f6bb73 100%);	
}
header {
	border-bottom-style: solid;
	border-color: #931420;
	border-bottom-width: 3px;
	padding-top: 1.5em;
	padding-bottom: 2em;
}
header img {
	float: left;
	padding-right: 30px;
	padding-left: 30px;
}
header h2 {
	font-size: 170%;
	color:#800000;
}
header h3 {
	font-size: 130%;
	font-style: italic;
}
em {
	color: #800000;
	text-shadow: 2px 2px;
}
a:focus { font-style: italic; }
a:hover { font-style: italic; }


/* the styles for the section */
main {
	clear: left;
	padding-right: 30px;
	padding-left: 30px;
}
main h1 {
	font-size: 150%;
	border-radius: 15px;
	border-style: double;
	border-top: 3px double #931420;
	border-bottom: 3px double #931420;
	box-shadow: 5px 5px 0 0;
}
main h2 {
	font-size: 130%;
	color: #800000;
}
main h3 {
	font-size: 105%;
}
h1 {
	padding-top: .3em;
	padding-bottom: .3em;
}
h2 {
	padding-top: .5em;
	padding-bottom: .25em;
}
h3 {
	padding-bottom: .25em;
}
img {
	padding-bottom: 1em;
}
p {
	padding-bottom: .5em;
}
blockquote {
	padding-right: 2em;
	padding-left: 2em;
	font-style: italic;
}
ul {
	padding-bottom: .25em;
	padding-left: 1.25em;
}
li { 
	padding-bottom: .35em;
}

/* the styles for the footer */
footer p {
	text-align: center;
	background-color: #931420;
	color: white;
	padding-top: 1em;
	padding-bottom: 1em;
}

