/* CSS Document */

/* default link style - needed to make the :active work correctly in IE */
.gallery a, .gallery a:visited, .gallery a:hover, .gallery a:active {
color:#000;
}
/* style the outer cntaining div to fit the landscape, portrait and buttons */
#album {
width:520px; 
height:508px; 
background:#AF363E;
border:1px solid #990000;
_border:none;
margin:20px 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:0 0 390px 0; background-color:#D1212A;
list-style-type:none; 
position:relative; 
width:520px;
}
/* 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:#AF363E;
text-align:center; 
width:68px; 
height:50px; 
line-height:10px; 
border:2px solid #FFF;
margin:2px 1px 1px;
}
/* position the images using an absolute position and hide them from view */
.gallery li a img.po {
position:absolute; 
top:118px; 
left:0; 
visibility:hidden; 
border:0;
}
.vi {
	width:68px;
	height:50px;
}
/* fix the top position for the landscape images */
.gallery li a img.landscape {
top:-580px;
}
/* fix the left position for the portrait images */
.gallery li a img.po {
/*left:40px;*/
}
/* style the hover background color for the text boxes */
.gallery li a:hover {
background:#C00;
}
/* 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;
}
#spacing { width:520px; text-align:center; 
padding:20px 0 20px;
_padding:0px 0 20px; }