/* style the outer cntaining div to fit the landscape, portrait and buttons */
#album {
width:640px;
height:450px; 
background:#f6f6f6 url(/clients/hotels/<? echo $_GET['hotel'] ?>/1.jpg) 80px 20px no-repeat;
border:1px solid #aaa;
margin:0 auto;
text-align: center;
position:relative;
}
/* 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;
/*margin:400px 0 0 0;*/
list-style-type:none;
position:absolute;
bottom: 0;
left: 15px;
width:480px;
}
/* remove the default image border */
.gallery img {
border:0;
}
/* make the list horizontal */
.gallery li {
float:left;
}
/* 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; 
color:#000; 
background:#fff;
text-align:center; 
width:26px; 
height:26px; 
line-height:24px; 
border:1px solid #444;
margin:2px;
}
/* position the images using an absolute position and hide them from view */
.gallery li a img {
position:absolute;
top:-320px;
/*left:50;*/
visibility:hidden; 
border:0;
top:-380px;
}

/* style the hover background color for the text boxes */
.gallery li a:hover {
background:#ddd;
}
/* style the active/focus colors for the text boxes (required for IE) */
.gallery li a:active, .gallery li a:focus {
background:#444; 
color:#fff;
}
/* make the images visible on active/focus */
.gallery li a:active img, .gallery li a:focus img {
visibility:visible;
}
