    /*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
    */
#colorbox, #cboxOverlay, #cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
}
#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
}
#cboxMiddleLeft, #cboxBottomLeft {
    clear: left;
}
#cboxContent {
    position: relative;
}
#cboxLoadedContent {
    overflow: auto;
}
#cboxTitle {
    margin: 0;
}
#cboxLoadingOverlay, #cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
    cursor: pointer;
}
#cboxClose {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    background: #EEE;
    cursor: pointer;
    text-indent: -9999px;
    background: url(../img/icon_close.png) no-repeat 50% #EEE;
    border: none;
}
#cboxClose:hover {
    text-decoration: underline;
}

.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
}
.cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
/*
User Style:
Change the following styles to modify the appearance of ColorBox.  They are
ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
}
#cboxContent {
    position: relative;
    margin-top: 0;
}
.cboxIframe {
    background: #ffffff;
}
#cboxError {
    padding: 50px;
    border: 1px solid #ccc;
}
#cboxLoadedContent {
    background: #ffffff;
    padding: 40px 0 60px;
    overflow: hidden;
}
#colorbox {
    background-color: #FFF;
    overflow-x : hidden;
    outline: none;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.2);
}

@media screen and (max-width: 640px) {
/*
User Style:
Change the following styles to modify the appearance of ColorBox.  They are
ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
    padding-bottom: 20px;
}
#cboxContent {
    padding: 0;
}
.cboxIframe {
    background: #ffffff;
}
#cboxError {
    padding: 20px;
}
#cboxLoadedContent {
    padding: 0;
}
#cboxClose {
    width: 20px;
    height: 20px;
}
#cboxClose:hover {
    text-decoration: underline;
}

}