/*********************************************************************************/
/* general settings                                                              */
/*********************************************************************************/

@font-face { font-family: HelveticaLight; src: url(Helvetica_LT_Light.ttf); }

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	overflow:hidden;
	background-repeat: no-repeat;
}

html, body {
    color: #000;
    font-family: HelveticaLight, Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 100%;
    font-variant: normal;
    height: auto;
    background-color: #FFF;
    -webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 100%;
	width: 100%;
	overflow: hidden;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    margin: 0 auto;
}

#wrapper {
	position: relative;
	margin: 0 auto;
    overflow: hidden;
	height: 740px;
	width: 100%;
	height: 100%;
	z-index: 10;
}

div.clear{
	height: 0px;
	clear: both;
}

.hidden{
	display: none !important;
}

h1{
	font-size: 24px;
	line-height: 28px;
}

/*********************************************************************************/
/* canvas				                                                         */
/*********************************************************************************/

canvas{
	position: absolute;
	bottom: 0px;
	left: 0px;
	background-color: #FFF;
}

/*********************************************************************************/
/* info Spots & short Info                                                       */
/*********************************************************************************/

.infoSpot{
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: #ffff00;
	border: solid 5px #616161;
	border-radius : 50%;
}


#shortInfo{
	position: absolute;
	opacity: 0;
	width: 250px;
	height: 300px;
	background-color: #ffff00;
	-webkit-transition: opacity linear 0.3s;
  	transition: opacity linear 0.3s;
}

#shortInfo.show,
#shortInfo:hover{
	opacity: 1;
	-webkit-transition: opacity linear 0.3s;
  	transition: opacity linear 0.3s;
}

#shortInfo img{
	width: 100%;
	height: auto;
	margin-bottom: 12px;
}

#shortInfo .InfoContent{
	width: 100%;
	padding: 0 15px;
}

#shortInfo .InfoContent h1{
	margin-bottom: 5px;
}

#shortInfo .InfoContent p{
	font-size: 10px;
	line-height: 14px;
}


#shortInfo .articleLink{
	position: absolute;
	left: 15px;
	bottom: 15px;
	font-weight: 600;
	cursor: pointer;
}




