/*
__________________________________________________

Thomas revised version: Jan. 15, 2010

This stylesheet is the only fix that would take care of the alignment of the textfield that's on the left side of the input button in Opera versus other browsers. By setting the input to vertical-align: middle, the input button would align exactly to the right of the textfield in the middle.
__________________________________________________

*/

@media all and (min-width: 0px;) {
	input.textfield {
	vertical-align: middle;
	}
}