body {
	background: #0F0F0F;
	margin: 5px;
	height: 95%;
	font-family: sans-serif,"Times New Roman";
}

/* Layout Zone */
#container {
	margin: auto;
	width: 920px;
}
#head {
	font-weight: bold;
	font-size: 2em;
	text-align:center;
	border: 0px;
	padding: 10px;
	padding-top: 5px;
	height: 90px;
	width: 900px;
}
#leftside {
	width: 150px;
	position: absolute;
	top: 115px;
	padding: 5px;
	background: #D5D5D5;
	border: 1px dotted black;
	min-height: 50px;
}
#main {
	position: absolute;
	margin-left: 165px;
	top: 115px;
	background: #D5D5D5;
	border: 1px dotted black;
	padding: 5px;
	min-height: 50px;
	width: 765px;
}
#hidden {  /* for search-engines */
	position: absolute;
	display: none;
}

.rightbound {
	text-align: right;
	float: right;
}
.leftbound {
	text-align: left;
	float: left;
}
.centered {
	text-align: center;
	float: left;
}

/* Area Types */
/* Content: gray, Attention: green, Alarm: red, Highlight: blue, Code: monospaced font */
* { font-size: small; }
.content {
	font-size: small;
	border: 1px outset black;
	background: #C5C5C5;
	margin-bottom: 3px;
}
.attention {		/* lightgreen */
	font-size: small;
	border: 1px outset black;
	background: #C5EEC5;
	padding-left: 3px;
	padding-right: 3px;
	margin-bottom: 3px;
}
.alarm {		/* lightred */
	font-size: small;
	border: 1px outset black;
	background: #EEC5C5;
	padding-left: 3px;
	padding-right: 3px;
	margin-bottom: 3px;
}
.highlight {		/* lightblue */
	font-size: small;
	border: 1px outset black;
	background: #C5C5EE;
	padding-left: 3px;
	padding-right: 3px;
	margin-bottom: 3px;
}
.code {
	font-family: monospace;
	margin-left: 20px;
	text-indent: -20px;
}
.listhead {
	margin-left: 20px;
	text-indent: -20px;
}
.listitem {
	margin-left: 40px;
	text-indent: -20px;
}
.dummy {
	cursor: default;
	height: 5px;
}
.negdummy { margin-bottom: -3px;}

.title {
	font-size: small;
	font-weight: bold
}

/* Hovering buttonlike links */
div.link { font-size: small; border: 1px outset black; background: #B5B5B5; margin-bottom: 5px; }
div.link:hover { border: 1px inset black; background: #A5A5A5; cursor: default;font-style: italic;}

/* Opaque info on links */
div.link div{
	display: none;
	position: absolute;
	padding: .8em;
	margin-left: 150px;
	margin-top: 5px;
	min-width: 30px;
	text-align: center;
	background-color: #DDD;
	color: #00C;
	border: 1px outset gray;
}
div.link:hover div{ display: block; }

/* Opaque Infotest
.info + div {
	display: none;
	position: absolute;
	padding: .8em;
	margin-left: 100px;
	margin-top: 0;
	width: 36em;
	text-align: center;
	background-color: #0000CC;
	color: #FFF;
	border: 1px dotted gray;
}
.info:hover + div { display: block; }
*/

/* Move Links 1x1px downright and make them italic */
a {
	color: #000000;
	padding-right: 1px;
	padding-bottom: 1px;
}
a:hover {
	position: relative;
	left: 1px;
	top: 1px;
/* 	font-style: italic; */
	cursor: default;
}
/* New class to NOT make links move */
a.nomove { color: #000000; }
a.nomove:hover {
	position: relative;
	left: 0;
	top: 0;
	font-style: italic;
	cursor: crosshair;
}

td { vertical-align: top; }

#overlay {
	background-color: #000;
	color: #FFF;
	visibility: visible;
	filter: alpha(opacity=95);
	opacity: 0.95;
	-moz-opacity: 0.95;
	z-index: 9998;
	position: fixed;
	top: 0px;
	left: 0px;
	display: block;
	width: 100%;
	height: 100%;
}