/* So the HTML5 structural tags work in older browsers */
article, aside, figure, footer, header, nav, section {
    display: block;
}
/* reset selector */
* {
	margin: 0;
	padding: 0;
}
	
/* the styles for the elements */
html {
	background-color: white;
}
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 87.5%;
	width: 600px;
	margin: 0px auto;
	border: 3px solid #800000;
	background-color: #fffded;
	
}
header { 
	
	padding-top: 2 em;
	padding-bottom: 2.5em;
	
	
	border-bottom: 3px solid #800000;
/*Adding Header Background Gradient Image*/

	background-image: -moz-linear-gradient(30deg, #800000 0%, #fffded 30%, white 40%, #fffded 80%, #800000 100%);
	background-image: -webkit-linear-gradient(30deg, #800000 0%, #fffded 30%, white 40%, #fffded 80%, #800000 100%);		
	background-image: -o-linear-gradient(30deg, #800000 0%, #fffded 30%, white 40%, #fffded 80%, #800000 100%);
	background-image: linear-gradient(30deg, #800000 0%, #fffded 30%, white 40%, #fffded 80%, #800000 100%);
	
/*End Background Image*/
}


/* the styles for the header */
header h1 {
	color:#800000;
	padding-left: 30px;
	padding-right: 30px;
	}
header h2 {
	font-style:italic;
	padding-left: 30px;
	padding-right: 30px;	
}
header img {
	float: left;
	padding-left: 30 px;
	padding-right: 30px;
}

/* the styles for the section */
section {
	clear: left;
	padding-left: 2em;
	padding-right: 2em;	
}
section h1 {
	font-size: 150%;
	color: #800000;
	padding-top: .5em;
	padding-bottom: .25em;
}
section h2 {
	font-size: 120%;
	padding-bottom: .25em;
}
section img {
	padding-bottom: 1em;
}
section p {
	padding-bottom: .5em;
}
section blockquote {
	padding-right 2em;
	padding-left: 2em;
	font-style: italic;
}
section ul {
	padding-bottom: 1.5 em;
	padding-left: 1.25em;
}
section li {
	padding-bottom: .35em;
}
#speakers {
	border-top: 3px solid #800000;	
	border-bottom: 3px solid #800000;
	margin-bottom: .75em;
	border-radius: 6px;
	border-style: double;
	box-shadow: 5px 5px 0 0;
	font-size: 175%;
	padding-top: .25em;
	padding-left: .5em;
}

a:hover, a:focus {
	font-style: italic;
}
.shadow {
	text-shadow: 2px 2px 2px;
	color: #800000;
}
/* the styles for the footer */

footer  p {
	text-align:center;
}
footer {
	border-top: 3px solid #800000;
	padding-top: 1em;
	padding-bottom: 1em;
}
}