/*
    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: visible;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;box-shadow: rgba(43, 32, 32, 0.3) 3px 4px 9px;}
#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; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}
#colorbox, #cboxContent, #cboxLoadedContent{/* box-sizing:content-box; */ -moz-box-sizing:content-box;/* -webkit-box-sizing:content-box; */}

/* 
    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-color: rgba(150,150,150,0.9); }
#colorbox{outline:0;}
    #cboxTopLeft{display: none;}
    #cboxTopRight{display: none;}
    #cboxBottomLeft{display: none;}
    #cboxBottomRight{display: none;}
    #cboxMiddleLeft{display: none;}
    #cboxMiddleRight{display: none;}
    #cboxTopCenter{display: none;}
    #cboxBottomCenter{display: none;}
    #cboxContent{/* background:#fff; */overflow: visible;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{/* margin-bottom:28px; */ #000;position: relative;}
        #cboxLoadedContent:after { width: 100%; height: 100%; display: block; content: "";position: absolute;top: 0;}
        #cboxTitle{position:absolute;bottom: 0; left:0; text-align:center; width:100%;color: #fff;height: 80px;}
        #cboxCurrent{/* position:absolute; *//* bottom:4px; *//* left:58px; *//* color:#949494; */display: none !important;}
        #cboxLoadingOverlay{background: red;}
        #cboxLoadingGraphic{background: #000;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
        #cboxPrevious{position:absolute;bottom: 50%;left: -3em;/* background:url(images/controls.png) no-repeat -50px 0; */width: 2.5em;height: 2.5em;/* text-indent:-9999px; */font-family: "rbu-www";border: 2px solid #fff;border-radius: 50%;/* padding: 1em; */line-height: 0;text-align: center;padding: 0.25em;cursor: pointer;}
        #cboxPrevious:hover{background-position:-75px -25px;}
        #cboxPrevious:before { content: "\e90b";font-size: 1.4em; color: #fff;text-indent: 0;line-height: normal;display: inline-block;}
        #cboxNext{position:absolute;bottom: 50%;right: -3em;/* background:url(images/controls.png) no-repeat -50px 0; */width: 2.5em;height: 2.5em;/* text-indent:-9999px; */font-family: "rbu-www";border: 2px solid #fff;border-radius: 50%;/* padding: 1em; */line-height: 0;text-align: center;padding: 0.25em;cursor: pointer;}
        #cboxNext:before { content: "\e90c";font-size: 1.4em; color: #fff;text-indent: 0;line-height: normal;display: inline-block;}
        /*#cboxNext:hover{background-position:-50px -25px;}*/
        #cboxClose{position:absolute;top: -1.5em;right: 0;width: 1.3em;height: 1.3em;min-width: initial;/* background: red; */font-family: "rbu-www";border: 2px solid #fff;border-radius: 50%;padding: 0em;line-height: 0;}
        #cboxClose:before {content: "\e90e";font-size: 0.6em; color: #fff;text-indent: 0;line-height: normal;display: inline-block;cursor: pointer;}


        .rbu_document #cboxContent { background: #fff; }
		.rbu_document #cboxLoadedContent { padding: 0.5em; box-shadow: none; }
		.rbu_document #cboxLoadedContent:after { display: none; }
        .rbu_document #cboxTitle { background: none; }
/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}