#nav {
	position: relative;
}
#search-box {
	position: absolute;
	right: 0;
	bottom: 10px;
}
.expanding-sf {
    background: repeat scroll 0 0 rgba(0, 0, 0, 0);

    height: 30px;
    margin: 0;
    width: 330px;
}
.form {
    margin: 0 auto;
    position: relative;
    top: 0;
    width: 300px;
}
 .toggle {
    background: url(../images/search.png) no-repeat scroll center center #fff;
    border: medium none;
    color: #000;
    cursor: pointer;
    display: block;
    height: 40px;
    position: absolute;
    right: 0;
    width: 50px;
    border-radius: 25px;
}
#searchform {
    float: right;
    height: 40px;
    margin: 0;
    opacity: 0;
    padding: 0;
    transition: all 0.2s ease-in-out 0s;
    visibility: hidden;
    width: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
#search-box:hover #searchform, #search-box.active #searchform {
    display: block;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    visibility: visible;
    width: 250px;
}
#searchform #s {
    background: none repeat scroll 0 0 #fff;
    border: medium none;
    color: #000;
    float: right;
    outline: none;
    font-family: helvetica, verdana, arial, sans-serif;
    font-size: 12px;
    height: 100%;
    padding: 0 15px;
    width: 100%;
    border-radius: 25px;
}
#searchform #searchsubmit {
    background: url(../images/search.png) no-repeat scroll center center #fff;
    border: medium none;
    color: #000;
    cursor: pointer;
    display: block;
    height: 40px;
    position: absolute;
    right: 0;
    width: 50px;
    border-radius: 25px;
}