@media screen {
	input, textarea { background: black; }
	input, textarea, button {
		border: 1px solid #999999;
		color: #ffffff; 
		background: black;
	}
	input:disabled, textarea:disabled {
		color: #888;	
	}
	input[type="submit"], button {
		border: 2px outset #444;
		background: #333;
		outline: 1px solid black;
	}
	input[type="submit"]:active, button:active {
		border: 2px inset #444;
		background: #222;
	}
	input[type="submit"]:disabled, button:disabled {
		color: #888;
	}
}
