body {
	margin: 0px; 
    font: 12px/20px Verdana;
}

.test01 {
  background-image:url(../img/mback.gif);
  background-repeat:repeat-y;
  margin: 0px;
  vertical-align: top;
}

.main {
  width: 750px;
  vertical-align: top;
  padding: 20px 20px 5px 30px;
  color: #666;
}

.kopf {
  background-color: #1A181D;
}


.text {
  padding: 0px 0px 0px 20px;
}

.flyer {
	font: 10px/14px Verdana;
	width: 100px;
}

.pdf {
	color: #666;
	text-decoration: none;
	font-style: italic;
}









.ue1 {
	color: #892237;
	font-family: Verdana;
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
}


.space1 {
	height: 40px;
}

.auf1 {
	padding: 0px 0px 0px -200px;
	
}

.button {
	background-color:#E6E6E6;
	border: 1px solid #858587;
	font-family: Verdana;
	font-size: 10px;
	line-height: 14px;
	color: #892237;
	font-weight: bold;
}

.feld {
 border: 1px solid #858587;
 	font-family: Verdana;
	font-size: 10px;
	line-height: 14px;
	overflow:hidden;
 
}

.tabkopf {
	background-color:#858587;
	color:#FFFFFF;
	padding: 2px 10px 2px 0px;
	font-family: Verdana;
	font-size: 11px;
	line-height: 15px;

}

.tab {
	padding: 2px 0px 2px 0px;
	font-family: Verdana;
	font-size: 11px;
	line-height: 12px;
}

.bildlist {
	padding: 5px 5px 5px 5px;
}

a img {
	text-decoration: none;
	border-width: 0px;
}

/* 

	TEAM-Seite 
    Version 1.0

*/

.tgroup {
  padding: 0px 0px 0px 20px;
}

.teintrag {
  padding: 5px 0px 5px 0px;
}

.theadline{
  font: 16px/18px Verdana;
  font-weight: bold;
}

.tbild1 {
  padding: 0px 0px 0px 0px;
  font: 12px/14px Verdana;
  font-weight: bold;
}

.tbild2 {
  padding: 0px 0px 0px 0px;
  font: 11px/14px Verdana;
}

.tbild2 a {
  text-decoration: none;
  color: #666;
}

/*
Sitemenu 
*/
.e0 {
	background-color:#892237;
	color:#FFFFFF;
	padding: 1px 5px 1px 5px;
	font: 11px/18px Verdana;
	background-position: center;
}

.e1 {
	background: #F0F0F8;
	border: 1px solid #654;
	font: 11px/18px Verdana;
    padding: 1px 5px 2px 5px;
	background-position: center;
}

.e1_null {
	border: 1px solid #FFFFFF;
    padding: 1px 5px 2px 5px;
	background-position: center;
}

.e1_deaktiviert {
	background: #FF9999;
	border: 1px solid #654;
	font: 11px/18px Verdana;
    padding: 1px 5px 2px 5px;
	background-position: center;
}

.e1_eingabe {
	font: 10px Verdana;
	width: 190px;
}

.e0 a {
	color:#FFFFFF;
    text-decoration: none;
}

.e1 a {
    color: #666;
	text-decoration: none;
}




/*       
  Startseite
  Version 1.0

 */
.box {
  color: #666;
  font: 12px/16px Verdana;
  background-color: #F1D6CD;
  padding: 10px 20px 10px 20px;
  vertical-align:top;
  text-decoration: none;
}



/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want!
All you have to do is ensure the script has the correct CSS property name
(like 'visibility' or 'display') that changes to show/hide menus.

If you want to extend this layout, one good resource for UL/LI formatting is:
    http://www.alistapart.com/articles/taminglists/
Alternatively, you can use any other CSS dropdown layout instead. More here:
    http://www.alvit.de/css-showcase/
Consult your favourite CSS reference for customising fonts/borders/etc.

Otherwise, you can just change the #RGB border/background colours where
suitable to customise for your site -- easy :).

*/



/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 width: 160px;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 left: 140px;
 padding: 1px;
 background: #F0F0F8;
 border: 1px solid #654;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 3px 5px 3px 10px; 
 color: #000;
 text-decoration: none;
 /*border: 1px solid transparent;*/
 margin: 0;

}

.menulist li div {

	background-image: url(../img/mback.gif);
	width: 160px;
}

/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist li a {
 border-width: 0;
 /*margin: 1px;*/
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 background: #892237;
 padding: 2px 5px 4px 10px;
 /* border: 1px solid #ADF; */
 margin: 0;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #68C;
 /* border: 1px solid #CDE; */
 margin: 0;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

.menulist a#m {
	background-image: url(../img/test.gif);
	height: 33px;
	border: 0px;
	color: #FFF;
	background-repeat: no-repeat;
	padding: 0px 15px 0px 20px;
}

.menulist a#m:hover, .menulist a.highlighted#m, .menulist a:focus {
  background-image: url(../img/test1.gif);
  height: 33px;
  border: 0px;
  padding: 0px 15px 0px 20px;
  color: #FFF;
}


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
	float: right;
	padding: 6px 0px 0px 0px;
}

.menulist a.invert-nav {
 font-weight: bold;
 height: 33px;
 border: 0px;
 padding: 0px 15px 0px 20px;
}


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */