/**
 * Employee - Buttons
 *
 */
.employee-button {
	display: inline-block;
	padding: 10px 0;
	background: #333;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 100%;
	min-width: 100px;
	border: 2px solid transparent;
	text-align: center;
	cursor: pointer;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
			border-radius: 3px;
	-webkit-transition: ease 0.3s;
	   -moz-transition: ease 0.3s;
			transition: ease 0.3s;
}
.employee-button:hover {
	background: #ccc;
	color: #333;
	border: 2px solid #333;
}