/*
    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; background:#000; border:1px solid #000; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;}
#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; max-width: none;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}
#colorbox, #cboxContent, #cboxLoadedContent{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:#CCC;}
#colorbox{}
    #cboxContent{margin:5px;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:5px; border:1px solid #ccc;}
        #cboxLoadedContent
        {
            padding:20px 20px 20px 20px;
            border:1px solid #000; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;
            /*height:120px; min-height:120px;*/
            background:#ffffff; /* Old browsers */   
        }
        #cboxTitle{position:absolute; top:-20px; left:0; color:#ccc;}
        #cboxCurrent{position:absolute; top:-20px; right:0px; color:#ccc;}
        #cboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;}
        #cboxPrevious{position:absolute; top:50%; left:5px; margin-top:-32px; background:url(images/controls.png) no-repeat top left; width:28px; height:65px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:bottom left;}
        #cboxNext{position:absolute; top:50%; right:5px; margin-top:-32px; background:url(images/controls.png) no-repeat top right; width:28px; height:65px; text-indent:-9999px;}
        #cboxNext:hover{background-position:bottom right;}
        #cboxLoadingOverlay 
        {
            width:100%; height:100%;
            border:1px solid #000; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;
            background:#000; /* Old browsers */
            background: -moz-linear-gradient(bottom, #000 0%, #ddd 100%); /* FF3.6+ */
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000), color-stop(100%,#ddd)); /* Chrome,Safari4+ */
            background: -webkit-linear-gradient(top, #000 0%,#ddd 100%); /* Chrome10+,Safari5.1+ */
            background: -o-linear-gradient(top, #000 0%,#ddd 100%); /* Opera 11.10+ */
            background: -ms-linear-gradient(top, #000 0%,#ddd 100%); /* IE10+ */
            background: linear-gradient(to bottom, #000 0%,#ddd 100%); /* W3C */                
        }
        #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center; }
        #cboxClose 
        {
            position:absolute; top:0px; right:5px; display:block; width:38px; height:20px;
            background:url(images/controls.png) no-repeat top center; text-indent:-9999px;
            /*background:grey; 
            color:#FFF; font-weight:bold; text-align:center; font-size:14px;
            font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Arial, sans-serif; 
            border:solid #231f20 1px; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;*/
        }
        #cboxClose:hover{background-position:bottom center;}