/*style-3.css
Autor: Erismann Marcel, Projekt für das Grundlagenmodul XHtml-CSS an der HGKZ, März 2009
*/

/*----------------------------allgemein------------------------------*/

* {
	margin:0;
	padding:0; /*legt verteilung auf Seite fest, kein rand rund herum und kein padding*/
}


html, body {
	height: 100%;
}


body {
	font-family: Verdana; 
	font-size: medium;  
}

ul {
	list-style: none; 
}

a {
	text-decoration: none;
	color:black;
	
}
a img {
	border: 0;
}
/*----------------------------erweitert allgemein------------------------------*/

#container {
	background:#92AE86;
	width:980px;
	overflow:hidden;
	margin: 0 auto
	
}

.description {
	font-size:110%;
	margin-bottom:20px;
	margin-left: 0.25em;
	overflow: hidden;
	padding: 0.5em;
}
/*----------------------------header------------------------------*/


#header {
	background: #999;
	
}

/*----------------------------content------------------------------*/

#title {
	padding: 1em 0.30em;
}

#navigation {
	background: #5A6D54;
	overflow:hidden;
}

#navigation li {
	display: inline;
}


#navigation li a{
	display:block;
	float:left;
	padding: 0.25em 0.75em;
	margin-right: 1em;
	overflow:hidden;
}

#navigation li a:hover {
	background: #92AE86;
	color: white;
}

#content {
	float:left;
	width:100%;
	font-size: 70%;
	height:100%;
}


body#studium #navigation li#studiumauswahl  a {
	background: #92AE86;
	color: white; /*--damit reiterauswahl in navigation gleiche farbe behält wie content, wenn angewählt..*/
}

body#homer #navigation li#homer  a {
	background: #92AE86;
	color: white; /*--damit reiterauswahl in navigation gleiche farbe behält wie content, wenn angewählt.body ID im html nicht vergessen.*/
}

.platzhalter1 a{ /*--nur provisorisches platzhalterbild, muss thumbnail und verlinktes Bild müssen in html eingebunden werden--*/
		display:block;
		float:left;
		width:60px;
		height:60px;
		background: transparent url('../Bilder/platzhalter2.png')top left no-repeat;
		text-indent: 0em;
		margin: 15px;
}

.projekt {
	display:block;
	/*background: grey;*/
	margin-right: 155px;
	margin-left: 155px;
	margin-bottom: 30px;
	overflow:hidden;
}

.miniaturen {
	float: left;
	width: 50px;
	height: 50px;
	margin: 15px;
	
}













 

