
/* styles for the web font */
@font-face{
	font-family:TownHall;
	src: url("HARRINGT.TTF");
}


/* the styles for the elements */

* {
	margin: 0;
	padding: 0;
}

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(30deg, #f6bb73 0%, #f6bb73 30%, white 50%, #f6bb73 80%, #f6bb73 100%)
}

header h2 {
	font-size: 175%;
	color: #800000;
	font-family: Townhall, sans-serif;
	/*text-indent: 30px;*/
}

header h3 {
	font-size: 130%;
	font-style: italic;
	
	/*text-indent: 30px;*/
}

header img {
	float: left;
	padding: 0 30px;
}

.shadow {
	text-shadow: 2px 2px 2px #800000;
}

/* the styles for the section */



/*main h1 {
	font-size: 150%;
	border: 3px double #800000;
	border-top: 3px solid #931420;
	margin-bottom: .75em;
	border-radius: 10px;
	box-shadow:  5px 5px;
	padding: .5em 0 .5em 2em;
	background-color: white;
}*/

section {
	clear: left;
	/*padding: 0 30px;*/
}


section h2{
	font-size: 130%;
	color: #800000;
	padding: .5em 0 .25em 0;
}


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;
}


/*Styles for section */


section{
	width:525px;
	padding:0 20px 20px 20px;
	float:right;
}

/*section img{
	float:right;
}
*/
/*Styles for aside */

aside{
	width:215px;
	padding: 0 0 20px 20px;
	float:right;
}

aside h2{
	font-size: 130%;
	color: #800000;
	padding: .5em 0 .25em 0;
}

aside h3 {
	padding-bottom: .25em;
	font-size: 105%;
}

aside img {
	padding-bottom: 1em;
}

#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 a.current{
	color:yellow;
}

#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;
	}

/*style for article*/

article{
	padding:.5em 0;
	border-bottom: 2px solid #800000;
	border-top: 2px solid #800000;
	
}

article img{
	float:right;
	margin: .5em 0 1em 1em;
	border: 1px solid black;

}
article h2{
	padding-top: 0;
}

article h3{
	font-size: 105%;
	padding-bottom: .25em;
}


figure{
	float:right;
	margin: .5em 0 1em 1em;
}

figcaption{
	display:block;
	font-weight:bold;
	margin-left:1em;
	border-bottom: 1px solid black;
	padding:0 30;
}

/* the styles for the footer */

footer {
	background-color: #931420;
	clear: both;
}

footer p {
	text-align: center;
	color: white;
	padding: 1em 0;
}

/* Style for print */

@media print{
	body{
		font-family: Times, "Times New Roman", "serif";
		width:auto;
	    background-color: white;
		border:none;
	}
	#nav_menu,
	aside h2{
		display:none;
	}
	section{
		width:5in;
	}
	aside{
		width:2in;
		padding-top: 1em;
		padding-left: 0;
		float:none;
	}
	aside h2{
		font-size: 100%;
	}
	article p{
		font-size:87.5%
	}
	aside a{
		text-decoration: none;
		color:black;
	}
	footer p{
		padding-top: .75em;
		border-top: 3px solid #931420;
	}
}