/* '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
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* End of 'Accessibility and cross-browser tools' */

/* 'Navigation: Simple - Vertical' */
/********************
MENU
*********************/
#menu_vert {
   padding-left: 0;
   margin-left: 0;
   width:180px;

}


/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   border-bottom: 0px solid #c0c0c0;
   display: block;
   background: url(images/cms/1stmenubg.jpg) repeat-y; 

}

#menu_vert ul ul li {
   border: none;
 background: url(images/cms/2stmenubg.jpg) repeat-y ; 

}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 0.8em 0.5em 0.7em 1.8em; /* some air for it */
   color: #515352; /* this will be link color for all levels */
   background: url(images/cms/arrow-right.gif) no-repeat 1.0em center; 
   min-height:1em; /* Fixes IE7 whitespace bug */ 
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   font-size: 85%;
   padding: 0.5em 0.5em 0.5em 2.8em;
   background-position: 1.5em center;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/dash.gif) no-repeat 2.8em center; 
}

/* hover state for all links */
div#menu_vert a:hover {
   background-color: #C3D4DF;
}
div#menu_vert a.activeparent:hover {
   color: #e28d19;
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
background: url(images/cms/1stmenubg_ac.jpg) no-repeat ;
   background-color: #fff;
   color: #515352;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center; 
   background-color: transparent;
   color: #e28d19;
}


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
   background: url(images/cms/1stmenubg_ac.jpg) repeat-y ;


   display: block; 
   padding: 0.5em 0.5em 0.5em 1.8em;  /* some air for it */
   color: #515352;                                 /* this will be link color for all levels */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
   margin: 0;                                  /* as <h3> normally has some margin by default */
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul h3 {
   font-size: 85%;
   padding: 0.3em 0.5em 0.3em 2.8em;
   background-position: 1.4em center;
 background: url(images/cms/2stmenubg.jpg) repeat-y ; 
   border-bottom: none;
   color: #e38e1a;     
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/arrow-right-active.gif) no-repeat 2.7em center; 
   font-size: 85%;
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}
/* End of 'Navigation: Simple - Vertical' */

/* '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' */

/* 'DA Template CSS 3 spalten' */
* {
margin:0pt;
padding:0pt;
}

body {
font-family:Arial,Verdana,Geneva,Helvetica,sans-serif;
font-size:80%;
line-height:1em;
text-align:left;
}

input {
border:1px solid #61749F;
font-size:90%;
margin:2px;
padding:1px 3px;
}


button {
background-color:#000000;
border:1px solid #61749F;
}

div {
font-size:1em;
}

img {
border:0pt none;
}

a, a:link a:active {
background-color:inherit;
color:#FF9C0C;
text-decoration:underline;
}

a:visited {
background-color:inherit;
color:#FF9C0C;
text-decoration:underline;
}

a:hover {
background-color:#C3D4DF;
color:#385C72;
text-decoration:none;
}

.partner a:hover {
background-color:transparent;
text-decoration:none;
}

#br {
height:8px;
}

body {
background-color:#FFFFFF;
color:#333333;
margin:1em;
}

div#pagewrapper {
background-color:#FFFFFF;
border:0px solid black;
color:#4F4F4F;
margin:0pt auto;
max-width:1005px;
min-width:1005px;
width:1005px;

}

div#header {
height:60px;
margin:0pt;
padding:0pt;
text-decoration:none;
vertical-align:text-bottom;
}

div#headermenu {
border-bottom:16px solid #61749F;
float:right;
height:20px;
margin:0pt 0pt 2px 2px;
padding:0pt;
text-align:left;
text-decoration:none;
width:183px;
}

div#logo {
border-bottom:16px solid #61749F;
float:left;
height:60px;
margin:0pt 0pt 2px 0px;
width:820px;
}

div#headertext {
height:40px;
padding:0px 10px 0px 0px;
text-align:right;
}

div#header h1 a {
background:#FFFFFF url(images/cms/da_logo.jpg) no-repeat scroll 0%;
height:80px;
text-decoration:none;
text-indent:-999em;
}

div#headline {
background:#61739F none repeat scroll 0%;
font-size:90%;
height:16px;
padding-left:5px;
}

#blueline {
background:#61739F url(images/cms/blueline.jpg) repeat-x scroll 0%;
font-size:90%;
height:8px;
margin-left:0px;
min-height:8px;
padding-left:0px;
width:100%;
}

div#login {
font-size:90%;
margin-top:10px;
padding-left:8px;
}

div#left_kontakt {
font-size:89%;
margin-top:10px;
padding-left:8px;
}

div#mainheader {
height:190px;
margin-left:180px;
margin-right:0pt;
padding-left:0px;
width:824px;

}

div#search {
background-color:#F1F1F1;
float:right;
height:180px;
margin:0pt 0pt 0pt 2px;
padding:0pt;
text-align:left;
vertical-align:baseline;
}

div#insearch {
background-color:#F1F1F1;
font-size:90%;
height:180px;
margin:0pt 0pt 0pt 2px;
text-align:left;
width:180px;
}

#clearall {
clear:both;
}

div#contentheader {
float:left;
height:180px;
margin:0pt;
padding:0pt;
text-align:left;
width:640px;
}

div.breadcrumbs {
font-size:90%;
margin:0pt 1em;
padding:1em 0pt 1.2em;
}

div.breadcrumbs span.lastitem {
font-weight:bold;
}

div#content {
background:#ffffff url(images/cms/content_bg.jpg) repeat-y;
margin:18px auto 0 0;
height:auto;

}


div#main {
margin-left:195px;
margin-right:15px;
padding-left:0px;
padding-right:0px;
padding-top:10px;
width:625px;
background-color:#ffffff;
height:auto;
min-height:500px; 

}

div#sidebar {
background-color:#F1F1F1;
display:inline;
float:left;
margin-left:0pt;
width:180px;
height: auto;
min-height:824px;


}

div#sidebarright {
background-color:#F1F1F1;
float:right;
position:relative; 
width:178px; 
right:0px;
top:0px;
height: auto;
padding-right:5px;
padding-bottom:30px;
padding-top:15px;

}

div#rightbox{
font-size:89%;
margin-top:0px;
padding-left:8px;
line-height: 150%;
}

div#footer {
padding-top:0px;

clear:both;
color:#5d6d9e;


}



.footermenu_r {
padding-top:10px;
float:right;
font-weight:bold;
font-size:89%;
margin:0pt;
padding:0;
text-align:right;
}

.footermenu_l {
padding-top:10px;
float:left;
font-weight:bold;
font-size:89%;
margin:0pt;
padding:0;
}

div#footer a {
color:#5d6d9e;
}

div.hr {
border-bottom:1px dotted black;
height:1px;
margin:1em;
padding:1em;
}

div.hr_left {
border-bottom:1px solid #CFCFCF;
height:1px;
margin:2px 0px 15px 0px;
padding:0;
}

div.left49 {
width:49%;
}

div.right49 {
float:right;
text-align:right;
width:49%;
}

div#main  img {
padding: 10px 10px;
}

div#content h1 {
font-size:1.5em;
line-height:1em;
margin:0pt;
color:#FF9C0C;
padding:15px 15px 10px 0px;
}

div#content h2 {
border-bottom:1px solid #61739F;
border-left:0.0em solid #61739F;
background-color:#f1f1f1;
color:#61739F;
font-size:1.3em;
line-height:1.4em;
margin:15px 3px 15px 0px;
padding-bottom:1px;
padding-left:3px;
text-align:left;
}

div#content p {

padding-right:15px;
text-align:left;
}


div#content h3 {
color:#FF9C0C;
font-size:1.3em;
line-height:1.3em;
margin:0pt 0pt 5px 3px;

}

div#content h4 {
color:#FF9C0C;
font-size:1.2em;
line-height:1.3em;
margin:0pt 0pt 5px 3px;
padding-left:0px;
}

div#content h5 {
color:#FF9C0C;
font-size:1.1em;
line-height:1.3em;
margin:0pt 0pt 5px 3px;
}

h6 {
color:#FF9C0C;
font-size:1em;
line-height:1.3em;
margin:0pt 0pt 5px 3px;
}

div#content address {

margin:0pt 0pt 0px 0px;
padding-left:10px;
}

p {
font-size:1em;
line-height:1.4em;
margin:0pt 0pt 5px 3px;
padding:0pt;
}

blockquote {
border-left:10px solid #DDDDDD;
margin-left:10px;
}

strong, b {
font-weight:bold;
}

em, i {
font-style:italic;
}

code, pre {
font-family:"Courier New",Courier,monospace;
font-size:1em;
white-space:-moz-pre-wrap;
}

pre {
background-color:#DDDDDD;
border:1px solid #000000;
font-size:90%;
line-height:1.5em;
margin:0pt 1em 1em;
padding:0.5em;
}

div.templatecode {
margin:0pt 0pt 2.5em;
}

div#main ul, div#main ol, div#main dl {
font-size:1em;
line-height:1.4em;
margin:0pt 0pt 1.5em;
}

div#main ul li, div#main ol li {
margin:0pt 0pt 0.25em 3em;
}

div#main dl dt {
font-weight:bold;
margin:0pt 0pt 0pt 1em;
}

div#main dl dd {
margin:0pt 0pt 1em 1em;
}

div#main dl {
border-bottom:1px solid #C0C0C0;
margin-bottom:2em;
padding-bottom:1em;
}

div#news {
background:#FFE9AF none repeat scroll 0%;
border:1px solid #000000;
margin:2em 0pt 1em 1em;
}

div#news h2 {
background:#FFFFFF none repeat scroll 0%;
line-height:2em;
}

.NewsSummary {
border-bottom:1px solid #CCCCCC;
margin:0pt 0.5em 1em;
padding:0.5em 0.5em 1em;
}

.NewsSummaryPostdate {
font-size:90%;
font-weight:bold;
}

.NewsSummaryLink {
font-weight:bold;
padding-top:0.2em;
}

.NewsSummaryCategory {
font-style:italic;
margin:5px 0pt;

}

.NewsSummaryAuthor {
font-style:italic;
padding-bottom:0.5em;
}

.NewsSummarySummary, .NewsSummaryContent {
line-height:140%;
}

.NewsSummaryMorelink {
padding-top:0.5em;
}

#NewsPostDetailDate {
font-size:90%;
font-weight:bold;
margin-bottom:5px;
}

#NewsPostDetailSummary {
line-height:150%;
}

#NewsPostDetailCategory {
border-top:1px solid #CCCCCC;
font-style:italic;
margin-top:0.5em;
padding:0.2em 0pt;
}

#NewsPostDetailContent {
line-height:150%;
margin-bottom:15px;
}

#NewsPostDetailAuthor {
font-style:italic;
padding-bottom:1.5em;
}


span.accesskey {
text-decoration:none;
}

.accessibility, hr {
left:-999em;
position:absolute;
top:-999em;
}

dfn {
display:inline;
height:0pt;
left:-1000px;
overflow:hidden;
position:absolute;
top:-1000px;
width:0pt;
}

a.external span {
left:-5000px;
position:absolute;
width:4000px;
}

a.external {
padding:0pt 12px 0pt 0pt;
}

a.external:link {
background:transparent url(images/cms/external.gif) no-repeat scroll 100% 0pt;
color:#18507C;
}

a.external:visited {
background:transparent url(images/cms/external.gif) no-repeat scroll 100% 0pt;
color:#18507C;
}

a.external:hover {
background:#C3D4DF url(images/cms/external.gif) no-repeat scroll 100% 0pt;
color:#18507C;
}

.clearfix:after {
clear:both;
content:".";
display:block;
height:0pt;
visibility:hidden;
}

* html > body .clearfix {
width:100%;
}

* html .clearfix {
height:1%;
}

/* formulare */
 .contactform fieldset {
padding: 1em; 
background-color: #eee;
margin:10px;
} 

.contactform fieldset legend {
font-weight: bold;
} 
.contactform div {
width: 100%; 
padding: 0.25em 0 0.25em 0;
} .contactform div label {
display: block; 
width: 10em; 
} .contactform div.required {
color: #000; 
font-weight: bold;
} 

.big {
color: #000; 
font-weight: bold;

}

.Kontroll {
color: #000; 
font-weight: bold;
padding-top:15px;
}

.Kontroll  table{
color: #000; 
font-weight: normal;
padding-top:5px;
}
.Kontroll_text{
color: #000; 
font-weight: bold;
padding-left:240px;
}

.required {
color: #000; 
font-weight: bold;

}


/*  Editor */

.mceContentBody h1 {
font-size:1.5em;
line-height:1em;
margin:0pt;
color:#FF9C0C;
padding:15px 15px 10px 0px;
}

.mceContentBody h2 {
border-bottom:1px solid #61739F;
border-left:0.0em solid #61739F;
background-color:#f1f1f1;
color:#61739F;
font-size:1.3em;
line-height:1.4em;
margin:15px 3px 15px 0px;
padding-bottom:1px;
padding-left:3px;
text-align:left;
}

.mceContentBody p {

padding-right:15px;
text-align:left;
}


.mceContentBody h3 {
color:#FF9C0C;
font-size:1.3em;
line-height:1.3em;
margin:0pt 0pt 5px 3px;

}

.mceContentBody h4 {
color:#FF9C0C;
font-size:1.2em;
line-height:1.3em;
margin:0pt 0pt 5px 3px;
padding-left:0px;
}

.mceContentBody h5 {
color:#FF9C0C;
font-size:1.1em;
line-height:1.3em;
margin:0pt 0pt 5px 3px;
}

h6 {
color:#FF9C0C;
font-size:1em;
line-height:1.3em;
margin:0pt 0pt 5px 3px;
}

.mceContentBody address {

margin:0pt 0pt 0px 0px;
padding-left:10px;
}

.mceContentBody img {
padding: 10px 10px;
}

.Kontroll input{
border:0;
}

/* Image Gallerie */
	.thumb {
		margin: 1em 1em 1.6em 0; 
		padding: 0;
		float: left;
		text-decoration: none;
		line-height: normal;
		text-align: left;
	}

	.thumb img, .thumb a img, .thumb a:link img{ 
		width: auto; 
		height: 62px; 
		display: inline;
		padding: 12px; 
		margin: 0;
		background-color: white; 
		border-top: 1px solid #eee; 
		border-right: 2px solid #ccc;
		border-bottom: 2px solid #ccc;
		border-left: 1px solid #eee;
		text-decoration: none;
	}

	.thumb a:visited img {
		background-color: #eee; 
	}

	.thumb a:hover img {
		background-color: #dae6e4; 
	}

	.thumbPicCaption {
		text-align: center;
		font-size: smaller;
		margin: 0 1px 0 0;
		padding: 0;
		width: 124px; 
		
	}

	.bigPic {
		margin: 10px 0 5px 0;
		padding: 0;
		line-height: normal;
	}

	.bigPicCaption { 
		text-align: center;
		font-weight: bold;
		font-variant: small-caps;
		font-weight: bold;
		margin: 0 1px 0 0;
		padding: 0;
		width: 386px; 
		
	}

	.bigPic img{ 
		width: 350px; 
		height: auto;
		display: inline;
		padding: 18px; 
		margin: 0;
		background-color: white; 
		border-top: 1px solid #eee; 
		border-right: 2px solid #ccc; 
		border-bottom: 2px solid #ccc;
		border-left: 1px solid #eee;
		text-decoration: none; 
		text-align: left;
	}

	.bigPicNav { 
		margin: 0;
		width: 386px; 
		padding: 0;
		color: #000;
		font-size: smaller;
		line-height: normal;
		text-align: center;
	}



#TB_overlay {
	position: fixed;
	z-index:100;
	top: 0px;
	left: 0px;
	background-color:#61739F;
	filter:alpha(opacity=85);
	-moz-opacity: 0.75;
	opacity: 0.75;
	height:100%;
	width:100%;
}

* html #TB_overlay { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#TB_window {
	position: fixed;
	background: #ffffff;
	z-index: 102;
	color:#000000;
	display:none;
	border: 4px solid #61739F;
	text-align:left;
	top:50%;
	left:50%;
}

* html #TB_window { /* ie6 hack */
position: absolute;
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

#TB_window img#TB_Image {
	display:block;
	margin: 15px 0 0 15px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #666;
	border-left: 1px solid #666;
}

#TB_caption{
	height:25px;
	padding:7px 30px 10px 25px;
	float:left;
}

#TB_closeWindow{
	height:25px;
	padding:11px 25px 10px 0;
	float:right;
}

#TB_closeAjaxWindow{
	padding:7px 10px 5px 0;
	margin-bottom:1px;
	text-align:right;
	float:right;
}

#TB_ajaxWindowTitle{
	float:left;
	padding:7px 0 5px 10px;
	margin-bottom:1px;
}

#TB_title{
	background-color:#e8e8e8;
	height:27px;
}

#TB_ajaxContent{
	clear:both;
	padding:2px 15px 15px 15px;
	overflow:auto;
	text-align:left;
	line-height:1.4em;
}

#TB_ajaxContent.TB_modal{
	padding:15px;
}

#TB_ajaxContent p{
	padding:5px 0px 5px 0px;
}

#TB_load{
	position: fixed;
	display:none;
	height:13px;
	width:208px;
	z-index:103;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
}

* html #TB_load { /* ie6 hack */
position: absolute;
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

#TB_HideSelect{
	z-index:99;
	position:fixed;
	top: 0;
	left: 0;
	background-color:#fff;
	border:none;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	height:100%;
	width:100%;
}

* html #TB_HideSelect { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#TB_iframeContent{
	clear:both;
	border:none;
	margin-bottom:-1px;
	margin-top:1px;
	_margin-bottom:1px;
}
.imgpopup{
cursor:pointer;


}


/* End of 'DA Template CSS 3 spalten' */

