*{
	margin:0px;
	padding:0px;
	font:14px Tahoma;
	text-align: center;
	color: rgb(220,220,220);
	text-decoration: none;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}


body > form, body, body > form, body > form > div, body > form > div > div{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

body > form > textarea{
	-webkit-box-flex: 1;
	flex: 1;
}

body, body > form{
	-webkit-box-orient: vertical;
	-webkit-flex-flow: column;
	-moz-flex-flow: column;
	-ms-flex-flow: column;
	flex-flow: column;
	flex-direction: column;
}

body > form > div{
	-webkit-box-orient: horizontal;
	-webkit-flex-flow: row;
	-moz-flex-flow: row;
	-ms-flex-flow: row;
	flex-flow: row;
	flex-direction: row;
}

body, body > form > div > div{
    -ms-flex-pack: center;
	-moz-box-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}
null{
    -ms-flex-pack: end;
	-moz-box-pack: end;
	-webkit-box-pack: end;
	-webkit-justify-content: end;
	-moz-justify-content: end;
	-ms-justify-content: flex-end;
	justify-content: flex-end;
}
body > form > div{
    -ms-flex-pack: center;
	-moz-box-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: space-between;
	justify-content: space-between;
}
null{
    -ms-flex-pack: center;
	-moz-box-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: space-around;
	justify-content: space-around;
}

body, body > form > div > div{
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

null{
	-webkit-align-items: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: flex-start;
}

null{
    -ms-flex-pack: start;
	-moz-box-pack: start;
	-webkit-box-pack: start;
	-webkit-justify-content: start;
	-moz-justify-content: start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
}

body{
	height: 667px;
	min-height: 667px;
	max-height: 667px;
}

body > form{
	background: rgba(2,2,2,0.5);
	
	width: 80%;
	min-width: 80%;
	max-width: 80%;
	
	height: 250px;
	min-height: 250px;
	max-height: 250px;
	
	outline: 1px solid gray;
	
	padding: 10px;
}

body > form > textarea{
	text-align: left;
	color: rgb(220,220,220);
	background: rgba(30,30,30,0.8);
	padding: 3px;
}

body > form > div, body > form > div > div, body > form > div > input{
	width: 40%;
	min-width: 40%;
	max-width: 40%;
	
	height: 30px;
	min-height: 30px;
	max-height: 30px;
	
	margin: 5px;
	
	border: none;
}

body > form > div > div, body > form > div > input{
	background: rgb(50,50,50);
	outline: 1px solid rgb(90,90,90);
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

body > form > div > div:active, body > form > div > input:active{
	outline: 1px solid white;
	background: rgb(90,90,90);
}

body > form > div > div:hover, body > form > div > input:hover{
	outline: 1px solid white;
}

body > h1{
	height: 50px;
	font: bold 38px Tahoma;
}

form > p{
	text-align: left;
	margin-top: 10px;
}
#emailfield{
	text-align: left;
	padding: 2px;
	border: none;
	outline: 1px solid rgb(220,220,220);
	background: none;
}