
/* Brian Byrne */

/* the styles for the elements */
* {
	margin: 0;
	padding: 0;
}
html {
	background-color: #FFFFCC;
}
body {
	font-family: Leelawadee, Helvetica, sans-serif;
    font-size: 100%;
    width: 99%;
    max-width: 960px;
    margin: 0 auto;
    border: 3px solid red;
    background-color: #white;
}
a:focus, a:hover {
	font-style: italic;
}
header {
	padding: 0 0 4em 0;
	background-image: white;
		
}
header img{
	padding: 0 0 0 0.5em;
	max-height: 100px;
	max-width: 238px;
	position: absolute;
	top: 10px;
	right: 250px;
	
	
	
}
header h1{
	
	position: relative;
	top: .5em;
	
	padding: 0 0 0 .3em;
	font-size: 300%;
	
}
header h2{
	float: right;
	font-size: 80%;
	padding-right: 0.2em;
}

/* the styles for the navigation content */
#nav_menu ul{
	list-style-type: none;
	margin: 0;
	position: relative;
}
#nav_menu ul li{
	float: left;
	width: 20%; /* 160/800 * 100 */
}
#nav_menu ul li a{
	display: block;
	text-align: center;
	padding: 1em 0;
	text-decoration: none;
	background-color: red;
	color: black;
	font-weight: bold;
}
#nav_menu a.current{
	color: white;
}
#nav_menu ul li:hover > ul{
	display: block;
}
#nav_menu > ul::after {
	content: "";
	clear: both;
	display: block;
}

main{
	padding-bottom: 1em;
}

main ul {
	padding: 0 0 0 3em;
	list-style-type: circle;
}

main h1 {
	font-size: 100%;
	color: red;
	padding: 0 0 0 1em;
}




footer {
	background-color: red;
	clear: both;
}
footer p {
	text-align: center;
	color: black;
	padding: 1em 0;
	font-size: .6875em;
}