#sortable { 
    list-style-type: none; 
    margin: 0; 
    padding: 0; 

}

#sortable li { 
    position: relative;
    display: inline-block;
    top:0;     
    padding:10px;
    margin:10px;
    border: 1px solid #96c1d6;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    vertical-align: top; 
    overflow:hidden;
    cursor:move;
}



#sortable li:hover 
{
    border: 1px solid #5d64da;
}

#sortable li:active 
{
    background: #fff;
    -webkit-box-shadow: 3px 3px 3px rgba(0,0,0,0.35);
    -moz-box-shadow: 3px 3px 3px rgba(0,0,0,0.35);
    box-shadow: 3px 3px 3px rgba(0,0,0,0.35);
}