* {
	margin: 0;
	padding: 0;
}
html {
	background: #070707;
	color: #fff;
	font-size: 15px;
	font-family: "Courier New", Courier, monospace;
	text-align: center;
	min-height: 320px;
	width: 480px;
	margin: auto;
}
body {
	background: #000;
	margin: 10px auto;
	padding: 10px;
	width: 450px;
	background: -moz-linear-gradient(top, #191919 0%, #000000 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#191919), color-stop(100%,#000000)); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#000000',GradientType=0 );
	border:#bbb 1px solid;
	-moz-border-radius:10px;
	-khtml-border-radius:10px;
	-webkit-border-radius:10px;
}
p {
	margin: 5px 0px;
}
a, a:active, a:hover, a:visited {
	color: #fff;
}
.button {
	background: #000;
	color: #fff;
	font-size: 25px;
	font-family: "Courier New", Courier, monospace;
	font-weight: none;
	padding: 3px 15px;
	margin: 2px;
	background: -moz-linear-gradient(top, #191919 0%, #000000 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#191919), color-stop(100%,#000000)); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#000000',GradientType=0 );
	border:#999 1px solid;
	-moz-border-radius:40px;
	-khtml-border-radius:40px;
	-webkit-border-radius:40px;
	outline: none;
	cursor: pointer;
}
.button.disabled {
	color: #000;
	cursor: not-allowed;
}
textarea {
	background: #000;
	color: #fff;
	font-size: 13px;
	font-family: "Courier New", Courier, monospace;
	padding: 5px;
	margin: 2px;
	background: -moz-linear-gradient(top, #000000 0%, #191919 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(100%,#191919)); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#191919',GradientType=0 );
	border:#999 1px solid;
	-moz-border-radius:10px;
	-khtml-border-radius:10px;
	-webkit-border-radius:10px;
	outline: none;
}
.input {
	background: #000;
	color: #fff;
	font-size: 13px;
	font-family: "Courier New", Courier, monospace;
	padding: 5px;
	margin: 2px;
	background: -moz-linear-gradient(top, #000000 0%, #191919 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(100%,#191919)); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#191919',GradientType=0 );
	border:#999 1px solid;
	-moz-border-radius:40px;
	-khtml-border-radius:40px;
	-webkit-border-radius:40px;
	outline: none;
}
select, option {
	background: #000;
	color: #fff;
	font-size: 13px;
	font-family: "Courier New", Courier, monospace;
	padding: 5px;
	margin: 2px;
	border:#999 1px solid;
	-moz-border-radius:40px;
	-khtml-border-radius:40px;
	-webkit-border-radius:40px;
	outline: none;
}