/**
* The default CSS for Shadowbox.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publishing formats. Shadowbox is written entirely
* in JavaScript and CSS and is highly customizable. Using Shadowbox, website
* authors can showcase a wide assortment of media in all major browsers without
* navigating users away from the linking page.
*
* You should have received a license with this distribution explaining the terms
* under which Shadowbox may be used. If you did not, you may obtain a copy of the
* license at http://shadowbox-js.com/LICENSE
*
* @author      Michael J. I. Jackson <michael@mjijackson.com>
* @copyright   2007-2009 Michael J. I. Jackson
* @version     SVN: $Id: shadowbox.css 26 2009-04-29 05:17:01Z mjijackson.com $
*/

/*_____________________________________________  container, overlay, & wrapper  */
#sb-container, #sb-wrapper {
	text-align: left; /* reset left alignment */
}
#sb-container, #sb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 0;
}
#sb-container {
	height: 100%;
	display: none;
	visibility: hidden;
	z-index: 999;
}
body > #sb-container {
	/* use position:fixed in modern browsers */
	position: fixed;
}
#sb-overlay {
	/* needed in IE6 where sb-container uses position:absolute */
	height: expression(document.documentElement.clientHeight + 'px');
}
#sb-container > #sb-overlay {
	/* use for sb-container position:fixed */
	height: 100%;
}

/*_________________________________________________________________  wrapper  */
#sb-wrapper {
	position: relative;
	padding:0;
}
#sb-wrapper img {
	border: none;
}

/*____________________________________________________________________  body  */
#sb-body {
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border:10px solid white;
}
#sb-body-inner {
	position: relative;
	height: 100%;
}
#sb-content.html {
	height: 100%;
	overflow: auto; /* make html content scrollable */
}

/*_________________________________________________________________  loading  */
#sb-loading {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	padding-top: 10px;
}

#sb-loading a {
	display:none;
}

#sb-body, #sb-loading {
	background: url(../img/ajax-indicators/5.gif) center center no-repeat white;
}

/*____________________________________________________________  title & info  */
#sb-info {
	background:white;
}

#sb-title {
	color:white;
}

#sb-title, #sb-info {
	margin: 0; /* these must have no vertical margin or padding */
	padding: 0;
	overflow: hidden;
}
#sb-title-inner, #sb-info-inner {
	font-family: 'Lucida Grande', Tahoma, sans-serif;
	line-height: 16px;
}
#sb-title, #sb-title-inner {
	height: 26px;
}
#sb-title-inner {
	font-size: 16px;
	padding: 5px 0;
}
#sb-info, #sb-info-inner {
	height: 30px;
}
#sb-info-inner {
	font-size: 12px;
}

/*_____________________________________________________________________  nav  */
#sb-nav {
	float: right;
	width: 45%;
	padding-right:10px;
}
#sb-nav a {
	display: block;
	float: right;
	height: 16px;
	width: 16px;
	margin-left: 3px;
	cursor: pointer;
}
#sb-nav a#sb-nav-close {
	background-image: url(../img/shadowbox/closelabel.gif);
	background-repeat: no-repeat;
	width:66px;
	height:22px;
}

#sb-nav a#sb-nav-next {
/*	background: url(../img/shadowbox/nextlabel.gif) no-repeat -100% 0;
	_background-position:100% 0;
	position:absolute;
	right:0;
	top:15%;
	width:49%;
	height:70%;
	_width:expression(this.parentNode.parentNode.parentNode.parentNode.clientWidth/2 + 'px');
	_height:expression(this.parentNode.parentNode.parentNode.parentNode.clientHeight/1.5 + 'px');*/
	width:63px;
	height:32px;
	display:block;
	background: url(../img/shadowbox/nextlabel.gif) no-repeat 0 -5px;
}

#sb-nav a#sb-nav-next:hover {
/*	background-position:100% 0;*/
}

#sb-nav a#sb-nav-previous:hover {
/*	background-position:0 0;*/
}

#sb-nav a#sb-nav-previous {
/*	background: url(../img/shadowbox/prevlabel.gif) no-repeat -100% 0;
	position:absolute;
	left:0;
	top:15%;
	width:49%;
	height:70%;
	_background-position:0 0;
	_width:expression(this.parentNode.parentNode.parentNode.parentNode.clientWidth/2 + 'px');
	_height:expression(this.parentNode.parentNode.parentNode.parentNode.clientHeight/1.5 + 'px');
*/
	width:63px;
	height:32px;
	display:block;
	background: url(../img/shadowbox/prevlabel.gif) no-repeat 0 -5px;
}

#sb-nav-play {
	background-image: url(../img/shadowbox/play.png);
	background-repeat: no-repeat;
}
#sb-nav-pause {
	background-image: url(../img/shadowbox/pause.png);
	background-repeat: no-repeat;
}

/*_________________________________________________________________  counter  */
#sb-counter {
	float: left;
	padding: 3px 0 5px 10px;
	width: 45%;
}
#sb-counter a {
	padding: 0 4px 0 0;
	text-decoration: none;
	cursor: pointer;
	color: #000;
}
#sb-counter a.sb-counter-current {
	text-decoration: underline;
}

/*________________________________________________________________  messages  */
div.sb-message {
	font-family: 'Lucida Grande', Tahoma, sans-serif;
	font-size: 12px;
	padding: 10px;
	text-align: center;
}
div.sb-message a:link, div.sb-message a:visited {
	color: black;
	text-decoration: underline;
}