@charset "UTF-8";
/* CSS Document */

html, body { 
				width:100%; 
				height:100%; 
		} /* just to be sure these are full screen*/

* { margin:0; padding:0; } /* to remove the top and left whitespace */

a, image, canvas, div {
	user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	unselectable="on";
	-webkit-touch-callout: none;
	-webkit-user-drag: none;
}
		
.canvasfullscreen {
	background-size:80%;  /*imp*/
	background-repeat:no-repeat; 
	display:block;/* To remove the scrollbars */
}

.fullscreenpalette {
	position:fixed;
	top:8%;
	left:88%;
	width:auto;
		
	cursor:pointer; 
	padding:1.5%; 
}

	
.drawingTool {
	width:100%; 
}

#drawingPalette {
			position:fixed;
			top:8%;
			left:88%;
			width:5%;
		
			cursor:pointer; 
			padding:1.5%; 
			}