/* Farbtabelle:
blau		-> #2900BF
gelb		-> #F2F9A3
weiss		-> #FFFFFF
schwarz		-> #000000
*/


BODY {
	text: #2900BF;
	background-color: #F2F9A3;
	leftmargin: 10;
	topmargin: 12;
	marginwidth: 10;
	marginheight: 12;
/*
Mit CSS-Anweisungen für Außenabstand (Margin) und Innenabstand (Padding) können Sie für viele Selektoren eigene Formate festlegen. Dabei können die Werte für alle 4 Seiten (oben, rechts, unten, links) mit einer Anweisung oder für die 4 Seiten mit separaten Anweisungen definiert werden. Die Angaben können unterschiedliche oder gleiche Werte haben.
Erlaubte Einheiten: cm , px, pt, mm,
margin: 10px;	->				alle gleich
margin: 10px 10px 10px 10px;
margin-top: 15px;	->			oben
margin-right: 20px;	->			rechts
margin-bottom: 15px;	->		unten
margin-left: 12px;	->			links
margin: 15px 20px 15px 12px;
*/
}

/* Text */
h1,h2,h3,h4,h5,h6,ol,ul,li,dl,dt,dd,p,input,textarea,select {
	color: #2900BF;
	font-family: "Comic Sans MS", Arial, Helvetica, sans-serif;
	text-align: left;
}
h1 {
	font-size: 150% ;
	text-align: center;
}
h2 {
	font-size: 140% ;
}
h3 {
	font-size: 130% ;
}
h4 {
	font-size: 110% ;
}
h5 {
	font-size: 100% ;
}
h6 {
	font-size: 90% ;
}

/* Absaetze */
P {
	color: #2900BF;
	font-family: "Comic Sans MS";
	font-size: 10pt;
}

/* fett */
B {
	color: #2900BF;
	font-weight: bold;
	font-style: italic;
	font-family: "Comic Sans MS";
	font-size: 10pt;
}

/* Italic */
I {
	font-size: 10pt;
	font-style: italic
	color: #2900BF;
}

/* small */
SMALLTEXT {
	font-family: "Comic Sans MS";
	font-size: 10pt;
	color: #2900BF;
}
SMALLTEXTB {
	font-family: "Comic Sans MS";
	font-size: 10pt;
	color: #2900BF;
	font-weight: bold;
}

/* Links */
a{
	color: #2900BF;
	font-family: "Comic Sans MS";
	font-size: 10pt;
}
a:link {
	color: #2900BF;
	font-family: "Comic Sans MS";
	align: "center";
	font-size: 10pt;
}
a:visited,
a:active {
	display: inline;
	color: #2900BF;
	text-decoration: none;
	border-bottom-color: #2900BF;
/*	border-bottom-style: dotted; */
/*	border-bottom-style: solid; */
 	border-bottom-width: 1px;
}
a:hover {
	display: inline;
	color: #2900BF;
/*	background-color: #2900BF; */
 	border-bottom-color: #CCCCCC;
}

/* Navigation */
#nav {
	float: left;
	width: 170px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
/*	background-color: #DDDDDD; */
/*	background-image:url(left_data/background.jpg); */
	background-repeat:repeat;
	background-position: 20px;
	overflow:hidden;
}
#nav ul {
	font-size :120%;
	font-weight: bold;
	font-family:"Comic Sans MS", Helvetica, sans-serif;
	align: "center";
/*	margin:  0px   2px 1px 2px; */
	margin:  0px   0px 0px 0px;
/*	padding: 0px 3px 0px 0px; */
	padding: 0px 0px 0px 0px;
	overflow: hidden;
}

#nav ul li {
	display: block;
	width: 100%;
	padding: 0px 0 0 0;
	background-color: #F2F9A3;
	margin:  0 0 0 0;
	border-bottom: 0px;
}

#nav ul a:link,
#nav ul a:visited,
#nav ul a:hover,
#nav ul a:active {
	display: block; 
/*	color: #2900BF; */
/*	background-color: #F2F9A3; */
	width:160px;
	height:50px;
	text-decoration: none;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	background-image:url(left_data/bttn_active.gif);
	background-repeat:no-repeat;
	background-position:left top;
	border-bottom:1px;
/*	padding: 8px 4px 8px 8px; */
	padding: auto;
/*	margin: 0px 0px 0px 0px; */
	margin: auto;
    outline: none; /* hide dotted outline in Firefox */
 }

#nav ul a:focus {
/*	display: block; */
/*	color: #2900BF; */
/*	background-color: #DDDDDD; */
	text-decoration: none;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	background-image:url(left_data/bttn_focus.gif);
	background-repeat:no-repeat;
	background-position:left top;
	border-bottom:0px;
/*	padding: 8px 4px 8px 8px; */
	padding: auto;
/*	margin: 0px 0px 0px 0px; */
	margin: auto;
 }

#nav ul a:hover {
/*	display: block; */
/*	color: #2900BF; */
/*	background-color: #2900BF; */
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	background-image:url(left_data/bttn_hover.gif);
	background-repeat:no-repeat;
	background-position:left top;
	border-bottom:0px;
/*	padding: 8px 4px 8px 8px; */
	padding: auto;
/*	margin: 0px 0px 0px 0px; */
	margin: auto;
}

#subnav {
	float:left;
	width:156px;
	padding:0;
	margin:0;
	height:100px;
	background-color:#F2F9A3;
}

#navbottom {
/*	background-image: url(../img/lmenubottomback.jpg); */
	background-repeat:no-repeat;
	background-position:left bottom;
	padding: 0;
	height: 8px;
}



/*special BUTTONS!!!*/
 .clear { /* generic container (i.e. div) for floating buttons */
    overflow: hidden;
    width: 100%;
}

a.button {
    background: transparent url('left_data/bg_button_a.gif') no-repeat scroll top right;
    color: #444;
    display: block;
    float: left;
    font: normal 12px arial, sans-serif;
    height: 24px;
    margin-right: 6px;
    padding-right: 18px; /* sliding doors padding */
    text-decoration: none;
}

a.button span {
    background: transparent url('left_data/bg_button_span.gif') no-repeat;
    display: block;
    line-height: 14px;
    padding: 5px 0 5px 18px;
}

a.button:active {
    background-position: bottom right;
    color: #000;
    outline: none; /* hide dotted outline in Firefox */
}

a.button:active span {
    background-position: bottom left;
    padding: 6px 0 4px 18px; /* push text down 1px */
} 




/* Bilder */
img, a img, img:hover{
 	background-color: #F2F9A3;
	border:none;
	border-width: 0px;
	border-bottom-width: 0px;
	padding:0;
	margin:0;
}

/* Tabellen */
TD {
 	text: #2900BF;
 	background-color: #F2F9A3;
 	color: #2900BF;
	font-family: "Comic Sans MS";
	font-size: 10pt;
}

TD img {
	display: inline;
 	border-bottom-color: #CCCCCC;
	border:none;
	border-width: 0px;
	border-bottom-width: 0px;
	color: #2900BF;
	background-color: #F2F9A3;
}