
/* CSS Document */

/*             styles for the star rater                */
.star-rating,
.star-rating a:hover,
.star-rating a:active,
.star-rating a:focus,
.star-rating .current-rating{
        background: url(http://find.mapmuse.com/re1/images/star.gif) left -1000px repeat-x;
}
.star-rating{
        position:relative;
        width:125px;
        height:25px;
        overflow:hidden;
        list-style:none;
        margin:0;
        padding:0;
        background-position: left top;
}
.star-rating li{
        display: inline;
}
.star-rating a,
.star-rating .current-rating{
        position:absolute;
        top:0;
        left:0;
        text-indent:-1000em;
        height:25px;
        line-height:25px;
        outline:none;
        overflow:hidden;
        border: none;
}
.star-rating a:hover,
.star-rating a:active,
.star-rating a:focus{
        background-position: left bottom;
}
.star-rating a.one-star{
        width:20%;
        z-index:6;
}
.star-rating a.two-stars{
        width:40%;
        z-index:5;
}
.star-rating a.three-stars{
        width:60%;
        z-index:4;
}
.star-rating a.four-stars{
        width:80%;
        z-index:3;
}
.star-rating a.five-stars{
        width:100%;
        z-index:2;
}
.star-rating .current-rating{
        z-index:1;
        background-position: left center;
}

/* for an inline rater */
.inline-rating{
        display:-moz-inline-block;
        display:-moz-inline-box;
        display:inline-block;
        vertical-align: middle;
}

/* for galleriffic */

div.content {
	/* The display of content is enabled using jQuery so that the slideshow content won't display unless javascript is enabled. */
	display: none;
	float: right;
	/*width: 540px; */
}
div.content a, div.navigation a {
	text-decoration: none;
	color: #777;
}
div.content a:focus, div.content a:hover, div.content a:active {
	text-decoration: underline;
}
div.controls {
	/*margin-top: 5px;*/
	height: 23px;
}
div.controls a {
	padding: 5px;
}
div.ss-controls {
	float: left;
}
div.nav-controls {
	/*width:540px;*/
	text-align:center;
	margin-top:8px;
}
div.slideshow-container {
	position: relative;
	clear: both;
	height: 400px; /* This should be set to be at least the height of the largest image in the slideshow */
}
div.loader {
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('loader.gif');
	background-repeat: no-repeat;
	background-position: center;
	/*width: 540px;*/
	height: 400px; /* This should be set to be at least the height of the largest image in the slideshow */
}
div.slideshow {
	

}
div.slideshow span.image-wrapper {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
div.slideshow a.advance-link {
	display: block;
	/*width: 540px;*/
	height: 400px; /* This should be set to be at least the height of the largest image in the slideshow */
	line-height: 400px; /* This should be set to be at least the height of the largest image in the slideshow */
	text-align: center;
}
div.slideshow a.advance-link:hover, div.slideshow a.advance-link:active, div.slideshow a.advance-link:visited {
	text-decoration: none;
}
div.slideshow img {
	vertical-align: middle;
	border: 1px solid #ccc;
	
	max-height:300px;
	/*max-width:300px;*/
	
	width:auto;

}
.advance-link img {
	max-height:360px;
	/*max-width:300px;	*/
	max-width:100%;
}
div.download {
	float: right;
}
div.caption-container {
	
}
span.image-caption {
	display: block;
	/*position: absolute;*/
}
div.caption {
	/*width:522px;*/
	border-bottom:1px solid #CCC;
	padding:8px;
}
div.caption a {
	color: #fff;
}
div.image-title {
	font-weight: bold;
	font-size: 1.4em;
}

div.image-desc {
	line-height: 1.3em;
	padding-top: 12px;
}
div.navigation {
	/* The navigation style is set using jQuery so that the javascript specific styles won't be applied unless javascript is enabled. */
}
ul.thumbs {
	clear: both;
	margin: 0;
	padding: 0;
}
ul.thumbs li {
	float: none;
	padding: 0;
	margin: 0;
	list-style: none;
}
a.thumb {
	padding: 0;
	display: inline;
	border: none;
}
ul.thumbs li.selected a.thumb {
	color: #000;
	font-weight: bold;
}
a.thumb:focus {
	outline: none;
}
ul.thumbs img {
	border: none;
	display: block;
}
div.pagination {
	clear: both;
}
div.navigation div.top {
	margin-bottom: 12px;
	height: 11px;
}
div.navigation div.bottom {
	margin-top: 12px;
}
div.pagination a, div.pagination span.current, div.pagination span.ellipsis {
	display: block;
	float: left;
	margin-right: 2px;
	padding: 4px 7px 2px 7px;
	border: 1px solid #ccc;
}
div.pagination a:hover {
	background-color: #eee;
	text-decoration: none;
}
div.pagination span.current {
	font-weight: bold;
	background-color: #000;
	border-color: #000;
	color: #fff;
}
div.pagination span.ellipsis {
	border: none;
	padding: 5px 0 3px 2px;
}
#captionToggle a {
	float: right;
	display: block;
	background-image: url('caption.png');
	background-repeat: no-repeat;
	background-position: right;
	margin-top: 5px;
	padding: 5px 30px 5px 5px;
}


/* modal infrastructure styles */

#wrapper {
		height:100%;
		min-height: 100%; 
		z-index:0;
}


#mask{  
	position:absolute; /* important */  
	top:0px; /* start from top */  
	left:0px; /* start from left */  
	height:100%; /* cover the whole page */  
	width:100%;  /* cover the whole page */  
	display:none; /* don't show it '*/  
  
	/* styling bellow */  
	background-color: black;  
	z-index:9998;
}  
  
.modal_window{  
	position:absolute; /* important so we can position it on center later */  
	display:none; /* don't show it */ 
	z-index:9999; 
  
	/* styling bellow */  
	color:white;  
}  

/* modal styles, for sharing */

.modalLook {
   background: #f5f5f5;
   background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#d9d9d9));
   background: -webkit-linear-gradient(top, #f5f5f5, #d9d9d9);
   background: -moz-linear-gradient(top, #f5f5f5, #d9d9d9);
   background: -ms-linear-gradient(top, #f5f5f5, #d9d9d9);
   background: -o-linear-gradient(top, #f5f5f5, #d9d9d9);
   padding: 8px 12px;
   color: #333;
   font-size: 20px;
   font-family: Arial, Sans-Serif;
   text-decoration: none;
   width:700px;
   height:400px;
}

.modalInner {
	padding:25px;
	padding-top:12px;
	color:#333;
	font-size:18px;
	font-family:Arial;
}

.modalTitle {
	font-size:28px;	
}
