/* foto-hovers */
/* [ gebaseerd op http://www.cssglobe.com/post/1305/create-resizing-thumbnails-using-overflow-property ] */

ul#fotoboekthumbs
	{
	width: 600px;
	list-style: none;
	margin: 0 0 0 -18px;
	padding 0;
	}
	
ul#fotoboekthumbs li
	{
	float:left;
	margin: 0 10px 10px 0;
	padding: 2px;
	}
	
ul#fotoboekthumbs a
	{
	display: block;
	float: left;
	width: 104px;
	height: 104px;
	line-height: 104px;
	overflow: hidden;
	position: relative;
	z-index: 1;		
	}
	
ul#fotoboekthumbs a img
	{
	float: left;
	position: absolute;
	top: -18px;
	left: -54px;
	}
	
ul#fotoboekthumbs a:hover
	{
	overflow: visible;
	z-index: 10;
	border: none;		
	}
	
ul#fotoboekthumbs a:hover img
	{
	}