#sortable {
    list-style-type : none;
    margin          : 0;
    padding         : 20px;
    display         : inline-block;
}

#sortable li {
    margin     : 5px 5px 5px 0;
    float      : left;
    width      : 100px;
    height     : 130px;
    text-align : center;
    position   : relative;
}

.file-name {
    text-overflow : ellipsis;
    overflow      : hidden;
    white-space   : nowrap;
    padding       : 3px;
}

#sortable li .remove-image {
    position              : absolute;
    cursor                : pointer;
    background-color      : #e40b0b;
    color                 : white;
    top                   : -5px;
    right                 : -5px;
    padding               : 0 3px;
    font-size             : 13px;
    -webkit-border-radius : 5px;
    -moz-border-radius    : 5px;
    border-radius         : 5px;
}

#sortable li img {
    width          : 80px;
    height         : 80px;
    vertical-align : middle;
}




