html, body, div, span, applet, object, iframe,
 p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/*
menu links accesskeys
*/
span.accesskey {
   text-decoration:none;
}

/*
accessibility divs are hidden by default
text, screenreaders and such will show these
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/*
definition tags are also hidden
these are also used for menu links
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(/images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #18507C; /* a different color can be used for visited external links */

/*
Set the last 0 to -100px to use that part of the external.gif image for different color for active links
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(/images/cms/external.gif) no-repeat 100% 0;
}

a.external:hover {
  color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(/images/cms/external.gif) no-repeat 100% 0;
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* clearing */
/*
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/

/* clearing removed :-)

*/

/* end clearing */
/* End of 'Accessibility and cross-browser tools' */

/* Start of CMSMS style sheet 'Module: News' */
div#news {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
  border: 1px solid #000;
  background: #FFE9AF;
}

div#news h2 {
   line-height: 2em;
   background: #fff;
}

.NewsSummary {
    padding: 0.5em 0.5em 1em; /* padding for the news article summary */
    margin: 0 0.5em 1em 0.5em; /* margin to the bottom of the news article summary */
    border-bottom: 1px solid #ccc;
}

.NewsSummaryPostdate {
  font-size: 90%;
  font-weight: bold;
 }

.NewsSummaryLink {
    font-weight: bold;
    padding-top: 0.2em;
}

.NewsSummaryCategory {
  font-style: italic;
  margin: 5px 0;
 }

.NewsSummaryAuthor {
  font-style: italic;
  padding-bottom: 0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
  line-height: 140%;
 }

.NewsSummaryMorelink {
  padding-top: 0.5em;
}

#NewsPostDetailDate {
  font-size: 90%;
  margin-bottom: 5px;
  font-weight: bold;
  }

#NewsPostDetailSummary {
   line-height: 150%;
   }

#NewsPostDetailCategory {
  font-style: italic;
  border-top: 1px solid #ccc;
  margin-top: 0.5em;
  padding: 0.2em 0;
}

#NewsPostDetailContent {
  margin-bottom: 15px;
  line-height: 150%;
  }

#NewsPostDetailAuthor {

  padding-bottom: 1.5em;
  font-style: italic;
}


/* to add specific style to the below divs, uncomment them. */

/*
#NewsPostDetailTitle {}
#NewsPostDetailHorizRule {}
#NewsPostDetailPrintLink {}
#NewsPostDetailReturnLink {}
*/






/* End of 'Module: News' */

/* Start of CMSMS style sheet 'Navigation: Simple - Horizontal' */
/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/*
background-color for the entire menu row,
covering 100% of the width and text center-aligned
*/
div#menu_horiz {
display: none;

}



/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
/*****************
browsers interpret margin and padding a little differently,
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit;
   color: #18507C;
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #ccc;
   color: #000;
}

/*****************
basic layout
*****************/
body {

   color: #000;
background: #fff no-repeat top center;
padding: 0 10px;
}

#fauxbody,#pagewrapper {

}



/* center wrapper, min max width */
div#pagewrapper {

   margin: 0 auto;     /* this centers wrapper */
width: 100%;
max-width: 960px; /* IE wont understand these, so we will use javascript magick */
   min-width: 640px;
   background-color: transparent ;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
width: 80%;
   height: 134px;
background:  transparent no-repeat top center;
}
div#header img {
border: 1px solid #aba;
float: right; margin: 11px 0 0 0 ;
width: 160px;
height: 102px;
}



div#header h1  {
font-size: 40px;
color: #666;



line-height: 60px;


}



div#search,
div#rightsidebar,
div#leftsidebar,
div#leftsidebar2,
div.breadcrumbs {
display: none;

}

div#content {
   margin: 0 auto 2em 0; /* some air above and under menu and content */
overflow: hidden; position: relative;
background-color: transparent;
padding: 2em 0;

}


div#main {
   float: left;
 width: 80%;



   background-color: transparent ;

}

div#main2 {
   float: left;
 width: 80%;

   background-color: transparent ;

}

* html #main {display: inline;}













div#footer {
width: 80%;
   clear:both;       /* keep footer below content and menu */
   color: #666;
   background-color: transparent;

}

div#footer p {
border-top: 1px solid #aaa;
   font-size: 0.8em;
   padding: 1.5em;
text-align: center;

}

div#footer p a {
   color: #666; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}





/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 1.6em;  /* font size for h1 */
   line-height: 1em;
   margin-bottom: 0.2em;
}
div#content h2 {
   color: #666;
   font-size: 2em;
   text-align: left;
   padding-bottom: 1px;
   line-height: 1.5em;
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #444;
   font-size: 1.4em;
   line-height: 1.2em;
   margin: 0 0 0.5em 0;
}

div#main h3 {margin: 1.5em 0 1em 0 ;}

div#content h4 {
   color: #222;
   font-size: 1.1em;
   line-height: 1.1em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

h1,h2,h3,h4,h5,h6 {
font-family: "trebuchet ms",verdana,georgia, "times new roman", "times roman", times, serif;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;

}

q {
line-height: 1.4em;
font-style: italic;
margin-bottom: 1em;
}
blockquote {
   border-left: 4px solid #fec;
   padding: 10px;
margin-bottom: 1em;
line-height: 1.4em;
}

strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}





/* END TEXT */

/* LISTS */
div#main2 ul,
div#main2 ol,
div#main ul,
div#main ol
 {
  font-size: 1em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}

div#main2 ul li,
div#main2 ol li,
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}



/* END LISTS */
/* End of 'Layout: Top menu + 2 columns' */




/* new styles */


/* styles for CGUD */

div.standardliste {
border-top: 1px solid #ccc;
padding-top: 6px;
clear: both;


}

div.h-list h3 {
font-size: 1.3em!important;

}

div.h-list p.ort,
div.standardliste p.ort {
font-size: .8em!important;
color: #000;
margin: 0 0 10px 0px ;

}

div.h-list{
border-top: 1px solid #999
}

div.standardliste  h3 {
font-size: 1.2em!important;
}

div.standardliste img.thumb,
div.h-list img.thumb
 {
float: right;
width: 80px;
height: 60px;
margin: 10px 0 10px 20px;
border-bottom: 1px solid #999;
border-right: 1px solid #aaa;
padding: 0px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}


div#detail img.bild {
float: right;
border: 4px solid #ccc;
margin: 0 0 10px 20px;
padding: 0px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

div#detail  {

line-height: 1.4em;
}

div#detail h3 {

padding: 10px 0;
}

div.h-list div.pikto img,
div#detail div.pikto img
 {
width: 29px;
height: 28px;
margin:0;

}

div.pikto {clear: both;
margin: 0 0 10px 0;
}

p.info {text-align: right;
padding-top: 8px}

/* Search highlighting */

span.searchword {
border: 1px solid #c00;
padding: 0 1px;
margin: 0 1px;
background-color: #ffe;}



div#context {
float: right;
background-color: #E0D0B5;
width: 160px;
}

div#as {float: right;}


div.tipp {
background-color: #EDE09A;
}

div.tipp h3 {
background-color: #EDD355;
}

div.infobox h3 {
background-color: #feef99;
}

div#fpnews {
background: #e5e5be;
}

div#fpnews h2 {
font-size: 1.4em;
background-color: #CECE8C;
}

div.infobox,
div#header img,
#fpnews,
div.tipp,
#context {
border-bottom: 1px solid #999;
border-right: 1px solid #aaa;
margin-bottom: 1em;
padding: 0px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

div.infobox p,
#fpnews p,
div.tipp p,
#context p {
padding: 10px 10px 0 10px;
}

#fpnews h3 {padding: 0 10px;}

#main div.infobox h3,
#fpnews h2,
div.tipp h3,
#context h3 {
padding: 6px;
margin: 0;
text-align: center!important;
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}

div.infobox {
float: right;
width: 200px;
background-color: #fff;
}


#efa {text-align: right;
padding: 6px 0;}



/* spezifisch wg. album.css */
div#main > ul {
margin: 1em;
 list-style-type: circle;
}
div#main > ul li {
line-height: 170%; margin-left: .6em;
margin-bottom: 6px;

 padding-left: 10px;

}

#sitemap>UL>LI>a  {
font-size: 1.2em;
font-weight: 700;
line-height: 2em
}
#sitemap>UL>LI   {
}
#sitemap LI  {padding: 2px}

ul.gmapSidebar {display: none}

#fpservice ul li {
line-height: 170%; margin-left: 0;
margin-bottom: 6px;  margin-left: 14px;
}
#fpservice ul {list-style-type: square}

div#fpservice h2, div#context h2 {
font-size: 1.2em}


div#content img.rechts {float: right; margin: 0 0 10px 20px;
border: 1px solid #f90;}
div#content img.links {float: left; margin: 0 20px 10px 0;  border: 1px solid #f90;}
div#content img.frei {border: none; float: right; margin: 0 0 10px 20px; }
div#content img.normal {border: 1px solid #f90;
display: block;
margin: 16px 0 16px 0;}

div.img img,div.captionborder img, div.captionborderleft img,div.captionborderright img {
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
width: 200px;
}

div.img img{
width: 150px;
}

div.img,
iframe,div.captionborder,
div.captionborderleft,
div.captionborderright {
border: 1px solid #cccccc;
padding: 3px;
background-color: #ffffff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

iframe#myframe {
height: 600px;
}

div.captionborderright {
float: right;
margin-left: 1em;
width: 200px;
}

div.img,
div.captionborderleft {
float: left;
margin-right: 1em;
width: 200px;
}

div.img
{
float: left;
margin-right: 1em;
width: 150px;
}

p.captiontext {
margin: 0;
padding: 0;
font-size: 90%;
background-color: #EFE9C6;
color: #000;
text-align: center;
-webkit-border-bottom-right-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomright: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}

div.img {margin: 0 8px 8px 0;}


div#infobild, div.infobild {width: 252px;
float: right;
margin: 0 0 10px 20px;
border: 1px solid #ccc;
}

div#infobild p, div.infobild p {
padding: 10px;
margin: 0;
}

div#content div#infobild a img, div#content div.infobild a img {
padding: 0;
margin: 0;
}

div.kasten-rechts {float: right;
width: 220px;
padding: 4px;
margin: 0 0 10px 10px;
border: 1px solid #fc9;
}

div#main div.kasten-rechts ul {
list-style-type: none;

}

div#main div.kasten-rechts ul li {

}






td {padding: 2px; line-height: 2em;
border-top: 1px solid #999;
vertical-align: top;}


td.right {text-align: right; width: 150px;}



dl {}
dl dt {color: #600; font-size: 1em;
font-weight: 700;
margin: 10px 0; border-bottom: 1px solid #900;}

dl dd {font-size: 1em;
line-height: 1.4em;
margin: 0 0 2em 2em;
}




iframe {height: 500px;
width: 500px;
}


legend {color: #333}


div.stdform  div {

line-height: 1.4em;
margin-bottom: 10px;
}

div.stdform textarea {
line-height: 1.4em;
margin: 10px 0;
width: 90%;
border: 1px solid #987;
}

div.stdform input {
width: 60%;
border: 1px solid #987;
}

div.stdform input.fbsubmit {

background: #BCB5A2;
}

div.stdform div label{
display: block;
float: left;
width: 30%;

}

/* validate.css */

  .info   { color: black; background-color: transparent; font-weight: normal; }
  .warn   { color: rgb(120,0,0); background-color: transparent; font-weight: normal; }
  .error  { color: red; background-color: transparent; font-weight: bold }


/* checkboxes */
  .checkcl    { text-align: right; }
  .checkbox   { clear: right; float: right; margin: 0 0.5em; }

body div#toolTip { position:absolute;z-index:1000;width:220px;background:#e9e9b9;border:1px solid #000;text-align:left;padding:5px;min-height:1em;-moz-border-radius:5px; }
body div#toolTip p {font-weight:700; padding: 4px; margin: 0;color:#000;}
body div#toolTip p em { display:block;margin-top:3px;color:#f60;font-style:normal;font-weight:700; }
body div#toolTip p em span { font-weight:700;color:#fff; }

div.vpreview {
margin: 0 16px 10px 0;
}

div.multi {
margin: 16px ;
}

