
/*
    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: 200000;
}

#cboxOverlay {
	position: fixed;
	width: 100%;
	height: 100%;
	pointer-events: none !important;
}

#cboxWrapper {
	max-width: none;
	height: auto !important;
}

/* #cboxMiddleLeft, #cboxBottomLeft{clear:left;} */
#cboxContent {
	position: relative;
	height: auto !important;
}

#cboxLoadedContent {
	/*-webkit-overflow-scrolling: touch;*/
	height: auto !important;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
	cursor: pointer;
}

.cboxPhoto {
	float: left;
	margin: auto;
	border: 0;
	display: block;
	-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: url(images/overlay.png) repeat 0 0;*/
    background: rgba(0, 0, 0, 0.95);
}

#colorbox {
	background: url(../../../img/bg_shadow_training.png) center center no-repeat;
	background-color: #eee;
	background-size: 100% 100%;
	-webkit-box-shadow: 0px 5px 10px rgba(30, 30, 30, 0.9);
	-moz-box-shadow: 0px 5px 10px rgba(30, 30, 30, 0.9);
	box-shadow: 0px 5px 10px rgba(30, 30, 30, 0.9);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: none;
	outline: 0;
	position: fixed !important;
	top: 2% !important;
	left: 50% !important;
	line-height: 1; /* needed to remove unwanted vertical scrollbar */
	max-height: 96% !important;
	transform: translateX(-50%) !important;
	overflow-x: hidden !important;
	overflow-y: auto !important;
}

#colorbox a {
	border-bottom: 1px dotted;
}

#colorbox .button {
/*margin-top:0.5em;*/
}

/*
    #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px 0;}
    #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px 0;}
    #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px -29px;}
    #cboxBottomRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px -29px;}
    #cboxMiddleLeft{width:21px; background:url(images/controls.png) left top repeat-y;}
    #cboxMiddleRight{width:21px; background:url(images/controls.png) right top repeat-y;}
    #cboxTopCenter{height:21px; background:url(images/border.png) 0 0 repeat-x;}
    #cboxBottomCenter{height:21px; background:url(images/border.png) 0 -29px repeat-x;}
    #cboxContent{background:#222; overflow:hidden;}
*/
#cboxTopLeft,
 #cboxTopRight,
 #cboxBottomLeft,
 #cboxBottomRight,
 #cboxMiddleLeft,
 #cboxMiddleRight,
 #cboxTopCenter,
 #cboxBottomCenter {
	display: none;
}

.cboxIframe {
}

#cboxError {
	padding: 50px;
	border: 1px solid #ccc;
}

/*#cboxLoadedContent{ overflow:hidden; border:7px solid #b3aa8f; }*/

#cboxTitle {
	position: absolute;
	bottom: 4px;
	left: 0;
	text-align: center;
	width: 100%;
	color: #949494;
	margin: 0;
	display:none !important;
}

#cboxCurrent {
	position: absolute;
	bottom: 4px;
	left: 58px;
	color: #949494;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#cboxLoadingOverlay {
	background: url(images/loading_background.png) no-repeat center center;
}

#cboxLoadingGraphic {
	background: url(images/loading_2.gif) no-repeat center center;
	/*
	display:block;
	font-family: 'Fontawesome';
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height:1.0em;
	color:#333;
	font-size:12.2em;
	content:'\f054';
	*/
}

/* 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;
	width: auto;
	background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
	outline: 0;
}

#cboxSlideshow {
	position: absolute;
	bottom: 4px;
	right: 30px;
	color: #0092ef;
}



/*  left/right arrows */

#cboxPrevious,
#cboxNext {
	position:absolute;
	background:none;
	width:50%;
	height:100%;
	top:0;
	margin:0;
	filter:alpha(opacity=30);
	-moz-opacity:0.3;
	-khtml-opacity:0.3;
	opacity:0.3;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	-o-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
#cboxPrevious {
	text-align:left;
	left:0;
}
#cboxNext {
	text-align:right;
	right:0;
}

#cboxPrevious:hover,
#cboxNext:hover {
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	-khtml-opacity:0.8;
	opacity:0.8;
}

#cboxPrevious span,
#cboxNext span {
	position:absolute;
	top:50%;
	background:none;
	width:auto;
	height:auto;
	margin-top:-1.8em;
}

#cboxPrevious span {
	z-index:500;
	left:0;
	text-shadow: 2px 0px 0px #eee;
}
#cboxNext span {
	z-index:501;
	right:0;
	text-shadow: -2px 0px 0px #eee;
}

#cboxPrevious span:before,
#cboxNext span:before {
	display:block;
	font-family: 'Fontawesome';
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height:1.0em;
	color:#333;
	font-size:3.2em;
}
#cboxPrevious span:before {
	content:'\f053';
	margin-left:10px;
}
#cboxNext span:before {
	content:'\f054';
	margin-right:10px;
}

@media only screen and (max-width: 480px) {

	#cboxPrevious span:before,
	#cboxNext span:before {
		font-size:2.2em;
	}

}



#cboxClose {
	position: absolute;
	top: 3px;
	right: 4px;
	background: none;
	width: 24px;
	height: 24px;
	padding: 0;
	margin: 0;
}

#cboxClose:before {
	position: absolute;
	top: 0;
	right: 0;
	content: '\f057';
	font-family: 'Fontawesome';
	font-style: normal;
	font-weight: normal;
	font-size: 2.4em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.0em;
	color: #666;
	vertical-align: top;
}

/*
cvbcvbcvb
*/

@media only screen and (max-width: 480px) {

	#cboxClose:before {
		font-size: 2.8em;
	}

}

/*
	#cboxClose:hover{background-position:-25px -25px;}
*/
#cboxCurrent {
	display: none;
}

#cboxPrevious {
	display: none;
}

#cboxNext {
	display: none;
}
