/**
*	Grundformate
*	@version	1.1
*	@author		Eike Swat
*	@company	Parrot Media
*/

/* *********************** Grundlegende Formate *********************** */
/* ******************************************************************** */
* {
	margin: 0;
	padding: 0;
}
html, body {
	border: 0 solid;
}
body {
	font-family: Calibri, Verdana, Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
	font-size: 95%;
	color: #000000;
	padding: 0px;
	margin: 0px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: Cambria, Arial, Helvetica, sans-serif;
	background: transparent;
}
p, a, li, th, td, label, input {
	/*font-size: 0.8em;*/
}
/* Schriftarten-Reset, damit verschachtelte Formate nicht doppelt verkleinert werden */
li li, li a, li li, 
p p, p a, p li,
td td, td a, td p, td h1, td h2, td h3, td h4, td h5, td h6, 
th th, th a, th p, th h1, th h2, th h3, th h4, th h5, th h6 {
	font-size: 100%;
}
p {
	margin-top: 0px;
	margin-bottom: 7px;
}
img {
	border: 0px;
}

/* Tabellenformatierung */
table {
	border-collapse: collapse;
}
td {
	vertical-align: top;
}
th {
	vertical-align: top;
	text-align: left;
}

fieldset {

}
legend {

}
li {
	margin-left: 20px;
}



/* ************************** Feste Formate *************************** */
/* ******************************************************************** */

acronym {
	border-bottom-width: 1px;
	border-bottom-style: dashed;
}
address {
	
}
blockquote { /* Zitatblock */
	font-style: italic;
	border-left: 2px solid silver;
	padding-left: 5px;
	margin-left: 10px;
}
cite{ /* Zitatgeber */
	display: block;
}
quote{ /* Inline-Zitat */

}
pre { /* Preformatted */
	font-family: "Courier New", Courier, monospace;
	background-color: #EEEEEE;
	border: 1px solid #CCCCCC;
}
code{ 
	font-family: "Courier New", Courier, monospace;
	background-color: #EEEEEE;
	border: 1px dashed navy;
}
label { /* Zu einem INPUT-Feld gehörender Text */
	
}
label:hover {
	cursor: pointer;
}

/* ************************** Pseudoformate *************************** */
/* ******************************************************************** */

a:link { 	color: black; text-decoration: underline; }
a:visited { color: black; text-decoration: none; }
a:focus { 	color: black; text-decoration: underline; }
a:hover { 	color: black; text-decoration: none; }
a:active { 	color: black; text-decoration: underline; }
a  img { 
	border: 0 none;
}



/* ************************* Grundlegende IDs ************************* */
/* ******************************************************************** */
#main, #container { /* Alles umgebender Container */

}

/* CONTENT */
#content, .mceContentBody {
	text-align: justify;
	vertical-align: top;
	line-height: 1.2em;
	padding: 10px;
}
#content img, .mceContentBody img {
	margin: 5px;
	margin-bottom: 0px;
	border: 1px solid black;
}
#content img[align=right], .mceContentBody img[align=right] {
	margin-right: 0px;
}
#content img[align=left], .mceContentBody img[align=left] {
	margin-left: 0px;
}

/* HEADER */
#header {

}

/* FOOTER */
#footer {
	text-align: right;
	padding: 5px;
	font-size: 8pt;
}



/* *********************** Grundlegende Klassen *********************** */
/* ******************************************************************** */
.all { /* Weist dem Element die maximale Größe zu */
	width: 100%;
	height: 100%;
}
.nowrap {
	white-space: nowrap;
}
.smallfont {
	font-size: 8pt;
}
.smallsmallfont {
	font-size: 7pt;
}
.smallsmallsmallfont {
	font-size: 6pt;
}
/* Statusmeldungen */
.err, .status {
	border: 1px solid white;
	color: white;
	font-weight: 900;
	text-align: center;
	padding: 2px 0px 2px 0px;
}
.err{
	background-color: #dd4444;
}
.status {
	background-color: green;
}
/* Diese Klasse lässt einen Pointer-Zeiger beim Hover erscheinen */
.pointer:hover {
	cursor: pointer;
}


/* **************** Sonstige/Bedingte Klassen und IDs ***************** */
/* ******************************************************************** */

/* Erstellt eine Baumstruktur */
table.tree th {
	text-align: right;
	font-weight: 500;
}
table.tree td {
	text-align: left;
}

img.bordered { /* Umrahmtes Bild: Bilder an sich sind nicht umrahmt */
	border: 1px solid black;
}

.tpl { /* Klasse zum Überprüfen der Templates */
	border: 1px solid red;
}
.tpl td {
	border: 1px solid orange;
}

/* Dieser Block ist auskommentiert, da er nicht CSS2 kompatibel ist! */

/* Schneidet für den IE Texte ab und setzt 3 Punkte dran */
/*.cut {
	text-overflow:ellipsis;
	overflow:hidden;
	white-space:nowrap;
}*/

/* Ein Hauptauswahl-Bild */
/* Wird mithilfe von Javascript angesteuert */

/*.imageS {
	font-weight: 900;
}*/
/* Bezeichnet die Tabelle oder den Container */
/*.imageS img {
	padding: 20px;
	border-color: white;
	filter: Gray();
}*/
/* Hover beim Hauptauswahl-Bild: Wird direkt auf das Bild angewandt */
/*.imageSOver { 
	border-color: silver !important;
	background-color: #eeeeee;
}*/
.nosee {
	display: none;
}
.nobr {
	white-space: nowrap;
}

/* ************************** Modul-Styles **************************** */
/* ******************************************************************** */

/* Gästebuch */
#guestbookNewEntry{ /* Formular für einen neuen Eintrag */
	border-bottom: 2px solid black;
}
#guestbookNewEntry input, #guestbookNewEntry textarea {
	border: 0 none;
	border-bottom: 1px dashed black;
	background-color: #EEEEEE;
}
#guestbookNewEntry textarea {
	width: 100%;
	height: 100px;
	border: 0 none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.guestbookEntry{ /* Eine Eintrag-Box (ein Eintrag in der Liste, Table) */
	border: 1px solid silver;
	width: 100%;
	margin: 10px 0;
}
.guestbookEntry td, .guestbookEntry th{
	padding: 0 5px;
}
.guestbookEntry th {
	border-bottom: 1px solid silver;
	background-color: #EEEEEE;
}
.guestbookEntryTime{
	text-align: right;
	white-space: nowrap;
}
.guestbookEntryName{
	width: 100%;
}
.guestbookEntryText{

}