/*
    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.
*/
#alertbox, #aboxOverlay, #aboxWrapper{position:absolute; top:0; left:0; z-index:99; overflow:hidden;}
#aboxOverlay{position:fixed; width:100%; height:100%;}
#aboxMiddleLeft, #aboxBottomLeft{clear:left;}
#aboxContent{position:relative; overflow:hidden;}
#aboxLoadedContent{overflow:auto;}
#aboxLoadedContent iframe{display:block; width:100%; height:100%; border:0; overflow:hidden;}
#aboxTitle{margin:0;}
#aboxLoadingOverlay, #aboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
#aboxPrevious, #aboxNext, #aboxClose, #aboxSlideshow{cursor:pointer;}

/* 
    ColorBox 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.
*/
#aboxOverlay{background:none;}

#alertbox{}
    #aboxTopLeft{width:25px; height:25px; background:url(../images/alert/border1.png) no-repeat 0 0;}
    #aboxTopCenter{height:25px; background:url(../images/alert/border1.png) repeat-x 0 -50px;}
    #aboxTopRight{width:25px; height:25px; background:url(../images/alert/border1.png) no-repeat -25px 0;}
    #aboxBottomLeft{width:25px; height:25px; background:url(../images/alert/border1.png) no-repeat 0 -25px;}
    #aboxBottomCenter{height:25px; background:url(../images/alert/border1.png) repeat-x 0 -75px;}
    #aboxBottomRight{width:25px; height:25px; background:url(../images/alert/border1.png) no-repeat -25px -25px;}
    #aboxMiddleLeft{width:25px; background:url(../images/alert/border2.png) repeat-y 0 0;}
    #aboxMiddleRight{width:25px; background:url(../images/alert/border2.png) repeat-y -25px 0;}
    #aboxContent{background:#acacac;}
        #aboxLoadedContent{margin:15px 15px 0px 15px;}
        #aboxTitle{position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#999;}
        #aboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;}
        #aboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
        #aboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
        #aboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
        #aboxLoadingOverlay{background:none 5px 5px;}
        #aboxClose{position:absolute; top:0; right:0; display:block; color:#fff; font-size:10px;}

/*
    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.
*/
.aboxIE #aboxTopLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=style/images/alert/borderTopLeft.png, sizingMethod='scale');}
.aboxIE #aboxTopCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=style/images/alert/borderTopCenter.png, sizingMethod='scale');}
.aboxIE #aboxTopRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=style/images/alert/borderTopRight.png, sizingMethod='scale');}
.aboxIE #aboxBottomLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=style/images/alert/borderBottomLeft.png, sizingMethod='scale');}
.aboxIE #aboxBottomCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=style/images/alert/borderBottomCenter.png, sizingMethod='scale');}
.aboxIE #aboxBottomRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=style/images/alert/borderBottomRight.png, sizingMethod='scale');}
.aboxIE #aboxMiddleLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=style/images/alert/borderMiddleLeft.png, sizingMethod='scale');}
.aboxIE #aboxMiddleRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=style/images/alert/borderMiddleRight.png, sizingMethod='scale');}
