body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

.bodytext {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
}

A {
	text-decoration: none;
}

A:LINK    {color: black}
A:ACTIVE  {color: black}
A:VISITED {color: black}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsLtHdr #container { 
	width: 61.4em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.twoColElsLtHdr #header {
	background: #FFFFFF;
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, 		you may want to remove the padding. */
	vertical-align: top;
	text-align: right;
	display: block inline;
	height: 177px;
    background: transparent url(../pictures/top_03.gif) scroll no-repeat bottom right;	
} 

.twoColElsLtHdr #header img {
	vertical-align: top;
} 

.twoColElsLtHdr #header_in  {
	text-align: left;	
	vertical-align: top;
	
} 

.twoColElsLtHdr #header2 {
	background: #dfdedf;
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0px;
	vertical-align: top;
	text-align: right;
} 

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/

.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 12em; /* since this element is floated, a width must be given */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* top and bottom padding create visual space within this div */
}
.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLtHdr #mainContent {
	margin: 0 0.5em 1.5em 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	width: 740px; /* Fix für IE6 */
} 

.twoColElsLtHdr #logos {
	vertical-align: top;
	text-align: center;
} 

.twoColElsLtHdr #footer {
	background:#a9badf;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	color:#000000;
	font-size: 10px;
	padding-top: 9px;
	padding-right: 0px;
	padding-bottom: 9px;
	padding-left: 0px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
} 

.twoColElsLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}


/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

UL {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	color: #000000;
	font-size: 80%;
}


#breadcrumb {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	padding-left: 78px;
	text-align: left;
}

.menu1-level1-no {
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #000000;
	font-size: 11px;
	letter-spacing: 0.1em;
	padding-right: 3px;
	width: 180px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #4a4646;
	padding-top: 5px;
	padding-bottom: 5px;
	cursor: pointer;
	margin: 0px 0px 0px 6px;
}

a:hover .menu1-level1-no  {

	background-color: #061467;
	color: #FFFFFF;

}

.menu1-level1-act {

	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #FFFFFF;
	font-size: 11px;
	letter-spacing: 0.1em;
	padding-right: 1px;
	width: 180px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #4a4646;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #a9badf;
	margin: 0px 0px 0px 6px;	
}


.menu1-level2-no {
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #000000;
	font-size: 11px;
	padding-right: 1px;
	width: 180px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #4a4646;
	padding-top: 5px;
	padding-bottom: 5px;
	cursor: pointer;
	margin: 0px 0px 3px 6px;
}

a:hover .menu2-level1-no  {

	background-color: #061467;
	color: #FFFFFF;

}

.menu1-level2-act {

	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #FFFFFF;
	font-size: 11px;
	padding-right: 1px;
	width: 180px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #4a4646;	
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #a9badf;
	margin: 0px 0px 3px 6px;	
}

.menu1-level3-no {
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #000000;
	font-size: 10px;
	padding-right: 1px;
	width: 180px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #4a4646;
	padding-top: 5px;
	padding-bottom: 5px;
	cursor: pointer;
	margin: 0px 0px 3px 6px;
}

a:hover .menu3-level1-no  {

	background-color: #061467;
	color: #FFFFFF;

}

.menu1-level3-act {

	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #FFFFFF;
	font-size: 10px;
	padding-right: 1px;
	width: 180px;
	padding-left: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #a9badf;	
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #5e699c;
	margin: 0px 0px 3px 6px;	
}

/* CSS für Google Maps / Anpassungen für imarketing09 (os / 08.07.08) */

.mapnest {
  width:530px;
}

#poitab {
	margin: 0;
	padding: 0 0 20px 0 !important; padding:0;
	width:240px;
    border-bottom: 1px solid #9FB1BC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 11px;	
}

#poitab li {
	margin: 0; 
	padding: 0;
	display: inline;
	list-style-type: none;
}
	
#poitab a, #poitab a:link, #poitab a:visited {
	float: left;
	line-height: 14px;
	font-weight: bold;
	padding: 0 12px 6px 12px;
	text-decoration: none;
	color: #708491;  	
}

#poitab .act a, #poitab a:link.active, #poitab a:visited.active, #poitab a:hover {
	color: #000;
	background: url(square.gif) no-repeat bottom center;
}

#rggmmenu {

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 11px;		
	color: #000000;
	width: 670px;
	text-align: center;
}


.poi-content {
clear:both;
height:105px;
overflow:auto;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: normal;
color: #000000;
font-size: 11px;
text-align: center;
}

.maptop {
  padding:10px;
}

.mapcat {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: normal;
color: #000000;
font-size: 12px;
}

#infobox {
  border:1px solid red;
  width:300px;
  position:absolute;
  background:#fff;
  z-index:998;
  display:none;
}

.tx-rgpopup-dragbar {
	background-color: red;
	cursor:hand; 
	cursor:pointer;
    padding: 2px 0 4px 10px;
	height:15px;
}
.tx-rgpopup-left {
	font-size : 13px; 
	font-weight: bold;
	color: white;
	float: left;
	padding-left: 5px;
}
		
.tx-rgpopup-right {
	text-align:right;
	padding-right: 1px;
}
.tx-rgpopup-mainNest {
	text-align: left;
	padding: 10px;
	background-color: white;
}	

/* tooltip at POI on map */
.markerTooltip {
  background: #fff;
  color:#000;
  padding: 3px 6px;
  white-space: nowrap;
  border: #333 solid 1px;
  -moz-border-radius:10%;
  -moz-opacity: 85%;
  opacity: 0.85;
  z-index:4;
}

/* CSS für Routenanzeige */

.googledir {

font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: normal;
color: #000000;
font-size: 12px;

}

	ul.pde a:link,
	ul.pde a:visited,
	ul.pde a:hover,
	ul.pde a:active{
		text-decoration:none;
	}
	ul.pde,ul.pde li{
		margin:0;
		padding:0;
		list-style:none;
	}
	ul.pde ul{
		margin:0 0 0 1em;
		padding:0;
	}
	ul.pde li{
		line-height:1.3em;
		padding:.2em 0;
		margin:0;
		padding-left:15px;
	}
/* dynamically added to LIs with nested ULs */
	ul.pde li.parent{
		padding-left:0;
	}
	ul.pde li.parent img{
		border:none;
		padding-right:5px;
	}
/* dynamically added to LIs with nested ULs and STRONG elements in them */
	ul.pde li.current li{
		padding-left:0;
	}
/* The class to hide nested ULs */
       .hide{
              display:none;
       }

/* The class to show nested ULs */
       .show{
               display:block;
       }
	   
/* CSS für [imk.fx]:box - gerundete Ecken */
/* Ausnahme für IE <8 im T3-Setup definieren */

.tx-fdfx2cols-pi1 { /* Korrektur für IE6/7 (ansonsten wird max. Breite überschritten */

  width:95%;
}

.tx-fdfx3cols-pi1 { /* Korrektur für IE6/7 (ansonsten wird max. Breite überschritten */

  width:95%;
}

.box01:before {
  background: transparent url(../pictures/oben_rechts.gif) scroll no-repeat top right;
  height: 21px;
  display: block;
  border: none;
  content: url(../pictures/oben_links.gif);
  margin: 0px;
  padding: 0;
  line-height: 0.1;
  font-size: 1px;
}

.box01 .bodytext {
	margin: 0px 0px 0px 5px; /* Margin 0px für Safari */
	padding-right: 15px;
	padding-left: 15px;
	display: block;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../pictures/mitte_1200.gif);
	background-repeat: repeat-x;
	background-position: right top;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #000000;
}

.box01:after {
  display: block;
  line-height: 0.1;
  font-size: 1px;
  content:  url(../pictures/unten_links.gif);
  margin: 0 0 0 0;
  height: 28px;
  background: white;
  background: transparent url(../pictures/unten_rechts.gif) scroll no-repeat bottom right ;
  padding: 0;
}

.box02:before {
  background: transparent url(../pictures/top-right.png) scroll no-repeat top right;
  height: 30px;
  display: block;
  border: none;
  content: url(../pictures/top-left.png);
  padding: 0;
  line-height: 0.1;
  font-size: 1px;
  background-color:#CCCCCC;
}

.box02 .bodytext {
	margin: 0px; /* Margin 0px für Safari */
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-color:#CCCCCC;
}

.box02:after {
  display: block;
  line-height: 0.1;
  font-size: 1px;
  content:  url(../pictures/bottom-left.png);
  margin: 0 0 -1px 0;
  height: 30px;
  background: white;
  background: transparent url(../pictures/bottom-right.png) scroll no-repeat bottom right ;
  padding: 0;
  background-color:#CCCCCC; 
}


.csc-firstHeader {

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #a9badf;
	padding: 5px;
	border: 1px solid #A2A2A2;
	text-align: center;
}


.csc-header-n2 h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #a9badf;
	padding: 5px;
	border: 1px solid #A2A2A2;
	text-align: center;
}

.csc-header-n3 h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #a9badf;
	padding: 5px;
	border: 1px solid #A2A2A2;
	text-align: center;	
}

.csc-header-n4 h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #a9badf;
	padding: 5px;
	border: 1px solid #A2A2A2;
	text-align: center;	
}

.csc-header-n5 h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #a9badf;
	padding: 5px;
	border: 1px solid #A2A2A2;
	text-align: center;	
}

.csc-header-n6 h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #a9badf;
	padding: 5px;
	border: 1px solid #A2A2A2;
	text-align: center;	
}

.csc-header-n7 h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #a9badf;
	padding: 5px;
	border: 1px solid #A2A2A2;
	text-align: center;	
}

.csc-header-n8 h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #a9badf;
	padding: 5px;
	border: 1px solid #A2A2A2;
	text-align: center;	
}

.csc-textpicHeader h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #a9badf;
	padding: 5px;
	border: 1px solid #A2A2A2;
	text-align: center;	
}

.ul_check {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;	
	padding-bottom: 3px;
	padding-top: 3px;
}

.ul_check LI {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;	
	padding-bottom: 3px;
	padding-top: 3px;
}

/* CSS für tt_news */
/* CSS für LATEST-Anzeige */

.news-latest-container {
	background-color: #FFFFFF;
 	border: 1px dashed #666;
	width: 720px;
	margin-top: 10px;
	margin-bottom: 15px;
	float: left;
}

.news-latest-container H2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #5e699c;	
	color: #FFFFFF;
	padding: 5px;
	margin-top: 0px;
	margin-bottom: 0px;
}

.news-latest-item {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #f7f6ff;
	color: #000000;
	padding: 10px;
}

.news-latest-item .bodytext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}

.news-latest-morelink {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-align: right;
	margin: 0px;
	padding: 0px;
}

/* CSS tt_news für Archiv (AMENU-Anzeoige) */

.news-amenu-container {
	padding: 5px;
	margin-left: 10px;
	background-color: #f7f6ff;
 	border: 1px dashed #666;	
}

.news-amenu-container H2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #5e699c;	
	color: #FFFFFF;
	padding: 5px;
	margin: 0px;
}

.news-amenu-item-year {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 2px;
	border: 1px dashed #333;
	list-style-type: none;
	margin-left: 0px;
	margin-top: 5px;
	margin-bottom: 5px;
	text-align: center;
}

.news-amenu-container UL {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-decoration: none;
	list-style-type: none;
	margin: 0px;
	padding: 5px;
	text-align: center;	
}

.news-amenu-container LI {
	padding: 2px 0px 2px 0px;
}

/* CSS tt_news Archiv-Link */

.news-latest-gotoarchive {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #5e699c;	
	color: #FFFFFF;
	padding: 5px;
}

.news-latest-gotoarchive A:LINK {
	font-weight: bold;
	color: #FFFFFF;
}

.news-latest-gotoarchive A:VISITED {
	font-weight: bold;
	color: #FFFFFF;
}

/* CSS tt_news SINGLE-Ansicht */

.news-single-item {
	margin-top: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #f7f6ff;
	padding: 10px;
	border: 1px dashed #666;
}

.news-single-item .bodytext {
	font-size: 12px;
}

.news-single-item H2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 0px;
}

.news-single-backlink {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: underline;
}

/* CSS für LIST-Anzeige */

.news-list-container {
	background-color: #FFFFFF;
 	border: 1px dashed #666;
}

.news-list-container H2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #5e699c;	
	color: #FFFFFF;
	padding: 5px;
	margin-top: 0px;
	margin-bottom: 0px;
}

.news-list-item {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #f7f6ff;
	color: #000000;
	padding: 10px;
}

.news-list-item .bodytext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.news-list-morelink {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-align: right;
	margin: 0px;
	padding: 0px;
}

.news-list-date {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 10px;
	width: 700px;
	padding-right: 500px;
	float: none;
}

.news-list-item H3 {
	margin: 0px;
	padding: 0px;
}

.news-list-item A {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-align: right;
	text-decoration: underline;
}

.tx-ttnews-browsebox {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #f7f6ff;
	padding: 10px;
}

.tx-ttnews-browsebox TD {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-color: #f7f6ff;
	padding: 10px;	
}


#suchen {

	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	font-size: 10px;
}

/* CSS für indexed_search */

.tx-indexedsearch {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;	
	font-size: 11px;	
	letter-spacing: 0.1em;	
}

.tx-indexedsearch TD {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	letter-spacing: 0em;		
}

.tx-indexedsearch-info {
	font-weight: bold;
	padding: 5px;
}

/* CSS für Styled Tables (CSS2) */


#css2table table {
	width:95%;
	border-top:1px solid #e5eff8;
	border-right:1px solid #e5eff8;
	margin:1em auto;
	border-collapse:collapse;
	}
	
table caption {
	color: #9ba9b4;
	font-size:.94em;
	letter-spacing:.1em;
	margin:1em 0 0 0;
	padding:0;
	caption-side:top;
	text-align:center;
	}
	
tr.odd td	{
	background:#f6f6ff;
	}
	
tr.odd .column1	{
	background:#f6f6ff;
	}	
	
column1	{
	background:#f9fcfe;
	}
	
#css2table td {
	color:#000;
	border-bottom:1px solid #e5eff8;
	border-left:1px solid #e5eff8;
	padding:.3em 1em;
	text-align:left;
	}	
	
th {
	font-weight:normal;
	color: #000;
	text-align:left;
	border-bottom: 1px solid #e5eff8;
	border-left:1px solid #e5eff8;
	padding:.3em 1em;
	}	
	
thead th {
	background:#f6f6ff;
	text-align:center;
	font:bold 1.2em/2em "Century Gothic","Trebuchet MS",Arial,Helvetica,sans-serif;
	color:#000
	}	
	
tfoot th {
	text-align:center;
	background:#f6f6ff;
	}	
	
tfoot th strong {
	font:bold 1.2em "Century Gothic","Trebuchet MS",Arial,Helvetica,sans-serif;
	margin:.5em .5em .5em 0;
	color:#66a3d3;
		}	
		
tfoot th em {
	color:#f03b58;
	font-weight: bold;
	font-size: 1.1em;
	font-style: normal;
	}	

/* CSS für Mouse-Over + Styled Tables (CSS2) */

.mtable_over
	{
	cursor:hand;
	background-color:#a9badf;
	border: 1px solid #A2A2A2;
	padding: 1px;
	}

.mtable_out
	{
	padding: 1px;
	}


/* CSS für [imk.fx]:scroll / Titelseite */

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 646px;	 
	height:400px;	
}


.blue A:LINK {
	color: #ffffff;
}

.blue A:VISITED {
	color: #ffffff;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	border:1px solid #222;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}



/* single item */
#thumbs div {
	float:left;
	width:214px;
	height:400px;
	background:#333 url(../pictures/scroll/global/gradient/h150.png) repeat-x 0 400px;
	background-color:#333;
	color:#fff;
	border-left:1px solid #333;
	cursor:pointer;
	text-align:center;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#444;
	height:400px;
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#066;
	cursor:default;
}

#thumbs h3, #thumbs p, #thumbs span {
	margin:13px;		
	font-family:"bitstream vera sans";
	font-size:13px;
	color:#fff;	
}

#thumbs h3 em {
	font-style:normal;
	color:yellow;
}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(../pictures/scroll/left.png) no-repeat;
	float:left;
	margin:43px 10px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../pictures/scroll/right.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
	font-size:1px;	/* Fix IE6/7 */		
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../pictures/scroll/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
	font-size:1px;	/* Fix IE6/7 */	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px; 
	font-size:1px;	/* Fix IE6/7 */		
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;   
	font-size:1px;	/* Fix IE6/7 */	
} 	

/* CSS für [imk.cms]:mail imarketing */

.tx_powermail_pi1_fieldwrap_html {
	width: 650px;
}

.tx_powermail_pi1_fieldwrap_html LABEL {
	width: 150px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	clear: both;
	display: block;
	float: left;
	margin: 3px;
	vertical-align: bottom;
}

.tx_powermail_pi1_fieldwrap_html TEXTAREA {
	width: 300px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: left;
	margin: 3px;
}

.tx_powermail_pi1_fieldwrap_html INPUT {
	width: 300px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: left;
	margin: 3px;
}

.tx_powermail_pi1_fieldwrap_html SELECT {
	width: 300px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: left;
	margin: 3px;
}

.tx_powermail_pi1_fieldwrap_html_radio_title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}


.input.validation-failed, textarea.validation-failed {
	background-color:#B42D2D;
	color:white;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;	
}

.tx_powermail_pi1_fieldwrap_html_submit INPUT {
	width: 150px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: left;
	margin: 10px;
	padding: 10px;
	text-align: center;	
}

/* CSS für [imk.cms]:maps */

#sidebar_zw_gmap_div
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}

/* CSS für Forum */

H2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	text-align: left;
	text-align: center;	
}

.tx-mmforum-pi1 {
	width:720px;	
	vertical-align: top;
}

/* CSS für Login */

.tx-felogin-pi1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;		
}

.tx-felogin-pi1 INPUT {
	margin-top: 3px;
	margin-bottom: 10px;
}