.stripPanel {
    width: 450px;
    overflow: hidden;
    background-color: black;
    padding: 0 20px;
}
.photoStrip {
    width: 2000px;
    height: 80px;
    background-color: red;
    position: relative;
    left: -100px;
}
.preview {
    width: 90px;
    height: 70px;
    padding: 6px;
    display: block;
    float: left;
}
.photoPreview {
    display:block;
    border: 1px solid black;
    margin: 4px 1px;
}
.photoPreview:hover {
    border-color: #888;
}
.photoPreview.selected:hover {
    border-color: #EEE;
}
.photoPreview.selected {
    border-color: #EEE;
}
.photoThumb{
    float:left;
}
.previewThumb{
    width: 30px;
    height: 30px;
    background-color: black;
    display: block;
    overflow: hidden;
    border: 1px solid #000;
}

.previewThumb img{
    max-height: 50px;
    max-width: 50px;
    margin: auto;
}

.navigatePhoto {
    background-color: black;
    background-repeat: no-repeat;
    cursor: pointer;
    display: block;
    height: 42px;
    outline: medium none;
    position: absolute;
    width: 20px;
    z-index: 2;
    background-position: 50% 50%;
}

.navigatePhoto.disable {
    opacity: 0.3 !important;
    -moz-opacity: 0.3 !important;
    filter: alpha(opacity=30) !important;
    cursor: default !important;
}

.navigatePhoto.previous {
    left:-20px;
}
