@font-face {
    font-family: 'gooddogregular';
    src: url('../font/GoodDog-webfont.eot');
    src: url('../font/GoodDog-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/GoodDog-webfont.woff') format('woff'),
         url('../font/GoodDog-webfont.ttf') format('truetype'),
         url('../font/GoodDog-webfont.svg#gooddogregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

/* ALLGEMEINE STYLES */
* {
    box-sizing: border-box;
	color:#6f6f6d;
}

html, body {
	width:100%;
	min-width:780px;
	font-size:18px;
	font-family:Arial, Sans-Serif;
}
body {
	/*background-image:url('../img/topline.png');
	background-repeat: repeat-x;*/
	background-color:#dcddff;
}

h1,h2,h3,h4,h5,h6 {
	font-weight:bold;
}

h1 {
	font-size:1.8em;
}
h2 {
	font-size:1.7em;
}
h3 {
	font-size:1.5em;
}
h4 {
	font-size:1.3em;
}
h5 {
	font-size:1.2em;
}
h6 {
	font-size:1.1em;
}

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

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border:none;
  border-radius: 0;
  font-size: 1em;
  width: 100%
} 
/* hide browser-styling (arrow) in IE10 */
select::-ms-expand {
  display:none;
}

/* STYLES TOP */
#main {
}

#top {
	border-bottom:0.1em solid #15a6db;
	background:#FFF;
}

#logo {
}
#logo img {
	width:100%;
}
#navbox {
	position:fixed;
	z-index:999;
	top:0;
	left:calc(50% - 80px);
	font-family:gooddogregular;
	font-size:1.0rem;
}
nav {
	padding:5px;
	margin:auto;
	background-color:#eeeeff;
	border:1px solid #15a6db;
	border-top:0;
	border-radius:0 0 3px 3px;
	-webkit-box-shadow: 1px 1px 5px 0 #333377;
	box-shadow: 1px 1px 5px 0 #333377;
}
nav select {
	padding:0 0 0 25px;
	background-image:url('../img/menuebutton.png');
	background-position: left;
	background-repeat: no-repeat;
}
/* STYLES CONTENT */

#content {
	background-color:#;
	max-width:900px;
	margin:auto;
	padding: 20px;
	min-height:150px;
}

#maincontent > div, #sidecontent  > div{
	background-color:#eeeeff;
	padding:6px;
	border:1px solid #15a6db;
	-webkit-box-shadow: 1px 1px 10px 0 #333377;
	box-shadow: 1px 1px 10px 0 #333377;
	border-radius: 10px;
	margin-bottom:10px;
}

#maincontent {
	float:right;
	width: 73%;
}

#sidecontent {
	float:left;
	width: 25%;
}
#sidecontent > div {
	margin-bottom:10px;
}

#sidecontent div.day {
	margin-bottom: 3px;
	max-width:280px;
}
#sidecontent #infoheader {
	display:none;
	margin:0 15px;
	border-radius:10px 10px 0 0;
	text-align:center;
}

div.img_centered {
	margin: 10px 0;
	height:225px;
	text-align:center;
}

div.img_centered  img {
	border-radius: 10px;
}


/*** MEDIA QUERIES ***/
@media (max-device-width : 900px) {
	
	#navbox {
		left:0px;
	}

} 

@media (max-device-width : 780px) {
	html, body {
		min-width:400px;
		max-width:780px;
	}
	
	#main {
		margin-top:32px;
	}
	
	#top {
		border:0;
	}
	
	#navbox {
		position:fixed;
		border-radius:0;
		-webkit-border-radius:0;
		width:100%;
	}
	nav {
		border-radius:0;
		border:none;
		text-align:right;
	}
	
	#content {
		padding:0;
		margin:0;
	}
	
	#maincontent > div, #sidecontent  > div {
		-webkit-box-shadow:none;
		box-shadow:none;
		border-radius:0;
	}
	
	#maincontent, #sidecontent {
		float:none;
		width:100%;
		margin:0 0 5px 0;
		border:0;
	}

	#sidecontent #infoheader {
		display:block;
	}
	
	#logo {
		
	}
} 

@media (max-device-width : 480px) {
	html, body {
		min-width:360px;
		max-width:480px;
	}
}