
/* default link style - needed to make the :active work correctly in IE */
a, a:visited, a:hover, a:active {
color:#000;
}
/* style the outer cntaining div to fit the landscape, portrait and buttons */
#album {
	margin-top: 180px;
}
/* remove the padding margin and bullets from the list. Add a top margin and width to fit the images and a position relative */
.gallery {
	width:320px;
	height:360px;
	padding:0;
	list-style-type:none;
	position:relative;
	text-align: center;
	margin-top: -200px;
	margin-left: -25px;
	margin-right: 15px;
}
/* remove the default image border */
.gallery img {
border:0;
}
/* make the list horizontal */
.gallery li {
	float:left;
	padding-bottom: 10px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
/* style the link text to be central in a surrounding box */
.gallery li a, .gallery li a:visited {
	float:left;
	text-decoration:none;
	color:#000;
	background:#fff;
	text-align:center;
	border:1px solid #444;
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 22px;
}
/* position the images using an absolute position and hide them from view */
.gallery li a img {
position:absolute; 
top:65px; 
left:0; 
visibility:hidden; 
border:0;
margin: 0px;

}

/* 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;
	padding-top: 7px;
}

.eighty {
	height: 50px;
	width: 50px;
	background-image: url(../images/houseSM.gif);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	text-align: center;
	padding: 0px;
	margin: 0px;
}

