/* Kaufpreisliste */

#kpheader	{ 
	font-weight: bold; 
	font-size: 12px; 
	text-align: left; 
	background-color: #d5d5d5;
	padding: 4px; 
}
	
#kpspacer	{
 	padding-top: 15px; 
 	color: white;
 }
 
#kphead		{ 
	font-weight: bold; 
	font-size: 12px; 
	text-align: center; 
	background-color: #d5d5d5; 
}
#kpstrasse		{ 
	font-weight: bold; 
	font-size: 12px; 
	background-color: #d5d5d5; 
}
#kpfrei	{ 
	font-size: 11px; 
	background-color:#F1F1F1; 
	text-align: center; 
	height: 20px;
}
#kpreserviert	{ 
	font-size: 11px; 
	background-color:#F1F1F1; 
	text-align: center; 
	height: 20px;
}

#kpverkauft	{ 
	font-size: 11px; 
	background-color: #f7f7f7; 
	text-align: center; 
	color: #d9d9d9; 
	height: 20px;
}



.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
margin: 2px 5px 0px 0px;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFFFFF;
padding: 5px;
left: -5000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -150px;
left: 80px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

