﻿/* Navigation */
#navigation {
	border-top: 5px solid #808080;
	border-bottom: 5px solid #808080;
	background-color: white;
	overflow: scroll;
}

#navigation ul {
	list-style-type: none;
	/* (for cross-browser compatibility add two lines) */
	padding: 0px;
  margin: 0px;
}
#navigation li {
	float: left;
	padding: 3px 8px 3px 8px;
}
#navigation a {
	font-weight: normal;
	font-size: large;
	text-decoration: none;
	color: blue;

}
/* mouse over link */
#navigation a:hover {
	font-weight: normal;
	text-decoration: none;
	color: black;
	background-color: #FF6666;
}
/* navigation divider */
#navigation .divider {
	clear: both;
	height:1px;
	width:100%;
	color: black;
	border-color:black;
	margin: 0px;
	padding: 0px;
	}

