#galleryBox {
    height:485px;
    position:relative;
    overflow:hidden;
}
/* This is the ul you have all your images in */
#galleryBox ul{
    padding-left:0;
    margin:0;
    overflow:hidden;
}
#galleryBox ul li{
    float: left;
    margin:0 6px 4px 0;
    position:relative;
    overflow:hidden;
}
#galleryBox ul li div img{
    position:relative;
    cursor:pointer;
}

/* this is the surroundner for all your elements. This is also the fake border around the main img and room for caption */
.pika_main{
    display:block;
    position:relative;
}

/*sine we give it the fake border, you need to position the image a little. */
.pika_main_img{
    position:absolute;
    top:0;
    left:0;
}
.pika_back_img{
    position:relative;
    top:0px;
}
.pika_subdiv{
    position:relative;
}
.pika_subdiv img, .pika_subdiv a img{border:none;}
.pika_caption{
    padding-top:4px;
    text-align:center;
    position:absolute;
    bottom:7px;
    left:3px;
    background:url(../imgs/black.png) top left;
}
.pika_caption a{color:white;}

.pika_play{
    position:absolute;
    z-index:1;
    left:50%;
    margin-left:-25px;
    width:50px;
    top:5px;
}

.pika_play a{
    position:relative;
    margin-left:auto;
    cursor:pointer;
    display: block;
    width:50px;
    height:50px;
    background:url(../imgs/play.png) top center no-repeat;
}
.pika_play a{
    position:relative;
    margin-left:auto;
    cursor:pointer;
    display: block;
    width:50px;
    height:50px;
    background:url(../imgs/pause.png) top center no-repeat;
}

.pika_navigation a{
    font-size: 12px;
    text-decoration: none;
}
.pika_navigation a:hover{
    text-decoration: underline;
}
.pika_navigation{
    padding-top:10px;
    clear:both;
    text-align:center;
}

/* if you want to 'hide' these jus make their height and width 1px */
.pika_prev_hover{
    position:absolute;
    top:5px;
    left:5px;
    background:url(../imgs/rewind.png) top left no-repeat;
}
.pika_next_hover{
    position:absolute;
    top:5px;
    right:5px;
    background:url(../imgs/fastf.png) top right no-repeat;
}