/*
    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;
	-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.
*/
#cboxOverlay{
	background:#000000;
	opacity: 0.8;
	filter: alpha(opacity = 80);
}

#colorbox{
	outline:0;
}

#cboxContent{

	overflow:visible;
	background: #FFFFFF;
	padding: 10px 10px 45px 10px;
}
.cboxIframe{
	background:#fff;
}
#cboxError{
	padding:50px;
	border: 0;
}
#cboxLoadedContent{
	background:#FFFFFF;
	padding: 0;
}

#cboxLoadingGraphic{
	background:url('images/loading.gif') no-repeat center center;
}

#cboxLoadingOverlay{
	background:#FFFFFF;
}

#cboxTitle{
	position:absolute;
	bottom: 20px;
	left: 10px;
	color: #000;
}
#cboxCurrent{
	position:absolute;
	top:-22px;
	right:205px;
	text-indent:-9999px;
}


#cboxPrevious,
#cboxNext {

	padding: 0;
	margin: 0;
	border: 0;
	outline: 0;
	width: 50px;
	height: 50px;
	top: 48%;
	background: transparent;
	position:absolute;
	overflow: visible;
	display: block;
	text-indent: -1000em;
}

#cboxPrevious:after,
#cboxNext:after {
	font-family: 'mfg_labs_icons';
	content: '';
	text-indent: 0;
	color: #FFFFFF;
	background: transparent;
	border: 0;
	font-size: 40px;
	display: block;
	left: auto;
	right: auto;
	width: 50px;
	height: 50px;
	top: 0;
	position: absolute;
}



#cboxPrevious:after,
#cboxNext:after {
	background: #FFFFFF;
	color: #656565;
	opacity: 0.5;
	text-align: center;
}

#cboxPrevious:hover:after,
#cboxNext:hover:after {
	opacity: 1.0;
}

#cboxPrevious {
	left: 0;
}

#cboxPrevious:after {
	content: '\f007';
}

#cboxNext {
	right: 0;
}

#cboxNext:after {
	content: '\f006';
}

#cboxClose{
	position: relative;
	padding: 0;
	width:26px;
	height:26px;
	background: url('images/close.gif') no-repeat top center;
	margin: 5px 5px 0 0;
	float: right;
	text-indent: -1000em;
	border: 0;
}

#cboxClose:hover{

}

