﻿/*
    colorbox_slideshow Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox_slideshow, #cbox_slideshowOverlay, #cbox_slideshowWrapper
{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	overflow: hidden;
}
#cbox_slideshowOverlay
{
	position: fixed;
	width: 100%;
	height: 100%;
}
#cbox_slideshowMiddleLeft, #cbox_slideshowBottomLeft
{
	clear: left;
}
#cbox_slideshowContent
{
	position: relative;
}
#cbox_slideshowLoadedContent
{
	overflow: auto;
}
#cbox_slideshowTitle
{
	margin: 0;
}
#cbox_slideshowLoadingOverlay, #cbox_slideshowLoadingGraphic
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#cbox_slideshowPrevious, #cbox_slideshowNext, #cbox_slideshowClose, #cbox_slideshowSlideshow
{
	cursor: pointer;
}
.cbox_slideshowPhoto
{
	float: left;
	margin: auto;
	border: 0;
	display: block;
}
.cbox_slideshowIframe
{
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

/* 
    User Style:
    Change the following styles to modify the appearance of colorbox_slideshow.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cbox_slideshowOverlay
{
	background: url(/images/overlay.png) repeat 0 0;
}
#colorbox_slideshow
{
}
#cbox_slideshowTopLeft
{
	width: 21px;
	height: 21px;
	background: url(/images/controls.png) no-repeat -101px 0;
}
#cbox_slideshowTopRight
{
	width: 21px;
	height: 21px;
	background: url(/images/controls.png) no-repeat -130px 0;
}
#cbox_slideshowBottomLeft
{
	width: 21px;
	height: 21px;
	background: url(/images/controls.png) no-repeat -101px -29px;
}
#cbox_slideshowBottomRight
{
	width: 21px;
	height: 21px;
	background: url(/images/controls.png) no-repeat -130px -29px;
}
#cbox_slideshowMiddleLeft
{
	width: 21px;
	background: url(/images/controls.png) left top repeat-y;
}
#cbox_slideshowMiddleRight
{
	width: 21px;
	background: url(/images/controls.png) right top repeat-y;
}
#cbox_slideshowTopCenter
{
	height: 21px;
	background: url(/images/border.png) 0 0 repeat-x;
}
#cbox_slideshowBottomCenter
{
	height: 21px;
	background: url(/images/border.png) 0 -29px repeat-x;
}
#cbox_slideshowContent
{
	background: #fff;
	overflow: hidden;
}
.cbox_slideshowIframe
{
	background: #fff;
}
#cbox_slideshowError
{
	padding: 50px;
	border: 1px solid #ccc;
}
#cbox_slideshowLoadedContent
{
	margin-bottom: 28px;
}
#cbox_slideshowTitle
{
	position: absolute;
	bottom: 4px;
	left: 0;
	text-align: center;
	width: 100%;
	color: #949494;
}
#cbox_slideshowCurrent
{
	position: absolute;
	bottom: 4px;
	left: 58px;
	color: #949494;
}
#cbox_slideshowSlideshow
{
	position: absolute;
	bottom: 4px;
	right: 30px;
	color: #0092ef;
}
#cbox_slideshowPrevious
{
	position: absolute;
	bottom: 0;
	left: 0;
	background: url(/images/controls.png) no-repeat -75px 0;
	width: 25px;
	height: 25px;
	text-indent: -9999px;
}
#cbox_slideshowPrevious:hover
{
	background-position: -75px -25px;
}
#cbox_slideshowNext
{
	position: absolute;
	bottom: 0;
	left: 27px;
	background: url(/images/controls.png) no-repeat -50px 0;
	width: 25px;
	height: 25px;
	text-indent: -9999px;
}
#cbox_slideshowNext:hover
{
	background-position: -50px -25px;
}
#cbox_slideshowLoadingOverlay
{
	background: url(/images/loading_background.png) no-repeat center center;
}
#cbox_slideshowLoadingGraphic
{
	background: url(/images/loading.gif) no-repeat center center;
}
#cbox_slideshowClose
{
	position: absolute;
	bottom: 0;
	right: 0;
	background: url(/images/controls.png) no-repeat -25px 0;
	width: 25px;
	height: 25px;
	text-indent: -9999px;
}
#cbox_slideshowClose: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/
*/
.cbox_slideshowIE #cbox_slideshowTopLeft, .cbox_slideshowIE #cbox_slideshowTopCenter, .cbox_slideshowIE #cbox_slideshowTopRight, .cbox_slideshowIE #cbox_slideshowBottomLeft, .cbox_slideshowIE #cbox_slideshowBottomCenter, .cbox_slideshowIE #cbox_slideshowBottomRight, .cbox_slideshowIE #cbox_slideshowMiddleLeft, .cbox_slideshowIE #cbox_slideshowMiddleRight
{
	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.
*/
.cbox_slideshowIE6 #cbox_slideshowTopLeft
{
	background: url(/images/ie6/borderTopLeft.png);
}
.cbox_slideshowIE6 #cbox_slideshowTopCenter
{
	background: url(/images/ie6/borderTopCenter.png);
}
.cbox_slideshowIE6 #cbox_slideshowTopRight
{
	background: url(/images/ie6/borderTopRight.png);
}
.cbox_slideshowIE6 #cbox_slideshowBottomLeft
{
	background: url(/images/ie6/borderBottomLeft.png);
}
.cbox_slideshowIE6 #cbox_slideshowBottomCenter
{
	background: url(/images/ie6/borderBottomCenter.png);
}
.cbox_slideshowIE6 #cbox_slideshowBottomRight
{
	background: url(/images/ie6/borderBottomRight.png);
}
.cbox_slideshowIE6 #cbox_slideshowMiddleLeft
{
	background: url(/images/ie6/borderMiddleLeft.png);
}
.cbox_slideshowIE6 #cbox_slideshowMiddleRight
{
	background: url(/images/ie6/borderMiddleRight.png);
}

.cbox_slideshowIE6 #cbox_slideshowTopLeft, .cbox_slideshowIE6 #cbox_slideshowTopCenter, .cbox_slideshowIE6 #cbox_slideshowTopRight, .cbox_slideshowIE6 #cbox_slideshowBottomLeft, .cbox_slideshowIE6 #cbox_slideshowBottomCenter, .cbox_slideshowIE6 #cbox_slideshowBottomRight, .cbox_slideshowIE6 #cbox_slideshowMiddleLeft, .cbox_slideshowIE6 #cbox_slideshowMiddleRight
{
	_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')");
}
