/* CSS Document */

@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(http://fonts.googleapis.com/css?family=Bree+Serif);

img#bg {
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
}


body{ 
background: url(bgimage.jpg) no-repeat;
background-size: 100%;
overflow:auto;
overflow: -moz-scrollbars-vertical;

font-size:22px;
	
	color: #ffffff;
	word-wrap:break-word !important;
	font-family: 'Open Sans', sans-serif;
}

 

html {
  height: 100%;
  margin-bottom: 1px;
}

.ueberschrift
{
font-size:22px;
color: #1d2e7d;
font-family: 'Bree Serif', 'serif';
}

.tablecontent {
font-family: 'Bree Serif', 'serif';
font-size:17px;
color: #1d2e7d;
background-color: rgba(255,255,255,0.8); 
border: solid 0px  #222222;
padding-left : 0px; 
padding-right : 0px;
padding-top : 5px;
padding-bottom : 5px;
}

.tablehead {
font : bold 14pt arial, verdana, sans-serif; 
color : #1d2e7d; 
font-weight:bold;
}

td.kopf,tr.kopf	{background-color:#ffffff;color:#1d2e7d;}

td.content,tr.content	{
background-color:#7a2211;color:#ffffff;
text-align: left;
}

td.space,tr.space	{
background-color:#000000;color:#ffffff;
text-align: left;
}

.menusmall
{
background-color: #DF0101;
font-family: 'Bree Serif', 'serif';
font-size: 12px;
color: #FFFFFF;
}



h1 {
	font-size: 60px;
	text-align: center;
	color: #FFF;
}	

h3 {
	font-size: 30px;
	text-align: center;
	color: #FFF;
}

h3 a {
	color: #FFF;
}

a.test {
	color: #1d2e7d;
        

}


a.content:link {color: #1d2e7d; text-decoration: none;}
a.content:visited { color: #1d2e7d;text-decoration: none;}
a.content:hover { color: #1d2e7d; text-decoration: underline;}
a.content:active { color: #1d2e7d; text-decoration: none;}

h1 {
	
	text-align:center;
	font-size:60px;
	font-family: 'Bree Serif', 'serif';
	}

#container {
	margin: 0 auto;
	max-width: 900px;
}

p {
	text-align: center;
}


/* Giving a background-color to the nav container. */
nav { 
	
	background-color: #009EE1;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	background-color: #009EE1;
	}

/* Styling the links */
nav a {
	display:block;
	padding:0 10px;	
	color:#FFFFFF;
	font-size:16px;
	line-height: 40px;
	text-decoration:none;
}

/* Background color change on Hover */
nav a:hover { 
	background-color: #1d2e7d; 
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 40px; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-40px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

	
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ''; }
li > a:only-child:after { content: ''; }
