@charset "UTF-8";
/* CSS Document */


*{
	font-family: Arial, Helvetica, sans-serif;
}

body{
	width: 100%;
	height: 100%;
 	text-align: center;  /* Zentrierung im Internet Explorer */
	background-color: #ddd;
}

#wrapper{
	margin: auto;
	height: 100%;
	min-height: 500px;
	background-color: #fff;
}

@media screen and (min-width: 1000px) {
	#wrapper{
		width: 65%;
	}
}

@media screen and (max-width: 1000px) {
  /* For mobile phones: */
  #wrapper {
    width: 100%;
  }
}

#page{
	text-align: left;
	height: 100%;
	margin-top: 5px;
}

#header{
	width: 100%;
	height: 400px;
	position: relative; 
	margin-bottom: 20px;
	background-image: url(images/koinonia-headerbild.png);
	background-repeat: no-repeat;
	background-size: 100%;
}

#logo{
	position: absolute;
	width: 250px;
	bottom: -20px;
	left: 70px;
}


#menu{
	width: 100%;
	padding-bottom: 12px;
	font-size: normal;
	font-style: bold;
	overflow: hidden;
	/*border-left: thin solid gray;*/
}

#menu ul{
	list-style: none;
	display: block;
	list-style-position:outside;
	margin-left: -40px;
}

#menu ul li{
	float: left;
	padding: 5px;
	border-right: thin solid white;
	/*border-top: thin solid gray;*/
}

#menu a{
	color: #888;
	text-decoration:none;
}

#menu li a:hover{
	text-decoration: underline solid #ffdd00 3px;
}

#menu li.active:hover{
}

.active{
	text-decoration: underline solid #ffdd00 3px;
}

#content{
	margin: 30px auto;
	clear: left;
	width: 80%;
	height: 100%;
}

#col1{
	float: left;
	width: 70%;
	height: 100%;
	min-height: 400px;
	margin-right: 10px;
	padding-right: 10px;
}

#col2{
	width: 100%;
	height: 100%;
	padding: 0px 5px 0px 5px;
}

#col2 img{
	margin-top: 10px;
}

div.clear{
	clear: both;
}

#footer{
	clear: both;
	width: 100%;
	margin-top: 50px;
	color: gray;
	text-align: center;
	background: #ddd;
}

h1{
	color: black;
	font-size: 1.5em;
}

p, ul{
	line-height: 1.5em;
}

a { 
	color: #888;
	font-weight: bold;
	text-decoration: none;
}

a:hover {
	text-decoration: underline solid #ffdd00 3px;
}





