/*** /CSS/SCREEN.CSS - VERSION 1.0 ***********************************/

/* 
 * FUNKTION:
 *	Die screen.css enthaelt Formatierungen fuer das gesamte Projekt.
 *	In dieser Datei werden genaue Angaben zur Ausgabe auf Monitoren
 *	gemacht.
 *
 * AUTOR:
 * 	HorstMedia
 *	http://www.horstmedia.de
 * 
 * 	Jens-Peter Horst
 * 	j.p.horst@horstmedia.de
 * 
 * CHRONIK:
 * 	20.10.2008					Erstellt
 * 		
*/

/*** CSS **************************************************************/

html body{
	height: 100%;
	min-height: 600px;
	
	color: #484848;
	font-family: sans-serif;

	background-image: url('../images/design/bg.png');
	background-repeat: repeat-x;
	background-color: #F0EFEF;
}

#container {
	max-width: 1000px;
	height: 600px;
	margin: 30px auto 30px auto;
}

#header {
	height: 150px;
	
	background-color: #5884ff;
	background-image: url('../images/design/header.png');
}

#navigation {
	height: 35px;
	line-height: 35px;
	
	padding: 0px 5px;
	
	background-color: #cdd3e1;
	background-image: url('../images/design/navi_bg.png');
	background-repeat: repeat-x;
}

	#navigation a, #navigation a:visited {
		font-size: 120%;
		
		padding: 0px 10px;
		
		text-decoration: none;
		color: #5884ff;
	}

	#navigation a:hover, #navigation a.activ {
		font-size: 120%;
		
		padding: 0px 10px;
		
		text-decoration: none;
		color: #ffffff;
	}

	#navigation a.login {
		font-size: 120%;
		
		padding: 0px 10px;
		
		text-decoration: none;
		color: #BFC7D7;
	}


#content {
	min-height: 95%;

	padding: 20px 10px;
	background-color: #ffffff;
}

#footer {

	height: 15px;
	font-size: 70%;
	
	padding: 0px 5px;
	text-align: right;
	
	color: #CED3E1;
	background-image: url('../images/design/footer_bg.png');
}

	#footer a, #footer a:visited {
		color: #CED3E1;
		text-decoration: none;
	}

	#footer a:hover {
		color: #2D5CE1;
	}


