/* CSS Document */

<style type="text/css">
#album {
	width:570px;
	height:304px;
	background:#FFF 0 0px no-repeat;
	border:0px solid #aaa;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
/* remove the padding margin and bullets from the list. Add a top margin and width to fit the images and a position relative */
.gallery {
padding:0 0 50px 0; 
margin:304px 0 150px 0; 
list-style-type:none; 
position:relative; 
width:570px;

}
/* remove the default image border */
.gallery img {
border:0;
}
/* make the list horizontal */
.gallery li {
float:left;
background: none;
}
.gallery li.cutaway {
background-image:url(../images/facilityimgs/cutawaysmall.jpg);
background-repeat: no-repeat;
}
.gallery li.detailing {
background-image:url(../images/facilityimgs/detailingareasmall.jpg);
background-repeat: no-repeat;
}
.gallery li.receiving {
background-image:url(../images/facilityimgs/receivingsmall.jpg);
background-repeat: no-repeat;
}
.gallery li.lounge {
background-image:url(../images/facilityimgs/loungesmall.jpg);
background-repeat: no-repeat;
}
.gallery li.lobby {
background-image:url(../images/facilityimgs/lobbysmall.jpg);
background-repeat: no-repeat;
}
.gallery li.storage {
background-image:url(../images/facilityimgs/storagesmall.jpg);
background-repeat: no-repeat;
}
.gallery li.conference {
background-image:url(../images/facilityimgs/conferencesmall.jpg);
background-repeat: no-repeat;
}
.gallery li.entrance {
background-image:url(../images/facilityimgs/entrysmall.jpg);
background-repeat: no-repeat;
}
/* style the link text to be central in a surrounding box */
.gallery li a, .gallery li a:visited {
font-size:11px;
float:left; 
text-decoration:none; 
text-align:center; 
width: 137px;
height:74px; 
line-height:24px; 

margin:2px;
}
/* position the images using an absolute position and hide them from view */
.gallery li a img {
position:absolute; 
top:-304px; 
left:0; 
visibility:hidden; 
border:0;
}
/* fix the top position for the landscape images */
.gallery li a img.landscape {
top:-304px;
}

.gallery li a img.landscape1 {
top:-304px;
visibility:visible;
}
/* fix the left position for the portrait images */
.gallery li a img.portrait {
left:0;
top:-304px;
border-left:40px solid #eee;
border-right:40px solid #eee;
}
/* style the hover background color for the text boxes */
 
/* style the active/focus colors for the text boxes (required for IE) */
.gallery li a:active, .gallery li a:focus {
background:none; 

}
/* make the images visible on active/focus */
.gallery li a:active img, .gallery li a:focus img, .gallery li a:hover img{
visibility:visible;
}


</style>

