
    /*
    videbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#videobox, #vboxOverlay, #vboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#vboxOverlay{position:fixed; width:100%; height:100%;}
#vboxMiddleLeft, #vboxBottomLeft{clear:left;}
#vboxContent{position:relative; }
#vboxLoadedContent{overflow:auto !important; -webkit-overflow-scrolling: touch;}
#vboxLoadedContent iframe{display:block; width:100%; height:100%; border:0;}
#vboxTitle{margin:0;}
#vboxLoadingOverlay, #vboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#vboxPrevious, #vboxNext, #vboxClose, #vboxSlideshow{cursor:pointer;}
.vboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.vboxIframe{width:100%; height:100%; display:block; border:0;}
#videobox, #vboxContent, #vboxLoadedContent{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 videbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#vboxOverlay{background:#000;}
#videobox{outline:0;}
    #vboxTopLeft{display:none;}
    #vboxTopRight{display:none;}
    #vboxBottomLeft{display:none;}
    #vboxBottomRight{display:none;}
    #vboxMiddleLeft{display:none;}
    #vboxMiddleRight{display:none;}
    #vboxTopCenter{display:none;}
    #vboxBottomCenter{display:none;}
    #vboxContent{overflow:hidden;margin-top:20px;}
    #vboxLoadedContent{padding:5px;}
        .vboxIframe{background:#fff;}
        #vboxError{padding:50px; border:1px solid #ccc;}
        #vboxLoadedContent{margin-bottom:28px;}
        #vboxTitle{display:none;}
        #vboxCurrent{position:absolute; top:-20px; right:0px; color:#ccc; }
        #vboxLoadingOverlay{background:#000;}
        #vboxLoadingGraphic{background:url(/images/ajax-loader.gif) center center no-repeat;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #vboxPrevious, #vboxNext, #vboxSlideshow, #vboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #vboxPrevious:active, #vboxNext:active, #vboxSlideshow:active, #vboxClose:active {outline:0;}

          
        #vboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;}
        #vboxPrevious{position:absolute; top:270px; left:5px; margin-top:-32px; background:url(/images/slideshow_prev.png) 0 0 no-repeat; width:33px; height:60px; text-indent:-9999px;}
        	#vboxPrevious:hover{background-position:bottom left;}
        #vboxNext{position:absolute; top:270px; right:25px; margin-top:-32px; background:url(/images/slideshow_next.png) 0 0 no-repeat; width:33px; height:60px; text-indent:-9999px;}
        	#vboxNext:hover{background-position:bottom right;}
        #vboxClose{position:absolute; top:5px; right:25px; display:block; background:url(/images/slideshow_close.png) 100% 0 no-repeat; width:60px; height:20px; padding-right:25px; color:#99c; text-indent:0px; text-align:right;}
        #vboxClose:hover{background-position:right top;}

/*
  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/
*/
.vboxIE #vboxTopLeft,
.vboxIE #vboxTopCenter,
.vboxIE #vboxTopRight,
.vboxIE #vboxBottomLeft,
.vboxIE #vboxBottomCenter,
.vboxIE #vboxBottomRight,
.vboxIE #vboxMiddleLeft,
.vboxIE #vboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}