/*

	GalleryView Stylesheet
	
	Use the CSS rules below to modify the look of your gallery.
	
	To create additional rules, use the markup below as a guide to GalleryView's architecture.
	
	<div class="gallery">
		<div class="panel">
			<img src="path/to/image.jpg" />
			<div class="panel-overlay">
				...overlay content...
			</div>
			<div class="overlay-background"></div>
		</div>
		<ul class="filmstrip">
			<li class="frame current">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
			<li class="frame">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
		</ul>
	</div>
		

*/

/* GALLERY LIST */
/* IMPORTANT - Change '#photos' to the ID of your gallery list to prevent a flash of unstyled content */
#ulGallery { visibility: hidden; }

/* GALLERY CONTAINER */
.gallery { 
	background-color: #000000; 
	border: 1px solid #999999; 
	padding: 0px; 
	margin-left: 4px; 
	margin-right: auto;
}

/* LOADING BOX */
.loader { 
	background: url(/images/default/showcase/loader.gif) center center no-repeat #BBBBBB; 
	position:absolute;
	z-index:9999;
	opacity: 1; /* fx, safari, opera, chrome */
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);  /* For IE 5-7 */      
    -MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; /* For IE 8 */
	top:0px;
	left:0px;
	width:600px;
	height:392px;
}

/* GALLERY PANELS */
.panel {}

/* DEFINE HEIGHT OF PANEL OVERLAY */
/* NOTE - It is best to define padding here as well so overlay and background retain identical dimensions */
.panel .panel-overlay,
.panel .overlay-background { height: 60px; padding: 0 0.5em; }

/* PANEL OVERLAY BACKGROUND */
.panel .descWrapper{ background: #222; }
.panel .overlay-background { background: #222; }

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay, .panel .panel-overlay p { color: #FFFFFF; font-size: 12px; }
.panel .panel-overlay a { color: #FFFFFF; text-decoration: underline; font-weight: bold; }

/* FILMSTRIP */

/*-----------------------------------------------------------------------*/
.strip_bg_wrapper { 
	background: #000000 url(/images/default/showcase/board.png) repeat-x; 
	width: 100%; 
	height: 90px; 
	position: absolute; 
	bottom: 0px
	}
.nav-next {
	background: transparent url(/images/default/showcase/next.png) no-repeat left 0;
	position: absolute;
	cursor: pointer;
	width: 34px;
	height: 90px;
	}
.nav-next:hover {
	background: transparent url(/images/default/showcase/next.png) no-repeat right 0;
	position: absolute;
	cursor: pointer;
	width: 34px;
	height: 90px;
	}
.nav-prev {
	background: transparent url(/images/default/showcase/prev.png) no-repeat left 0;
	position: absolute;
	cursor: pointer;
	width: 34px;
	height: 90px;
	}
.nav-prev:hover {
	background: transparent url(/images/default/showcase/prev.png) no-repeat right 0;
	position: absolute;
	cursor: pointer;
	width: 34px;
	height: 90px;
	}
/*-----------------------------------------------------------------------*/

/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip { margin: 10px; }

/* FILMSTRIP FRAMES (contains both images and captions) */
.frame { background: #333333;}

/* WRAPPER FOR FILMSTRIP IMAGES */
.frame .img_wrap { border: 1px solid #FFFFFF; }

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.frame.current .img_wrap { border: 1px solid #000000;}

/* FRAME IMAGES */
.frame img { border: none; }

/* FRAME CAPTION */
.frame .caption { font-size: 11px; text-align: center; color: #888; }

/* CURRENT FRAME CAPTION */
.frame.current .caption { color: #000; }

/* POINTER FOR CURRENT FRAME */
/*-----------------------------------------------------------------------*/
.pointer {
	background: transparent  url(/images/default/showcase/arrowhead.png) no-repeat; 
	width:16px; 
	height:16px;
}
/*-----------------------------------------------------------------------*/

/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
*html .pointer {
	filter: chroma(color=pink);
}

.GameInfo {
	color: #EEEEEE;
	display: block;
	float: left;
	margin-right: 20px;
	font-size: 14px;
	_display: inline;
	}
.InfoLink {
	float: right;
	position: absolute;
	z-index:999;
	bottom: 12px;
	visibility: hidden;
	}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {display: inline-block;}

/* More info button */
.MoreInfoButton {
	background: transparent url(/images/default/showcase/moreinfo_btn_right.png) no-repeat top right;
	display: block;
	float: left;
	height: 27px;
	padding-right: 6px;
	text-decoration: none;
	}
.MoreInfoButton input {
	background: transparent url(/images/default/showcase/moreinfo_btn_left.png) no-repeat;
	border: none;
	color: #FFFFFF;
	cursor: pointer;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: 27px;
	line-height: 16px;
	min-width: 80px;
	_width: 80px;
	padding: 5px 7px 5px 15px;
	*padding: 6px 0 5px 8px;
	}
.MoreInfoButton:hover input {
	background-position: bottom left;
	border: none;
	color: #FFFFFF;
	cursor: pointer;
	font-weight: bold;
	padding: 5px 7px 5px 15px;
	*padding: 6px 0 5px 8px;
	}
.MoreInfoButton:hover {
	background-position: bottom right;
	}
	
.overlayPlay {
	background: transparent url(/images/default/showcase/galleryview_playbtn-bk.png) no-repeat center;
	position: absolute;
	cursor: pointer;
	z-index:999;
	opacity: .8; /* fx, safari, opera, chrome */
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);  /* For IE 5-7 */      
    -MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /* For IE 8 */
	}
