

.btn-search {
    text-decoration: none;
	display: inline-block;
	
	/*font*/
	font-family: 'Trebuchet MS',Arial, Helvetica;
	font-size: 10px;
    font-size: 12px\9; /* IE8 and below */
    *font-size: 12px; /* IE7 and below */
    _font-size: 12px; /* IE6 */
	
	/*background*/
	background: #4477a1;	
	
	/*gradient*/
	background: -webkit-gradient(linear, left top, left bottom, from(#81A8CB), to(#4477A1) );
    background: -moz-linear-gradient(top, #81A8CB, #4477A1);
	background: -o-linear-gradient(#81A8CB, #4477A1);
    filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#81A8CB', endColorstr='#4477A1');
	
	/*border,shadow*/
	border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
	
	/*aradius*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.btn-search:not(:target) {
    font-size: 12px\9; /* IE9 */
}
.btn-search span{
	/*text*/
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	
	border-top: 1px solid #FFF;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: block;
    padding: 1px 5px;
}
.btn-search:link{
	text-decoration:none;
}
.btn-search:hover{
    background: #81a8cb;
    background: -webkit-gradient(linear, left top, left bottom, from(#4477A1), to(#81A8CB) );
    background: -moz-linear-gradient(top, #4477A1, #81A8CB);
	background: -o-linear-gradient(#4477A1, #81A8CB);
    filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4477A1', endColorstr='#81A8CB');
	text-decoration: none;
}
.btn-search:active{
    background: #4477A1;
	position: relative;
    top: 1px;
	text-decoration: none;
}