/******************************************

CSS for Form
Plain version

*******************************************/

body{
   font-family: Verdana, sans-serif;
}

input {
	border: solid 2px #ddd;
	margin: 5px;
	// display: block;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	width: 80px;
	}

input.short {
	width: 40px;
}

input[type=submit] {
	float: right;
	margin-left: 10px;
	background: #2d2;
	border: solid 2px #000;
}
