@font-face {
	font-family: Baroque;
	src: url(./BaroqueScript.ttf);
}
html {
	overflow-y: scroll; /*show scrollbar*/
}
body {
	background-color: #000000;
	color: #FFFFFF;
}
html,body {
	 height: 100%; 	/*in XHTML the container is the height of the content, 
	 		not the height of the window. So last div be 100% the height of body
		       	which is 100% the height of the root element (html) 
			which is 100% the height of the content not the window */
}
a { text-decoration: underline; }
a:link { color: #FFFFFF; }
a:visited { color: #FFFFFF; }
a:focus { color: #C0C0C0; }
a:hover { color: #C0C0C0; }
a:active { color: #C0C0C0; }
a.linknewtab {
 /* Althoug it is documented it doesn't work... CRAP
 * http://www.w3.org/TR/css3-hyperlinks/#target0
	target-name: new;
       	target-new: tab;
       	target-position: above;
*/
}
#outer {
	width: 100%;
	height: 100%;
}
#container {
	position: relative;
	left: 50%;
	top: 50%;
	margin-left: -300px;
	margin-top: -225px;
	width: 600px;
	height: 450px;
}			
#content {
	position: relative;
	overflow: auto;
	max-width: 400px;
	font-size: 0.7em;
	left: 20px;
	top: 20px;
}
#menu {
	position: relative;
	top: 50px;
	float: left;
	font-family: Baroque, serif;
	font-size: 1.0em;
}	
#liste {
	float: left;
	cursor: pointer;
}
#logo {
	cursor: pointer;
}
#lines {
	float: right;
}
#kontakt {
	overflow: visible; /*because of stupid Chrome*/
}

