/**
 * CSS styles for Shadowbox.
 */

/* typography */
#sb-title-inner, #sb-info-inner, #sb-loading-inner, div.sb-message {
  font-family: "HelveticaNeue-Light","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 200;
  color: #4d4d4d;
}

/* container, overlay, & wrapper */
#sb-container {
  position: fixed;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  z-index: 999;
  text-align: left;
  visibility: hidden;
  display: none;
}
#sb-overlay {
  position: relative;
  height: 100%;
  width: 100%;
}
#sb-wrapper {
  position: absolute;
  visibility: hidden;
  width: 100px; /* explicit width helps offset children calculate their width */
}
#sb-wrapper-inner {
  position: relative;
  border: 1px solid #fff;
  overflow: hidden;
  padding-bottom: 30px;
  height: 100px; /* explicit height helps offset children calculate their height */
}
#sb-border {
	position: relative;
	background-color: #fff;
	border: 10px solid #fff; /*border-radius: 10px;
  -webkit-border-radius:  10px;
  -moz-border-radius:  10px;*/
	box-shadow: 2px 2px 15px #111;
	-webkit-box-shadow: 2px 2px 10px #111;
	-moz-box-shadow: 2px 2px 10px #111;
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#111111, direction=135, strength=10);
}

/* body */
#sb-body {
  position: relative;
  height: 100%;
  padding-bottom: 30px;
}

#sb-body-inner {
  position: absolute;
  height: 100%;
  width: 100%;
}
#sb-player.html {
  height: 100%;
  overflow: auto; /* make html content scrollable */
}
#sb-body img {
  border: none;
}

/* loading */
#sb-loading {
  position: relative;
  height: 100%;
}
#sb-loading-inner {
  position: absolute;
  font-size: 14px;
  line-height: 32px;
  height: 32px;
  top: 50%;
  margin-top: -12px;
  width: 100%;
  text-align: center;
}
#sb-loading-inner span {
  background: url(loading.gif) no-repeat;
  padding-left: 34px;
  display: inline-block;
}
#sb-body, #sb-loading {
  background-color: #fff; /* should match loading image background color */
}

/* title & info */
#sb-title, #sb-info {
  position: relative;
  margin: 0; /* these must have no vertical margin or padding */
  padding: 0;
  overflow: hidden;
}

#sb-title{
	/*padding: 10px;
	background-color: #000;
	opacity:0.8;
	-moz-opacity: 0.8;
   -khtml-opacity: 0.8;
	-webkit-opacity:0.8;*/
	display: block;
	position: absolute;
	width: 100%;
	bottom: 0;
	color: #ddd;
	z-index: 20000;
}

.caption{
	background-color: #000;
	opacity:0.8;
	-moz-opacity: 0.8;
   -khtml-opacity: 0.8;
	-webkit-opacity:0.8;
	display: inline-block;
	padding: 15px 10px;
	width: 100%;
}

#sb-title-inner {
  font-size: 13px;
  color: #333;
  /*width: 95%;*/
  /*font-style: italic;*/
  letter-spacing: 0.04em;
  padding: 5px;
  font-weight: bold;
  /*background-color: rgba(0, 0, 0, 0.85);*/
}

#sb-info-inner {
  font-size: 13px;
}

/* nav */
#sb-nav {
  float: left;
  height: 14px;
  padding-left: 2px;
}

#sb-nav2 {
	/*height: 22px;
	width: 22px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 20000;
	padding: 10px 10px 15px 10px;*/
	display: none;
}
#sb-nav a {
  display: block;
  float: left;
  /*height: 14px;
  width: 14px;*/
  height: 650px;
  width: 50%;
  /*margin-left: 3px;*/
  cursor: pointer;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 2000;
  opacity: 0.3;
  	-moz-opacity: 0.3;
   -khtml-opacity: 0.3;
	-webkit-opacity:0.3;
}

#sb-nav-next:hover,
#sb-nav-previous:hover{
	opacity: 1!important;
	-moz-opacity: 1!important;
   -khtml-opacity: 1!important;
	-webkit-opacity:1 !important;
}

#sb-nav2 a#sb-nav-close {
  display: block;
  background: url(nav.png) no-repeat -56px 0;
  margin: 6px 3px 0 0;
  height: 22px;
  width: 22px;
  cursor: pointer;
}

#sb-nav2 a#sb-nav-close:hover {
  background-position: -56px -22px;
}

#sb-nav-next {
  background: url(nav_next.png) no-repeat 99% 37%;
  position: absolute;
  right: 0;
  z-index: 1000;
}

/*#sb-nav-next:hover {
  background-position: -14px -14px;
}*/

#sb-nav-previous {
  background: url(nav_pre.png) no-repeat 0 37%;
}

/*#sb-nav-previous:hover {
  background-position: 0 -14px;
}*/

#sb-nav-play {
  background: url(nav.png) no-repeat -28px 0;
}
#sb-nav-play:hover {
  background-position: -28px -14px;
}
#sb-nav-pause {
  background: url(nav.png) no-repeat -42px 0;
}
#sb-nav-pause:hover {
  background-position: -42px -14px;
}

/* counter */
#sb-counter {
 	display: none;
}

#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: Arial,Helvetica,sans-serif;
  font-weight:bold;
  font-size: 12px;
  padding: 10px;
  text-align: center;
}
div.sb-message a:link, div.sb-message a:visited {
  color: #fff;
  text-decoration: underline;
}
