html, body {
	font-family: arial, helvetica, sans-serif;
	height: 100%;
	margin: 0px;
	padding: 0px;
}
a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}
#container {
	display: table;
	border-collapse: collapse;
	width: 100%;
	height: 100%;
}
#header {
	display: table-row;
    white-space: nowrap;
	height: 1px;
	background-color: #CCC;
	border-bottom: 1px solid #777;
}
#header h1 {
    margin: 0px;
    margin-left: 25px;
    line-height:100px;
    letter-spacing: 1px;
    text-shadow: 1px 1px #777;
}
#footer {
	height: 1px;
	background-color: #DDD;
	border-top: 1px solid #777;
	display: table-row;
	text-align: center;
}
#menu {
	width: 100%;
	padding: 0px;
	background-color: #DDD;
	border-bottom: 1px solid #777;
}
#content {
	padding: 10px;
}
#menu ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#menu li {
	padding: 3px;
	display: inline-block;
}
#menu li:hover {
	padding: 3px;
	background-color: #777;
}
#menu a {
	display: block;
	color: black;
}
#menu li a {
	padding: 3px;
	text-decoration: none;
}