@charset "utf-8";
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	background-color: #693;
	color:#fff;
}

a{
	color: #639;
	text-decoration:none;
}

a:hover{
	color: #cf3;
	text-decoration:underline;
}


ul#nav, #nav ul{
/*Remove all spacings from the list items*/
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	display: block;
	text-align:left;
}

ul#nav{
	display: table;
	width: 100%;
	table-layout: fixed;
}
ul#nav>li{
	float: left;
	width: 180px;
	position: relative;
	padding: 2px 6px;
}

ul#nav li>ul{
/*Make the sub list items invisible*/
	display: none;
	position: absolute;
	max-width: 40ex;
	top:1.4em;
	left:0;
}


ul#nav li:hover>ul{
/*When hovered, make them appear*/
	display : block;
}

#nav ul li a{
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 2px 10px;
}

/*** Menu colors ***/

ul#nav, #nav ul, #nav ul li a{
	background-color: #fff;
	color: #693;
}


ul#nav li:hover, #nav ul li a:hover{
	background-color: #639;
	color: #fff;
}

ul#nav li:active, #nav ul li a:active{
	background-color: #600;
	color: #fff;
}

ul#nav, #nav ul{
	border: 1px solid #693;
}

#nav a{
	text-decoration: none;
}

#nav a:hover{
	color:#fff;
	background-color:#639;
}

#main_table{
	width:50em;
	margin:0;
	padding:0px;
	border:0;
}

#block_container{
	position:absolute;	
	height: 30em;
	left: 50%;
	margin-left: -25em; /* half the width of #container */
	margin-right: auto;
}

#container{
	position:absolute;
	width:50em;
	top:50%;
	display:inline;
}

#header{
	text-align:center;
}

#content{
	padding: 2px;
}

#footer{
	padding: 2px;
	color:#360;
	font-size:xx-small;
	text-align:center;
	border-top:thin;
}

