/**
 * Copyright (c) 2012 Anders Ekdahl (http://coffeescripter.com/)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Version: 1.2.7
 *
 * Demo and documentation: http://coffeescripter.com/code/pg-gallery/
*/

/*
.pg-gallery : width: 542px
.pg-gallery .pg-image-wrapper : height: 400px;
.pg-gallery .pg-nav : height: 150px
.pg-gallery .pg-nav .pg-thumbs : height: 150px
*/

#gallery {
}

.pg-gallery {
	/* 582-10*/
  width: 542px;
}
.pg-gallery, .pg-gallery * {
  margin: 0;
  padding: 0;
}
.pg-gallery .pg-image-wrapper {
	width: 100%;
	height: 400px;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
}
.pg-gallery .pg-image-wrapper .pg-loader {
	position: absolute;
	z-index: 10;
	top: 48%;
	left: 48%;
	border: 1px solid #CCC;
}
.pg-gallery .pg-image-wrapper .pg-next {
	position: absolute;
	right: 0;
	top: 0;
	width: 25%;
	height: 100%;
	cursor: pointer;
	display: block;
	z-index: 200;
}
.pg-gallery .pg-image-wrapper .pg-prev {
	position: absolute;
	left: 0;
	top: 0;
	width: 25%;
	height: 100%;
	cursor: pointer;
	display: block;
	z-index: 200;
}
.pg-gallery .pg-image-wrapper .pg-prev, .pg-gallery .pg-image-wrapper .pg-next {
	/* Or else IE will hide it */
	background: url(trans.gif);
}
.pg-gallery .pg-image-wrapper .pg-prev .pg-prev-image, .pg-gallery .pg-image-wrapper .pg-next .pg-next-image {
	background: url(pg_prev.png);
	width: 30px;
	height: 30px;
	display: none;
	position: absolute;
	top: 47%;
	left: 0;
	z-index: 101;
}
.pg-gallery .pg-image-wrapper .pg-next .pg-next-image {
	background: url(pg_next.png);
	width: 30px;
	height: 30px;
	right: 0;
	left: auto;
}
.pg-gallery .pg-image-wrapper .pg-image {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 9;
}
.pg-gallery .pg-image-wrapper .pg-image a img {
	border: 0;
}
.pg-gallery .pg-image-wrapper .pg-image .pg-image-description {
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 7px;
	text-align: left;
	width: 100%;
	z-index: 2;
	background: url(opa75.png);
	color: #000;
}
* html .pg-gallery .pg-image-wrapper .pg-image .pg-image-description {
	background: none;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (enabled=true, sizingMethod=scale, src='opa75.png');
}
.pg-gallery .pg-image-wrapper .pg-image .pg-image-description .pg-description-title {
	display: block;
}
.pg-gallery .pg-controls {
	height: 20px;
}
.pg-gallery .pg-info {
	float: left;
}
.pg-gallery .pg-slideshow-controls {
	float: right;
}
.pg-gallery .pg-slideshow-controls .pg-slideshow-start, .pg-gallery .pg-slideshow-controls .pg-slideshow-stop {
	padding-left: 5px;
	cursor: pointer;
}
.pg-gallery .pg-slideshow-controls .pg-slideshow-countdown {
	padding-left: 5px;
	font-size: 0.9em;
}
.pg-gallery .pg-slideshow-running .pg-slideshow-start {
	cursor: default;
	font-style: italic;
}
.pg-gallery .pg-nav {
	height: 150px;
	width: 100%;
	position: relative;
}
.pg-gallery .pg-forward, .pg-gallery .pg-back {
	position: absolute;
	top: 0;
	height: 100%;
	z-index: 10;
}
/* IE 6 doesn't like height: 100% */
* html .pg-gallery .pg-forward, * html .pg-gallery .pg-back {
	height: 100px;
}
.pg-gallery .pg-back {
	cursor: pointer;
	left: -20px;
	width: 13px;
	display: block;
	background: url(pg_scroll_back.png) 0px 22px no-repeat;
}
.pg-gallery .pg-forward {
	cursor: pointer;
	display: block;
	right: -20px;
	width: 13px;
	background: url(pg_scroll_forward.png) 0px 22px no-repeat;
}
.pg-gallery .pg-nav .pg-thumbs {
	float: left;
	overflow: hidden;
	width: 100%;
	height: 150px;
}
.pg-gallery .pg-thumbs .pg-thumb-list {
	width: 9000px;
	list-style: none;
}
.pg-gallery .pg-thumbs li {
	float: left;
	padding-right: 5px;
}
.pg-gallery .pg-thumbs li a {
	display: block;
}
.pg-gallery .pg-thumbs li a img {
	border: 3px solid #CCC;
	display: block;
}
.pg-gallery .pg-thumbs li a.pg-active img {
	border: 3px solid #616161;
}
/* Can't do display none, since Opera won't load the images then */
.pg-preloads {
  position: absolute;
  left: -9000px;
  top: -9000px;
	max-width: 8900px;
	overflow: hidden;
}
