.midInput {
	width : 150px;
}

.longInput {
	width : 300px;
}

.shortInput {
	width : 50px;
}

.sequence {
	width : 25px;
}

textarea {
	width : 100%;
	height : 200px;
}

input, select, textarea {
	background-color : #FFFFFF;
	border : 1px #9999CC solid;
}

input:hover, select:hover, textarea:hover {
	border : 1px #3399FF solid;
	background-color : #F9FCFF;
}

input:focus, select:focus, textarea:focus {
	border : 1px #0000FF solid;
	background-color : #F0F8FF;
	color : #0000FF;
}

input {
	text-indent : 1px;
	padding-bottom : 3px;
}

@media print {
	input, select, textarea {
		display : none;
	}
}

