
/***********************************/
/* general elements
/***********************************/

* { /*counts for all elements*/
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	font-family: Verdana,sans-serif;
	font-size: 9pt;
	color: #BABABA;
	overflow: hidden;
	text-align: center;
}







/***********************************/
/* elements
/***********************************/

#container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 2000px;
	margin: 0 0 0 -1000px;

}

/*
#container_flash {
    position: absolute;
    left : 50%;
	width: 200px;
    margin : 0 0 0 -100px;
}
*/




/***********************************/
/* popups
/***********************************/
#pop_flash {
	position: absolute;
	top: 0;
	left: 50%;
	width: 540px;
	height: 450px;
	margin: 82px 0 0 -270px;
}

#pop_tile {
	position: absolute;

	width: 100%;
	height: 100%;
	margin: 0 0 0 0px;
	background-image: url(gfx/tile.gif);
	background-repeat: repeat;
	background-position: 5px 3px;
}

#pop_szene {
	position: absolute;
	top: 0;
	left: 50%;
	width: 513px;
	height: 177px;
	margin: 0 0 0 -606px;
	background-image: url(gfx/szene.gif);
}

#backlink {

}





/***********************************/
/* workarounds
/***********************************/

#cache_pics { /*hidden container to preload images */
	position: absolute;
	display: none;
	width: 0;
	height: 0;
}

#force_scroll{
	bottom: -0.1px; /* forces window to alsway have something to scroll so that scrollbar is always shown by mozilla*/
	position: absolute;
	top: 0;
	width: 1em;
	z-index: -1;
}





/***********************************/
/* text
/***********************************/
.h2 {

}


.headline {
	font-size: 14pt;
	text-align: left;
	font-weight: bold;
	color: #5A6E8F;
}

.subhead {
	font-size: 10pt;
	text-align: left;
	font-weight: bold;
	color: #5A6E8F;
}

.text_high {
	font-size: 10pt;
	text-align: left;
	color: #5A6E8F;
}

.text {
	font-size: 10pt;
	text-align: left;
	color: #999999;
}

.text_alert {
	font-size: 10pt;
	text-align: left;
	color: #FF0000;
}







/***********************************/
/* text links
/***********************************/

A:link, A:visited, A:active {
	font-size:10pt; text-decoration:none; color: #888888; font-weight:bold;
}

A:hover {
	font-size:10pt; text-decoration: underline; color:#FF0000; font-weight:bold; 
}

