/**************Formatierung der Seite allgemein******
*****************************************************/
html, body{
	margin: 0;
	padding: 0;
	background-image: url(hintergrund.jpg);
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px; 
	text-align:center; 
}

/* Formatierung fuer alle Bilder*
*********************************/
img{
border: none;
}

/**************Formatierung der Bereiche**************
*****************************************************/
#header {
	width: 640px;
	margin: auto;
	padding: 10px 0 0 0;
	overflow: hidden;
	border-bottom: 2px double #003300;
}

#logoarea{
	width: 121px;
	height: 80px;
	float: right;
	margin: 2px;
}

#content{
	width: 640px;
	height: auto;
	margin: auto;
	padding: 10px 0 10px 0;
	border-bottom: 2px double #003300;
	/*background: #ffffff;  oder background: url(back.jpg) repeat-y;*/
	text-align:left; 
}

#footer{
	width: 640px;
	margin: auto;
	color: #cccccc;
	background-color: #FFFFCC;
}

/* Formatierung fuer die Ueberschriften allgemein*
**************************************************/

/* SiteName für die Formatierung des Untertitels im head 
************************************************************/
#subtitel{
	padding: 0px 0px 10px 10px;
	color: #666666;
	font-size: 9pt;
}

/* pageName für die Formatierung des jeweiligen Seitennamens*
*************************************************************/
#pageName{
	padding-bottom: 10px;
	padding-left: 10px;
}

/* Formatierung der einzelnen Ueberschriften*
********************************************/
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	color: #003300;
}

h1{
	font-size: 160%;
	padding: 10px 0px 10px 10px;
}

h2{
	font-size: 140%;
}

h3{
	font-size: 120%;
}

h4{
	font-size: 100%;
}

h5{
	font-size: 95%;
}

h6{
	font-size: 95%;
	font-weight: normal;
}

/* Formatierung fuer Listen*
****************************/
ul{
	list-style-type: disc;
	text-indent: 0px;
	list-style-position: outside;
}

ul ul{
	list-style-type: disc;
}

ul ul ul{
	list-style-type: none;
}

/* Formatierung der Tabellen*
*****************************/
td {
} 

th {color : #003300;
	text-align : center;
	background-color : #F9FEEB; 
} 

tbody {
} 

thead {
} 

tfoot {
} 

.table {
	width: 640px;
	margin: auto;
}

.table-center {
	text-align : center;
}

.table-right {
	text-align : right;
}

/* Formatierung fuer Links allgemein *
**************************************/
a:link, a:visited {
	color: #003300;
	text-decoration: underline;
}

a:hover {
	color: #003300;
	text-decoration: none;
}

