/* -------------------------------------------------------

Search box

------------------------------------------------------- */
#search-box {
    position: relative;
    width: 100%;
    margin: 0;
}

#search-text {
    font-size: 14px;
    color: #ddd;
    border-width: 0;
    background: transparent;
}

#search-box input[type="text"] {
    width: 90%;
    padding: 11px 0 12px 1em;
    color: #333;
    outline: none;
}

#search-form {
    height: 40px;
    border: 1px solid #aaa;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: inset 0 0 5px #bbb;
    -moz-box-shadow: inset 0 0 5px #bbb;
    box-shadow: inset 0 0 5px #bbb;
    overflow: hidden;
}

#search-button {
    position: absolute;
    top: 1px;
    right: 1px;
    height: 40px;
    width: 60px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-width: 0;
    border-left: 1px solid #aaa;
    -webkit-border-radius: 0px 3px 2px 0px;
    -moz-border-radius: 0px 3px 2px 0px;
    border-radius: 0px 3px 2px 0px;
    background-color: #bbb;
    background: -moz-linear-gradient(top, #c9c9c9 0%, #999999);
    background: -webkit-gradient(linear, left top, left bottom, from(#c9c9c9), to(#999999));
    -webkit-box-shadow: -4px 0px 3px -2px #ddd;
    -moz-box-shadow: -4px 0px 3px -2px #ddd;
    box-shadow: -4px 0px 3px -2px #ddd;
    cursor: pointer;
}
