/* -----------------------------------
 * Colors used:
 * background light  #e9f4ff
 * background medium #b1d0ff
 * background dark   #6fa8ff
 * font color        #003280
 * -----------------------------------*/
/*


/* -----------------------------------
 * Test stuff; move away once tested
 * -----------------------------------*/
/*

*/
/* -----------------------------------
 * Very general stuff
 * -----------------------------------*/

* {
		padding: 0;
		margin: 0;
}
body {
		font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
		font-size: 87%;
		color: #003280;
		height: 100%;
		background: #000000;
}

h1{
	font-size: 20px;
	margin-top:20px;
}
h2{
	font-size: 16px;
	margin-top: 16px;
}
h3{
	font-size: 14px;
	margin-top: 14px;
}

h4{
	font-size: 12px;
	margin-top: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}


/* -----------------------------------
 * Basic layout and colors
 * -----------------------------------*/


div#workspace { /* leave a small border left and right */
	margin-left:  20px;
	margin-right: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
}

div#dyn_width { 
		/* dynamic width in a certain area, as supported by Firefox */
		/* IE specifics see ie_fix.css */
		margin-left: auto;
		margin-right: auto;
		min-width: 710px;
		max-width: 1010px;
	  text-align: left;
  	align: left;
}


div#header {
		margin: 0px;
		background: #b1d0ff;
		vertical-align: middle;
}

#headerlogo {
		float: left;
		padding: 2px;
}


#headermain {
		padding-top: 2em;
		margin-left: 1em;
		margin-right: 1em;
		text-align: center;
}

div#footer {
		background: #b1d0ff;
		margin: 0px;
		margin-top: 1ex;
}

div#footer div#bottomcontent{
		padding: 0.5ex 1ex;
}

div#body_all {
		margin-left:  30px;
		margin-right: 30px;
		background: #e9f4ff;
} 

div#left {
		float: left;
		position: relative;
		left: -2em;
		margin-right: -2em;
		width: 11em;
		background: transparent;
}

div#right {
		float: right;
		position: relative;
		left: 2em;
		margin-left: -2em;
		width: 11em;
}

div#main {

		margin-left:  9em;
		margin-right: 9em;
		padding: 0.5em;
}

div.module div div div{
		padding-left:  0.5em;
		padding-right: 0.5em;
}


div#left div.module {
		font-size: 87%;
		background:  #6fa8ff; /* url(../images/left_module_middle.png) left repeat-y; */
		margin-bottom: 0.5em;
		margin-top: 0.5em;
}

div#left div.module div{
		background: transparent; /* url(../images/left_module_top.png) top left no-repeat; */
}

div#left div.module div div{
		background: transparent; /* url(../images/left_module_bottom.png) bottom left no-repeat; */
}

div#left div.module div div div{
		background: transparent;
}

div#left div.module div div div div{
		background: transparent;
		padding: 0em;
}

div#right div.module {
		font-size: 87%;
		background:  #6fa8ff; /* url(../images/left_module_middle.png) left repeat-y;*/
		margin-bottom: 0.5em;
		margin-top: 0.5em;
}

div#right div.module div{
		background: transparent; /*url(../images/left_module_top.png) top left no-repeat;*/
}

div#right div.module div div{
		background: transparent; /*url(../images/left_module_bottom.png) bottom left no-repeat;*/
}

div#right div.module div div div{
		background: transparent;
		padding: 0.5em;
}



/* -----------------------------------
 * Module content
 * -----------------------------------*/

div.module h3 {
		font-size: 1em;
		padding-top:0.5em;
		padding-bottom:0.5em;
}

div.module  table.contentpaneopen td.contentheading{
	font-size: 1em; /* Like h3 */
	font-weight: bold;
}

/* -----------------------------------
 * Module content -- main menu
 * -----------------------------------*/

div.module td{
		vertical-align: middle;
}
		
div.module a.mainlevel:link, div.module a.mainlevel:visited, div.module a.sublevel:link, div.module a.sublevel:visited{
	display: block;
	padding-left: 0.3em;
	padding-top:0.2em;
	padding-bottom: 0.3em;
	margin: 0.15em 0em;
	color: #003280;
	background: #e9f4ff;
	text-decoration: none;
	border: 1px solid black;
	border-left-color: white;
	border-top-color: white;
	
}

div.module a.mainlevel#active_menu, div.module a.mainlevel:active, div.module a.sublevel#active_menu, div.module a.sublevel:active{
	background: #b1d0ff;
	color: #003280;
	border-color: white;
	border-left-color: black;
	border-top-color: black;
}


div.module a.mainlevel:hover, div.module a.sublevel:hover{
	color: #003280;
	background: #b1d0ff;
}

div.module a.sublevel:link, div.module a.sublevel:visited{
	display: list-item;
	list-style-image: url(../images/indent1.png);
	margin: 0.3em 0em;

	margin-left: 1em;
	
}

/* -----------------------------------
 * Module content -- bottom menu
 * -----------------------------------*/

#bottommenu div.module div div div{
		padding: 0;
		margin: 0;
}
/*
#bottommenu {
	float: right;
	padding: 0;
	margin: 0;
}
*/
ul#mainlevel-nav{
	list-style: none;
	padding: 0;
	margin: 0;
}

ul#mainlevel-nav li{
	display: block;
	float: right;
	background:  #6fa8ff;
	padding: 0;
	line-height: 1.5em;
	margin-left: 3px;
	border-left: 2px solid #6fa8ff;
	border-right: 2px solid #6fa8ff;
}

ul#mainlevel-nav li a{
	background:  #6fa8ff;
	color: #003280;
	text-decoration: none;
	padding-left: 1em;
	padding-right: 1em;
}

#bottommenu ul#mainlevel-nav li a:hover{
	background: #003280;
	color: #e9f4ff;
}

/* -----------------------------------
 * Module content: pseudo module Sponsoren
 * -----------------------------------*/
table.sponsoren td {
	padding: 0.5ex 1em;
}
table.sponsoren img {
	border-width: 0;
}

/* -----------------------------------
 * Main content
 * -----------------------------------*/

#main h1{
	font-size: 20px;
	margin-top:20px;
}
#main h2{
	font-size: 16px;
	margin-top: 16px;
}
#main h3{
	font-size: 14px;
	margin-top: 14px;
}

#main h4{
	font-size: 12px;
	margin-top: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

#main ul li{
	list-style-image: url(../images/indent1.png);
	margin: 0.3em 0em;
	margin-left: 1em;	
}

#main table.blog{
	width: 100%;
}
#main table.contentpaneopen{
	width: 100%;
}

#main table.contentpaneopen td{
	padding: 3px;
}


#main  table.contentpaneopen td.contentheading{
	font-size: 20px; /* Like h1 */
	font-weight: bold;
	background: #b1d0ff;
	padding: 1px 3px;
}

table.Inhaltstabelle{
	border-collapse: collapse;
}

table.Inhaltstabelle td{
	border: 1px solid #003280;
	padding: 0.5ex;
	vertical-align: top;
}

table.Inhaltstabelle thead, table.Inhaltstabelle tfoot{
	background:  #b1d0ff;
	font-weight: bold;
}




/* -----------------------------------
 * Helpers 
 * -----------------------------------*/


div.clearer {
		clear: both;
		font-size: 0px;
		line-height: 0px;
		font:;
}		


