body
{
	width : 1024px;
	background-color : #CCCCCC;
	margin : auto;
}

header
{
	margin-top : 5px;
	background-color : #AA0000;
	border-radius : 5px;
}

	header img
	{
		width : 50px;
		height : 50px;
		padding : 5px;
	}
	
	h1
	{
		display : inline-block;
		position : absolute;
		width : 930px;
		text-align : center;
	}

nav
{
	background-color : #AA0000;
	border-radius : 5px;
	text-align : center;
	font-weight : bold;
	font-family : Monotype Corsiva;
	font-size-adjust : 0.6;
}

	nav > ul > li
	{
		display : inline-block;
		width : 160px;
	}

	nav li > ul
	{
		display : none;
		list-style-type : none;
		padding : 0;
		margin : 0;
		background-color : #AA0000;
	}

	nav li:hover > ul
	{
		display : block;
		position : absolute;
		width : 160px;
		border-radius : 0 0 5px 5px;
		padding : 0;		
	}
	
		nav li > ul > li:hover > ul
		{
			display : inline-block;
			position : absolute;
			margin-left : 20px;
			width : 160px;
			border-radius : 0 5px 5px 0;		
		}
	
	nav a
	{
		text-decoration : none;
		color : #000000;
		font-size : 20px;
	}

	nav li:hover
	{
		background-color : #880000;
	}
	
article 
{
	border-radius : 5px;
	margin-top : 5px;
	padding-bottom : 5px;
	padding-top : 5px;
	padding-left : 20px;
	padding-right : 20px;
	background-color : #EEEEEE;
	font-size-adjust : 0.5;
}

footer 
{
	border-radius : 5px;
	margin-top : 5px;
	margin-bottom : 5px;
	text-align : center;
	background-color : #AA0000;
	font-size-adjust : 0.45;
}