@charset "utf-8";
/* CSS Document */

#search {
    float: right;
    margin-top: 9px;
    width: 250px;
}

.search {
    padding: 5px 0;
    width: 230px;
    height: 30px;
    position: relative;
    left: 10px;
    float: left;
    line-height: 22px;
	margin-top:20px;
}

    .search input {
        position: absolute;
        width: 0px;
        float: Left;
        margin-left: 210px;
        -webkit-transition: all 0.7s ease-in-out;
        -moz-transition: all 0.7s ease-in-out;
        -o-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out;
        height: 30px;
        line-height: 18px;
        padding: 0 2px 0 2px;
        border-radius:14px;
    }

        .search:hover input, .search input:focus {
            width: 200px;
            margin-left: 0px;
			box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.75);
			
        }

.btn-primary{
    height: 30px;
    position: absolute;
    right: 0;
    top: 5px;
    border-radius:14px;
	background-color:#fa0200;
	border:#FFF;
	box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.75);
}
