/* 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: 800px;
	margin: 0 auto;
	border: 3px solid #931420;
	background-color: #fffded;
}

a:focus, a:hover{
	font-style: italic;
}


/* the styles for the header */
header {
	border-bottom: 3px solid #931420;
	padding: 1.5em 0 2em 0;
	background-image: linear-gradient(45deg, #f6bb73 0%, white 30%, white 50%, white 80%, #f6bb73 100%);
	background-image: -webkit-linear-gradient(45deg, #f6bb73 0%, white 30%, white 50%, white 80%, #f6bb73 100%);
	background-image: -moz-linear-gradient(45deg, #f6bb73 0%, white 30%, white 50%, white 80%, #f6bb73 100%);
	background-image: -o-linear-gradient(45deg, #f6bb73 0%, white 30%, white 50%, white 80%, #f6bb73 100%);
	
}
header h2 {
	font-size: 170%;
	/*font-style: italic;*/
	color: #800000;
}

header h3 {
	font-size: 130%;
	font-style: italic;
}

header img {
	float: left;
	padding: 0 30px;
}

.shadow {
	text-shadow: 2px 2px 2px #800000;
}

/* the styles for the nav_bar */

#nav_menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
}

#nav_menu ul li {
	float: left;
}

#nav_menu ul li a {
	display: block;
	width: 160px;
	text-align: center;
	padding: 1em 0;
	text-decoration: none;
	background-color: #800000;
	color: white;
	font-weight: bold;
}

#nav_menu ul ul {
	display: none;
	position: absolute;
	top: 100%;
}

#nav_menu ul ul li {
	float: none;
}

#nav_menu ul li:hover > ul {
	display: block;
}

#nav_menu ul::after {
	content: "";
	clear: both;
	display: block;
} 

#nav_menu ul li a.current {
	color: yellow;
}

/* the styles for the section */

section {
	width: 525px;
	float: right;
	padding: 0 20px 20px 20px;
	clear: left;
}

section h1 {
	font-size: 150%;
	color: #800000;
	padding: .5em 0 .25em 0;
	margin: 0 0;
}
section h2 {
	font-size: 130%;
	padding-top: .5em;
	padding-bottom: .25em;
}
/*section p {
	padding-bottom: .5em;
}*/
section blockquote {
	padding: 0 2em;
	font-style: italic
}
section ul {
	padding: 0 0 .25em 1.25em;
}
section ul li {
	padding-bottom: .35em;
}

/*main {
	clear: left;
	padding: 0 30px;
}
*/

/*Article*/
article {
	padding: .5em 0;
}
article p {
	padding-bottom: .5em;
}
article h2 {
	font-size: 115%;
	padding: 0 0 .25em 0;
}
article img {
	float: right;
	margin: .5em 0 1em 1em;
	border: 1px solid black;
}
/*article h2 {
	padding: 0 0;
}
article h3 {
	font-size: 105%;
	padding-bottom: .25em;
}*/

/*Aside*/

aside {
	width:215px;
	float: right;
	padding-left: 20px;
	padding-bottom: 20px;
	clear: left;
}
aside h2 {
	font-size: 130%;
	color: #800000;
	padding: .5em 0 .25em;
}
aside h3 {
	font-size: 105%;
	padding-bottom: .25em;
}
aside img {
	padding-bottom: 1em;
}



/* the styles for the footer */
footer {
	background-color: #931420;
	clear: both;
}
footer p {
	text-align: center;
	color: white;
	padding: 1em 0;
}
