/*

	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.
	NOTE - The markup below represents the DOM generated by the GalleryView plugin, NOT the markup you would include in your HTML file.
		   Refer to README.txt to review markup requirements.
	
	<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 */
#rotator {
	visibility: hidden;
}

/* GALLERY CONTAINER */
.gallery {
	background-color: #FFFFFF;
	border: 0;
	padding: 0;
	margin: 0;
}

/* LOADING BOX */
.loader { background: url(loader.gif) center center no-repeat #ddd; }

/* GALLERY PANELS */
.panel {
	padding: 0;
	margin: 0;
}

/* 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: 320px;
	padding: 10px 450px 20px 20px;
}

/* PANEL OVERLAY BACKGROUND */
.panel .overlay-background {
	background-color: transparent;
}

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay {
	color: #ffffff; 
	font-family: "Segoe UI", Arial, Helvetica, sans-serif;
	font-size: 90%;	
}
.panel .panel-overlay a {
	color: #FFCC66;
	text-decoration: underline;
	font-weight: bold;
}

.panel .panel-overlay h1 {
	font-size: 225% !important;
	margin-top: 30px;
	color: #FFFFFF !important;
}

.panel .panel-overlay h3 {
	font-size: 150% !important;
	color: #FF99FF !important;
	font-weight: normal;
}

.panel .panel-overlay h2,
.panel .panel-overlay h3 {
	color: #ffffff;
}

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip {
	margin: 0;
	padding: 0;
}

/* FILMSTRIP FRAMES (contains both images and captions) */
.frame {
	margin: 0;
	padding: 0;
}

/* WRAPPER FOR FILMSTRIP IMAGES */
.frame .img_wrap {
	border: 5px solid #000000;
	background-color: #333333;
}

/* WRAPPER FOR CURRENT FILMSTRIP IMAGE */
.frame.current .img_wrap {
	border: 5px solid #ffffff;
}

/* FRAME IMAGES */
.frame img {
	border: 0;
}

/* FRAME CAPTION */
.frame .caption {
	font-size: 14px;
	text-align: center;
	color: #ffffff; }
	

/* CURRENT FRAME CAPTION */
.frame.current .caption { color: #000; }

/* POINTER FOR CURRENT FRAME */
.pointer {
	border-color: #fff;
}

/* TRANSPARENT BORDER FIX FOR IE6 */
/* NOTE - DO NOT CHANGE THIS RULE */
*html .pointer {
	filter: chroma(color=pink);
}

/* CCS overrides */
.panel p {
	color: #ffffff;
}

.filmstrip li {
	background: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

ul,
li {
	padding: 0 !important;
	margin: 0 !important;
}

table.news ul {
	padding: 0 15px 0 15px;
}

table.news li {
	font-size: 100% !important;
	list-style: none !important;
	background: none !important;
	height: 100px !important;
	margin-top: 0px !important;
}

table.news li img {
	float: left;
	border: 1px solid #000000;
	margin-bottom: 30px !important;
}

.content h1 {
	font-size:180% !important /*Non-IE6*/;
	font-size:160% /*IE6*/;
}

.main img {
	margin:0 !important;
}
