﻿input, textarea, select {font-family: Verdana, Arial, Tahoma, Sans-Serif; font-size: 12pt; margin-bottom: 1px; padding: 10px}
input[type="text"], input[type="password"], textarea, select {
	border: Solid 1px #808080;
	background-color: #DCDCDC;
	/* This only works in IE */
	filter: progid:DXImageTransform.Microsoft.Gradient(
		GradientType=0,
		StartColorStr=#DCDCDC,
		EndColorStr=White);
	background-image: -ms-linear-gradient(top, #DCDCDC 0%, #FFFFFF 100%); /* IE10 Consumer Preview */
	background-image: -moz-linear-gradient(top, #DCDCDC 0%, #FFFFFF 100%); /* Mozilla Firefox */
	background-image: -o-linear-gradient(top, #DCDCDC 0%, #FFFFFF 100%); /* Opera */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #DCDCDC), color-stop(1, #FFFFFF)); /* Webkit (Safari/Chrome 10) */
	background-image: -webkit-linear-gradient(top, #DCDCDC 0%, #FFFFFF 100%); /* Webkit (Chrome 11+) */
	background-image: linear-gradient(to bottom, #DCDCDC 0%, #FFFFFF 100%); /* W3C Markup, IE10 Release Preview */
}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
	border: Solid 1px #B28B3F;
	outline: #F1CA7F solid 1px;
}
textarea {overflow-y: scroll;}