.ºtextbox{
	position: relative;
	height: 32px;
}
	.ºtextbox .txt_border{
		position: absolute;
		left: 0; right: 0; top: 0; bottom: 0;
		background: #FFF;
		border: 2px solid #BBB;
		border-radius: 4px;
	}
	.ºtextbox input{
		box-sizing: border-box;
		position: absolute;
		width: 100%; height: 100%;
		padding: 0 3px 0 6px;
		background: transparent;
		color: #777;
		border: 0;
	}
	
	.ºtextbox.focus .txt_border{
		border-color: #79BC28;
	}
		.ºtextbox.focus input{
			color: #5B8D1E;
		}
	.ºtextbox.disabled{
		cursor: default;
	}
		.ºtextbox.disabled .txt_border{
			background: #EEE; 
		}