#search-form
{
	padding-top: 5px;
	margin-bottom: 15px;
}

#search-form p
{
	color: #898989;
	color: rgba(111,111,111,0.8);
	margin-bottom: 17px;
}

#search-form input
{
	font-size: 14px;
	padding-right: 60px;
}

#search-form input,
#search-form button[type="submit"]
{
	background: #fff;
}

#search-form button[type="submit"]
{
	position: absolute;
	bottom: 0;
	right: 0;
	height: 39px;
	width: 40px;
	padding: 0;
	line-height: 1;
	font-size: 18px;
	color: #e0e0e0;
	text-align: center;

	-webkit-transition: color 300ms ease-in-out;
	-o-transition: color 300ms ease-in-out;
	transition: color 300ms ease-in-out;
}

#search-form button[type="submit"] i.arrow
{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 12px;
	height: 20px;
	margin-left: 5px;
}

#search-form button[type="submit"] i.arrow:before,
#search-form button[type="submit"] i.arrow:after
{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 3px;
	height: 60%;
	background: #e0e0e0;

	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;

	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;

	outline: 1px solid transparent; /* for FF */
}

#search-form button[type="submit"] i.arrow:before
{
	-webkit-transform: translateX(-50%) rotate(135deg);
	transform: translateX(-50%) rotate(135deg);

	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
}

#search-form button[type="submit"] i.arrow:after
{
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);

	-webkit-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
}

#search-form button[type="submit"]:hover i.arrow:before
{
	-webkit-transform: translateX(-50%) rotate(125deg);
	transform: translateX(-50%) rotate(125deg);
}

#search-form button[type="submit"]:hover i.arrow:after
{
	-webkit-transform: translateX(-50%) rotate(55deg);
	transform: translateX(-50%) rotate(55deg);
}

#search-form + p
{
	line-height: 1.3;
	font-size: 12px;
	color: rgba(85,85,85,0.5);
}