/*
    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;}
.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{background:#fafafa;}
#colorbox{}
#cboxContent{margin-top:20px;}
.cboxIframe{background:#fff;}
#cboxError{padding:50px; border:1px solid #ccc;}
#cboxLoadedContent{border:5px solid #fafafa; background:#fafafa;}
#cboxTitle{position:absolute; top:-20px; left:5px; color:#333;}
#cboxCurrent{position:absolute; top:-20px; left:50%; color:#333;width:100px;margin-left:-50px;text-align:center;}
#cboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;}

#cboxPrevious {
    position: absolute;
    width: 50%;
    height: 96%;
    top: 2%;
    left: 0;
    margin-top: 0;
    text-indent: -9999px;
}
#cboxPrevious:after {
    content: '';
    width: 20px;
    height: 20px;
    display:block;
    position:absolute;
    left:10px;
    top:50%;
    margin-top:-10px;
    background-image: url(images/default-skin.png);
    background-position: -144px -49px;
}
/*#cboxPrevious:hover:after{background-position: -224px -49px;}*/
#cboxNext {
    position: absolute;
    width: 50%;
    height: 96%;
    top: 2%;
    right: 0;
    margin-top: 0;
    text-indent: -9999px;
}
#cboxNext:after {
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    background-image: url(images/default-skin.png);
    background-position: -100px -49px;
}
/*#cboxNext:hover:after{background-position: -180px -49px;}*/

#cboxLoadingOverlay{background:#fafafa;}
#cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
#cboxClose {
    position: absolute;
    top: -20px;
    right: 10px;
    display: block;
    background-image: url(images/default-skin.png);
    background-position: -194px -12px;
    width: 20px;
    height: 20px;
    text-indent: -9999px;
}
/*#cboxClose:hover{background-position: -12px -56px;}*/