.kwicks {
    /* recommended styles for kwicks ul container */
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
}
.kwicks li{
    /* these are required, but the values are up to you (must be pixel) */
    width: 80px;
    height: 80px;

    /*do not change these */
    display: block;
    overflow: hidden;
    padding: 0;  /* if you need padding, do so with an inner div (or implement your own box-model hack) */
    background-color: white;
}
.kwicks.horizontal li {
    /* This is optional and will be disregarded by the script.  However, it should be provided for non-JS enabled browsers. */
    margin-right: 5px; /*Set to same as spacing option. */
    float: left;
    /*border: solid 3px #333333;*/
    /*border-radius: 10px;*/
    /*-moz-border-radius: 10px;*/
    cursor: pointer;
}

ul.kwicks>li>table {
    height: 80px;
}

ul.kwicks>li>table>tbody>tr>td {
    padding-top: 0px;
    padding-left: 5px;
    padding-right: 10px;
}

ul.kwicks>li>table>tbody>tr>td:last-child {
    min-width: 150px;
    overflow: hidden;
}

.kwicks.horizontal #kwick_6 {
    margin-right: none; /* cancel margin on last kiwck (if you set a margin above) */
}