/* CSS Document */
/* Allgemein */

html {
	height:100%;
	overflow:hidden;
}

body {
	font-family:Arial, Helvetica, sans-serif;
	font-size:80%;
	height:100%;
	margin:0%;
	padding:0%;
	color:#000;
	
	background-color:#fff;
}

div, p, span, table, tr, th, td {
	font-size:1em;
}

/* Seiten - Stile */
#siteDisabled {
	position:absolute; 

	top:0px; 
	left:0px; 

	width:100%; 
	height:100%; 

	background-color:black; 
	
	opacity:0.7;
	filter:alpha(opacity=70);
}

#siteMenu {
	position:absolute;
	top:0px;
	width:300px;
	height:20px;

	left:50%;
	margin-left:-150px;
	
	overflow:hidden;
	
	text-align:center;
	
	background-color:#fff;
	
	border:1px solid #999;
	border-top:0px;
}

#siteContent {
	width:100%;
	height:100%;
	overflow:auto;
}

#sitePrompt {
	position:absolute; 

	top:50%; 
	left:50%; 
	
	width:680px; 
	height:480px; 
	margin-left:-350px; 
	margin-top:-250px; 
	
	background-color:white;

	border-top:1px solid #666;
	border-left:1px solid #666;
	border-bottom:1px solid #000;
	border-right:1px solid #000;
}

#sitePromptControl {
	position:absolute;
	top:5px;
	right:5px;
}

#sitePromptTitle {
	width:670px;
	height:15px;

	background-color:#06f;
	color:#fff;

	font-weight:bold;
	text-align:center;

	padding:5px;
}

#sitePromptContent {
	width:678px;
	height:453px;

	overflow:auto;

	border-top:1px solid #000;
	border-left:1px solid #000;
	border-bottom:1px solid #666;
	border-right:1px solid #666;
}

/* Menü-Stile */
#siteMenu ul {
	list-style:none;
	margin:0px;
	padding:0px;
	
	padding-top:2px;
}

#siteMenu li {
/*	float:left;*/
	display:inline;

	margin:0px;
	padding:0px;
	padding-left:3px;
	
	border-right:1px solid #000;
}

#siteMenu a {
/*	display:block;*/
	
	margin:0px;
	padding:0px;
	
	text-decoration:none;

	padding-left:6px;
	padding-right:6px;

	color:#000;
}

#siteMenu a:hover {
	text-decoration:underline;
}

#siteMenu .cMenuActive {
	font-weight:bold;
}

#siteMenu .cMenuLast {
	border:0px;
}