/*****************
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;
   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 {
   text-decoration: none;
   font-weight: bold;
/* 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: #007BB7;
}
a:active {
   text-decoration: underline;
   font-weight: bold;
   background-color: inherit; 
   color: #689FCD; 
}

a:visited {
color: #D52E6A; font-weight: bold; text-decoration: none
   text-decoration: none;
   font-weight: bold;
   background-color: inherit;
   color: #005091;                /* a different color can be used for visited links */
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   font-weight: bold;
   background-color: #C4D4E9;
   color: #003A6D;
}

/*****************
basic layout 
*****************/
body {
   background-color: #FFF7E2;
   color: #333;
   margin:0px 10px 10px 10px; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   max-width: 100%; /* IE wont understand these, so we will use javascript magick */
   min-width: 800px;
   color: black;
}

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

table#headertable{
    width: 100%;
    empty-cells: show;
    table-layout: fixed;
}

table#headertable td{
   margin: 0px;
   padding: 0px;
}

table#headertable td#logobox{
   height: 30px; /* adjust according your image size */
   width: 305px;
}

table#headertable td#linkbox{
   height: 30px; /* adjust according your image size */
   width: 200px;
   text-align: right;
}

table#headertable td#wikibox{
   height: 30px; /* adjust according your image size */
   width: 100px;
   text-align: center;
}

table#headertable td#forumbox{
   height: 30px; /* adjust according your image size */
   width: 100px;
   background: url(../images/aha/templates/header_forum1.png) no-repeat; 
   text-align: center;
}

table#headertable td#endbox{
   height: 58px; /* adjust according your image size */
   width: 102px;
   background: url(../images/aha/templates/header_website_right.png) no-repeat; 
}

table#headertable td#menu{
   background: url(../images/aha/templates/menu_bg.png) repeat-x; 
   height: 40px;
}

div#header {
   height: 30px; /* adjust according your image size */
   padding: 10px 0px 5px 0px;
   background-color: #FFF7E2;
}

div#forum{
    width: 100px;
    height: 23px;
    padding: 7px 0 0 0;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

div#forum a:link{
   background-color: transparent; 
   color: #fff;
   text-decoration: none;
   font-weight: bold;
}

div#forum a:hover{
   background-color: transparent; 
   color: #fff;
   text-decoration: underline;
   font-weight: bold;
}

div#forum a:visited{
   background-color: transparent; 
   color: #fff;
   text-decoration: underline;
   font-weight: bold;
}

div#forum a:active{
   background-color:#fff; 
   color: #006941;
   text-decoration: none;
   font-weight: bold;
}

div#loginbox{
   height: 50px; /* adjust according your image size */
   width: 100px;
   padding: 8px 0 0 0;
   text-align: center;
   font-size: 6pt;
   background-color: transparent; 
   color: #fff; 
}

div#loginbox b.toplink{
    font-size: 12px;
}

div#loginbox a:link{
   background-color: #FFCC00; 
   color: #fff;
   text-decoration: none;
   font-weight: bold;
}

div#loginbox a:hover{
   background-color: #FFF48E; 
   color: #EE7F00;
   text-decoration: underline;
   font-weight: bold;
}

div#loginbox a:visited{
   background-color: #F1D600; 
   color: #BC091B;
   text-decoration: none;
   font-weight: bold;
}

div#loginbox a:active{
   background-color:#fff; 
   color: #FFCC00;
   text-decoration: none;
   font-weight: bold;
}

div#menustart{
   height: 40px; /* adjust according your image size */
   background: url(../images/menu_left.png) no-repeat; 
   width: 6px;
   float: left;
   margin: 0;
   padding: 0;
}

div#menubox{
   height: 40px; /* adjust according your image size */
   margin: 0;
   padding: 0;
}

div#phbox{
   padding: 0;
   margin: 0;
   border-bottom: 1px solid #285980;
   color: #8CAEC2;
}

div#phbox table{
    padding: 0;
    margin: 0 0 5px 0;
    font-size: 60%;
    width: 100%;
    empty-cells: show;
    table-layout: fixed;
}

div#phbox table td.PHleft{
    text-align: left;
    width: 50%;
}

div#phbox table td.PHright{
    text-align: right;
    width: 50%;
}

div#phbox table td span.lastitem { 
   font-weight:bold; 
}

div#bodybox{
   padding-right: 10px;
   position:absolute; top: 75px;
}

div#contentbox{
   border: 1px solid black;
   -moz-border-radius:5px;
   background: #05305F url(../images/wawi_bg.gif);
   color: #D9DDEB;
   margin: 0px 1px 5px 1px; /* some air above and under menu and content */
   padding: 5px 10px 5px 10px;
}

div#contentbox a:link{
    color: #D20071;
    background-color: #05305F;
    text-decoration: underline;
    font-weight: bold;
}

div#contentbox a:visited{
    color: #BC091B;
    background-color: #04274D;
    text-decoration: none;
    font-weight: bold;
}

div#contentbox a:hover{
    color: #05305F;
    background-color: #BBD2EB;
    text-decoration: none;
    font-weight: bold;
}

div#contentbox a:active{
    color: #F5E0EA;
    background-color: #05305F;
    text-decoration: none;
    font-weight: bold;
}

div#content {
   margin: 10px 0px 10px 0px; /* some air above and under menu and content */
}

div#content table{
    padding: 0;
    margin: 0;
    width: 100%; 
    empty-cells: show;
    table-layout: fixed;
}

div#content table td.CTtitlebar{
    vertical-align: middle;
    text-align: center;
}

div#content table td.CTtitel{
    color: #BC091B;
    font-weight: bold;
    text-align: center;
    background-color: #FFE500;
}
div#content table td.CTmain{
    padding: 15px 0px 10px 0px;
    vertical-align: top;
}

div#content table td.CTmenu{
    padding: 25px 10px 10px 0px;
    vertical-align: top;
    font-size: 8pt;
}

div#content table td.CTbild {
    padding: 15px 0px 10px 0;
    vertical-align: top;
}

div#content table td.CTsidebar{
    vertical-align: top;
}

div.contentend{
    clear: both;
}

div#main {
   margin-right: 10px;
}

div#calenderbar {
   width: 150px;
   margin-right: 10px;
   padding: 5px;
   -moz-border-radius:5px;
   background-color: #FFF7B2;
   color: #808080;
}

.calendar-date-from{
   font-size: 1.25em;
   line-height: 1.5em;
}

.calendar-summary{
   padding: 5px 0 5px 0;
}

.calendar-event{
  border-bottom: 1px solid #fff;
  margin-bottom: 0.25em;
}

.calendar-title{
    font-size: 120%;
    font-weight: bold;
}

.cal-upcominglist{
  margin: 0 0 10px 0;
}

div#sidebar {
   width: 270px;
   margin: 15px 0 15px 0;
   padding: 10px;
   -moz-border-radius:5px;
   background-color: #002749;
   border: 2px solid #808080;
   color: #e0e0e0;
   line-height: 1.25em;
   font-size: 80%;
}

div.sidebarIcon{
   float: left;
   margin: 0 5px 0 0;
}

div.sidebarText{
   margin: 0 0 0 55px;
   min-height: 55px;
}

div.sidebarHr {
   height: 1px;
   margin: 10px 0 10px 0;
   border-bottom: 1px solid #fff;
}

div.footer {
   clear:both;       /* keep footer below content and menu */
   color: #606060;
   height: 38px;
   background: #FFCC00 url(../images/footer_bg.png) repeat-x; 
   vertical-align: top;
}

div.footer p {
   font-size: 8px;
   padding: 4px;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

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

div.footer p a:active {
   background-color: #fff; 
   color: #F39500; 

}

div.footer p a:visited {
   background-color: inherit;
   color: #B0B0B0;
}


/* remove underline on hover and change color */
div.footer p a:hover {
   background-color: #FFF7B2;
   color: #F39500;
}

div.footer table{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 38px;
    empty-cells: show;
    table-layout: fixed;
}

div.footer table table.footertable{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 35px;
    empty-cells: show;
    table-layout: fixed;
}

div.footer table td.FTstart,
div.footer table td.FTend{
   width: 6px;
}

div.footer table td.FTmain{
   vertical-align: top;
}

div.footerstart {
   height: 38px;
   width: 6px;
   background: url(../images/footer_bg_left.png); 
}

div.footerend{
   height: 38px;
   width: 6px;
   background: url(../images/footer_bg_right.png); 
}

div.footercenter{
   margin: 0;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 0;
   border-bottom: 1px solid #FFBF00;
}

/* relational links under content */
div#RelLinks{
  color: #808080;
  margin-top: 5px;
  padding: 5px 0 0.1em 0;
  font-size: 60%;
  line-height: 0.75em;
  border-top: 1px solid #FFBF00;
}

div#RelLinks table{
    padding: 0;
    margin: 0;
    width: 100%;
    empty-cells: show;
    table-layout: fixed;
}

div#RelLinks table td.RelRight{
    text-align: right;
}

div.AHAlogo{
   float: left;
   margin: 0 10px 0 0;
}

div.AHAadresse{
   margin: 0 5px 0px 60px;
   height: 50px;
   line-height: 1.25em;
   font-size: 8pt;
}

div#ahablock{
   color: #000;
   border: 1px solid #000;
   background-color: #fff;
   margin-bottom: 10px;
   padding: 5px;
   -moz-border-radius:5px;
}

div#ahablock a:link {
   text-decoration: none;
   font-weight: bold;
   background-color: transparent; 
   color: #007BB7;
}

div#ahablock a:active {
   text-decoration: underline;
   font-weight: bold;
   background-color: transparent; 
   color: #689FCD; 
}

div#ahablock a:visited {
   text-decoration: none;
   font-weight: bold;
   background-color: transparent;
   color: #005091;
}

div#ahablock a:hover {
   text-decoration: underline;
   font-weight: bold;
   background-color: transparent; 
   color: #007BB7;
}

div#ahablock table td{
    vertical-align: top;
}

.disclaimer{
   font-size: 60%;
   color: #808080;
}

.pageinfo{
    text-align: right;
    font-size: 60%;
    color: #808080;
}

table.Content td{
   padding: 5px;
   background-color: #FFFAD1;
   vertical-align: top;
}

table.Content td.na{
   background-color: #e0e0e0;
}

table.Content th{
   padding: 0 5px 0 5px;
   color: #c0c0c0;
   font-size: 80%;
   background-color: #fff;
}
table.Content td p{
    font-size: 80%;
}

table.Content td.Headline{
   background-color: #FFCC00;
}

table.Content td.naHeadline{
   background-color: #b0b0b0;
}

table#TitleTab{
    padding: 0;
    margin: 0;
    width: 100%;
    empty-cells: show;
    table-layout: fixed;
}

table#TitleTab td.TitleIcon{
    width: 36px;
    vertical-align: top;
}

input#cntnt01searchinput{
    border-width:1px; border-color:#c0c0c0; border-style:solid; padding:2px;
    background-color: #f0f0ff;
    margin-right: 2px;
}

table.albumtable {
    width: 100%;
    empty-cells: show;
    table-layout: fixed;
}

table.albumtable td.albumthumb {
    padding: 5px;
    width: 210px;
    font-size: 60%;
    text-align: center;
    vertical-align: middle;
    background-color: #002749;
}

table.albumtable td.albumcomment {
    padding: 5px;
    text-align: left;
    vertical-align: top;
    background-color: #C3CDE4;
    color: #05305F;
}

div.photobox {
    background-color: #003A6D;
    border: 2px solid #285980;
    text-align: center;
   -moz-border-radius:5px;
    margin-top: 10px;
}

div.photonavtop {
    border-bottom: 1px solid #285980;
    background-color: #00294D;
    color: #407499;
    margin-bottom: 10px;
    padding: 5px;
    font-size: 60%;
    text-align: center;
}

div.photonavbottom {
    border-top: 1px solid #285980;
    background-color: #00294D;
    color: #407499;
    margin-top: 10px;
    padding: 5px;
    font-size: 60%;
    text-align: center;
}

table.CTterminTable td {
		padding: 5px;
		margin: 0 1px 1px 0;
		line-height: 1.2em;
    background-color: #dee1f3;
}

table.CTlinkTable td {
		padding: 5px;
		margin: 0 1px 1px 0;
		line-height: 1.2em;
}

tr.color1 {
    background-color: #2F4E71;
}

tr.color2 {
    background-color: #FFED93;
    color: #0000C0;
}

tr.color3 {
    background-color: #D5E0F0;
    color: #05305F;
}

tr.color3 td {
    padding: 5px;
    border-bottom: solid 1px #05305F;
}

table.AnmeldungTable td { padding: 5px; }

table.AnmeldungTable input{
    border: solid 1px #000000;
    padding: 2px;
    background-color: #f0f0ff;
    margin: 1px 2px 0px 0px;
    font-size: 1em;
}

table.AnmeldungTable textarea{
    border: solid 1px #000000;
    padding: 2px;
    background-color: #f0f0ff;
    margin: 1px 2px 0px 0px;
    font-size: 1em;
}

table.AnmeldungTable select{
    border: solid 1px #000000;
    background-color: #f0f0ff;
    margin: 1px 2px 0px 0px;
    font-size: 1em;
}

table.DynamicTable {
    width: auto !important;
}

table.DynamicTable td { 
		padding: 2px;
}

div.textbox { 
		padding: 5px;
		color: #00386d;
		background-color: #BBD2EB; 
}

div.bildbox { 
		width: 100%;
		padding: 10px 0;
		text-align: center;
		color: #BBD2EB; 
		font-size: 0.8em;
}

div#contentbox a.text:link {
   text-decoration: none;
   font-weight: bold;
   background-color: transparent; 
   color: #d40074;
}

div#contentbox a.text:active {
   text-decoration: underline;
   font-weight: bold;
   background-color: #00386d; 
   color: #ffffff; 
}

div#contentbox a.text:visited {
   text-decoration: none;
   font-weight: bold;
   background-color: transparent;
   color: #800a0a;
}

div#contentbox a.text:hover {
   text-decoration: underline;
   font-weight: bold;
   background-color: #dee1f3; 
   color: #005ca9;
}

/********************
CONTENT STYLING
*********************/

/* HEADINGS */
div#content h1 {
   color: #D20071; 
   font-weight: bold;
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #E582AC; 
   font-weight: bold;
   font-size: 1.75em; 
/* some air around the text */
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px solid #E89ABB; 
   line-height: 1.75em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #E582AC; 
   font-weight: bold;
   font-size: 1.5em;
   line-height: 1.75em;
   margin: 0 0 0.5em 0;
   border-bottom: 1px solid #285980; 
   clear: both;
}

div#content h3.termin {
   color: #D20071; 
}

div#content h4.Link {
   color: #00386d; 
   font-weight: bold;
   font-size: 1.2em;
   line-height: 1.2em;
   margin: 0.5em 0 0.5em 0;
   border-bottom: 1px solid #2f5983; 
}

div#content h4 {
   color: #E89ABB; 
   font-weight: bold;
   font-size: 1.2em;
   line-height: 1.2em;
   margin: 0 0 0.25em 0;
}

div#content h4.White {
   color: #dee1f3; 
   font-weight: bold;
   font-size: 1.2em;
   line-height: 1.5em;
   margin: 0 0 0.25em 0;
}

div#content div.album_content h4 {
   color: #285980;
   border-bottom: 1px solid #285980; 
   font-weight: bold;
   font-size: 1.5em;
   margin: 0 0 0.25em 0;
}

div#content h5 {
   font-weight: bold;
   font-size: 1em;
   line-height: 1.2em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.2em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1em 0;  /* some air around p elements */
   line-height:1.25em;
   padding: 0;
}
blockquote {
    border-top: 2px solid #D20071;
    border-left: 5px solid #D20071;
   -moz-border-radius-topleft: 10px;
   -moz-border-radius-bottomleft: 5px;
    margin: 5px 10px 1em 0px;
    padding: 5px 10px 5px 10px;
    background-color: #C3CDE4;
    color: #05305F;
}
pre {
   font-family: "Courier New", Courier, monospace;
   font-size: 1em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}

b.currentstep {
	color: #FFFFFF;
}

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

/* Wrapping text in <code> tags. Makes CSS not validate */
code {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

.LabelError { background-color: #A3003A; }
.LabelOK1 { background-color: #234175; }
.LabelOK2 { background-color: #003074; }
.CellError { background-color: #F3B39D; color: #400000; border-right: solid 2px #c20016; }
.CellOK1 { background-color: #FFF7CE; color: #404040; border-right: solid 2px #D5E0F0; }
.CellOK2 { background-color: #FFED93; color: #404040; border-right: solid 2px #D5E0F0; }
.Cell1 { background-color: #D0D0D0; color: #404040; border-right: solid 2px #D5E0F0; }
.Cell2 { background-color: #C0C0C0; color: #404040; border-right: solid 2px #D5E0F0; }
.Cell3 { background-color: #BBD2EB; }
.FeedbackCell1 { background-color: #c9d0ea; color: #172a4d; border-right: solid 2px #234175; }
.FeedbackCell2 { background-color: #b4c0e2; color: #172a4d; border-right: solid 2px #234175; }
.FeedbackCell3 { background-color: #D0D0D0; color: #404040; border-right: solid 2px #234175; }
.GastgeberCell { background-color: #dce4f1; color: #006cad; border: solid 1px #006cad; text-align: center; }
.GastCell { background-color: #efdfea; color: #b40071; border: solid 1px #b40071; text-align: center; }
.FeedbackTable {border-top: solid 1px #6886a3; }
.FeedbackGut { color: #126b46; border-bottom: solid 2px #57983e; text-align: left; font-weight: bold; }
.FeedbackSchlecht { color: #a01817; border-bottom: solid 2px #c20016; text-align: right; font-weight: bold; }
.FeedbackOB { color: #404040; border-bottom: solid 2px #404040; text-align: center; font-weight: bold; font-size: 0.8em; }
.Note1 { background-color: #9bbe82; border-left: solid 1px #57983e; border-bottom: solid 1px #57983e; text-align: center; font-weight: bold; font-size: 1.25em; }
.Note2 { background-color: #c1d5b3; border-left: solid 1px #57983e; border-bottom: solid 1px #57983e; text-align: center; font-weight: bold; font-size: 1.25em; }
.Note3 { background-color: #d6e3ca; border-left: solid 1px #57983e; border-right: solid 1px #57983e; border-bottom: solid 1px #57983e; text-align: center; font-weight: bold; font-size: 1.25em; }
.Note4 { background-color: #eecdbb; border-left: solid 1px #c20016; border-bottom: solid 1px #c20016; text-align: center; font-weight: bold; font-size: 1.25em; }
.Note5 { background-color: #e1a287; border-left: solid 1px #c20016; border-bottom: solid 1px #c20016; text-align: center; font-weight: bold; font-size: 1.25em; }
.Note6 { background-color: #d47457; border-left: solid 1px #c20016; border-right: solid 1px #c20016; border-bottom: solid 1px #c20016; text-align: center; font-weight: bold; font-size: 1.25em; }
.KeineNote { background-color: #c0c0c0; border-left: solid 1px #404040; border-right: solid 1px #404040; border-bottom: solid 1px #404040; text-align: center; font-weight: bold; font-size: 0.8em; }
.FeedbackSonstiges1 { background-color: #c0c0c0; border-left: solid 1px #404040; border-top: solid 1px #404040; text-align: left; font-weight: bold; font-size: 0.8em; }
.FeedbackSonstiges2 { background-color: #c0c0c0; border-left: solid 1px #404040; border-top: solid 1px #404040; border-right: solid 1px #404040; text-align: left; font-weight: bold; font-size: 0.8em; }
.FeedbackSonstiges3 { background-color: #c0c0c0; border-top: solid 1px #404040; border-left: solid 1px #404040; border-bottom: solid 1px #404040; text-align: left; font-weight: bold; font-size: 0.8em; }
.FeedbackSonstiges4 { background-color: #c0c0c0; border: solid 1px #404040; text-align: left; font-weight: bold; font-size: 0.8em; }
.FeedbackError { background-color: #f1cb0c; color: #400000; border-left: solid 5px #c20016; border-right: solid 5px #c20016; }

.ErrorBox {
	background-color: #f1cb0c;
	color: #a01817;
	border: solid 1px #c20016;
	padding: 5px;
	margin-bottom: 5px;
}

.Big { font-size: 3em; }
.Huge { font-size: 6em; }
.Intro { font-size: 1.25em; }
.TextSmaller{ font-size: 0.8em; }
.TextSmall{ font-size: 0.6em; }

.SmallCaps{
   font-size: 80%;
   font-variant:small-caps;
}

.TextLarge{
   font-size: 1.5em;
   line-height: 1.25em;
}

.Pink { color: #D52E6A; }
.Red { color:#D52E6A; }
.White{ color: #FFFFFF; }
.Grey80{ color: #808080; }
.GreyA0{ color: #a0a0a0; }
.GreyC0{ color: #c0c0c0; }
.P149c1{ color: #b40071; }
.P213c5{ color: #285980; }
.P213c7{ color: #7193A9; }
.P203c3{ color: #5287c6; }

/* END TEXT */

/* LISTS */

div#sidebar ul {
   margin: 0.25em 10px 0.5em 15px;
}

div#sidebar ol,
div#sidebar dl {
   margin: 0.25em 10px 0.5em 25px;
}

div#sidebar ul li {
   margin-bottom: 0.25em;
}

div#sidebar ol li {
   margin-bottom: 0.5em;
}

ul.Standardliste,
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height:1.25em;
   margin: 0 25px 0 25px;
}

ul.Standardliste li,
div#main ul li,
div#main ol li {
   margin-bottom: 0.25em;
}

ol.Standardliste,
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height:1.25em;
   margin: 0 25px 0 25px;
}

ol.Standardliste li,
div#main ul li,
div#main ol li {
   margin-bottom: 0.25em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}

.relativescontent{
    padding: 5px;
    font-size: 60%;
    line-height: 1.25em;
}

.relativescontent ul{
    margin: 0 0 0.5em 15px;
}

.relativescontent ul li{
    margin-bottom: 0.5em;
}

.relatives_file{
    padding: 5px;
    font-size: 60%;
    line-height: 1.25em;
    margin: 0 0 0.5em 15px;
}

.relatives_file li{
    margin-bottom: 0.5em;
}

div.album_content{
   font-size: 1em;
}

div#content table td.CTmenu ul{
    color: #05305F;
    list-style-type: none;
}

div#content table td.CTmenu ul li{
    background-color: #C3CDE4;
}

div#content table td.CTmenu ul li b,
div#content table td.CTmenu ul li a{
    display: block;
    padding-left: 0.5em;
    padding-top: 5px;
    padding-bottom: 5px;
}

div#content table td.CTmenu ul li a:link{
    color: #D20071;
    background-color: #C3CDE4;
    text-decoration: none;
    font-weight: bold;
}

div#content table td.CTmenu ul li a:visited{
    color: #990052;
    background-color: #C3CDE4;
    text-decoration: none;
    font-weight: bold;
}

div#content table td.CTmenu ul li a:active{
    color: #D20071;
    background-color: #fff;
    text-decoration: none;
    font-weight: bold;
}

div#content table td.CTmenu ul li a:hover{
    color: #D20071;
    background-color: #F3CEDE;
    text-decoration: none;
    font-weight: bold;
}

div#content table td.CTmenu ul li ul li{
    background-color: #C3CDE4;
}

div.menucurrent{
    background-color: #D20071;
    color: #fff;
    padding: 5px 5px 5px 0.5em;
}

div.menuthis{
    background-color: #E582AC;
    color: #fff;
}

div.menuitem{
    color: #E582AC;
}

div.menutext{
    padding: 5px 5px 5px 0.5em;
    font-size: 0.8em;
}

div.menutext b{
	padding: 5px;
	display:block;
}

div.menutext b.activeitem{
	background-color: #dce4f1;
}

td.BildTitel {
	color: #dce4f1;
	background-color: #006cad;
	text-align: center;
	padding: 3px;
}

td.BildText {
	color: #303030;
	background-color: #C0C0C0;
	text-align: left;
	padding: 3px;
}

td.BildTextOrange {
	color: #F8F8F8;
	background-color: #CF8065;
	text-align: left;
	padding: 3px;
}

td.BildNavHier {
	color: #05305F;
	background-color: #c1ced8;
	text-align: center;
	padding: 5px;
	border: #c1ced8 1px solid;
	font-size: 0.8em;
	line-height: 1.4em;
}

td.BildNav {
	color: #c1ced8;
	background-color: #05305F;
	text-align: center;
	padding: 5px;
	border: #c1ced8 1px solid;
	font-size: 0.8em;
	line-height: 1.4em;
}

td.GalBildNormal {
	color: #05305F;
	background-color: #95adc2;
	text-align: center;
	padding: 5px;
}

td.GalTextNormal {
	color: #05305F;
	background-color: #c1ced8;
	text-align: left;
	padding: 5px;
}

td.GalBildPrivat {
	color: #05305F;
	background-color: #dcadc9;
	text-align: center;
	padding: 5px;
}

td.GalTextPrivat {
	color: #05305F;
	background-color: #efdfea;
	text-align: left;
	padding: 5px;
}

td.KontakteJahr {
	color: #FFFFFF;
	background-color: #006cad;
	border: #c1ced8 1px solid;
	text-align: left;
	padding: 5px;
}

td.Kontakt {
	color: #efdfea;
	background-color: #05305F;
	text-align: left;
	padding: 5px;
}

/* END LISTS */

/* 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 set so the rest can be set out side of visual browser viewport */
	position: absolute;
/* takes it out top side */
	top: -999em;
/* takes it out left side */
	left: -999em;
}
/* definition tags are also hidden, these are also used for accessibility 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;
}
a.external {
/* make some room for the image, 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% -100px;
}
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% -100px;
}
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: inherit;
}
/* 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*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	height: 0;
	clear: both;
	width: 90%;
	visibility: hidden;
}
#main .clear {
	height: 0;
	clear: right;
	width: 90%;
	visibility: hidden;
}
* html>body .clearfix {
	display: inline-block;
	width: 100%;
}
* html .clear {
/* Hides from IE-mac \*/
	height: 1%;
	clear: right;
	width: 90%;
/* End hide from IE-mac */
}
/* end clearing */

/* Start of CMSMS style sheet 'bMenu default stylesheet' */
/*bMenu settings
menuOrientation:horizontal
submenu_horizontal:right
submenu_vertical:down
appearString:show()
disappearString:hide()
hideDelay:50
highlight_parents:1
main_indicator:#primary-nav
class_default:
class_default_tag:a
class_active:.hover
class_active_tag:a
class_current:.currentpage
class_current_tag:a
class_haschildren:.menuparent
class_haschildren_tag:a
class_isparent:.activeparent
class_isparent_tag:a
sub_indicator:#primary-nav ul
defaultmain_border_size:0px
defaultmain_border_type:solid
defaultmain_border_color:#777
defaultmain_background_color:
defaultmain_background_image_url:images/aha/templates/menu_bg.png
defaultmain_background_image_offset_x:
defaultmain_background_image_offset_y:
defaultmain_background_image_repeat:repeat-x
defaultmain_font_size:8pt
defaultmain_font_color:#000
defaultmain_font_family:
defaultmain_font_weight:bold
defaultmain_font_decoration:none
defaultmain_text_alignment:center
activemain_background_image_url:images/aha/templates/menu_bg_selected.png
activemain_background_image_offset_x:
activemain_background_image_offset_y:
activemain_background_image_repeat:repeat-x
currentmain_background_image_url:images/aha/templates/menu_bg_active.png
currentmain_background_image_offset_x:
currentmain_background_image_offset_y:
currentmain_background_image_repeat:repeat-x
defaultmain_width:150px
defaultmain_height:26px
defaultmain_padding:3px
defaultmain_distance:-1px
defaultmain_submenu_distance:-1px
defaultsub_border_size:1px
defaultsub_border_type:solid
defaultsub_border_color:#000
defaultsub_background_image_url:images/aha/templates/menu_bg.png
defaultsub_background_image_offset_x:
defaultsub_background_image_offset_y:-1px
defaultsub_background_image_repeat:repeat-x
end bMenu settings*/
#primary-nav {
	display:block;
	margin:0;
	padding:0;
	list-style:none;
	z-index:10005;
}

#primary-nav li{
	float:left;
	margin-right:-1px;
}

#primary-nav ul {
	display:none;
	position:absolute;
	margin:0;
	padding:0;
/*       width:150px; */
		top:26px;
		left:-1px;
}

#primary-nav ul li{
	float:none;
	margin-bottom:-1px;
}

#primary-nav ul ul{
		top:-1px;
			left:142px;
	}

#primary-nav li{
	display:block;
	position:relative;
/*	width:144px; */
	height:12px; 
	padding:7px;
	border-left:1px solid #000;
	border-right:1px solid #000;
	background-color:;
		background-image:url(images/aha/templates/menu_bg.png);
		background-position: ;
	background-repeat:repeat-x;
	text-align:center;
}

#primary-nav li a{
	background-color:inherit;
	color:#000;
	font-weight:bold;
	font-size:8pt;
	text-decoration:none;
	font-family:;
}

#primary-nav li.hover{
	display:block;
	position:relative;
/*	width:144px; */
	height:12px;
	padding:7px;
	border-left:1px solid #000;
	border-right:1px solid #000;
	background-color:;
		background-image:url(images/aha/templates/menu_bg_selected.png);
		background-position: ;
	background-repeat:repeat-x;
	text-align:center;
}

#primary-nav li.hover a.hover{
	background-color:inherit;
	color:#000;
	font-weight:bold;
	font-size:8pt;
	text-decoration:none;
	font-family:;
}
#primary-nav li.currentpage{
	display:block;
	position:relative;
/*	width:144px; */
	height:12px;
	padding:7px;
	border-left:1px solid #000;
	border-right:1px solid #000;
	background-color:;
		background-image:url(images/aha/templates/menu_bg_active.png);
		background-position: ;
	background-repeat:repeat-x;
	text-align:center;
}
#primary-nav li.currentpage a.currentpage{
	background-color:inherit;
	color:#808080;
	font-weight:bold;
	font-size:8pt;
	text-decoration:none;
	font-family:;
}
#primary-nav li.activeparent{
	display:block;
	position:relative;
/*	width:144px; */
	height:12px;
	padding:7px;
	border-left:1px solid #000;
	border-right:1px solid #000;
	background-color:;
		background-image:url(images/aha/templates/menu_bg.png);
		background-position: ;
	background-repeat:repeat-x;
	text-align:center;
}
#primary-nav li.activeparent a.activeparent{
	background-color:inherit;
	color:#000;
	font-weight:bold;
	font-size:8pt;
	text-decoration:none;
	font-family:;
}
#primary-nav li.menuparent{
	display:block;
	position:relative;
/*	width:144px; */
	height:12px;
	padding:7px;
	border-left:1px solid #000;
	border-right:1px solid #000;
	background-color:;
		background-image:url(images/aha/templates/menu_bg.png);
		background-position: ;
	background-repeat:repeat-x;
	text-align:center;
}
#primary-nav li.menuparent a.menuparent{
	background-color:inherit;
	color:#000;
	font-weight:bold;
	font-size:8pt;
	text-decoration:none;
	font-family:;
}
#primary-nav ul li{
	display:block;
	position:relative;
	width:130px;
	height:10px;
	padding:6px;
	border:1px solid #000;
	background-color:;
		background-image:url(images/aha/templates/submenu_bg.png);
		background-position: top; 
	background-repeat:repeat-x; 
	text-align:left;
}
#primary-nav ul li a{
	background-color:inherit;
	color:#000;
	font-weight:normal;
	font-size:8pt;
	text-decoration:none;
	font-family:;
}
#primary-nav ul li.hover{
	display:block;
	position:relative;
	width:130px;
	height:10px;
	padding:6px;
	border:1px solid #000;
	background-color:;
		background-image:url(images/aha/templates/submenu_bg_selected.png);
		background-position: top; 
	background-repeat:repeat-x; 
	text-align:left;
}
#primary-nav ul li.hover a.hover{
	background-color:inherit;
	color:#000;
	font-weight:bold;
	font-size:8pt;
	text-decoration:none;
	font-family:;
}
#primary-nav ul li.currentpage{
	display:block;
	position:relative;
	width:130px;
	height:10px;
	padding:6px;
	border:1px solid #000;
	background-color:;
		background-image:url(images/aha/templates/submenu_bg_active.png);
		background-position: top; 
	background-repeat:repeat-x; 
	text-align:left;
}
#primary-nav ul li.currentpage a.currentpage{
	background-color:inherit;
	color:#808080;
	font-weight:bold;
	font-size:8pt;
	text-decoration:none;
	font-family:;
}
#primary-nav ul li.activeparent{
	display:block;
	position:relative;
	width:130px;
	height:10px;
	padding:6px;
	border:1px solid #000;
	background-color:;
		background-image:url(images/aha/templates/submenu_parent_bg_selected.png);
		background-position: top;
	background-repeat:repeat-x; 
	text-align:left;
}
#primary-nav ul li.activeparent a.activeparent{
	background-color:inherit;
	color:#000;
	font-weight:bold;
	font-size:8pt;
	text-decoration:none;
	font-family:;
}
#primary-nav ul li.menuparent{
	display:block;
	position:relative;
	width:130px;
	height:10px;
	padding:6px;
	border:1px solid #000;
	background-color:;
		background-image:url(images/aha/templates/submenu_parent_bg.png);
		background-position: top;
	background-repeat:repeat-x; 
	text-align:left;
}
#primary-nav ul li.menuparent a.menuparent{
	background-color:inherit;
	color:#000;
	font-weight:normal;
	font-size:8pt;
	text-decoration:none;
	font-family:;
}

/* End of 'bMenu default stylesheet' */


