/* the basics of this layout have been stolen from BlueRobot.com. Thanx. */
/* style sheets screen */

body {
	color:#000;
	background-color:white;
	margin:20px;
	padding:0px;
	font:11px "lucida sans unicode", arial, helvetica, sans-serif;
	}
h1 {
	font:bold 40px "monotype corsiva", arial, helvetica, sans-serif;
	margin: 40px 40px 20px 00px;
	padding:0px;
	font-weight:900;
	color:#000;
	text-align: right;
	
	}
h2 {
	font:bold 14px/14px "lucida sans unicode", arial, helvetica, sans-serif;
	margin:0px 0px 5px 0px;
	padding:0px;
	}
p {
	font:13px/20px "lucida sans unicode", arial, helvetica, sans-serif;
	margin:0px 0px 16px 0px;
	padding:0px;
	}
.Content>p {margin:0px;}
.Content>p+p {text-indent:30px;}

a {
	color:#F0F;
	font-size:13px;
	font-family:"lucida sans unicode", arial, helvetica, sans-serif;
	font-weight:600;
	text-decoration:none;
	}
a:link {color:#F0F;}
a:visited {color:#F0F;}
a:hover {
color:white;
background-color:#F0F;}
  

/* All the content boxes belong to the content class. */
.content {
	position:relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
	width:auto;
	min-width:400px;
	margin:0px 170px 20px 40px;
	border:1px solid black;
	background-color:white;
	padding:10px;
	z-index:3; /* This allows the content to overlap the right menu in narrow windows in good browsers. */
	}

#navAlpha {
	position:absolute;
	width:150px;
	top:20px;
	left:20px;
	border:1px dashed black;
	background-color:#eee;
	padding:10px;
	z-index:2;

/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity. 
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it. 
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style 
declaration. The incorrect IE5/Win value is above, while the correct value is 
below. See http://glish.com/css/hacks.asp for details. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:128px;
	}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
length values to user agents that exhibit the parsing error exploited above yet get 
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#navAlpha {width:128px;}
		
#navBeta {
	position:absolute;
	width:190px;
	top: 20px;
	right:20px;
	border:0px solid black;
	background-color:white;
	padding:10px;
	z-index:1;
/* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:168px;
	}
/* Again, "be nice to Opera 5". */
body>#navBeta {width:168px;}
/* Navigationselemente */

#navlist
{
padding: 3px 0;
margin-left: 0;
border-bottom: 1px solid black;
font: bold 12px lucida sans unicode, sans-serif;
text-align: center;
}

#navlist li
{
list-style: none;
margin: 0;
display: inline;
}

#navlist li a
{
font-size: 11px;
padding: 3px 0.5em;
margin-left: 3px;
border: 1px solid #000;
border-bottom: none;
background: #F0F;
text-decoration: none;
}

#navlist li a:link { color: #000; }
#navlist li a:visited { color: #000; }

#navlist li a:hover
{
color: white;
background: #F0F;
border-color: #000;
}

#navlist li a#current
{
color: black;
background: white;
border-bottom: 1px solid white;
}