/* Style the top navigation bar */
.topnav
{
	background-color: grey;

	border-bottom: 1px solid;

	height: 80px;

	overflow: auto;

	padding-top: 0px;
	padding-bottom: 10px;

	position: fixed;
	top: 0px;

	text-align: center;

	width: 100%;

	z-index: 1;
}

/* Style the topnav links */
.topnav a
{
	color: black;

	display: inline;

	text-align: center;
	text-decoration: none;

	padding: 10px 10px 10px 10px;
}

/* Change color on hover */
.topnav a:hover
{
	background-color: #dddddd;

	color: black;
}

.topnav_menu
{
	float: right;

	padding: 25px 20px 20px 0;
}

/* Style the content */
.content
{
	margin-top: 0px;

	padding: 0 10px 40px 10px;

	position: relative;
	top: 80px;
}

/* Style the footer */
.footer
{
	background-color: grey;

	border-top: 1px solid;

	padding: 1px;

	position: fixed;
	bottom: 0px;

	width: 100%;
}
