/* =Hoverbox Code

For some reason, IE stacks elements with position:relative above other elements
without proper regard to z-index. For that reason, the hoverbox must ONLY be
relatively positioned when hovered.

http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html

----------------------------------------------------------------------*/

.hoverbox
{
	display: block;
	text-decoration: none;
}

.hoverbox img {
	border: none;
}

a.hoverbox .preview { 
	display: none; 
}

a:hover.hoverbox
{
	position: relative;
}

a:hover.hoverbox .preview
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}


