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


html {
	height: 100%;
}


body {
	margin: 0;
	padding: 0;
	background-color: #111;
	height: 100%;
	width: 100%;
	
	-webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
	
	color: #fff;
	overflow: hidden;
}


canvas {
    display: block;
}

#noise {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(img/noise.png);
    background-repeat: repeat;
}

*.unselectable {
   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;

   /*
     Introduced in IE 10.
     See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
   */
   -ms-user-select: none;
   user-select: none;
}

