
/* File for fx for browsers other than Internets Explorer */

input[type="text"], textarea, input[type="password"], select {
	border:1px solid grey;
}

input[type="text"], textarea, input[type="password"] {
	padding:4px;
}

input[type="text"]:hover, textarea:hover, input[type="password"]:hover, select:hover {
	border:1px solid silver;
}

input[type="text"]:focus, textarea:focus, input[type="password"]:focus, select:focus {
	border:1px solid silver
}

