/* 	Layout CSS
	V1.0
	Fonts und Farben ausgelagert
	(c) by Andreas Riedl
	
	Letzte Änderung: 05.01.2007
*/
	

/* Diese CSS beinhaltet
	- Allgemein
	- Header
	
	- Content
	- Navigation
	- Topic
	- Formular
	- Footer
	
-*/



/* ****************************************************************************** */
/* Allgemeine Layoutobjekte */
* {
	padding: 0;
	margin: 0;
}

body {
	margin:0;
	font-family: verdana,tahoma; 
	background-color:#ababab;
}

.clear {clear:both;height:1px;overflow:hidden;}

/* ****************************************************************************** */
/* Schriftgrößen */

/* Links */
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:hover {text-decoration: underline;}
a:active {text-decoration: none;}

	a:active, a:link, a:visited, a:hover {
		color:#46677f;
	}

/* p */
p {font-size:12px; font-weight:normal;}
p#position {font-size: 10px;}

/* Überschriften */
h1 {font-size: 14px;}
h2 {font-size: 12px;}
h3 {font-size: 12px; }


/* ****************************************************************************** */
/* Gesamtes Containerelement, welches alle Elemente enthält */
#wrap {
	width:950px;
	margin:0 auto;
	margin-top:20px;
	position:relative;
}

/* ****************************************************************************** */
/* Elemente für Content rechts oder auch statt Navigation */
	/* für Content */
	
	/* 
	content_left
	content_center
	*/
	
#content {
	position:relative; 
	display:inherit;
	background:#f1f6fa; 
	border-left:180px solid #46677f; 
	overflow:visible;
	margin:0px;
	padding:0px;	
}

	#content_left {
		position:absolute;
		display:block; 
		overflow:visible;
		width:180px; 
		height:500px;
		padding-left:20px;
		top:0px;
		left:-180px;
		margin-top:-20px;
	}

	
	#content_center {
		overflow:visible;
		padding:20px;
		display:block; 
	}
	

/* ****************************************************************************** */

/* Akutelle Navigationspositsion */
	p#position {
		text-align:left;
		margin-bottom:10px;
	}
	p#position a {
		text-decoration:underline;
	}


/* ****************************************************************************** */
/* Alle Elemente im Footer */

	/* Fußzeile DIV */
div#footer {
	border-width:0px;
	border-style:solid;
	margin-bottom:20px;
	background-color:#000000;
	color:#FFFFFF;
	font-size:9px;
	text-align:center;
	padding-top:2px;
	padding-bottom:2px;
}


/* ****************************************************************************** */


