﻿	input[type=button] { 
		background-color: #eeeeee;
		-moz-border-radius:6px;
		-webkit-border-radius:6px;
		border-radius:6px;
		border:1px solid #18ab29;
		display:inline-block;
		cursor:pointer;
		color:black;
		font-family:Arial;
		font-size:10px;
		font-weight:bold;
		padding:2px 21px;
		text-decoration:none;
		width: 300px;
	}
	input[type=button]:hover {
		background-color: #9345c7;
		color: white;
	}
	input[type=button]:focus {
		border:4px solid navy;
	}
	input[type=button]:active {
		position:relative;
		top:1px;
	}

	