@charset "UTF-8";
body {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 100%;
	line-height: 1;
	background-image: url(EosSpringx8a.gif);
}

/* This fixed width container surrounds all other blocks.*/
main {
	width: 960px;
	background: #FFF;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px;
	}

/* The header is not given a width. It will extend the full width of the container. */
header {
	background: #FC0;
	height:100px;
}

#logo {
	float:left;
}

#topMenu {
	padding-top:80px;
	padding-left:380px;
}

article {
	padding: 0;
	/* width: 700px; */
	/* float: right; */
	text-align: center;	
}

/* No margin has been given to the columns since they are all floated. */
nav {
	float: left;
	width: 160px;
	margin: 5px;
	padding-top: 5px;
	padding-left: 10px;
	padding-bottom: 5px;
	background-color: #FFF;
}

footer {
	padding: 0;
	background: #FC0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	border-top-width: medium;
	border-top-style: solid;
	border-top-color: #000;
	height: 50px;
}

footer p {
	font-size: small;
	padding-left: 5px;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* Styling links must remain in this order - including the group of selectors that create the hover effect. */
a:link {
	color: #000;
	text-decoration: none; 
}
a:visited {
	color: #333;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}



