﻿
a, a:visited, a:hover, a:active {
color:#000;

}
/* style the outer containing div to fit the landscape, portrait and buttons */
#album
{
	background-position: -20px;
	top:-20;
	width: 0px;
	/*height: 450px; */
	background: #FFFFFF none;
	position: absolute;
	
}
/* 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: 0px;
	position: absolute;
	display: table-column;
	width: 100px;
	left: 20px;
}
/* remove the default image border */
.gallery img {
border:0;
}
/* make the list horizontal */
.gallery li
{
	clear: none;
	display: table-column;
	float: left;
}
/* style the link text to be central in a surrounding box */
.gallery li a, .gallery li a:visited
{
	background-position: center;
	font-size: 11px;
	float: left;
	text-decoration: none;
	color: #000;
	background: #fff;
	text-align: center;
	width: 24px;
	height: 24px;
	line-height: 24px;
	border: 1px solid #444;
	margin: 5px;
	display: table-column;
}
/* position the images using an absolute position and hide them from view */
.gallery li a img
{
	position: absolute;
	top: 0px;
	bottom: 0px;
	/*left: 200px;*/
	visibility: hidden;
	border: 0;
	height: auto;
	width: auto;
}
/* fix the top position for the landscape images */
.gallery li a img.landscape
{
	top: 20px;
	left: 150px;
	width: 600px;
	height:450px;
	border-left: 40px solid #eee;
	border-right: 40px solid #eee;
	border-top: 40px solid #eee;
	border-bottom: 40px solid #eee;
	z-index: 95;
}
/* fix the left position for the portrait images */
.gallery li a img.portrait
{
	top:20px;
	left: 150px;
	height: 504px;
	width:384px;
	border-left: 40px solid #eee;
	border-right: 40px solid #eee;
	border-top: 40px solid #eee;
	border-bottom: 40px solid #eee;
	z-index: 95;
}
/* 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;
}