/*
    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;
}
#cboxOverlay{
	position:fixed; 
	width:100%; 
	height:100%;
}
#cboxMiddleLeft, #cboxBottomLeft{
	clear:left;
}
#cboxContent{
	position:relative;
}
#cboxLoadedContent{
	overflow:auto;
	box-shadow: 0px 1px 4px 0px rgba(0,0,0,.4);
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,.4);
	   -moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,.4);
	    -ms-box-shadow: 0px 1px 4px 0px rgba(0,0,0,.4);
      	 -o-box-shadow: 0px 1px 4px 0px rgba(0,0,0,.4);	
}
#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;
	display:block;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
.cboxIframe{
	width:100%; 
	height:100%;
	display:block; 
	border:0;
}
/* 
    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-color: rgba(0,0,0,.8);
}
#colorbox{
	border:1px solid #fff;
	box-shadow: #000 0px 0px 30px 5px; /* color, h-offset, v-offset, blur, spread */
	webkit-box-shadow: #000 0px 0px 30px 5px; 
	  -moz-box-shadow: #000 0px 0px 30px 5px; 
	   -ms-box-shadow: #000 0px 0px 30px 5px;
	    -o-box-shadow: #000 0px 0px 30px 5px;
}
#cboxContent{
	overflow:hidden;
	background-image: url(images/bg_cboxcontent.png);
	background-repeat: repeat;
	background-position: 0 0;
	background-color:#fff;
}
.cboxIframe{
	background:#fff;
}
#cboxError{
	padding:40px; 
	border:1px 
	solid #ccc;
}
#cboxLoadedContent{
	margin-bottom:45px;
}
#cboxTitle{
	position:absolute;
	text-align:left;
	color:#910091;
	bottom: 24px;
	right: 10px;
	font-weight: bold;
	font-size:13px;
	text-shadow:-1px 1px 1px #fff;
	font-family: Montserrat, Helvetica, Arial, sans-serif;
}
#cboxCurrent{
	position:absolute;
	bottom:7px;
	color:#8D8D8D;
	font-size: 11px;
	right: 10px;
	font-family: Montserrat, Helvetica, Arial, sans-serif;
}
#cboxSlideshow{
	position:absolute; 
	bottom:4px; 
	right:30px; 
}
#cboxPrevious, #cboxNext{
	position:absolute;
	bottom:9px;
	width:38px;
	height:23px;
	text-indent:-9999px;
	background-color:#18A4E9;
	background-repeat: no-repeat;
	background-image: url(images/controls.png);
	border-radius:7px;
	-webkit-border-radius:7px;
	   -moz-border-radius:7px;
	    -ms-border-radius:7px;
	     -o-border-radius:7px;
	box-shadow: inset 0px 1px 0px rgba(255,255,255,.6);
	-webkit-box-shadow: inset 0px 1px 0px rgba(255,255,255,.6);
	   -moz-box-shadow: inset 0px 1px 0px rgba(255,255,255,.6);
	    -ms-box-shadow: inset 0px 1px 0px rgba(255,255,255,.6);
      	 -o-box-shadow: inset 0px 1px 0px rgba(255,255,255,.6);
	border-width: 1px 1px 3px 1px;
	border-style: solid;
	border-color: #117CB0;
}
#cboxPrevious{
	left:10px;
	background-position: -89px -1px;
}
#cboxNext{
	left:56px;
	background-position: -50px -1px;
}
#cboxPrevious:hover, #cboxNext:hover{
	background-color:#3EB4EC;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	   -moz-transition: all .2s ease;
	    -ms-transition: all .2s ease;
	     -o-transition: all .2s ease;
}
#cboxPrevious:active, #cboxNext:active{
	background-color: #1498D8;
	box-shadow: inset 0px 2px 0px #117CB0;
	-webkit-box-shadow: inset 0px 2px 0px #117CB0;
	   -moz-box-shadow: inset 0px 2px 0px #117CB0;
	    -ms-box-shadow: inset 0px 2px 0px #117CB0;
	     -o-box-shadow: inset 0px 2px 0px #117CB0;
	transition: all .1s ease;
	-webkit-transition: all .1s ease;
	   -moz-transition: all .1s ease;
	    -ms-transition: all .1s ease;
	     -o-transition: all .1s ease;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
	    -ms-transform: translate(0, 0);
	     -o-transform: translate(0, 0);
	border-width: 1px 1px 1px 1px;
	border-style: solid;
	border-color: #117CB0;
}
#cboxLoadingOverlay{
	background:url(images/loading_background.png) no-repeat center center;
}
#cboxLoadingGraphic{
	background:url(images/loading.gif) no-repeat center center;
}
#cboxClose{
	position:absolute;
	background:url(images/controls.png) no-repeat -25px 0;
	width:25px;
	height:25px;
	text-indent:-9999px;
	right: 5px;
	top: 5px;
}
#cboxClose:hover{
	background-position:-25px -25px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/*
  The following provides PNG transparency support for IE6
  Feel free to remove this and the /ie6/ directory if you have dropped IE6 support.
*/
.cboxIE6 #cboxTopLeft{background:url(images/ie6/borderTopLeft.png);}
.cboxIE6 #cboxTopCenter{background:url(images/ie6/borderTopCenter.png);}
.cboxIE6 #cboxTopRight{background:url(images/ie6/borderTopRight.png);}
.cboxIE6 #cboxBottomLeft{background:url(images/ie6/borderBottomLeft.png);}
.cboxIE6 #cboxBottomCenter{background:url(images/ie6/borderBottomCenter.png);}
.cboxIE6 #cboxBottomRight{background:url(images/ie6/borderBottomRight.png);}
.cboxIE6 #cboxMiddleLeft{background:url(images/ie6/borderMiddleLeft.png);}
.cboxIE6 #cboxMiddleRight{background:url(images/ie6/borderMiddleRight.png);}

.cboxIE6 #cboxTopLeft,
.cboxIE6 #cboxTopCenter,
.cboxIE6 #cboxTopRight,
.cboxIE6 #cboxBottomLeft,
.cboxIE6 #cboxBottomCenter,
.cboxIE6 #cboxBottomRight,
.cboxIE6 #cboxMiddleLeft,
.cboxIE6 #cboxMiddleRight {
    _behavior: expression(this.src = this.src ? this.src : this.currentStyle.backgroundImage.split('"')[1], this.style.background = "none", this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + this.src + ", sizingMethod='scale')");
}
