/**
 * Pure HTML page style sheet
 * */
 
body {
	font-family: "Lucida Grande", Arial, Helvetica;
	font-size: 12px;
	color: white;
	background-color: black;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

a {
	color: white;
}


.container {
	position: absolute;
	width: 320px;
	height: 120px;
	margin: auto;
	left: 0px;
	right: 0px;
	top: 20%;
	z-index: 10001;
}

.title {
	width: 100%;
	text-align: center;
	font-size: 22px;
	margin-bottom: 20px;
}
.description {
	width: 100%;
	text-align: center;
	font-size: 14px;
	margin-top:10px;
}

.user-select-enable{
	-webkit-touch-callout: text;
	-webkit-user-select: text;
	-khtml-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.user-select-disable{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}