/* general */
* {
	outline: none;
	margin: 0;
	padding: 0;
	text-decoration: none;
	border: 0;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}
/* Remove outline */
div, span, td, table, li, ul, a, button {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
a, a:visited, a:focus, a:active, a:hover {
	outline: 0 none !important;
}
a {
	text-decoration: none;
}
audio,
canvas,
img,
video {
	vertical-align: middle;
}
:focus {
	outline: none;
}
::-moz-focus-inner {
	border: 0;
}
html,
body {
	-webkit-font-smoothing: antialiased;
	min-width: 960px;
	min-height: 480px;
	background: #000000;
	color: #a6a6a6;
}
li {
	list-style: none;
}
p {
	padding: 0;
	margin: 0;
}
b,
strong {
    font-weight: bold;
}
i {
    font-style: italic;
}
em { 
	font-style: normal;
	text-decoration: none; 
}

/* generic helpers */
.abs {
	position: absolute;
}
.fixed {
	position: fixed;
}
.fs {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.hidden {
	visibility: hidden;
}
.disable {
	display: none; 
}
img.desaturate {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
	filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}