@charset "utf-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

.search {
	width: 100%;
	position: relative
}

.searchTerm {
	float: left;
	width: 80%;
	border001: 2px solid #777777;
	padding: 5px;
	height: 20px;
	border001-radius: 5px;
	outline: none;
	color: #777777;
	font-size: medium;
}

.searchTerm:focus{
	color: #000000;
}

.searchButton {
	position: absolute;
	width: 120px;
	height: 33px;
	border001: 1px solid #00B4CC;
	background: #00B4CC;
	text-align: center;
	color: #fff;
	border001-radius: 5px;
	cursor: pointer;
	font-size: medium;
	margin-left: -60px;
	float: left;
}

/*Resize the wrap to see the search bar change!*/
.wrap{
	width: 50%;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
}
