﻿/*Stylesheet*/

@font-face {
  font-family: 'Foo';
  src: url('fonts/foo.eot'); /* IE9 Compat Modes */
  src: url('fonts/foo.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/foo.woff') format('woff'), /* Modern Browsers */
       url('fonts/foo.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fonts/foo.svg#svgFontName') format('svg'); /* Legacy iOS */
}

BODY, HTML
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none; 
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
    
	margin: 			0;
	padding: 			0;
	font-family: 		Verdana, 'Foo';
	font-size: 			12px;
	font-weight:		normal;
	color: 				#ccc;
	background-color:	#000000;
}