/* Style Sheet */

/* Festlegung der Hintergrundeigenschaften Farbe und Text body-Bereich */
body{color: rgb(255, 255, 255);								/* weisser Hintergrund */
		width:100%; margin: 20px 20px; height:100%;	
		/* background-color: transparent; */ 			/* vollbild */
		background-color: rgb(255, 255, 255);  			/* weisser Hintergund */
		font-weight:200; 
		font-family: 'Montserrat', sans-serif;  			/* Montserrat ist ein google-font */
		font-size:16px; 
		text-shadow:black 0px 0px 0px;
		text-align: center;							/* zentriert */
		letter-spacing:0.0em;
		/* background-image:url(images/logo_bkg.png); */
		background-repeat:no-repeat;
		background-attachment: fixed;
		background-size: cover;
		}

/* Festlegung Tabellen */
table, th, td {	/*text-align: center;*/
		border: none;
		}		

/* Festlegung der Ueberschrift GROSS */		
h1 {font-weight:bold; 
		font-family: 'Montserrat', sans-serif; 
		font-size:28px;
		letter-spacing:0.2em;
		color:rgb(0, 0, 0);
	}

/* Festlegung der Ueberschrift MEDIUM */	
h2 {font-weight:bold;
		font-family: 'Montserrat', sans-serif;
		letter-spacing:0.4em;
		color:rgb(0,0, 0);		
		font-size:24px;
	}
	
/* Festlegung der Ueberschrift KLEIN */	
h3 {font-weight:200;
		font-family: 'Montserrat', sans-serif;
		letter-spacing:0.1em;
		color:rgb(0,0, 0);		
		font-size:24px;
	}
	
standard_text {font-weight:200; 
		font-family: 'Montserrat', sans-serif; 
		font-size:20px;
		color:rgb(0, 0, 0);
		letter-spacing:0.1em;
	}

copyright_text {font-weight:200; 
		font-family: 'Montserrat', sans-serif; 
		font-size:8px;
		color:rgb(80, 80, 80);
		letter-spacing:0.1em;
	}
	
player_text {font-weight:200; 
		font-family: 'Montserrat', sans-serif; 
		font-size:10px;
		color:rgb(0, 0, 0);
		letter-spacing:0.1em;
	}
	
.vers1 { display: none;}

/* Festlegung der Eigenschaften Link */
a:link { text-decoration:none;
		/* text-shadow:gray 1px 1px 0px; */
		font-weight:bold; 
		color:rgb(150, 150, 150); 
		font-family: 'Montserrat', sans-serif;
		letter-spacing:0.1em;
		font-size:14px;}		/* unbesucht */
		
a:visited { text-decoration:none; 
			/* text-shadow:gray 1px 1px 0px; */
			font-weight:bold; 
			color:rgb(150, 150, 150); 
			font-family: 'Montserrat', sans-serif;
			letter-spacing:0.1em;
			font-size:14px;}	/* besucht */
			
a:hover { text-decoration:none; 
			/* text-shadow:black 1px 1px 0px; */
			font-weight:bold; 
			color:rgb(150, 150, 150);
			background-color: transparent;
			font-family: 'Montserrat', sans-serif;
			letter-spacing:0.1em;
			font-size:14px;}	/* besucht */



#audioplayer{
    width: 355px;
    height: 300px;
    margin: 50px auto auto auto;
    border: none;
	background-color: rgba(248, 248, 248, 0.5);
	/* border-color: black; */
}

.pButtonPlay{
    height:60px; 
    width: 60px;
    border: none;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    float:left;
    outline:none;
	background-image: url('images/play.png');
	margin-right: 10px;
}

.pButtonPause{
    height:60px; 
    width: 60px;
    border: none;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    float:left;
    outline:none;
	background-image: url('images/pause.png');
	margin-right: 10px;
}

.pButtonBack{
    height:60px; 
    width: 60px;
    border: none;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    float:left;
    outline:none;
	background-image: url('images/back.png');
	margin-right: 10px;
}

.zoom {
  transition: transform .1s;
}

.zoom:hover {
  -ms-transform: scale(1.2); /* IE 9 */
  -webkit-transform: scale(1.2); /* Safari 3-8 */
  transform: scale(1.2); 
}