/*
    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: touch;}
#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; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#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.
*/

#cboxCurrent {
	display:none !important;
}

#cboxOverlay{background:#000; opacity: 0.9; filter: alpha(opacity = 90);}
#colorbox{outline:0;}
    #cboxContent{overflow:visible; background:#000;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{}
        #cboxLoadingGraphic{background:url(../img/loading.gif) no-repeat center center;}
        #cboxLoadingOverlay{background:#000;}
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; text-indent:-9999px; width:20px; height:20px; position:absolute; top:46%;}
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxPrevious {
			background-color:transparent;
			width:17px;
			height:30px;
			background-image:url(../img/btn_left2.png);
			background-size:17px 30px;
			background-position:center center;
			-webkit-transition:.4s;
			-moz-transition:.4s;
			transition:.4s;
			margin-left:0px;
			left:-32px;
			padding:10px;
			background-repeat:no-repeat;
		}
		
        #cboxPrevious:hover{
			margin-left:-4px;
		}
        #cboxNext{
			background-color:transparent;
			width:17px;
			height:30px;
			background-image:url(../img/btn_right.png);
			background-size:17px 30px;
			background-position:center center;
			-webkit-transition:.4s;
			-moz-transition:.4s;
			transition:.4s;
			margin-right:0px;
			right:-32px;
			padding:10px;
			background-repeat:no-repeat;
		}
        #cboxNext:hover{
			margin-right:-4px;
		}
		
		#cboxPrevious:focus, #cboxNext:focus {
			outline:none;
		}
		
		@media screen and (max-width: 999px) {
			#cboxPrevious {
				left:0px;
				top:-32px;
				width:14px;
				height:23px;
				padding:0 10px;
				background-size:14px auto;
			}
			
			#cboxNext {
				left:40px;
				top:-32px;
				right:auto;
				width:14px;
				padding:0 10px;
				height:23px;
				background-size:14px auto;
			}
		}
		
	
        #cboxClose{
			background-color:transparent;
			background-image:url(../img/btn_close.png);
			height:20px;
			width:20px;
			background-size:20px 20px;
			background-repeat:no-repeat;
			background-position:center center;
			right:0px;
			top:-32px;
		}

#cboxTitle {
	position:absolute;
	bottom:-50px;
	color:#ffffff;
	overflow:visible;
	z-index:9999;
	width:100%;
}
