
/* ----------------------------------------------------------------------------
		author	: Jonathan Stroebele ( www.jonathanstroebele.de )
		date		: 2008-10-29
		file		: style.css
		function	: style-definition for all browsers
		
		site		: 
		
		info		: nerdibaer.com
---------------------------------------------------------------------------- */

/* 
	CSS DIRECTORY
		1. Global Settings
			1.1 Position (margin, padding, border, etc.)
			1.2 Style (background, color, font, etc.)
		2. Primery
		3. Header
		4. Main
		5. Footer
		
*/


/*  
	GLOBAL SETTINGS 
	========================= */ 
	
/*  
	General positon-formation
	------------------------- */ 
	
* {
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5,h6,p,blockquote,form,label,ul,ol,dl,fieldset,address {
	margin: 0.5em 0;
}

ul, ol, dl {
	margin: 0.5em 2.3em;
}

dd {
	margin: 0 0 0.7em 0.7em;
}

fieldset {
	padding: 1em;
	border: 1px solid #f7f6f5;
}
legend {
	padding: 0 0.6em;
}

blockquote {
	padding: 0 2em;
}


/*  
	General style-formation
	------------------------- */ 
	
body {
	font-family: Courier, monospace;
	background-color: #033448;
	line-height: 1.3;
	font-size: 76%;
	color: #fff;
}
	
h1, h2, h3, h4, h5, h6, legend {
	font-family: Courier, monospace;
}

h1#question {
	white-space: nowrap;	/* fix for Opera */
	font-size: 4.2em;
}

a:hover, a:focus {
	text-decoration: none;
	color: #fff;
}

blockquote {
	font-style: italic;
}

form ul {
	list-style: none;
}


/* 
	PRIMERY
	========================= */ 

html, body {
 	height: 100%;
}
 
#container {
	overflow: hidden;
 	display: table; 
	height: 100%; 
	margin: 0 auto;
	width: 16em;	
}

#outer {
	vertical-align: middle;
	display: table-cell; 
}

#content {
	text-align: center;
	overflow: visible;
}

span {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	white-space: nowrap;
	font-style: italic;
	font-size: 73%;
	opacity: .32;
}


/*  man sieht sich ;) */