/* Clearlooks colours: 
   #608090 - Dark Blue
   #a8bfcf - Blue
   #ddd    - Grey
*/
html {
	padding: 40px 12%;
	background-color: black;
}

body {
	font-family: georgia, times, times new roman, serif;
	font-size: .7em;
}

h1, h2, ul#menu, ul#menu li {
	margin: 0px auto;
	padding: 0px auto;
}

h1 {
	text-align: center;
	font-size: 2.2em;
	/* background-color: #a8bfcf; */
	background-color: #608090;
	-moz-border-radius: 20px 20px 0 0;
	border-radius: 20px 20px 0 0;
	border-bottom: 1px solid #a8bfcf;
}

h2 {
	display: none;
	visibility: hidden;
	text-align: center;
	font-size: 1em;
	background-color: #608090;
	font-style: italic;
}

h3 {
	font-size: 1.2em;
	display: none;
}

a {
	color: #608090;
	text-decoration: none;
}

a:hover {
	color: #a8bfcf;
	border-bottom: 1px dotted #ddd;
}

/* Block styling */
div#content {
	border: 1px solid #aaa;
	background-color: white;
	padding: 3px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

/* Menu */
ul#menu {
	height: 30px;
	margin-bottom: -30px;
	margin-right: 1px;
	list-style: none;
	background-color: #ddd;
	padding-bottom: 30px;
	padding-top: 20px;
}

ul#menu li {
	float: left;
}

ul#menu a {
	display: block;
	
	height: 22px;
	width: 100px;
	padding-top: 8px; /* 22 + 8 = 30px */
	margin-left: 20px;
	
	color: white;
	background-color: #608090;
	text-align: center;
	
	-moz-border-radius: 10px 10px 0px 0px;
	border-radius: 10px 10px 0px 0px;
}

ul#menu a:hover {
  color: #a8bfcf;
  border: 0px;  
}

ul#menu a:active, ul#menu a:focus {
	outline: 0px;
	color: white;
	background-color: #a8bfcf;
}

ul#menu a.current {
	color: #608090;
  background-color: white;	
  border: 1px solid #aaa;
  border-bottom: 0px;
}


