/* Praxis Knoblauch CSS */

* {
	padding:0;
	margin:0;
	box-sizing:border-box;
}

html, body {
	width:100%;
	height:100%;
}

body {
	font-family:sans-serif;
	font-size:14px;
	color:#222211;
	line-height:1.8em;
	background-color:#f8f8f2;
}

h1 {
	display:block;
	width:100%;
	line-height:1.4em;
	font-size:38px;
	text-align:center;
}

h2 {
	display:block;
	width:100%;
	line-height:1.4em;
	font-size:26px;
	text-align:center;
}

h3 {
	line-height:1.4em;
	font-size:24px;
}

a {
	text-decoration:none;
	color:#ee9944;
}

.clearfix { clear:both; }

.color_orange { color:#ee9944; }

#wrapper {
	max-width:1000px;
	width:100%;
	margin:0 auto;
}

#header {
	width:100%;
	height:160px;
	padding:40px 40px;
	color:#fff;
	text-shadow:2px 2px 6px rgba(0,0,0,0.8);
	background-image:url('media/header-back.jpg');
	background-size:cover;
	border-top:6px rgb(255,170,85) solid;
}

#header h2 {
	display:inline;
	font-size:36px;
	line-height:1.3em;
}
	
#header h3 {
	font-size:26px;
	line-height:1.2em;
}

#nav {
	width:100%;
	min-height:50px;
	background-color:rgb(255,170,85);
}

#nav .links { list-style:none; }

#nav .links li {
	display:inline-block;
	width:20%;
}

#nav .links li a {
	display:block;
	width:100%;
	height:50px;
	line-height:50px;
	text-align:center;
	text-transform:uppercase;
	font-weight:bold;
	color:#ffffff !important;
	text-shadow:1px 1px 4px rgba(0,0,0,0.2);
}

#nav .links li a:hover { background-color:rgba(240,150,55,1); }

#content {
	width:100%;
	padding:40px;
	padding-bottom:80px;
	background-color:#ffffff;
}

#footer {
	width:100%;
	min-height:50px;
	padding:20px 20px;
	background-color:rgb(235,150,65);
	color:#ffffff;
	text-align:center;
}

.col_80 {
	display:inline-block;
	width:80%;
	padding-left:8px;
	padding-right:8px;
}


.col_50 {
	display:inline-block;
	width:50%;
	padding-left:8px;
	padding-right:8px;
}

.col_40 {
	display:inline-block;
	width:40%;
	padding-left:8px;
	padding-right:8px;
}

.col_33 {
	display:inline-block;
	width:33%;
	padding-left:8px;
	padding-right:8px;
}

.col_25 {
	display:inline-block;
	width:25%;
	padding-left:8px;
	padding-right:8px;
}

.col_10 {
	display:inline-block;
	width:10%;
	padding-left:8px;
	padding-right:8px;
}

.col_80 img, .col_50 img, .col_40 img, .col_33 img, .col_25 img, .col_10 img {
	width:100%;
	height:auto;
}

.text_center {
	display:inline-block;
	width:100%;
	text-align:center;
}

.text_right { text-align:right; }
	
.home_image {
	display:block;
	float:left;
	width:50%;
	height:auto;
	margin-right:40px;
	margin-bottom:40px;
}

@media only screen and (max-width:780px) {
	
	#wrapper { max-width:100%; }
	
	#header { background-position:60% 50%; }
	
	#nav .links li {
		display:block;
		width:100%;
	}
	
	.text_right { text-align:left; }
	
	.col_80, .col_50, .col_40, .col_33, .col_25, .col_10 { width:100%; }
	
	.home_image {
		float:none;
		width:100%;
	}
	
}