/* CSS Document for screen*/

/************
generic styles
************/
body {
	font-family: arial, Helvetica, sans-serif;
	font-size: 70%; /* initially set to percentage so that ems work without producing miniscule text in IE */
	text-align: center; /* needed to center the container in IE5.x because it doesn't like 'margin: 0 auto' */
	color: #000000;
	background: #ffffff; /* defines the colour as well as the background image so that an average colour is shown while the image loads */
	padding: 5em 0 0 0;
	margin: 0;
}
a	{
	text-decoration: none;
	font-weight: bold;
	color: #000000;
}
a:link	{
}
a:visited	{
}
h1 {
	font-size: 1.5em;
	font-weight: bold;
}
h2 {
	font-size: 1.2em;
	font-weight: bold;
}
h3 {
	font-size: 1em;
	font-weight: bold;
}
h4	{
}

/************
two column layout for main part
************/
#wrapper {
	width: 80em;
	margin: 0 auto; /* centers the container */
	text-align: left;
}
#header {
	background: #009966;
	width: 99.5%;
	font-size: 0.8em;
	color: #666666;
	text-align: left;
}
#content {
	width: 100%;
	border: 1px none black;
	text-align: left;
	padding: 1em 0 1em 0;
	background: url('bg_trans.gif') top left;
	background-repeat: repeat;
	vertical-align: top;
	clear: both;
}
#sidebar {
	position: absolute;
	width: 0;
	margin:0;
	padding:0;
	visibility: hidden;
}
#sidebar-content {
	margin:0;
	padding: 0.5em 1em;
	font-size: 0.8em;
	border: 1px none #000000;
}
#main {
	margin:0 0 0 0;
	padding:0;
	margin: 0 0 0 0;
}
#main-content {
	margin:0; padding: 0.5em 1em;
	font-size: 1em;
	border: 1px none #000000;
}
hr.cleaner {
	clear:both;
	height:1px;
	margin: -1px 0 0 0; padding:0;
	border:none;
	visibility: hidden;
}
#footer {
	background: #d7dabd;
	clear: both; 
}
.clearing {
	height: 0;
	clear: both;
	visibility: hidden;
}
#logo	{
	width: 40em;
	padding: 1em 1em 1em 1em;
	background: #ffffff;
}
#address	{
	width: 20em;
	}
#news	{
	position: relative;
	font-size: 8px;
}

/************
menu styles
************/

/*left menu*/
#button {
	width: 12em;
	padding: 0 0 0 0;
	margin-bottom: 1em;
	background-color: #009966;
	color: #b0b0b0;
	visibility: hidden;
}
#button ul {
		list-style: none;
		margin: 0;
		padding: 0;
		border: none;
}
#button li {
		border-bottom: 1px solid #929292;
		margin: 0;
}
#button li a {
		display: block;
		padding: 5px 5px 5px 5px;
		border-left: 5px solid #fff;
		border-right: 5px solid #fff;
		background-color: #fff;
		color: #b0b0b0;
		text-decoration: none;
		width: 100%;
}
html>body #button li a {
		width: auto;
}
#button li a:hover {
		border-left: 5px solid #009966;
		border-right: 5px solid #009966;
		background-color: #fff;
		color: #000;
}

/*styles for the top menu. edit with care*/
#nav	{
	clear: both;
	visibility: hidden;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#nav a {
	font-weight: bold;
	color: #000;
}
#nav a {
	text-decoration: none;
}
#nav li li a {
	display: block;
	font-weight: normal;
	color: #666;
	padding: 0.2em 10px;
}
#nav li li a:hover {
	padding: 0.2em 5px;
	border: 5px solid #009966;
	border-width: 0 5px;
	color: #000;
}
li {
	float: left;
	position: relative;
	width: 19.7em;
	text-align: center;
	cursor: default;
	background-color: #009966;
	border-top: 0.2em solid #ffffff;
	border-right: 0.2em solid #ffffff;
}
li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	font-weight: normal;
	background: url(graphics/ddbg3.gif) bottom left no-repeat;
	padding: 0.5em 0 1em 0;
	border-right: solid 1px #7d6340;
}
li>ul {
	top: auto;
	left: auto;
}
li li {
	display: block;
	float: none;
	background-color: transparent;
	border: 0;
}
li:hover ul, li.over ul {
	display: block;
}