/* @group Button */

input[type="button"],
input[type="submit"] {
	border-width:1px; border-style:solid;
	border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px;
	border-color:#707070;
	background:url(images/button.png) center repeat-x;
}
input[type="button"]:hover,
input[type="submit"]:hover {
	border-color:#3C7FB1;
	background:url(images/button-hover.png) center repeat-x;
}

/* @end */

/* @group Text box */

input[type="text"],
textarea {
	background-color:#FFF;
	border-width:1px; border-style:solid;
	border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px;
	border-color:#ABADB3 #DBDFE6 #E3E9EF #E2E3EA;
	vertical-align:middle;
}
input[type="text"]:hover,
input[type="text"]:focus,
textarea:hover,
textarea:focus {
	border-color:#5794BF #B7D5EA #C7E2F1 #C5DAED;
}

input.calendar {
	width:95px; height:24px; line-height:24px;
	background:#FFF url(images/select.png) right no-repeat;
}
input.calendar:hover {
	background:#FFF url(images/select-hover.png) right no-repeat;
}

/* @end */

/* @group Selector */

select {
	-webkit-appearance:none; line-height:22px;
	border-width:1px; border-style:solid;
	border-radius:2px; -webkit-border-radius:2px; -moz-border-radius:2px;
	border-color:#ABADB3 #DBDFE6 #E3E9EF #E2E3EA;
	background:#FFF url(images/select.png) right no-repeat;
	vertical-align:middle;
}
select:hover {
	border-color:#5794BF #B7D5EA #C7E2F1 #C5DAED;
	background-image:url(images/select-hover.png);
}

/* @end */