/**
 * CSS styles for Shadowbox.
 */

/* typography */
#sb-title-inner, #sb-info-inner, #sb-loading-inner, div.sb-message {
  color:#626262;
}

/* 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 */

 padding-top:29px;

}

#sb-border {
 border:10px solid #ffffff;
	
}


#sb-wrapper-inner {
  position: relative;
  overflow: hidden;
  height: 100px; /* explicit height helps offset children calculate their height */
  background-color:#000;
}

/* body */
#sb-body {
  position: relative;
  height: 100%;
}
#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: 24px;
  height: 24px;
  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: #000; /* should match loading image background color */
}

/* title & info */
#sb-title, #sb-info{
  position: relative;
  margin: 0; /* these must have no vertical margin or padding */
  overflow: hidden;
  background-color:#ffffff;
  width:100%;
}


#sb-title, #sb-title-inner {
 /*line-height: 35px;*/⁄
}
#sb-title-inner, #sb-counter {
  font-size: 14px;
  float:left;
  padding:5px 12px 0 0;
  color: #626262;
}

/*
#sb-info, #sb-info-inner {
 line-height: 35px;
}
#sb-info-inner {
  font-size: 14px;
  float:right;
  text-align:right;
    padding:0 5px;
}
*/

/* nav */
/*#sb-nav {
	position:absolute;
	bottom:0; 
	width:100%;
	height:50%;
 
}*/


#sb-nav-container {
	padding:10px 12px;
}
/*
#sb-nav {
	float:left;
	width:20%;
	height:15px;
}
#sb-nav2 {
	float:right;
	width:20%;
	height:15px;
}
*/
#sb-nav {
	position:absolute;
	left:10px;
	top:90px;
	width:20%;
	height:64px;
}
#sb-nav2 {
	position:absolute;
	right:10px;
	top:90px;
	width:20%;
	height:64px;
}



#sb-close {
	position:absolute;
	right:0;
	top:0;
	height:29px;
	width:29px;
	z-index:5;
}

#sb-nav a, #sb-close a {
  display: block;
  cursor: pointer;
  background-repeat: no-repeat;

}
/*#sb-close {
	float:right;

}*/

#sb-nav-close {
  background-image: url(close.jpg);
	background-position:0 -29px;
  width:29px;
  height:29px;
  margin:0 auto;

}
#sb-nav-close:hover {
  background-position:0 0;
}



#sb-nav-next {
  background-image: url(next.jpg);
  width:24px;
  height:64px;
  background-position:0 0;
  background-repeat:no-repeat;
  float:right;
}
#sb-nav-next:hover{ 
  background-position:0 -64px;	
}
#sb-nav-previous {
  background-image: url(prev.jpg);
  width:24px;
  height:64px;
  background-position:0 0;
  background-repeat:no-repeat;
  float:left;
}
#sb-nav-previous:hover {
  background-position:0 -64px;		
}
/*
#sb-nav-play {
  background-image: url(play.png);
}
#sb-nav-pause {
  background-image: url(pause.png);
}
#sb-nav-save {
  background-image: url(save.png);
}
#sb-nav-print {
  background-image: url(print.png);
}
*/


/* counter */
#sb-counter {
  float: right;

}
#sb-counter a {
  text-decoration: none;
  cursor: pointer;
  color: #626262;
}
#sb-counter a.sb-counter-current {
  text-decoration: underline;
}

/* messages */
div.sb-message {
  font-size: 12px;
  padding: 10px;
  text-align: center;
}
div.sb-message a:link, div.sb-message a:visited {
  color: #626262;
  text-decoration: underline;
}