@font-face {
    font-family: 'retro';
    src: url('font/retro.ttf');
}

html{
	padding: 0;
	margin: 0;
}

body{
	padding: 0;
	margin: 0;
    overflow:hidden;
	font-family: retro;
	font-size: 32px;
	background-color: black;
}

canvas {
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin:auto;
	width: 100%;
    height: auto;
	background: transparent;
	z-index: -4;
}

#pauseScreen, #pauseScreen2 {
	background-color: rgba(0, 0, 0, 0.8);
	height: 100vh;
	padding: 0;
}

.innerPauseScreen{
	position: absolute;
	left: 50%;
	top: 50%;
	-moz-transform: perspective(1px) translate(-50%,-50%);
	     transform: perspective(1px) translate(-50%,-50%); 
	-webkit-transform: perspective(1px) translate(-50%,-50%); 
	-ms-transform: perspective(1px) translate(-50%,-50%); 
	text-align: center;
}

#selectCursor2, #selectCursor3{
	position: fixed;
}

#selectCursor{
	opacity: 1;
}

#startScreen, #wimpWrap{
   position: absolute;
   bottom: 50px;
   text-align: center;
   width: 100%;
}

#scoreSubmission{
    position: absolute;
	font-family: retro;
	color: #ff9cce;
	font-size: 50px;
	left: 50%;
	top: 50%;
	-moz-transform: perspective(1px) translate(-50%,-50%);
	     transform: perspective(1px) translate(-50%,-50%); 
	-webkit-transform: perspective(1px) translate(-50%,-50%); 
	-ms-transform: perspective(1px) translate(-50%,-50%); 
}

section {
	width: 250px;
	height: 50px;
	margin: auto;
	position: relative;
	padding-bottom: 25px;
}

#slider{
	border-width: 1px;
	border-style: solid;
	border-color: #333 #333 #777 #333;
	-webkit-border-radius: 25px;
	   -moz-border-radius: 25px;
	        border-radius: 25px;
	width: 200px;
	position: absolute;
	height: 13px;
	background-color: #8e8d8d;
	left: 30px;
	cursor: pointer;
}

#unmute {
	display: inline-block;
	width: 25px;
	height: 25px;
	cursor: pointer;
	background: url('img/pacunmute.png') no-repeat 0 0;
	position: absolute;
	margin-top: -5px;
	left: 0px;
}

#mute {
	display: inline-block;
	width: 25px;
	height: 25px;
	cursor: pointer;
	background: url('img/pacmute.png') no-repeat 0 0;
	position: absolute;
	margin-top: -5px;
	left: 0px;
}

.ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 25px;
	height: 25px;
	cursor: pointer;
	background: url('img/pachandle.png') no-repeat 50% 50%;
	font-weight: bold;
	color: #1C94C4;
	outline: none;
	top: -6px;
	margin-left: -12px;
}

.ui-slider-range {
	background: #ff0000;
	position: absolute;
	border: 0;
	top: 0;
	height: 100%;
	-webkit-border-radius: 25px;
	   -moz-border-radius: 25px;
	        border-radius: 25px;
}

button{
	cursor: pointer;
}

.playButton {
  font-family: retro;
  color: #ffffff;
  font-size: 32px;
  background: #2121ff;
  padding: 10px 20px 10px 20px;
  border: solid #ffffff 2px;
  text-decoration: none;
}

.quitButton {
  font-family: retro;
  color: #ffffff;
  font-size: 32px;
  background: #ff0000;
  padding: 10px 20px 10px 20px;
  border: solid #ffffff 2px;
  text-decoration: none;
}

.quitButton:hover, .playButton:hover {
  background: #ff9cce;
  text-decoration: none;
}

#leaderBoard{
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: -500px;
    margin:auto;
	width: 1460px;
    height: 100%;
	overflow-y: scroll;
}

#LBheader{
	top: 0;
    margin: 0;
    padding: 0;
	height: 30px;
	width: 960px;
	background: black;
	position: fixed;
}

#LBfooter{
	bottom: 0;
    margin: 0;
    padding: 0;
	height: 60px;
	width: 960px;
	background: black;
	position: fixed;
}

#rank {
	float: left;
	width: 100px;
	color: #00ffff;
	font-size: 30px;
	text-align: center;
}

#name {
	float: left;
	width: 500px;
	color: #00ffff;
	font-size: 30px;
	text-align: center;
}

#level {
	float: left;
	width: 100px;
	color: #00ffff;
	font-size: 30px;
	text-align: center;
}

#score {
	float: left;
	width: 260px;
	color: #00ffff;
	font-size: 30px;
	text-align: center;
}

#content{
	margin: 50px auto 80px auto;
}

.rank {
	float: left;
	width: 100px;
	color: #ff9cce;
	font-size: 30px;
	text-align: center;
}

.name {
	float: left;
	width: 500px;
	color: #ffff00;
	font-size: 30px;
	text-align: center;
}

.level {
	float: left;
	width: 100px;
	color: #ffb951;
	font-size: 30px;
	text-align: center;
}

.score {
	float: left;
	width: 260px;
	color: #ff0000;
	font-size: 30px;
	text-align: center;
}

#titleButton {
  font-family: retro;
  color: #ffffff;
  font-size: 32px;
  background: #2121ff;
  padding: 10px 20px 10px 20px;
  border: solid #ffffff 2px;
  text-decoration: none;
  cursor: pointer;
}

#titleButton:hover {
  background: #ff9cce;
  text-decoration: none;
}