/* Search */
#search_container {
    position: absolute;
    top: 4px;
    right: 0;
}
#search_container input {
    position: relative;
    width: 214px;
    height: 20px;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
#search_container input:focus {
    top: -14px;
    width: 456px;
    height: 32px;
}
/* List View */
.slide_out_controls {
    position: absolute;
    top: -2px;
    right: -366px;
    width: 366px;
    height: 44px;
    text-align: right;
    background: -moz-linear-gradient(left,  rgba(250,250,250,0) 0%, rgba(250,250,250,1) 40%, rgba(250,250,250,1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(250,250,250,0)), color-stop(40%,rgba(250,250,250,1)), color-stop(100%,rgba(250,250,250,1)));
    background: -webkit-linear-gradient(left,  rgba(250,250,250,0) 0%,rgba(250,250,250,1) 40%,rgba(250,250,250,1) 100%);
    background: -o-linear-gradient(left,  rgba(250,250,250,0) 0%,rgba(250,250,250,1) 40%,rgba(250,250,250,1) 100%);
    background: -ms-linear-gradient(left,  rgba(250,250,250,0) 0%,rgba(250,250,250,1) 40%,rgba(250,250,250,1) 100%);
    background: linear-gradient(to right,  rgba(250,250,250,0) 0%,rgba(250,250,250,1) 40%,rgba(250,250,250,1) 100%);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.slide_out_controls > button {
    position: relative;
    top: -2px;
    height: 24px;
    padding: 0 10px;
    margin: 0 0 0 10px;
    text-align: center;
    font-size: 12px;
}
li.item:not(.ui-selected):hover .slide_out_controls {
    right: 0;
}