/*
    ColorBox Core Style
    The following rules are the styles that are consistant between themes.
    Avoid changing this area to maintain compatability with future versions of ColorBox.
*/
#mboxcolorbox{
	box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
	border-radius: 4px;
	background: #fff;
}

#mboxcolorbox, #mboxOverlay, #mboxWrapper{position:absolute; top:0; left:0; z-index:99999; overflow:hidden;}
#mboxOverlay{position:fixed; width:100%; height:100%;}
#mboxMiddleLeft, #mboxBottomLeft{clear:left;}
#mboxContent{position:relative; overflow:hidden;}
#mboxLoadedContent{overflow:auto;}
#mboxLoadedContent iframe{display:block; width:100%; height:100%; border:0;}
#mboxTitle{margin:0;}
#mboxLoadingOverlay, #mboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
#mboxPrevious, #mboxNext, #mboxClose, #mboxSlideshow{cursor:pointer;}

/* 
    Example user style
    The following rules are ordered and tabbed in a way that represents the
    order/nesting of the generated HTML, so that the structure easier to understand.
    here width and height are using for bug B_76331
*/
#mboxOverlay{width:100%; height:100%; background-color:rgba(0,0,0,0.5); opacity: 0.7; filter: alpha(opacity=70);}
#mboxcolorbox{}
    #mboxTopLeft{width:21px; height:21px;}
    #mboxTopRight{width:21px; height:21px; }
    #mboxBottomLeft{width:21px; height:21px;}
    #mboxBottomRight{width:21px; height:21px;}
    #mboxMiddleLeft{width:21px;}
    #mboxMiddleRight{width:21px;}
    #mboxTopCenter{height:21px;}
    #mboxBottomCenter{height:21px;}
    #mboxContent{background:#fff;}
        #mboxLoadedContent{margin-bottom:28px;}
        #mboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
        #mboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
        #mboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
        #mboxPrevious{position:absolute; bottom:0; left:0px; background:url(controls.png) -75px 0px no-repeat; width:25px; height:25px; text-indent:-9999px;}
        #mboxPrevious.hover{background-position:-75px -25px;}
        #mboxNext{position:absolute; bottom:0; left:27px; background:url(controls.png) -50px 0px no-repeat; width:25px; height:25px; text-indent:-9999px;}
        #mboxNext.hover{background-position:-50px -25px;}
        #mboxLoadingOverlay{background:url(loading_background.png) center center no-repeat;}
        #mboxLoadingGraphic{background:url(loading.gif) center center no-repeat;}
        #mboxClose{position:absolute; top:0; right:0; background:url(controls.png) -25px 0px no-repeat; width:25px; height:25px; text-indent:-9999px; display: none !important;}
        #mboxClose.hover{background-position:-25px -25px;}

/*
    The following fixes png-transparency for IE6.  
    It is also necessary for png-transparency in IE7 & IE8 to avoid 'black halos' with the fade transition
    
    Since this method does not support CSS background-positioning, it is incompatible with CSS sprites.
    Colorbox preloads navigation hover classes to account for this.
    
    !! Important Note: AlphaImageLoader src paths are relative to the HTML document,
    while regular CSS background images are relative to the CSS document.
*/
/*
  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/
*/
.mboxIE #mboxTopLeft,
.mboxIE #mboxTopCenter,
.mboxIE #mboxTopRight,
.mboxIE #mboxBottomLeft,
.mboxIE #mboxBottomCenter,
.mboxIE #mboxBottomRight,
.mboxIE #mboxMiddleLeft,
.mboxIE #mboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/*
  The following provides PNG transparency support for IE6
  Feel free to remove this and the /ie6/ directory if you have dropped IE6 support.
*/
.mboxIE6 #mboxTopLeft{background:url(borderTopLeft.png);}
.mboxIE6 #mboxTopCenter{background:url(borderTopCenter.png);}
.mboxIE6 #mboxTopRight{background:url(borderTopRight.png);}
.mboxIE6 #mboxBottomLeft{background:url(borderBottomLeft.png);}
.mboxIE6 #mboxBottomCenter{background:url(borderBottomCenter.png);}
.mboxIE6 #mboxBottomRight{background:url(borderBottomCenter.png);}
.mboxIE6 #mboxMiddleLeft{background:url(borderMiddleLeft.png);}
.mboxIE6 #mboxMiddleRight{background:url(borderMiddleRight.png);}

.mboxIE6 #mboxTopLeft,
.mboxIE6 #mboxTopCenter,
.mboxIE6 #mboxTopRight,
.mboxIE6 #mboxBottomLeft,
.mboxIE6 #mboxBottomCenter,
.mboxIE6 #mboxBottomRight,
.mboxIE6 #mboxMiddleLeft,
.mboxIE6 #mboxMiddleRight {
    _behavior: expression(this.src = this.src ? this.src : this.currentStyle.backgroundImage.split('"')[1], this.style.background = "none", this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + this.src + ", sizingMethod='scale')");
}

.mbox-footer {
	position: absolute;
    bottom: 0;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -12px;
    right: 0;
}

.mbox-header {

    top: 0;
    margin-left: -12px;
    margin-right: -12px;
    margin-top: -12px;
    left: 0;
}

.mbox-body{
	margin-left: -12px;
    margin-right: -12px;
	font-family: 'SourceSansPro-Regular';
}