@charset "utf-8";
/* CSS Document */
html, #canvas {
	width: 700px;
	height: 445px;
	margin: 0 auto;		
    cursor: default;
	background-color: #FFFFFF;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;	
}

#player_bg {
	width: 284px;
	height: 437px;
	position: absolute;	
    background: url('../assets/monkeys_bed.png');
}

#demo{
	position: relative;
	top: 110px;
	left: 40px;
}

#hovered {
	position: relative;
	width: 50px;
	top: 75px;
	left: 200px;	
	visibility: hidden;
}

#playplay, #stopstop, #pausepause, #volumevolume { 
	position: absolute;	
	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;	
	font-size: 14px;
	color: white;	
}

#volumevolume {
	left: -15px;
	}
	
#pausepause {
	left: -5px;
	}	

#timer {
	position: relative;
	width: 100px;
	left: 45px;
	top: 130px;	
	}
	
#videoTime {
	font-family: 'alarm_clockregular';
	font-size: 22px;
	color: black;
}

#controller {
	position: relative;
	width: 120px;
	height: 120px;
	left: 145px;
	top: 96px;	
}

#stopbtn {
	position: absolute;
	top: 10px;
	left: 40px;
	cursor: pointer;
}

#playicon {
	position: absolute;
    top: 42px;
    left: 5px;
	cursor: pointer;
}

#pauseicon {
	position: absolute;
    top: 42px;
    left: 75px;
	cursor: pointer;
}

#volume0 {
	position: absolute;
	top: 77px;
	left: 40px;
	cursor: pointer;	
}

#volume1, #volume2, #volume3 {
	z-index: 2;
	position: absolute;
	top: 77px;
	left: 40px;
	cursor: pointer;
}

#bottombtn {
	position: relative;
	width: 90px;
	height: 27px;
	top: 85px;
	left: 38px;	
}

#text {
	position: absolute;
	cursor: pointer;
}

#print {
	position: absolute;
	left: 50px;
	cursor: pointer;
}

#text:hover, #print:hover {
	cursor: pointer;
}

#showHideDiv{
	display:none;
	position: relative;
	left: 280px;
	top: -285px;
	border-width: 5px; 
	border-style: solid;
	border-color: #CCCC99;
	border-radius: 0px 10px 10px 0px;
	padding: 5px 5px 5px 15px;
	width: 380px;
	height: 270px;
	overflow: scroll;
	overflow-x:hidden; 
	background: -webkit-radial-gradient(circle,#C3F6F6,#A5D8D8);
	background: -o-radial-gradient(circle,#C3F6F6,#A5D8D8);
	background: -moz-radial-gradient(circle,#C3F6F6,#A5D8D8);
	background: radial-gradient(circle,#C3F6F6,#A5D8D8);
	color: #336666;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;			
}

#copyright {
    position: relative;
	left: 5px;
	font-size: 14px;
	font-family:Helvetica, Arial, sans-serif;		
}

#printing {
	display: none;
	}

@media(device-width: 768px) and (device-height: 1024px){
    ::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 10px;
    }
    ::-webkit-scrollbar-thumb {
        border-radius: 2px;
        background-color: rgba(0,0,0,.5);
        -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
    }
}
	
@media print {
	body {
 		visibility: hidden;
	}

	#title {        
		display: block;
        font-size: 20px;
		}
				
    #printing {
		visibility: visible;
		display: block;
		position: absolute;
		border: none;
        background: #fff;
		color: #000000;
		margin: auto 0;			
		top: 10px;
		left: auto;	
    }
}