body{
	margin: 0 auto;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	background-color:  	#998876;

}

/*  Header mit Logo und Navigation */

header{
	padding: 20px 100px;
	background:  	#F5F5F5;
	background-image: url(background.png);
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

h3{
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 700;
	color: #1b1b1b;
}

.logo{
	
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
	font-size: 40px;	
    color: #D9C1A7;
	text-shadow:#1b1b1b 2px 2px;
}

.logo:hover{
	color: #008080;
	cursor: pointer;
	text-shadow: #D3D3D3 2px 2px;
}

.mainNavi{
	bottom: 10px;
	position:static;
	background-color:  	#F5F5F5;
	right: 100px;
	padding: 4px 0;
	text-align: left;
	margin-top: 24px;	
	box-shadow:#BFAA93 3px 3px;	
}

.mainNavi a,
.mainNavi a:visited,
.mainNavi a:active,
.mainNavi a:focus{
	text-decoration: none;
	color: #333333;
	font-size: 14px;
	padding: 4px 10px;
}

.mainNavi a:hover{
	background-color: #1b1b1b;
	color: white;
}

.mainNavi a.selected{
	color: #008080;
}

/*  Dreispaltiger Inhalt  */

.content{
	background-color:  	#F5F5F5;
	padding: 0px 100px;
}

.main{
	margin-top: 1px;
}

.content  .projectWrapper .project{
	overflow: hidden;
}

.content  .projectWrapper + .projectWrapper{
	margin-top: 24px;
}
.content  .projectWrapper .project .image{
	position: relative;
}
.content  .projectWrapper .project .image.right{
	margin-left: 24px;
}
.content  .projectWrapper .project .image.left{
	margin-right: 24px;
}
.content  .projectWrapper .project .imageTextWrapper{
	position: absolute;
	top: 0;
	left: 0;	
	color: white;
	width: 100%;
	height: 100%;
}
.content  .projectWrapper .project .imageText{
	background: rgba(0, 0, 0, .5);
	position: absolute;
	bottom: 0;
	width: 100%;
}
.content  .projectWrapper .project .imageText p{
	padding: 8px;
	margin: 0;
	font-size: 12px;
}

.content  .projectWrapper .project .imageTextWrapper{
	opacity: 0;
	-webkit-transition: opacity 300ms linear;
	-moz-transition: opacity 300ms linear;
	-ms-transition: opacity 300ms linear;
	-o-transition: opacity 300ms linear;
	transition: opacity 300ms linear;
	transition-delay: 1s;
	-moz-transition-delay: 1s; /* Firefox 4 */
	-webkit-transition-delay: 1s; /* Safari and Chrome */
	-o-transition-delay: 1s; /* Opera */
}
	
.content  .projectWrapper .project .imageTextWrapper:hover{
	opacity: 1;
	transition-delay: 0s;
	-moz-transition-delay: 0s; /* Firefox 4 */
	-webkit-transition-delay: 0s; /* Safari and Chrome */
	-o-transition-delay: 0s; /* Opera */
}
.middleCol{
	width: 100%;
	height: 100%;
	float: left;
	
}

.colItem{
    
	background-position: left center;
    background-repeat: no-repeat;
    background-color:  	#F5F5F5;
	color: #1b1b1b;
    display: block;
    font-size: 26px;
    font-weight: normal;
    outline: medium none;
    padding: 0px 20px 10px 20px ;
    text-decoration: none;
	box-shadow:#BFAA93 3px 3px;	
	
}

.colItem p{
    font-size: 12px;
	padding: 10px;
}

.colItem li{
    font-size: 14px;
	font-weight: bold;
	padding: 3px;
}

.colItem img{
	float: r;
	width: 100%;
	height: 100%;
}

.colItem p a,
.colItem p a:active,
.colItem p a:focus,
.colItem p a:visited{
	font-weight: ;
	text-decoration: none;
}

a.colItem:hover,
.colItem:active{
	
}

.spalte{
	max-width: 800px;
}


footer{
	height: 600px;
	max-height: 100%;
	padding: 20px 100px;
	background:  	#F5F5F5;
	margin-top: 1px;
	text-align: right;
	position: relative;
	background-image: url(background.png);
	background-position: center;
	background-attachment: fixed;
	
}

.footer{
	color: #1b1b1b;
	bottom: 35px;
	padding: 0 10px;
	right: 100px;
	background-color:  	#F5F5F5;
	border-radius: 0px 0px 0px 0px;
	box-shadow:#BFAA93 3px 3px;	

}

.footer > *{
	display: inline-block;
}


/* ======= MediaQueries =========== */
@media screen and (max-width: 1196px){
	.logo{
		float:none;
	}
	.mainNavi{
		position:static;
		text-align: left;
		margin-top: 24px;	
	}
}

@media screen and (max-width: 860px){

	nav{
		margin-top: 16px;		
	}
	
}

@media screen and (max-width: 645px){
	header,
	.content{
		text-align: center;
		padding: 0px 10px;
	}
	p,
	li{
		text-align: left;
	}
	ul li{
		font-size: 12px;
		font-weight: normal;
	}
	.logo{
		text-align: center;
		font-size: 40px;
	}

	footer,
	.footer{
		padding: 0px 10px;
		text-align: center;
		border-radius: 0px;
	}

	.mainNavi{
		text-align: center;
		margin-top: 16px;
		border-radius:  0px;
	}
	.mainNavi a{
		display: block;

	}
	.mainNavi a  + a{
		margin-top: 6px;
	}
	
	
}




/* ======= Hilfsklassen =========== */

.left{
	float:left;
}
.right{
	float:right;
}

.clearfix:before,
.clearfix:after {
    content:"";
	height: 5px;
    display:table;
}
.clearfix:after {
    clear:both;
}
.clearfix {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
}

.hidden{
	display: none !important;
    visibility: hidden;
}
.quote{
	font-style: italic;
	font-weight: bold;
}