/*
 * global font definition
 */
* {
 font-family: Arial, Helvetica, sans-serif;
 font-size: 11pt;
}

a img {
  border: 0;
}

.fixfloat {
  clear: both;
}

.hide {
  display: none;
}

p, li, td, th {
  color:#151717;
}

.highlight {
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.small-text {
  font-size:12px;
}

h1 {
  	font-size:11.5pt;
	color:#3596a1;
}

h2, h3, h4, h5, h6 {
  color:#151717;
}
hr {
	border:0;
	height:1px;
	color:#797979;
	background-color:#797979;
}
a, a:link, a:active {
 /* color: rgb(43, 149, 161);*/
/* color: rgb(0, 0, 0);*/
	color:#3596A1;
/*	font-weight:bold;*/
	text-decoration:none;
}
a:visited {
 /* color: rgb(23, 129, 141); */
/* color: rgb(40, 40, 40);*/
	color:#3596A1;
/*	font-weight:bold;*/
	text-decoration:none;
}
.small-text a {
   font-size:12px;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/*
 * menu definition
 */
ul.hmenu, ul.hmenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.hmenu li {
  float: left;
}

ul.vmenu, ul.vmenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.vmenu li {
  float: none;
}

/*
 * global page layout
 */

html {
  width: 100%;
}

body {
  margin-top: 45px;
}

#page {
  margin-left: auto;
  margin-right: auto;
  width: 941px;
  padding-bottom: 30px;
}


/*
 * top header definition
 */
#head {
  background-color: rgb(70, 196, 211);
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
}


/*
 * Logo definition and positioning
 */
#groups {
  padding-top: 15px;
  padding-left: 10px;
  height: 50px;
  background-color: rgb(255, 255, 255);
  float: left;
} 

#groups img {
  margin-right: 10px;
  vertical-align: top;
}

#logo {
  width: 125px;
  height: 75px;
  padding-left: 5px;
  padding-top: 10px;
  background-color: rgb(255, 255, 255);
  float: right;
}

#head .homepagelink {
  clear: left;
  padding-top: 5px;
  margin-left: 10px;
  height: 15px;
}

#head .homepagelink a, #head .homepagelink a:link, #head .homepagelink a:active, #head .homepagelink a:visited {
	color: rgb(255, 255, 255);
	font-size: 8pt;
}

/*
 * Specific menu (dropdown) configuration
 */
#topmenu {
  margin-left: 10px;
  margin-top: 40px;
  width: 800px;
  clear: both;
  float: left;
}

#topmenu a, #topmenu a:link, #topmenu a:visited, #topmenu a:active {
/*  color: rgb(178, 231, 237); */
  color: rgb(255, 255, 255);
  text-decoration: none;
}

/*
 * Level 1 
 */
#topmenu ul.menulevel1 li {
  margin-right: 15px;
  height: 30px;
}

/* 
 * Level 2 menu visibility and positioning
 */
#topmenu .menulevel1 li .menulevel2-container {
  /*
   * Container for the relative absolute positioning of 2nd level dropdown
   */
  display: none;
  position: relative;

  top: 10px; left: -10px;
}

#topmenu .menulevel1 li .menulevel2-container .menulevel2 {
  position: absolute;
  background-color: rgb(70, 196, 211);

  width: 240px; /* fixed width due to IE bug */
}

#topmenu .menulevel1 li:hover .menulevel2-container {
  display: block;
}

/*
 * Level 2 formatting
 */
#topmenu .menulevel1 li .menulevel2 li {
  margin-right: 0px;
  width: 100%;
  height: auto; /* reset inherited height (#topmenu ul.menulevel1 li) */
  border-bottom: 1px solid rgb(147, 210, 217);
}

#topmenu .menulevel1 li .menulevel2 li.last {
  border-bottom: none;
}

#topmenu .menulevel1 li .menulevel2 li a, #topmenu .menulevel1 li .menulevel2 li a:link, #topmenu .menulevel1 li .menulevel2 li a:visited,
#topmenu .menulevel1 li .menulevel2 li a:active {
  display: block;
  width: 100%;
  padding: 3px 10px; 
/*  color: rgb(178, 231, 237);*/
  color: rgb(255, 255, 255);
}

#topmenu .menulevel1 li:hover a, #topmenu .menulevel1 li.active a, #topmenu .menulevel1 li.active a:link, #topmenu .menulevel1 li.active a:visited,
#topmenu .menulevel1 li.active a:active, #topmenu .menulevel1 li a:hover {
  color: rgb(255, 255, 255);
}

/*
 * Level 3 menu visiblity and positioning
 *
 * Note:
 *  Fix for IE Bug: A-Tag included in DIV container!
 *  => Hide/Unhide UL only
 *  => UL-Tag Top/Left positioning  
 */
#topmenu .menulevel2 li .menulevel3-container {
  position: relative;
}

#topmenu .menulevel2 li .menulevel3-container ul.menulevel3 {
  display: none;
}

#topmenu .menulevel2 li .menulevel3 {
  position: absolute;
  left: 240px; 
  top: 0px; /* reset inherited top position setting */
 
  background-color: rgb(62, 174, 188);
  width: 240px;
  overflow: hidden;
}

#topmenu .menulevel2 li:hover .menulevel3-container ul.menulevel3 {
  display: block;
}

/*
 * Level 3 formatting
 */
#topmenu .menulevel1 li .menulevel2 li:hover a, #topmenu .menulevel1 li .menulevel2 li:hover a:link, 
#topmenu .menulevel1 li .menulevel2 li:hover a:visited, #topmenu .menulevel1 li .menulevel2 li:hover a:active,
#topmenu .menulevel1 li .menulevel2 li a:hover {
  color: rgb(255, 255, 255);
}

#topmenu .menulevel1 li .menulevel2 li .menulevel3 a, #topmenu .menulevel1 li .menulevel2 li .menulevel3 a:link, 
#topmenu .menulevel1 li .menulevel2 li .menulevel3 a:visited, #topmenu .menulevel1 li .menulevel2 li .menulevel3 a:active {
  display: block;
  width: 100%;
  color: rgb(178, 231, 237);
}

#topmenu .menulevel1 li .menulevel2 li .menulevel3 li:hover a, #topmenu .menulevel1 li .menulevel2 li .menulevel3 a:hover {
  color: rgb(255, 255, 255);
}

#topmenu .menulevel2 li:hover {
  background-color: rgb(62, 174, 188);
}


/*
 * Language menu
 */
#langmenu {
  margin-top: 40px;
  width: 120px;
  float: right;
  height: 30px;
}


#langmenu  a, #langmenu a:link, #langmenu a:visited, #langmenu a:active {
  display: block;
  font-size: 8pt;
  margin-right: 10px;
  color: rgb(255, 255, 255);
  text-decoration: none;
}

#langmenu .languagemenu-container {
  position: relative;
  display: none;
  top: 12px; left: -10px;
}

#langmenu .hmenu li:hover .languagemenu-container {
 display: block;
}


#langmenu .languagemenu {
  position: absolute;
  width: 130px; 
}

#langmenu ul.hmenu li {
  height: 30px;
}

#langmenu ul.hmenu li ul.languagemenu li {
  background-color: rgb(70, 196, 211);
  border-bottom: 1px solid rgb(147, 210, 217);
  height: auto;
  width: 100%;
}

#langmenu ul.hmenu li ul.languagemenu li a, #langmenu ul.hmenu li ul.languagemenu li a:link, 
#langmenu ul.hmenu li ul.languagemenu li a:visited, #langmenu ul.hmenu li ul.languagemenu li a:active {
  color: rgb(178, 231, 237);
  display: block;
  font-size: 10pt;
  margin: 0;
  height: auto;
  width: 100%;
}

#langmenu ul.hmenu li ul.languagemenu li:hover {
  background-color: rgb(62, 174, 188);
}

#langmenu ul.hmenu li ul.languagemenu li:hover a, #langmenu ul.hmenu li ul.languagemenu li:hover a:hover {
  color: rgb(255, 255, 255);
}

#langmenu .languagemenu li .menulevel3-container {
  position: relative;
  padding: 3px 10px;
}

/*
 * Footer common menu 
 */
#footer {
  margin-top: 15px;
  clear: both;
}

#footer .hmenu {
  float: right;
  margin-right: 5px;
}

#footer .hmenu li {
  margin-right: 10px;
}

#footer .hmenu a, #footer .hmenu a:link, #footer .hmenu a:visited, #footer .hmenu a:active {
  font-size: 9pt;
  color: rgb(0, 174, 194); 
  text-decoration: none;
}

/*
 * tt_news 
 */

/*
 * News teaser 
 */
.news-latest-item {
	margin-bottom: 15px;
}

.news-latest-item .news-latest-date {
  /* color: rgb(43, 149, 161); */
  color: rgb(82, 79, 79);
  font-size: 9pt;
}

.news-latest-item h2 {
  margin: 0;
  padding: 0;
}

.news-latest-item p {
  margin: 0;
  padding: 0;
}

/*
 * News lists
 */
.news-list-item {
  margin-top: 10px;
  margin-bottom: 15px;
}

.news-list-item .news-list-date {
  /* color: rgb(43, 149, 161); */
  color: rgb(82, 79, 79);
  font-size: 9pt;  
}

.news-list-item h2 {
  margin: 0;
  padding: 0;
}

.news-list-item p {
  margin: 0;
  padding: 0;
}

/*
 * Single news item
 */
.news-single-item {
  margin-top: 10px;
  margin-bottom: 15px;
}

.news-single-item .news-single-timedata {
   color: rgb(82, 79, 79);
 	font-size: 9pt;
}

.news-single-item .news-single-dam {
	margin-top: 1em;
	float: right;
	width: 200px;
}

.news-single-item .news-single-dam h2 {
   margin-top: 0 !important;
}

.news-single-item .news-single-files {
	float: right;
	width: 220px;
}

.news-single-item .news-single-files dl {
	margin-top: 0;
	padding-top: 0;
}

.news-single-item .news-single-files dt {
	margin-bottom: 8px;
}

.news-single-item .news-single-files dd {
	margin-left: 10px;
	margin-bottom: 5px;
}

.news-single-item .news-single-files dd img {
	padding-right: 3px;
}

.news-single-item .news-single-backlink {
  margin-top: 20px;
}


/* table */
#content table.struktur {
	width: 450px;
	margin:0 0 15px 0;
}
#content table.contenttable {
	width: 450px;
	margin:0 0 15px 0;
}
#content td.td-100 p, 
#content td.td-100 p.bodytext,
#content td.td-100 ul {
	width:120px;
	max-width:120px;
	min-width:120px;
	padding-top:0;
	padding-bottom:0;
	padding-left:10px;
	margin-top:0;
	margin-bottom:0;
}
#content td.td-350 p,
#content td.td-350 p.bodytext,
#content td.td-350 ul {
	width:350px;
	max-width:350px;
	min-width:350px;
	padding-top:0;
	padding-bottom:0;
	padding-left:10px;
	margin-top:0;
	margin-bottom:0;
}
#content td.td-460 p,
#content td.td-460 p.bodytext,
#content td.td-460 ul {
	width:460px;
	max-width:460px;
	min-width:460px;
	padding-top:0;
	padding-bottom:0;
	padding-left:10px;
	margin-top:0;
	margin-bottom:0;
}
#content td.td-350 ul {
	margin-top:0;
	margin-bottom:10px;
}
/*#content table p.bodytext,
#content table p {
	padding:0;
	margin:0;
	max-width:490px;
	min-width:100px;
}*/
#content table.times {
	width:489px;
	border-width: 0;
	border-spacing: 0px;
	border-style: none;
	border-color: white white white white;
	border-collapse: collapse;
	background-color: transparent;
}
#content table.times td {
	/*width:163px;
	vertical-align:top;
	background:#fdfdfd;
	padding:5px;*/
/*   width:110px;*/
   vertical-align:top;
   border-width: 0 0 1px 0;
	padding: 4px 4px 4px 0;
	border-style: solid;
	border-color: #EFEFEF;
	background-color: transparent;
}
#content table.times td.td-100 {
	border-right:1px solid #EFEFEF;
	border-top:1px solid #EFEFEF;
	border-left:1px solid #EFEFEF;
	padding-top:10px;
}
#content table.times td.td-350 {
	border-right:1px solid #EFEFEF;
	border-top:1px solid #EFEFEF;
	border-left:1px solid #EFEFEF;
	padding-top:10px;
}
#content table.times td.td-460 {
	border-right:1px solid #EFEFEF;
	border-top:1px solid #EFEFEF;
	border-left:1px solid #EFEFEF;
	padding-top:10px;
}

#content ul li ul li {
	list-style-type:square;
}

/* people */
div.people {
	width:490px;
	clear:both;
	padding:0 0 8px 0;
}
div.people-image {
	width:60px;
	float:left;
	padding:0 0 30px 0;
}
div.people-text {
	width:430px;
	float:left;
	vertical-align:top;
}
div.people-text p {
	margin:0;
}
#topmenu ul li a, #subnavigation ul li a {
   font-size:10pt;
}
#topmenu .menulevel1 li .menulevel2 li .menulevel3 a, #topmenu .menulevel1 li .menulevel2 li .menulevel3 a:link, #topmenu .menulevel1 li .menulevel2 li .menulevel3 a:visited, #topmenu .menulevel1 li .menulevel2 li .menulevel3 a:active {
   color:#fff;
}
.menulevel3 {
       color:#fff;
    }
    
.tx-kuloplayer-pi1 {
   padding:0;
   margin-top:15px;
   float:left;
}