input[type=button] {
    background-color: #009de6; /*009879*/
	color: #FFFFFF;
	height: 31px;
	width: 200px;
	text-align: center;
    text-decoration: none;
	font-size: 13px;
	font-weight: none;  /*none bold*/
    padding: 4px 4px; /*ย่อหน้าตัวอักษร บน และ ซ้าย*/
    margin: 8px 0;
    border: none;
    border-radius: 4px;   /* ความโค้ง ของของสี่เหลี่ยม */
    cursor: pointer;
	border: 1px solid #009de6;
}

input[type=button]:hover {
    background-color: #007ab3;
	color: #FFFFFF;
	border: 1px solid #007ab3;
}