/**
 * 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: #eee; /* #eee */
  font-size:13px;
}
#sb-loading-inner { color:#fff;}

/* 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;
  font-size:13px;
}
#sb-overlay {
  position: relative;
  height: 100%;
  width: 100%;
  font-size:13px;
}
#sb-wrapper {
  position: absolute;
  visibility: hidden;
  width: 100px; /* explicit width helps offset children calculate their width */
  font-size:13px;
}
#sb-wrapper-inner {
  position: relative;
  padding:0; 
  margin:0;
  overflow: hidden;
  height: 100px; /* explicit height helps offset children calculate their height */
  font-size:13px;
}
#sb-border {
  position: relative;
  background-color: #3e571b; /*#574b47;*/
  
  border: 10px solid #3e571b; /* #574b47; yellow 1 */
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;

  box-shadow: 10px 10px 15px #111;
  -webkit-box-shadow: 10px 10px 15px #111;
  -moz-box-shadow: 10px 10px 15px #111;
  filter:progid:DXImageTransform.Microsoft.Shadow(color=#111111, direction=135, strength=5);
  
  text-align:center;
  font-size:13px;
}

/* body */
#sb-body {
  position: relative;
  height: 100%;  
  text-align:center;
  margin:0; padding:0;
  font-size:13px;
}
#sb-body-inner {
  position: absolute;
  height: 100%;
  width: 100%;  
  margin:0;
  padding:0;
  float:left; 
  text-align:left;
  font-size:13px;
}
#sb-player.html {
  height: 100%;
  overflow: auto; /* make html content scrollable */
  margin:0;
  padding:0;
  display:block;
  float:left;
  text-align:left;
  font-size:13px;
}
#sb-body img, #sb-body-inner img { border: none; float:left; margin:0; padding:0; border:0; text-align:left; font-size:13px; }





/********************************************
 *** loading 
 ********************************************/
 
#sb-loading {
  position: relative;
  height: 100%;
  color:#fff;
  font-size:13px;
}
#sb-loading-inner {
  position: absolute;
  font-size: 13px;
  line-height: 32px;
  height: 32px;
  top: 50%;
  margin-top: -12px;
  width: 100%;
  text-align: center;
  color:#fff;
}
#sb-loading-inner span {
  background: url(loading.gif) no-repeat;
  /*padding-left: 34px;*/
  display: inline-block;
  color:#fff;
  font-size:13px;
}
#sb-body, #sb-loading {
  background-color: #fff; /* should match loading image background color */
  color:#fff;
  font-size:13px;
}




/********************************************
 *** title & info 
 ********************************************/
 
#sb-title, #sb-info {
  position: relative;
  margin: 0; /* these must have no vertical margin or padding */
  padding: 0;
  overflow: hidden;
}
#sb-title, #sb-title-inner {
/*  height: 26px;
  line-height: 26px;*/
}
#sb-title-inner {
  padding: 5px 10px;
  font-size: 15px; color:#eee; font-weight:bold;
}


#sb-info, #sb-info-inner {
/*  height: 20px;
  line-height: 20px;*/
}
#sb-info-inner { font-size: 13px; color:#3e571b; font-weight:bold; }





/********************************
 ***    NAV BUTTONS
 ********************************/
 
#sb-nav {
  float: left;
  height: 14px;
  padding-left: 2px;
}
#sb-nav a {
	display: block;
	float: left;
	height: 14px;
	width: 14px;
	margin-left: 3px;
	cursor: pointer;
	background-repeat: no-repeat;
}


#sb-nav-next {
  background-image: url(nav.png);
  background-repeat: no-repeat;
  background-position: -14px 0px;
}
#sb-nav-next:hover {  background-position: -14px -14px; }



#sb-nav-previous {
  background-image: url(nav.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
}
#sb-nav-previous:hover { background-position: 0px -14px; }



#sb-nav-play {
  background-image: url(nav.png);
  background-repeat: no-repeat;
  background-position: -28px 0px;
}
#sb-nav-play:hover { background-position: -28px -14px; }



#sb-nav-pause {
  background-image: url(nav.png);
  background-repeat: no-repeat;
  background-position: -42px 0px;
}
#sb-nav-pause:hover { background-position: -42px -14px; }




/********************************
 ***    CLOSE BUTTON
 ********************************/
 
#sb-nav2 {
	position:absolute;
	top:-17px; right:-17px;
	float: right;
	height: 33px;
	width: 33px;
	z-index:20000;
	background-color:transparent;
}
#sb-nav2 a#sb-nav-close {
	display: block;
	background-image: url(nav_close.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	margin: 0; padding:0;
	height: 33px;
	width: 33px;
	cursor: pointer;
	background-color:transparent;
}
#sb-nav2 a#sb-nav-close:hover {
	background-position: 0 -33px;
}




/********************************
 ***    COUNTER
 ********************************/
 
#sb-counter {
  float: left;
  padding: 0 4px 0 0;
  color:#fff;
}
#sb-counter a {
  padding: 0 4px 0 0;
  text-decoration: none;
  cursor: pointer;
  color:#fff;
}
#sb-counter a.sb-counter-current {
  text-decoration: underline;
}




/********************************
 ***   MESSAGE
 ********************************/
 
div.sb-message {
  font-family: Arial,Helvetica,sans-serif;
  font-weight:bold;
  font-size: 12px;
  padding: 10px;
  text-align: center;
  color:#fff;
}
div.sb-message a:link, div.sb-message a:visited {
  color: #3e571b;
  text-decoration: underline;
  font-size:12px;
}
