#cboxOverlay {
    background: #333;
    opacity: 0.5;
    filter: alpha(opacity=90);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
}
#colorbox
{

    color: #333 !important;
    background: #fff url("images/loader.svg") center center no-repeat;
    position: fixed;
    z-index: 1001;
    font-size: 0 !important;
}
#colorbox .cboxPhoto
{
    border: 9px solid #f5f5f5;
}
#cboxTitle
{

    position: absolute;
    font-weight: 600;
    left: 9px;
    font-size: 18px !important;
    bottom: -21px;
    z-index: 3;
}

#cboxCurrent
{
    font-size: 18px !important;
    border: 9px solid #f5f5f5;
    border-top: none !important;
    background: #f5f5f5;
    line-height: 18px;
    display: block;
    width: 100%;
    font-weight: 600;
    text-align: right;
    position: absolute;
    bottom: -27px;

}

#cboxClose
{
    font-size: 0;
    width: 98px;
    height: 36px;
    position: absolute;
    top: 6px;
    right: 9px;
    background: url("images/colorboxnav.png") center top no-repeat;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    border: none !important;
    transition: all 300ms ease-in-out;
}

#cboxClose:hover
{
    top: 9px;
}
#cboxPrevious, #cboxNext
{
    position: absolute;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    border: none !important;
    transition: all 300ms ease-in-out;
    top: 50%;
    margin-top: -63px;
    width: 33px;
    height: 126px;
    font-size: 0;
}

#cboxPrevious
{
    left: 6px;
    background: url("images/colorboxnav.png") center left no-repeat;
}


#cboxNext
{
    right: 6px;
    background: url("images/colorboxnav.png") center right no-repeat;
}

#cboxPrevious:hover
{
    left: 9px;
}

#cboxNext:hover
{
    right: 9px;
}