/* style the outer cntaining div to fit the landscape, portrait and buttons */
#album {
width:420px; 
height:200px; 
background:#430926 url(gallery/01.jpg) 0 0px no-repeat;
border:1px solid #430926;
margin:14px auto 14px 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; 
margin:220px 0 0 0; 
list-style-type:none; 
position:relative; 
width:420px;
}
/* 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:#fff; 
background:#8f305f; 
text-align:center; 
width:26px; 
height:26px; 
line-height:24px; 
margin:2px;
}
/* position the images using an absolute position and hide them from view */
.gallery li a img {
position:absolute; 
top:-220px; 
left:0; 
visibility:hidden; 
border:0;
}
/* fix the top position for the landscape images */
.gallery li a img.landscape {
top:-220px;
}

/* style the hover background color for the text boxes */
.gallery li a:hover {
background:#da68a0;
color:#fff;
}

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

