input[type=submit], button {
	border: blue;
	background: white;
	border-width: 5px;
	border: 1px solid #1919c4;
	color: #1919c4;
	padding: 5px 10px;
	min-width: 100px;
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -ms-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;

}
input[type=submit]:hover, button:hover {
	background: #1919c4;
	color: #FFF;
}
.searchform input[type=text] {
	width: 120px;
	border: 1px solid grey;
}