/*
    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; -webkit-transform: translate3d(0,0,0);}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling:}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
#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:#000;}
#colorbox{outline:0;}
#cboxContent{margin:0; overflow:visible; background:#000;}
#cboxLoadedContent{border:1px #ccc solid; background:#333;}
#cboxLoadingGraphic{background:url(../img/common/icon_load.gif) no-repeat center center}
#cboxLoadingOverlay{display:none;}
#cboxTitle{display:none;}
#cboxCurrent{display:none;}

/*  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; text-indent:-9999px; width:20px; height:20px; background:none;}
        
/*  avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:none;}
a:focus{outline: none;}
a:active{outline: none;}

#cboxPrevious {
	position:absolute;
	top:50%;
	left:20px;
	border-bottom:1px solid #fff;
	border-left:1px solid #fff;
	width:22px;
	height:22px;
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
	outline:none;
}

#cboxNext{
	position:absolute;
	top:50%;
	right:20px;
	border-top:1px solid #fff;
	border-right:1px solid #fff;
	width:22px;
	height:22px;
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
	outline:none;
}

#cboxClose{position:absolute; top:8px; right:8px; width:30px; height:30px; background:url(../img/common/bt_close.png) no-repeat center center; opacity:0.3;}
#cboxNext:hover,
#cboxPrevious:hover,
#cboxClose:hover{opacity:0.7;}
.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious{display:none;}
.cboxSlideshow_on #cboxSlideshow{display:none;}
.cboxSlideshow_on #cboxSlideshow:hover{display:none;}
.cboxSlideshow_off #cboxSlideshow{display:none;}
.cboxSlideshow_off #cboxSlideshow:hover{display:none;}