/**
 * CSS styles for Shadowbox.
 */

/* typography */
#pgb-title-inner, #pgb-info-inner, div.pgb-message {
  font-family: "open sans",sans-serif;
  font-weight: 200;
  color: #505050;
}

/* container, overlay, & wrapper */
#pgb-container {
  position: fixed;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  z-index: 999;
  text-align: left;
  visibility: hidden;
  display: none;
}
#pgb-overlay {
  background: url("/skin/frontend/pneumatig/default/images/design/bck.png") transparent;
  position: relative;
  height: 100%;
  width: 100%;
}
#pgb-wrapper {
  background: url(pgb-bck2.png) 0% 100% no-repeat #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 0px 15px #000000;
  position: absolute;
  visibility: hidden;
  width: 100px; /* explicit width helps offset children calculate their width */
}
#pgb-wrapper.pgb-has-thumbs {
  background: url(pgb-bck.png) 0% 100% no-repeat #FFFFFF;
}
.pgb-has-thumbs div#pgb-wrapper-inner {
  border-left: 1px solid #CCCCCC;}

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

/* body */
#pgb-body {
  position: relative;
  height: 100%;
}
#pgb-body-inner {
  position: absolute;
  height: 100%;
  width: 100%;
}
#pgb-player.html {
  height: 100%;
  overflow: auto; /* make html content scrollable */
}
#pgb-body img {
  border: none;
}

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

/* title & info */
#pgb-title, #pgb-info {
  position: relative;
  margin: 0; /* these must have no vertical margin or padding */
  padding: 5px 10px;
  overflow: hidden;
}
#pgb-title, #pgb-title-inner {
  height: 26px;
  line-height: 26px;
}
#pgb-title-inner {
  font-size: 16px;
}
#pgb-info, #pgb-info-inner {
  height: 20px;
  line-height: 20px;
}
#pgb-info-inner {
  font-size: 12px;
}

/* nav */
#pgb-nav {
  float: right;
  height: 16px;
  padding: 2px 0;
  width: 100%;
}
#pgb-nav a {
  display: block;
  float: right;
  height: 16px;
  width: 16px;
  margin-left: 10px;
  cursor: pointer;
  background-repeat: no-repeat;
}
#pgb-nav a#pgb-nav-close {
  background-image: url(close.png);
  margin-left:20px;
}
#pgb-nav a#pgb-nav-print {
  background-image: url(print.png);
  margin-left: 20px;
 }
#pgb-nav-next {
  background-image: url(next.png);
}
#pgb-nav-previous {
  background-image: url(previous.png);
}
#pgb-nav-play {
  background-image: url(play.png);
}
#pgb-nav-pause {
  background-image: url(pause.png);
}

/* thumbnails */
#pgb-thumbs { 
position: absolute;
left: 0;
top: 0;
margin: 36px 10px 10px;
}
#pgb-thumbs a { 
cursor: pointer;
margin-bottom: 3px;
border: 1px solid #CCCCCC;
}
#pgb-thumbs a.pgb-thumb-current { 
cursor: default;
border: 1px solid #409AE0;
}

/* counter */
#pgb-counter {
  display: none;
}
/* #pgb-counter {
  float: left;
  width: 45%;
}
#pgb-counter a {
  padding: 0 4px 0 0;
  text-decoration: none;
  cursor: pointer;
  color: #505050;
}
#pgb-counter a.pgb-counter-current {
  text-decoration: underline;
}*/
/* messages */
div.pgb-message {
  font-size: 12px;
  padding: 10px;
  text-align: center;
}
div.pgb-message a:link, div.pgb-message a:visited {
  color: #505050;
  text-decoration: underline;
}

