.button {
	display: inline-block;
	height: 28px;
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	background-color: #4CAF50; /* Green */
	border: none;
	border-radius: 6px;
	box-shadow: 0 3px #999;
	font-weight: bold;
}

.button:hover {background-color: #3e8e41}

.button:active {
	background-color: #3e8e41;
	box-shadow: 0 0px #666;
	transform: translateY(4px);
}

.select {
	height: 28px;
	font-size: 16px;
	width: 100%;
}

