@font-face {
    font-family: 'roboto'; /* Bold */
    src: url('fonts/Roboto-Bold-webfont.eot');
    src: url('fonts/Roboto-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Roboto-Bold-webfont.woff') format('woff'),
         url('fonts/Roboto-Bold-webfont.ttf') format('truetype'),
         url('fonts/Roboto-Bold-webfont.svg#open_sansbold') format('svg');
    font-weight: 700;
    font-style: normal;
}

* { 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box; 
	*behavior: url(htc/boxsizing.htc);
}

html, body{
	margin:0;
	padding:0;
	height: 100%;
	width: 100%;
	font-family: 'Arial';
	overflow: hidden;
	background-color: white;
}

a{
	font-family: 'Arial';
	color: white;
	text-decoration: none;
	cursor: pointer;
}

body * {
	-webkit-text-size-adjust:100%;
}

ol, ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img{
	border: 0;
}

.boxshadow{
	-moz-box-shadow: 4px 4px 6px rgba(0,0,0,0.2);
	-ms-box-shadow: 4px 4px 6px rgba(0,0,0,0.2);
    -webkit-box-shadow: 4px 4px 6px rgba(0,0,0,0.2);
    box-shadow: 4px 4px 6px rgba(0,0,0,0.2);
}

/* Contents */

body{
	background-color: gray;
}

#header{
	background-color: white;
	height:70px;
	position: relative;
	z-index: 3;
}

#header a{
	color:#195681;
	text-decoration: none; 
}

#header .claim{
	position: absolute;
	left:158px;
	top:12px;
}

#header .title {
	position: absolute;
	right: 40px;
	top: 8px;
	font: 14px Arial;
	color: #195681;
}

#logo{
	position: absolute;
	top:2px;
	left:4px;
	z-index: 4;
}

.box{
	background-color: #b4deed;
	border-radius: 4px;
	border: 1px solid rgba(49,141,192,.2);
	color: #318dc0;
	padding: 6px 8px;
	font:12px Arial;
}

#infobox .label{
	position: absolute;
	right: 28px;
}

#map_canvas{
	margin-top: -70px;
}

#map_canvas #newPos{
	top: 120px;
	left: 38px;
	position: absolute;
}

#infobox{
	position: absolute;
	overflow-y: scroll;
	top:120px;
	right: 40px;
	height:0;
	width: 630px;
	color: #444444;
	background: -moz-linear-gradient(left,  rgba(139,177,196,1) 0%, rgba(190,211,221,0.9) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(139,177,196,1)), color-stop(100%,rgba(190,211,221,0.9))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  rgba(139,177,196,1) 0%,rgba(190,211,221,0.9) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  rgba(139,177,196,1) 0%,rgba(190,211,221,0.9) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  rgba(139,177,196,1) 0%,rgba(190,211,221,0.9) 100%); /* IE10+ */
	background: linear-gradient(to right,  rgba(139,177,196,1) 0%,rgba(190,211,221,0.9) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8bb1c4', endColorstr='#e6bed3dd',GradientType=1 ); /* IE6-9 */

	-moz-box-shadow: 8px 8px 12px rgba(43,124,174,0.6);
	-ms-box-shadow: 8px 8px 12px rgba(43,124,174,0.6);
    -webkit-box-shadow: 8px 8px 12px rgba(43,124,174,0.6);
    box-shadow: 8px 8px 12px rgba(43,124,174,0.6);
    
    -webkit-transition: height .3s;
	-moz-transition: height .3s;
	-ms-transition: height .3s;
	transition: height .3s ;
	visibility: hidden;
}

#infobox .frame::-webkit-scrollbar {
    -webkit-appearance: none;
}

#infobox .frame::-webkit-scrollbar:vertical {
    width: 11px;
}

#infobox .frame::-webkit-scrollbar:horizontal {
    height: 11px;
}

#infobox .frame::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white; /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, .5);
}

#infobox h1{
	font: 14px Arial;
}

#infobox p{
	margin:0;
	padding: 0;
}

#infobox .welcome,
#infobox .category{
	margin: 20px;
}

#infobox .welcome h1,
#infobox .category h1{
	color:white;
	font:bold 16px Arial;
	margin-top: 0;
}

#infobox .welcome p,
#infobox .category p{
	font:14px Arial;
	color:#32668b;
	margin-bottom: 10px;
	line-height: 16px;
}

#infobox .welcome .cta{
	background: -moz-linear-gradient(left,  rgba(163,173,83,1) 0%, rgba(163,173,83,1) 61%, rgba(163,173,83,0) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(163,173,83,1)), color-stop(61%,rgba(163,173,83,1)), color-stop(100%,rgba(163,173,83,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  rgba(163,173,83,1) 0%,rgba(163,173,83,1) 61%,rgba(163,173,83,0) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  rgba(163,173,83,1) 0%,rgba(163,173,83,1) 61%,rgba(163,173,83,0) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  rgba(163,173,83,1) 0%,rgba(163,173,83,1) 61%,rgba(163,173,83,0) 100%); /* IE10+ */
	background: linear-gradient(to right,  rgba(163,173,83,1) 0%,rgba(163,173,83,1) 61%,rgba(163,173,83,0) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a3ad53', endColorstr='#00a3ad53',GradientType=1 ); /* IE6-9 */
	padding: 15px;
	width: 410px;
	float:left;
	margin-top:10px;
	position: relative;
}

#infobox .welcome .cta img{
	float:left;
	margin-right:30px;
}

#infobox .welcome .cta h2{
	color:white;
	font:bold 16px Arial;
	margin-left: -10px;
	margin-bottom: 2px;
	padding-left: 20px; 
}

#infobox .welcome .cta p{
	color:white;
}

#infobox .welcome .cta .weltdekade{
	position: absolute;
	right: 0px;
	top: 9px;
}

#infobox .location{
	padding:0;
}

#infobox .location .header{
	border:0px solid #6096ae;
	height: 28px;
	color: white;
	font: bold 15px Arial;
	padding: 5px 8px;
	background: rgb(127,170,192); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(127,170,192,1) 0%, rgba(176,203,215,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(127,170,192,1)), color-stop(100%,rgba(176,203,215,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(127,170,192,1) 0%,rgba(176,203,215,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(127,170,192,1) 0%,rgba(176,203,215,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(127,170,192,1) 0%,rgba(176,203,215,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(127,170,192,1) 0%,rgba(176,203,215,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7faac0', endColorstr='#b0cbd7',GradientType=0 ); /* IE6-9 */
	position: relative;
	-moz-box-shadow: 0 2px 4px rgba(43,124,174,0.2);
	-ms-box-shadow: 0 2px 4px rgba(43,124,174,0.2);
    -webkit-box-shadow: 0 2px 4px rgba(43,124,174,0.2);
    box-shadow: 0px 0px 5px rgba(0,86,129,0.5);
}

#infobox .location .dat{
	background-color: white;
	float: left;
	width: 430px;
	padding: 10px;
	margin: 0;
}

#infobox .location .userimg{
	float:left;
	margin-right :10px;
	width: 120px;
}

#infobox .location .address{
	float:left;
	font:12px Arial;
	color:#33789a;
	max-width: 260px;
}

#infobox .location .address a{
	color:#33789a; 
}

#infobox .location .address a:hover{
	text-decoration: underline;
}

#infobox .location .address .website{
	overflow: hidden;
	width: 260px;
}

#infobox .location .content{
	clear: both;
	padding:14px;
	width:360px;
}

#infobox .location .content h2{
	font: bold 13px Arial;
	color: white;
	margin: 0;
	margin-bottom: 2px;
}

#infobox .location .content p{
	font:13px Arial;
	margin-bottom: 12px;
	color: #185681;
	line-height: 16px;
}

#infobox .location .content p a{
	color: #185681;
	text-decoration: underline;
}

#infobox .location .angebote{
	position: absolute;
	bottom: 56px;
	right: 2px;
	cursor: default;
}

#infobox .location #shareemail{
	position: absolute;
	bottom:11px;
	right:40px;
}

#infobox #socialshareprivacy{
	position: absolute;
	bottom: 0;
	left: 18px;
	height: 54px;
}

.angebote li{
	width: 51px;
	height: 45px;
	float: left;
	background: url("images/icons_angebote.png") 0 0 no-repeat;
	clear: both;
	position: relative;
}

.angebote li .label{
	float:left;
	margin-top: -18px;
	margin-left: 24px;
	visibility: hidden;
	opacity:0;
	filter: alpha(opacity=0);
	-webkit-transition: 0;
	-moz-transition: 0;
	-ms-transition: 0;
	transition: 0;
	z-index: 10;
	position: absolute;
}

.angebote li:hover .label{
	visibility: visible;
	opacity:1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity .2s;
	-moz-transition: opacity .2s;
	-ms-transition: opacity .2s;
	transition: opacity .2s ;
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	transition-delay: 300ms;
}

.angebote li.active.vegetarian, #form .angebote li.vegetarian:hover { background-position: 0 -3px; }
.angebote li.active.vegan, #form .angebote li.vegan:hover { background-position: 0 -53px; }
.angebote li.active.regional, #form .angebote li.regional:hover { background-position: 0 -106px; }
.angebote li.active.seasonal, #form .angebote li.seasonal:hover { background-position: 0 -156px; }
.angebote li.active.organic, #form .angebote li.organic:hover { background-position: 0 -204px; }
.angebote li.active.fairtrade, #form .angebote li.fairtrade:hover { background-position: 0 -256px; }

.angebote li.vegetarian { background-position: -50px -3px; }
.angebote li.vegan { background-position: -50px -53px; }
.angebote li.regional { background-position: -50px -106px; }
.angebote li.seasonal { background-position: -50px -156px; }
.angebote li.organic { background-position: -50px -204px; }
.angebote li.fairtrade { background-position: -50px -256px; }

#details{
	background: -moz-linear-gradient(left, rgba(190,211,221,0.8) 0%, rgba(135,170,190,0.8) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(190,211,221,0.8)), color-stop(100%,rgba(135,170,190,0.8))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, rgba(190,211,221,0.8) 0%,rgba(135,170,190,0.8) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, rgba(190,211,221,0.8) 0%,rgba(135,170,190,0.8) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left, rgba(190,211,221,0.8) 0%,rgba(135,170,190,0.8) 100%); /* IE10+ */
	background: linear-gradient(to right, rgba(190,211,221,0.8) 0%,rgba(135,170,190,0.8) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccbed3dd', endColorstr='#cc87aabe',GradientType=1 ); /* IE6-9 */
	
	position: absolute;
	bottom: -540px;
	left: 50%;
	width: 1024px;
	height:642px;
	margin-left: -512px;
	font: 12px "Arial";
	color: #195681;
	padding: 34px 18px 34px 50px;
	z-index: 6;
    display: none;
}

#details #close{
	position: absolute;
	top:0px;
	right:10px;
	color: #3b5682;
	cursor: pointer;
	background-color: white;
	padding: 3px 6px;
	font-size: 14px;
	margin-top: 10px;
	z-index: 100;
}

#details #close:hover{
	color: white;
	background-color: #3b5682;
}

#details .textcol{
	clear:both;
	float: left;
	width: 480px;
	line-height: 18px;
	margin-right: 110px;
}

#details .textcol h3{
	margin-top:18px;
	margin-bottom: 3px;
	font: bold 13px Arial;
}

#details .textcol p{
	margin-top: 0;
}

#details a {
	color: #3b5682;
	text-decoration: underline;
}

#details .sidebar {
	position: relative;
	background-color: white;
	width: 300px;
	float:left;
	min-height: 440px;
	padding: 0 20px 20px 20px;
	-moz-box-shadow: 6px 6px 15px rgba(0,86,129,0.2);
	-ms-box-shadow: 6px 6px 15px rgba(0,86,129,0.2);
    -webkit-box-shadow: 6px 6px 15px rgba(0,86,129,0.2);
    box-shadow: 6px 6px 15px rgba(0,86,129,0.2);
}

#details .sidebar h2{
	margin-bottom: 0;
	margin-top: 0;
}

#details .sidebar h3{
	margin-bottom: 2px;
	margin-top: 20px;
}

#details .sidebar {
	line-height: 16px;
	
}

#details .sidebar a{
	text-decoration: none;
}

#details .sidebar a:hover{
	text-decoration: underline;
}

#details h1{
	margin: 0 0 4px 0;
	font-size: 18px;
}

#details h2{
	font-size: 15px;
	margin: 0 0 16px 0;
	width: 100%;
	font-weight: normal;
}

#details #form ul{
	float:left;
	width:400px;
}

#details #form li{
	clear: none;
	float: left;
	margin-bottom: 10px;
	cursor: pointer;
}

#details #form ul:first-child{
	margin-right:122px;
}

#details #form label{
	float: left;
	margin-bottom: 1px;
	font: bold 13px 'Arial';
}

#details #form p{
	margin: 0;
	clear: both;
	float: left;
}

#details #form div{ float:left; }
#details #form div.col1{ margin-right:4px; }

#details #form input,
#details #form textarea,
#details #form select,
#details #form .fileupload .layover{
	border: 1px solid #80abc0;
	padding:4px;
	margin: 0;
	width: 390px;
	color: #195681;
	font-weight: bold;
	border-radius: 4px;
	font: 12px Arial;
	resize: none;
}

#details #form textarea{
	height:78px;
}

#details #form .count{
	clear:both;
	float:left;
	padding-top: 2px;
}

#details #form input[type=file]{
	border:0;
	padding-left: 0;
	color: #195681;
}

#details #form #form_participant_category{ width:390px; }
#details #form #form_participant_zip{ width:61px; }
#details #form #form_participant_city{ width: 326px; }
#details #form #form_participant_street{ width:300px; }
#details #form #form_participant_housenumber{ width:86px; }
#details #form #form_participant_email{ width:196px; }
#details #form #form_participant_phone{ width:190px; }
#details #form #form_participant_website{ width:196px; }
#details #form #form_participant_poster{ width:40px; }
#details #form #form_participant_aufsteller{ width:40px; margin-left:10px;}

#details #form .fileupload{
	position: relative;
}

#details #form .fileupload .container{
	overflow: hidden;
}

@-moz-document url-prefix() {
	#details #form .fileupload #upload_loq_media{
		margin-left:-4px;
	}
}

#details #form .fileupload .layover{
	width: 104px;
	height: 25px;
	background-color: white;
	position: absolute;
	top: 17px;
	left: 0;
	padding-top: 5px;
	pointer-events: none;
	cursor: inherit;
}

#details #form .angebote{
	margin-top: 4px;
	margin-left:-2px;
	height: 40px;
}

#details #form .error{
	border:1px red solid;
	background-color: #ffeeee;
}

#details #form .email p{
	float: left;
	margin-right: 10px;
}

#details #form .email .checkbox{
	float:left;
}

#details #form .email .checkbox label{
	padding-top:4px;
	font-weight: normal;
}

#details #form #errormsg{
	color: #be3624;
	margin-left: 14px;
	float: left;
	margin-top: 18px;
}

#details .checkbox .box{
	width: 24px;
	height: 24px;
	float: left;
	background: url("images/sprites-checkbox.png") 0 0 no-repeat;
	margin-right: 10px;
	cursor: pointer;
	border:0;
	border-radius:0;
}

#details .checkbox .box.checked{
	background-position: -25px 0;
}

#details #form .sendButton{
	margin-top:0;
}

#details #form .sendButton label{
	font: normal 12px Arial;
	line-height: 16px;
}

#details #form .sendButton p{
	margin-top:6px;
}

#details #form .sendButton .checkbox{
	margin-top:10px;
}

#details #form .sendButton .checkbox label{
	padding-top: 4px;
}

#details #form .sendButton button{
	background-color: white;
	border: 1px solid #80abc0;
	border-radius: 2px;
	font: bold 13px Arial;
	padding: 8px 12px;
	color: rgb(25, 86, 129);
	cursor: pointer;
	margin-left: 0;
	-webkit-transition: 0;
	-moz-transition: 0;
	-ms-transition: 0;
	transition: 0;
}

#details #form .sendButton button:hover{
	background-color: rgb(25, 86, 129);
	color: white;
	-webkit-transition: color .2s;
	-moz-transition: color .2s;
	-ms-transition: color .2s;
	transition: color .4s ;
}

#details #form .sendButton .loader{
	float: right;
	margin-top: 10px;
	margin-left: 10px;
	display: none;
}

#details #form .required{
	position: absolute;
	bottom:10px;
	left:30px;
	font: 11px Arial;
	color: #aaaaaa;
}

#details #veggiday,
#details #imprint{
	height: 526px;
	position: relative;
}

#veggiday .tab::-webkit-scrollbar,
#imprint .tab::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 6px;
	height: 6px;
}

#veggiday .tab::-webkit-scrollbar-thumb,
#imprint .tab::-webkit-scrollbar-thumb {
	border-radius: 8px;
	border: 0px solid white; 
	background-color: rgba(45, 88, 125, 1);
}

#veggiday .tab::-webkit-scrollbar-corner,
#imprint .tab::-webkit-scrollbar-corner{
	display: none;
}

#details .infolayer{
	position: relative;
	cursor: pointer;
	margin-left: 6px;
}

#details .infolayer span{
	position: absolute;
	bottom: 16px;
	left: -30px;
	z-index: 10;
	width: 280px;
	font: normal 12px "Arial";
	line-height: 17px;
	visibility:hidden;
	opacity:0;
	filter: alpha(opacity=0);
	-webkit-transition: 0;
	-moz-transition: 0;
	-ms-transition: 0;
	transition: 0;
}

#details label:hover .infolayer span{
	visibility:visible;
	opacity:1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity .6s;
	-moz-transition: opacity .6s;
	-ms-transition: opacity .6s;
	transition: opacity .6s;
}

#filter{
	position: fixed;
	top:50%;
	left: 20px;
	margin-top: -120px;
	z-index: 4;
}

#filter li{
	clear:both;
	cursor: pointer;
	background: url("images/sprites_nav.png") 0 0 no-repeat;
	width:78px;
	height:70px;
	float:left;
	margin: 8px 0;
}

#filter li.over,
#filter li.active{
}

#filter li .label{
	font: 12px Arial;
	margin-left: 48px;
	float: left;
	margin-top: -8px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: 0;
	-moz-transition: 0;
	-ms-transition: 0;
	transition: 0;
	pointer-events: none;
}

#filter li:hover .label{
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity .2s;
	-moz-transition: opacity .2s;
	-ms-transition: opacity .2s;
	transition: opacity .2s;
}

#filter li.filter1{ background-position: 0 -75px; }
#filter li.filter2{ background-position: 0 -232px; }
#filter li.filter3{ background-position: 0 -152px; }
#filter li.filter4{ background-position: 0 0; }

#filter li.over.filter1, #filter li.active.filter1{ background-position: -80px -75px; }
#filter li.over.filter2, #filter li.active.filter2{ background-position: -80px -232px; }
#filter li.over.filter3, #filter li.active.filter3{ background-position: -80px -152px; }
#filter li.over.filter4, #filter li.active.filter4{ background-position: -80px 0; }

#footer{
	position: absolute;
	bottom: 0;
	left: 50%;
	background: rgb(49,119,153); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(49,119,153,1) 0%, rgba(25,86,129,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(49,119,153,1)), color-stop(100%,rgba(25,86,129,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(49,119,153,1) 0%,rgba(25,86,129,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(49,119,153,1) 0%,rgba(25,86,129,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(49,119,153,1) 0%,rgba(25,86,129,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(49,119,153,1) 0%,rgba(25,86,129,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#317799', endColorstr='#195681',GradientType=0 ); /* IE6-9 */
	height:34px;
	width:1024px;
	margin-left: -512px;
	color: #bfd5df;
	font: bold 14px Arial;
	z-index: 7;
	-moz-box-shadow: 4px 4px 6px rgba(0,0,0,0.2);
	-ms-box-shadow: 4px 4px 6px rgba(0,0,0,0.2);
    -webkit-box-shadow: 4px 4px 6px rgba(0,0,0,0.2);
    box-shadow: 4px 4px 6px rgba(0,0,0,0.2);
}

#footer ul{
	text-align: center;
	margin-top: 9px;
}

#footer li{
	display: inline;
	margin: 0 52px;
	cursor: pointer;
}

#footer li.active,
#footer li:hover{
	color:white;
}

#footer .imprint{
	position: absolute;
	right: 10px;
	top: -3px;
	font: bold 19px Arial;
	padding: 10px;
	cursor: pointer;
}

#footer .imprint.active{
	color:white;
}

#footer .cherry{
	position: absolute;
	right: 50px;
	top: 4px;
}

#veggiday .subnav li{
	float: left;
	height: 26px;
	width: 156px;
	background-color: #6bb0b4;
	color: white;
	padding: 6px 0;
	text-align: center;
	border-right: 1px solid #dddddd;
	cursor: pointer;
}

#veggiday .subnav li:last-child{
	border:0;
}

#veggiday .subnav li:hover,
#veggiday .subnav li.selected{
	background-color: #648ba9;
}

#veggiday .tab,
#imprint .tab{
	position: absolute;
	top:98px;
	visibility: hidden;
	opacity:0;
	-webkit-transition: 0;
	-moz-transition: 0;
	-ms-transition: 0;
	transition: 0;
	overflow-y: scroll;
	height:430px;
	width: 957px;
}

#veggiday .tab.selected,
#imprint .tab.selected{
	visibility: visible;
	opacity:1;
	-webkit-transition: opacity .2s;
	-moz-transition: opacity .2s;
	-ms-transition: opacity .2s;
	transition: opacity .2s;
}

#receipts .pageframe{
	width: 920px;
	height: 572px;
	overflow: hidden;
	position: relative;
}

#receipts .pagecontent {
	position: absolute;
	top:0px;
	left:0px;
	width: 4600px;
}

#receipts .page{
	float:left;
	width: 920px;
	height: 572px;
	line-height: 15px;
	padding-right: 20px;
}

#receipts .nav{
	position:absolute;
	top:320px;
	left:0px;
	background: url("images/pageindicator.png") 0 0 no-repeat;
	float:left;
	width:20px;
	height: 35px;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#receipts .nav.next{
	background-position: -21px -14px;
	left:988px;
}
#receipts .nav.next:hover{
	background-position: -21px -57px;
}

#receipts .nav.prev{
	background-position: 0px -14px;
	left:14px;
	display:none;
}
#receipts .nav.prev:hover{
	background-position: 0px -57px;
}

#receipts .intro{
	margin-bottom: 20px;
}

#receipts .page h3{
	margin-top: 0;
	margin-bottom: 4px;
}

#receipts .page .content{
	background-color: white;
	padding: 16px;
	float: left;
	width: 918px;
	height: 514px;
	overflow-y: scroll;
}

#receipts .page .content::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 6px;
	height: 6px;
}

#receipts .page .content::-webkit-scrollbar-thumb{
	border-radius: 8px;
	border: 0px solid white; 
	background-color: rgba(45, 88, 125, 1);
}

#receipts .page .content::-webkit-scrollbar-corner{
	display: none;
}

#receipts .page .col1{
	width: 212px;
	float: left;
	margin-right: 110px;
}

#receipts .page .col1 img{
	margin-bottom:4px;
}

#receipts .page .col2{
	width: 510px;
	float: left;
}

#receipts .page .col2 li{
	list-style: disc;
	margin-left:15px;
	margin-bottom: 8px;
}

#receipts .page1 .col1{
	width: 286px;
}

#receipts .page1 .col2{
	width:420px;
	margin-top: 0;
}

#receipts .page1 .col2 li{
	clear: both;
	float: left;
	margin-bottom: 14px;
	cursor: pointer;
	list-style: none;
	margin-left:0;
}

#receipts .page1 .img{
	float:left;
}

#receipts .page1 p{
	float: left;
	width: 200px;
	margin-left: 24px;
	margin-top: 0;
}

#receipts .page1 .col1 p{
	margin-left: 0;
	margin-top: 12px;
	width: 240px;
}

#receipts .page1 .col2 p{
	padding-top: 20px;
}

#game #ingredients{
	position: absolute;
	top:94px;
	left:40px;
}

#game #detailsingredients{
	position:absolute;
	top: 48px;
	right: 38px;
	height: 263px;
	width: 380px;
	padding:10px 20px;
	font:12px Arial;
	background-color: white;
	border-top: 4px #7faac0 solid;
	border-bottom: 4px #7faac0 solid;
}


#game #detailsingredients strong{
	line-height: 22px;
}

#game #results{
	position:absolute;
	top: 336px;
	right: 45px;
	height:286px;
	width:240px;
	color: white;
}

#game #results ul{
	margin-top: 13px;
	margin-right: 12px;
}

#game #results li{
	margin-bottom:39px;
	width: 150px;
	padding: 10px 10px;
	float: right;
	height: 36px;
	clear:both;
	overflow:hidden;
	background: rgb(120,164,187); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(120,164,187,1) 0%, rgba(63,126,159,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(120,164,187,1)), color-stop(100%,rgba(63,126,159,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  rgba(120,164,187,1) 0%,rgba(63,126,159,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  rgba(120,164,187,1) 0%,rgba(63,126,159,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  rgba(120,164,187,1) 0%,rgba(63,126,159,1) 100%); /* IE10+ */
	background: linear-gradient(to right,  rgba(120,164,187,1) 0%,rgba(63,126,159,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#78a4bb', endColorstr='#3f7e9f',GradientType=1 ); /* IE6-9 */
}

#game #results .val{
	position: absolute;
	top: 0px;
	right: 0;
}

#game #results .val li{
	box-shadow:2px 2px 6px rgb(63,126,159);
	background: none;
	text-align: right;
	padding-right: 60px;
	width:360px;
}

#game #results .val li span{
	float: none;
}

#game #results .balken{
	position: absolute;
	top: 0px;
	right: 0;
}

#game #results li.balken1 { padding: 0; }

#game #results li.balken1{ width:0; }
#game #results li.balken2{ width:53px; }
#game #results li.balken3{ width:180px; }
#game #results li.balken4{ width:310px; }

#game #results li span{	background: none; }

#game #results .icons{
	position:absolute;
	top: 0px;
	left: 176px;
	height: 308px;
	width: 97px;
	background: url("images/game/bg_result.png") 0 0 no-repeat;
}

#game #plate{
	position: absolute;
	top: 370px;
	left: 60px;
	float: left;
	width: 342px;
	height: 200px;
	background: url("images/game/plate.png") 0 0 no-repeat;
}

#game #plate .pos1{
	position: absolute;
	top:22px;
	left:94px;
	display: none;
}
#game #plate .pos2{
	position: absolute;
	top:88px;
	left: 44px;
	display: none;
}
#game #plate .pos3{
	position: absolute;
	top:90px;
	left: 124px;
	display: none;
}
#game #plate .dessert{
	position: absolute;
	top:12px;
	left: 266px;
	display: none;
}

#game #ingredients .vegetable{
	position: absolute;
	top:10px;
	left:10px;
}

#game #ingredients .meatfish{
	position: absolute;
	top:10px;
	left:200px;
}

#game #ingredients .cheese{
	position: absolute;
	top:10px;
	left:384px;
}

#game #ingredients .cereals{
	position: absolute;
	top:140px;
	left:10px;
}

#game #ingredients .sauces{
	position: absolute;
	top:140px;
	left:200px;
}

#game #ingredients .dessert{
	position: absolute;
	top:140px;
	left:384px;
}

/* Vegetables */
#game #ingredients span{ position: absolute; }

#game #ingredients .vegetable [data-id=kartoffel] { top:10px; left:0px; }
#game #ingredients .vegetable [data-id=gemischtesgemuese]{ top:0px; left:50px; }
#game #ingredients .vegetable [data-id=gurke] { top:54px; left:26px; }
#game #ingredients .vegetable [data-id=blattsalat] { top:36px; left:104px; }

#game #ingredients .meatfish [data-id=wurst] { top:16px; left:0px; }
#game #ingredients .meatfish [data-id=gefluegel] { top:52px; left:0px; }
#game #ingredients .meatfish [data-id=schwein] { top:0px; left:42px; }
#game #ingredients .meatfish [data-id=rind] { top:0px; left:90px; }
#game #ingredients .meatfish [data-id=fish] { top:68px; left:60px; }

#game #ingredients .cheese [data-id=kaese] { top:42px; left:48px; }
#game #ingredients .cheese [data-id=omlette] { top:40px; left:-6px; }
#game #ingredients .cheese [data-id=tofu] { top:0px; left:22px; }

#game #ingredients .cereals [data-id=brot] { top:4px; left:10px; }
#game #ingredients .cereals [data-id=paste] { top:42px; left:10px; }
#game #ingredients .cereals [data-id=reis] { top:14px; left:76px; }

#game #ingredients .sauces [data-id=pesto] { top:34px; left: 4px; }
#game #ingredients .sauces [data-id=butter] { top:18px; left: 82px; }
#game #ingredients .sauces [data-id=tomatensosse] { top:0px; left:32px; }
#game #ingredients .sauces [data-id=sahnesosse] { top:48px; left:58px; }

#game #ingredients .dessert [data-id=aepfel] { top:20px; left:0px; }
#game #ingredients .dessert [data-id=erdbeeren] { top:8px; left:46px; }
#game #ingredients .dessert [data-id=joghurt] { top:0px; left:76px; }
#game #ingredients .dessert [data-id=schokolade] { top:58px; left:28px; }


/* Vegetables Images */
#game span{
	background: url("images/game/sprites_ingredients.png") 0 0 no-repeat;
	float: left;
	cursor: pointer;
}

#game [data-id=kartoffel] { background-position: -241px -198px; width:40px; height:45px; }
#game [data-id=gemischtesgemuese]  { background-position: 0px -336px; width: 75px; height: 56px; }
#game [data-id=gurke] { background-position: -72px -280px; width:76px; height:40px; }
#game [data-id=blattsalat] { background-position: 0px -266px; width:58px; height:55px; }

#game [data-id=wurst] { background-position: 0px 0px; width:44px; height:44px; }
#game [data-id=gefluegel] { background-position: 0px -65px; width:58px; height:58px; }
#game [data-id=schwein] { background-position: -54px 0px; width:44px; height:48px; }
#game [data-id=rind] { background-position: -120px 0px; width:44px; height:62px; }

#game [data-id=fish] { background-position: -68px -74px; width:88px; height:36px; }
#game [data-id=kaese] { background-position: -92px -214px; width:54px; height:46px; }
#game [data-id=omlette] { background-position: -172px -4px; width: 50px; height: 65px; }
#game [data-id=tofu] { background-position: -6px -126px; width:56px; height:42px; }

#game [data-id=brot] { background-position: -2px -172px; width:90px; height:44px; }
#game [data-id=paste] { background-position: -6px -214px; width:80px; height:48px; }
#game [data-id=reis] { background-position: -95px -161px; width:86px; height:55px; }

#game [data-id=pesto] { background-position: -238px 0px; width:46px; height:52px; }
#game [data-id=butter] { background-position: -240px -66px; width:60px; height:34px; }
#game [data-id=tomatensosse] { background-position: -174px -88px; width:54px; height:40px; }
#game [data-id=sahnesosse] { background-position: -236px -104px; width:54px; height:40px; }

#game [data-id=aepfel] { background-position: -192px -144px; width:46px; height:48px; }
#game [data-id=erdbeeren] { background-position: -80px -120px; width:34px; height:40px; }
#game [data-id=joghurt] { background-position: -176px -200px; width:44px; height:62px; }
#game [data-id=schokolade] { background-position: -160px -270px; width:76px; height:40px; }

#details .infolayer.fullplate{
	position: absolute;
	top: 424px;
	left: 57px;
}

#details .infolayer.fulldessert{
	position: absolute;
	top: 530px;
	left: 240px;
}

#details .infolayer.fulldessert span,
#details .infolayer.fullplate span{
	font-size: 13px;
	background: none;
	background-color: #b4deed;
	visibility: visible;
	opacity:1;
	display:none;
	box-shadow: 3px 3px 2px rgba(116, 154, 178, 0.9);
}

#game #description{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
background: -moz-radial-gradient(center, ellipse cover,  rgba(135,170,190,0.5) 0%, rgba(135,170,190,0.9) 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(135,170,190,0.5)), color-stop(100%,rgba(135,170,190,0.9))); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover,  rgba(135,170,190,0.5) 0%,rgba(135,170,190,0.9) 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover,  rgba(135,170,190,0.5) 0%,rgba(135,170,190,0.9) 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover,  rgba(135,170,190,0.5) 0%,rgba(135,170,190,0.9) 100%); /* IE10+ */
background: radial-gradient(ellipse at center,  rgba(135,170,190,0.5) 0%,rgba(135,170,190,0.9) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8087aabe', endColorstr='#e687aabe',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	cursor: pointer;
}

#game .cta{
	position: absolute;
	top:554px;
	left:60px;
	width: 300px;
}

#game .cta.pos2{
	left:280px;
}

#game .cta h3 {
	margin-bottom: 2px;
}

.main-nav{
    font-family: 'roboto';
	font-size: 13px;
	position: absolute;
    top: 0;
    left: 50%;
    margin-left: 423px;
}

.main-nav li{
    color: #4e9fd5;
    line-height: 28px;
    padding: 0 8px;
    display: table-cell;
    cursor: pointer;
    font-weight: 800;
	text-transform: uppercase;
}

.main-nav li a{
	color: #4e9fd5;
    font-family: 'roboto';
}

.main-nav li.is-active,
.main-nav li:hover{
    background-color: #2978ad;
	color: #fff;
}

.main-nav li.is-active a,
.main-nav li:hover a{
	color: #fff;
}