@charset "utf-8";

.cf:before, .cf:after{
    content:"";
    display:table;
}
 
.cf:after{
    clear:both;
}
 
.cf{
    zoom:1;
}    

 /* Form wrapper styling */
.search-wrapper {
	width: 300px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .4) inset, 0 1px 0 rgba(255, 255, 255, .2);
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
 
/* Form text input */
 
.search-wrapper input {
	width: 218px;
	height: 20px;
	float: left;
	border: 0;
	/* [disabled]border-radius: 3px 0 0 3px; */
	font-family: 'lucida sans', 'trebuchet MS', 'Tahoma';
	font-size: 14px;
	font-weight: normal;
	background-color: #666;
	color: #333333;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
 
.search-wrapper input:focus {
	outline: 0;
	background: #fff;
	box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
	color: #333333;
}
 
/* Form submit button */
.search-wrapper button {
	overflow: visible;
	position: relative;
	float: right;
	border: 0;
	padding: 0;
	cursor: pointer;
	height: 30px;
	width: 72px;
	color: #CCCCCC;
	text-transform: uppercase;
	border-radius: 0 3px 3px 0;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
	background-color: #003366;
	font-family: 'lucida sans', 'trebuchet MS', 'Tahoma';
	font-size: 15px;
	line-height: 32px;
	font-weight: bold;
}
   
.search-wrapper button:hover{
	background-color: #003399;
	color: #FFFFFF;
}   
   
.search-wrapper button:active,
.search-wrapper button:focus{
	outline: 0;
	background-color: #CCCCCC;
	color: #FFFFFF;
}
 
.search-wrapper button:before { /* left arrow */
	content: '';
	position: absolute;
	top: 6px;
	left: -6px;
	border-top-width: 8px;
	border-right-width: 8px;
	border-bottom-width: 8px;
	border-left-width: 0;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: transparent;
	border-right-color: #7D0000;
	border-bottom-color: transparent;
	border-left-color: #7D0000;
}
 
.search-wrapper button:hover:before{
	border-right-color: #990000;
}
 
.search-wrapper button:focus:before,
.search-wrapper button:active:before{
	border-right-color: #990000;
}      
