.form-wrapper {
	width: 90%;
	padding: 15px;
	margin-left: 60px;
	background: #444444;
	background: rgba(0, 0, 0, 0.2);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset, 0 1px 0 rgba(255, 255, 255, .2);
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset 0 1px 0 rgba(255, 255, 255, .2);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset 0 1px 0 rgba(255, 255, 255, .2);
}
.form-wrapper input[name="search"] {
	width: 80%;
	height: 35px;
	padding: 10px;
	float: left;
	border: 0;
	background: #EEEEEE;
	-moz-border-radius: 3px 0 0 3px;
	-webkit-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.form-wrapper input[name="search"]:focus {
	outline: 0;
	background: #FFFFFF;
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.8) inset;
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.8) inset;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.8) inset;
}
.form-wrapper input[name="search"]::-webkit-input-placeholder,
.form-wrapper input[name="search"]::-moz-input-placeholder,
.form-wrapper input[name="search"]:-ms-input-placeholder {
	color: #999999;
	font-weight: normal;
	font-style: italic;
}

.form-wrapper input[name="submit-search"] {
	overflow: visible;
	position: relative;
	border: 0;
	padding: 0;
	cursor: pointer;
	height: 35px;
	width: 150px;
	color: #FFFFFF;
	text-transform: uppercase;
	background: #D83C3C;
	-moz-border-radius: 0 3px 3px 0;
	-webkit-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
}
.form-wrapper input[name="submit-search"]:hover {
	background: #E54040;
}
.form-wrapper input[name="submit-search"]:active,
.form-wrapper input[name="submit-search"]:focus {
	background: #C42F2F;
}