.clickable {
	cursor: pointer;
}

.underlined {
	text-decoration: underline;
}

.centeredtext {
	text-align: center;
}

.roundedcorner {
	border-radius: 10px;
}

.imagepreloader {
	width: 1px;
	height: 1px;
	display: none;
}

body {
	margin: 0;
	padding: 0;
	background-color: #222222;
	outline: none;
	border: none;
	font-family: sans-serif;
	overflow: hidden;
}

#copyright {
	position: fixed;
	bottom: 35px;
	width: 150px;
	left: calc(50vw - 75px);
	z-index: 1000;
	text-align: center;
	color: #FFFFFF;
	font-size: 0.8em;
	text-shadow: 
		0 0 2px #000000,
		0 0 2px #000000,
		0 0 2px #000000,
		0 0 2px #000000,
		0 0 2px #000000,
		0 0 4px #000000,
		0 0 4px #000000,
		0 0 4px #000000,
		0 0 4px #000000,
		0 0 4px #000000;
	opacity: 0.65;
	display: none;
}

#backgrounmusicswitch {
	position: fixed;
	bottom: 60px;
	width: 190px;
	left: calc(50vw - 95px);
	z-index: 1000;
	text-align: center;
	background-image: url('/img/transp95.png');
	border-radius: 10px;
	border: 1px solid #444444;
	padding: 10px;
	color: #FFFFFF;
	font-size: 0.8em;
	display: none;
}

#about, #music, #contact {
	width: 150px;
	height: 150px;
	margin-left: auto;
	margin-right: auto;
	background-color: #000000;
	border-radius: 10px;
	border: 1px solid #666666;
	z-index: 1000;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0.75;
	display: none;
}

#sectionmodalcontent {
	color: #DDDDDD;
}

#about {
	background-image: url('/img/topmenu_about.png');
}

#about:hover {
	background-image: url('/img/topmenu_about_hover.png');
	background-size: 90%;
	opacity: 1;
}

#music {
	background-image: url('/img/topmenu_music.png');
}

#music:hover {
	background-image: url('/img/topmenu_music_hover.png');
	background-size: 90%;
	opacity: 1;
}

#contact {
	background-image: url('/img/topmenu_contact.png');
}

#contact:hover {
	background-image: url('/img/topmenu_contact_hover.png');
	background-size: 90%;
	opacity: 1;
}

#content {
	position: absolute;
	width: 1000px;
	height: 600px;
	background-image: url('/img/transp95.png');
	border-radius: 10px;
	z-index: 1000;
	display: none;
}

#contenttitle, #contentclose, #contentcontent {
	position: absolute;
	height: 25px;
	color: #EEEEEE;
}

#contenttitle {
	width: 850px;
	left: 10px;
	top: 10px;
	text-align: left;
	font-size: 18px;
}

#contentclose {
	width: 100px;
	left: 890px;
	top: 10px;
	text-align: right;
}

#contentseparator {
	position: absolute;
	width: 980px;
	left: 10px;
	height: 3px;
	top: 43px;
	border-top: 1px solid #444444;
}

#contentcontent {
	position: absolute;
	width: 965px;
	left: 19px;
	height: 520px;
	top: 60px;
	font-size: 14px;
	overflow-x: hidden;
	/*overflow-y: scroll;*/
	
}

.tracklist {
	font-size: 12px;
	font-weight: normal;
	width: 320px;
	padding-top: 3px;
	padding-left: 3px;
	padding-right: 3px;
	border-radius: 3px;
}

/* CUSTOM SCROLL BAR */

/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #222222;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #444444;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #666666; 
}