/**
 * CSS styles for Shadowbox.
 */

/* 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 #303030;
  overflow: hidden;
  height: 100px; /* explicit height helps offset children calculate their height */
}
#sb-border {
	position: relative;
}

/* 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: 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-info {
	height: 42px;
	font-size: 14px;
}
#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 {
  position: relative;
}

#sb-title-inner {
	font-size: 14px;
	margin-bottom: 4px;
	padding: 0;
	color: #fff;
}

/* nav */
#sb-nav2 {
	float: right;
	height: 22px;
	width: 22px;
	display: none;
}
#sb-nav {
	position: absolute;
	right: 0;
	top: 10px;
	width: 74px;
	height: 32px;
}
#sb-nav a {
	display: block;
	width: 32px;
	height: 32px;
	cursor: pointer;
	background-image: url('/fileadmin/templates_nemeu2013/img/13/sprite.png');
	background-repeat: no-repeat;
}
#sb-nav-next {
	float: right;
	background-position: -358px -296px;
}
#sb-nav-next:hover {
	background-position: -426px -197px;
}
#sb-nav-previous {
	float: left;
	background-position: -321px -311px;
}
#sb-nav-previous:hover {
	background-position: -370px -258px;
}
a#sb-nav-close {
  display: block;
  background: url(close.png) no-repeat 0 0;
  cursor: pointer;
  display: block;
  height: 40px;
  position: absolute;
  right: -25px;
  top: -5px;
  width: 40px;
  z-index: 10;
}

/* counter */
#sb-counter {
	position: absolute;
	left: 0;
	top: 10px;
}
#sb-counter a {
	padding: 0 4px 0 0;
	text-decoration: none;
	cursor: pointer;
	color: #fff;
}
#sb-counter a:hover,
#sb-counter a.sb-counter-current {
	font-weight: bold;
}

/* messages */
div.sb-message {
  font-weight: bold;
  font-size: 11px;
  padding: 10px;
  text-align: center;
}
div.sb-message a {
	color: #fff;
}
div.sb-message a:hover {
	text-decoration: underline;
}
