/* ---------------------------------------------

	BASIC.CSS
	Generelle Styles fr das Frontend.

	Autor:				PH
	Erstellungsdatum:	18.04.2007
	
	Index:				Generelle Frontend Styles
						Content Elemente
						Ueberige Klassen
						
	Changelog:			-
	
--------------------------------------------- */

/* ---------------------------------------------
	Generelle Frontend Styles
--------------------------------------------- */
	
* {
	padding: 0;
	margin: 0;
}
html,body {
/*	overflow:hidden;*/
}
body {
	font:1em/1em Verdana, Arial, Helvetica, sans-serif;
	padding: 0;
	margin: 0;
	color:#000;
	background:#eee;
}
p {
	padding-bottom:12px;	
}
a {
	color:#000;
	text-decoration:underline;
}
div#main-container {
	width:950px;
	margin:0 auto;
}
div#header {
	height:134px;
	width:100%;
	margin-top:20px;
	background:url(../images/layout/aelplibahnHeader.jpg) no-repeat;
}
div#spruch {
	width:287px;
	height:100px;
	padding-left:330px;
	background-position:center right;
	background-repeat:no-repeat;
}
div#content-container {
	width:100%;
	background:#fff;
	font-size:0.9em;
}
div#navigation {
	float:left;
	width:140px;
	padding:20px 0 20px 10px;
}
div#content {
	float:left;
	width:750px;
	padding:20px 20px 20px 30px;
	min-height:385px; /*wenn nicht mehr content scrollbar, das und die 2 overflows wegnehmen*/
}
div#footer {
	height:20px;
	width:940px;
	background:#fc3;
	text-align:right;
	padding:3px 5px;
	font-size:12px;
}

/* ---------------------------------------------
	Content Elemente
--------------------------------------------- */

h2 {
	font-size:1.4em;
	padding-bottom:15px;
}

/* ---------------------------------------------
	Navigation
----------------------------------------------*/

div#navigation ul {
	font-size: 1em;
	font-weight: bold;
	list-style: none;
	padding: 0;
	margin: 0;
}
div#navigation ul ul {
	text-align: left;
	font-size: 1em;
	font-weight: normal;
	list-style: none;
	padding-left: 13px;
}
div#navigation a {
	color: #000;
	text-decoration: none;
}
div#navigation ul li {
	margin:5px 0;
}
div#navigation ul li a.nav-active-1lvl-a {
	display: block;
	color:#fc3;
}
div#navigation ul li a.nav-active-2lvl-a {
	font-weight: bold;
	color:#fc3;
}
ul.nav-inactive {
	display: none;
}

/* ---------------------------------------------
	Ueberige Klassen
--------------------------------------------- */

.clear {
	clear:both;
}