/* general */
* {
	outline: none;
	margin: 0;
	padding: 0;
	text-decoration: none;
	border: 0;
}
/* 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;
}
:focus {
	outline: none;
}
::-moz-focus-inner {
	border: 0;
}
html,
body {
	-webkit-font-smoothing: antialiased;
	/*min-width: 700px;
	min-height: 600px;*/
  	overflow-x: hidden;}
body {
	background: #000;
	color: #4e4e4e;
}
li {
	list-style: none;
}
p {
	padding: 0;
	margin: 0;
}
em { 
	font-style: normal;
	text-decoration: underline; 
	color: #fff;
}

/* generic helpers */
.fs {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.abs {
	position: absolute;
}
.hidden {
	visibility: hidden;
}
.disable {
	display: none; 
}