/* Container class */
div.rounded_container{
	/* This background color should have the same background color as your text input */
	/* Changing this color will show you how the rounded input is laid out */
	background-color: #F2F2F2;
	/* This padding is between the text input and the rounded border on all sides */
	/* Decreasing the value may interfere with the rounded corners */
	padding: 4px;
}
div.rounded_container:focus {
	background: #EDEDED;
}
/* Border class */
div.rounded_border {
	/* This is the color of your rounded border */
	background: #F2F2F2;
}
div.rounded_border:hover {
	background: #FE6634;
}
input.rounded_input{
	background-color: #F2F2F2;
	border: 0px;
	margin: 0px;
}
