/*_____________________________________________  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;
}
#sb-wrapper img {
	border: none;
}

/*____________________________________________________________________  body  */
#sb-body {
	background: #000;
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid #48555e;
}
#sb-body-inner {
	position: relative;
	height: 100%;
	margin: 0 auto;
}
#sb-content.html {
	height: 100%;
	overflow: auto; /* make html content scrollable */
}

/*_________________________________________________________________  loading  */
#sb-loading {
	background: #000 url(../images/loading.gif) center center no-repeat;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	padding-top: 10px;
}

/*____________________________________________________________  title & info  */
#sb-title, #sb-info {
	position: relative;
	margin: 0; /* these must have no vertical margin or padding */
	padding: 0;
	overflow: hidden;
}
#sb-title-inner, #sb-info-inner {
	position: relative;
	font-family: Helvetica, Arial, Sans-Serif;
	line-height: 16px;
}
#sb-title, #sb-title-inner {
	height: 26px;
	overflow: visible;
	min-width: 235px;
}
#sb-title-inner {
	font-size: 13px;
	font-weight: bold;
	padding: 0 0 15px 0;
	color: #e3e9ed;
	text-transform: uppercase;
}
#sb-info, #sb-info-inner {
	height: 65px;
	text-align: center;
	overflow: visible;
}
#sb-info-inner {
	background: url(../images/preview_bg.png) center bottom no-repeat;
	font-size: 12px;
	color: #48555e;
	width: 235px;
	margin: 0 auto;
}

/*_____________________________________________________________________  nav  */
#sb-nav {
	float: left;
	height: 50px;
	padding: 15px 5px 0 0;
	width: 155px;
}
#sb-nav a {
	display: block;
	float: right;
	height: 50px;
	width: 25px;
	margin: 0 10px 0 0;
	cursor: pointer;
}
#sb-nav-close {
	background: url(../images/close.png) center center no-repeat;
}
#sb-nav-close:hover {
	background: url(../images/close-on.png) center center no-repeat;
}
#sb-nav-next {
	background: url(../images/next.png) center center no-repeat;
}
#sb-nav-next:hover {
	background: url(../images/next-on.png) center center no-repeat;
}
#sb-nav-previous {
	background: url(../images/prev.png) center center no-repeat;
}
#sb-nav-previous:hover {
	background: url(../images/prev-on.png) center center no-repeat;
}
#sb-nav-play {
	background: url(../images/play.png) center center no-repeat;
}
#sb-nav-play:hover {
	background: url(../images/play-on.png) center center no-repeat;
}
#sb-nav-pause {
	background: url(../images/pause.png) center center no-repeat;
}
#sb-nav-pause:hover {
	background: url(../images/pause-on.png) center center no-repeat;
}

/*_________________________________________________________________  counter  */
#sb-counter {
	font-size: 12px;
	float: left;
	padding: 32px 0 0 0;
	text-align: center;
	width: 75px;
}
#sb-counter a {
	padding: 0 4px 0 0;
	text-decoration: none;
	cursor: pointer;
	color: #fff;
}
#sb-counter a.sb-counter-current {
	text-decoration: underline;
}

/*________________________________________________________________  messages  */
div.sb-message {
	font-family: Helvetica, Arial, Sans-Serif;
	font-size: 12px;
	padding: 10px;
	text-align: center;
}
div.sb-message a:link, div.sb-message a:visited {
	color: #fff;
	text-decoration: underline;
}
