textarea, select {
	border: solid 1px #999999;
	font: 11px verdana, arial, sans-serif;
}
input[type=text], input[type=password], input[type=file] {
	border: solid 1px #999999;
	font: 11px verdana, arial, sans-serif;
}
/* IE <7 doesn't support attribute selectors */
input {
	border-color: #999999; /* color must be separate to allow changing it by inline style */
	border: expression(this.className=="" && (this.type=="text" || this.type=="password" || this.type=="file") ? 'solid 1px':'none');
	font: 11px verdana, arial, sans-serif;
}