#gallery {
	position: static;
	height: 98%;
	border: 0px solid #000000;
	overflow-y: auto;
	padding-top: 10px;
	padding-left: 30px;
	background-color: #99a4aa;
}

.galleryitem { 
	float: left;
	height: 180px;
	width: 180px;
	text-align: center;
}

.galleryitem img {
	padding: 0px;
	padding-bottom: 0px;
}

.gallery_spacer {
	float: left;
	height: 180px;
	width: 90px;
}

.gallery_break {
	float: left;
	width: 1000px;
	height: 35px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	vertical-align: middle;
	font-size: 25px;
}

#fs_main {
	display: none;
	position: fixed;
	top: 116px;
	bottom: 18px;
	width: 1134px;
	z-index: 100;
}

#fs_table {
	position: static;
	width: 100%;
	height: 100%;
	border-collapse: collapse;
	border: none;
	background-color: #99a4aa;
}

#fs_title_row {
	height: 25px;
}

#fs_title_td {
	width: 100%;
	padding-bottom: 20px;
	text-align: center;
	font-size: 20px;
	background-color: #99a4aa;
}

#fs_image_td {
	width: 100%;
	height: 100%;
	max-height: 100%;
	max-width: 100%;
	text-align: center;
	vertical-align: middle;
}

#fs_image_load {
	position: fixed;
	top: 50%;
	width: 1134px;
	text-align: center;
}

#fs_image_div {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	text-align: center;
}

#fs_image_src {
	
}

#fs_info td {
	height: 50px;
	text-align: center;
	background-color: #99a4aa;
}

#fs_bottom_spacer td {
	height: 10px;
	text-align: center;
	background-color: #99a4aa;
}

#fs_image_src .visible {
	-webkit-animation: fadein 1.5s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 1.5s; /* Firefox < 16 */
	-ms-animation: fadein 1.5s; /* Internet Explorer */
	-o-animation: fadein 1.5s; /* Opera < 12.1 */
	animation: fadein 1.5s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}