/*  default.css
 *
 *  In dieser Datei befinden sich die globalen Layouteinstellungen.
 *
 */



/*   Allgemeiner body-Teil:
 *
 *   Hintergrundfarbe, Textfarbe, Aussenraender, Scrollbalkenfarbe (nur IE)
 */
body {
	font-family: Times New Roman,Arial,Verdan,Helvetica,sans-serif;
        font-style: italic;
	background-image: url("../images/back.jpg");
	background-position: top left;
	background-repeat: no-repeat;
	background-attachment: fixed;
        background-color: #FAFAB3;
	color: #FAFAB3;

	margin: 10px;
	padding: 0px;

	scrollbar-base-color: #ff0000;
	scrollbar-face-color: #FAFAB3;
	scrollbar-highlight-color: #ffffff;
	scrollbar-shadow-color: #ffffff;
	scrollbar-3dlight-color: #767D92;
	scrollbar-arrow-color: #767D92;
	scrollbar-track-color: #767D92;
	scrollbar-darkshadow-color: #767D92;
}


/*   Ueberschriften (alle verwendeten auflisten)
 *
 *   Schriftfamilie, fett gedruckt, Farbe
 */
h1,h2,h3,h4 {
	font-family: Times New Roman,Verdana,Arial,Helvetica,sans-serif;
	font-weight: italic;
	color: #000000;
}

/* Ueberschriftgroessen hier festlegen
 *
 * moegliche Werte:
 *
 * xx-small = winzig.
 * x-small = sehr klein.
 * small = klein.
 * medium = mittel.
 * large = groß.
 * x-large = sehr groß.
 * xx-large = riesig.
 * smaller = sichtbar kleiner als normal.
 * larger = sichtbar größer als normal.
 *
 * smaller und larger haben, zumindest bei mir, keine Auswirkung.
 *
 */
/*
h1 { 
	font-size: large;
}

h2 {
	font-size: medium;
}

h3 {
	font-size: medium;
}

h4 {
	font-size: small;
}
*/

/*   Wie oben fuer die Absaetze (Paragraph und Aufzaehlungen)
 *
 *   Schriftfamilie, Farbe
 */
p {     
        font-family: Times New Roman,Verdana,Arial,sans-serif;
	font-style: italic;
	font-size: small;
	color: #000000;
}



/*   Verweise
 *
 *   Schriftart, Farbe, Stil (unterstrichen)
 */

/* globaler Teil (fuer alle Links) */
a {
	font-family: Times New Roman,Verdana,Arial,sans-serif;
	font-style: italic;
	font-size: small;
	color: #000000;
	text-decoration: none;
}

a:link {
	color:#00008D;
	text-decoration:none;
}

a:visited {
	color:#767D92;
	text-decoration:none;
}

a:hover {
	color:#00008D;
	text-decoration:underline;
}

a:active {
	color:#00008D;
	text-decoration:underline;
}

a:focus {
	color:#00008D;
	text-decoration:underline;
}



/* Die Divisions */

div {
	margin: 0px;
	padding: 0px;
}

div.navigation {
	
	background-position: top left;
	background-repeat: no-repeat;
/*	background-color: #ff0000; */
/*
	border-width: 1px;
	border-style: solid;
	border-color: #0000ff;
*/
	position: absolute;
	width: 220px;
	height: 90%;
	top: 10px;
	left: 0px;
}

div.container {
/*
	border-width: 1px;
	border-style: solid;
	border-color: #408040;
*/
	position: absolute;

	width: 65%;

	min-width: 450px;
	min-height: 450px;

	top: 0px;
	left: 240px;
}

/div.oben {
	background-image: url("../images/line-side.gif");
	background-position: bottom right;
	background-repeat: no-repeat;

/*
	border-width: 1px;
	border-style: solid;
	border-color: #0000ff;
*/
	position: relative;

	padding: 3ex;

	min-height: 450px;
}

/div.unten {
	background-image: url("../images/line-bottom.gif");
	background-position: top right;
	background-repeat: no-repeat;
/*
	border-width: 1px;
	border-style: solid;
	border-color: #ff0000;
*/
	position: relative;
	min-width: 450px;
	height: 10px;
}

/div.logo-oval {
	position: absolute;
	visibility: visible;
	width: 220px;
	height: 154px;
	left: 0px;
	top: 0px;
	z-index: 0;
}



/* Das Schild */

img.schild-lamm {
	border: 0px;
	float: right;
}

