/* Stylesheet für die little boxes Übungsseiten */
* { padding: 0; margin: 0; }
body {
	
	color: #ECF5B2; /* Schriftfarbe */
	background-color: #101B13; /* Hintergrundfarbe */
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: small; /*Schriftgröße*/
}

/*====================================================
	1. DIV-Bereiche
====================================================*/

#wrapper {
    position: relative;
	width: 875px;
	margin-right: auto;
	margin-left: auto;
}

/*====================================================
	<-- index-Startseite -->
====================================================*/

#bildbereich  {
	position: absolute;
	display: block;
	top: 40px;
	height: 500px;
	margin-left: auto;
	margin-right: auto;
	border: 4px;
	border-style:  double;
	border-color: #ECF5B2;
}
 

#navi {
    position: absolute;
	background-color:#0099CC;
	padding-left: 130px;
	padding-right: 50px;
	top: 480px;
	left: 100px;
}

/*====================================================
	<-- index-Sprachen -->
====================================================*/

#zeichen_l {
	position: absolute;
	top: 10px;
	left: 80px;
}

#zeichen_r {
	position: absolute;
	top: 10px;
	right: 80px;
}


#kopfbereich {
	position: relative;
	color: #ECF5B2;
	font-size: xx-large;
	padding-top: 15px;
	height: 60px;
	text-align: center;
}

#titel {
	font-size: 14px
	color: #ECF5B2;
	background-color: transparent;
}

#textbereich {
	position: relative;
	height: 500px;
	text-align: center;
	font-size: small;
}

#textbereich p { 
	width: 875px;
	margin-top: 20px;
	text-align: center;
}

#textbereich img {
	display: block;
	margin-top: 50px;
	margin-left: auto;
	margin-right:auto;
}

#textbereich ul {
	position: absolute;
	list-style-type: none;
	width: 120px;
	margin: 0;
	padding: 0;
}

#textbereich li {
	text-decoration: none;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
}

#menue1	{
	position: absolute;
	top: 130px;
	left: 45px;	
}	

#menue2 {
	position: absolute;
	top: 130px;
	right: 160px;
}


/*=============================================================
	2. Allgemeine HTML-Elemente
=============================================================*/

a {
	color: #ECF5B2;
	text-decoration: none;
	font-size: medium;
	outline: none;
	padding-left: 5px;
	padding-right: 5px;
}


a:hover, a:focus
a:active { color: #101B13; background-color: #ECF5B2; }


