/*
Hoverbox Method Created by: Nathan Smith
Source: http://sonspring.com/journal/hoverbox-image-gallery

Hoverbox Code
-----------------------------------------------------------*/

.hoverbox
{
	cursor: default;
	list-style: none;
	margin:0 auto;
	padding:0;
}

.hoverbox a .preview {display: none;}

.hoverbox a:hover .preview {
	display: block;
	position: absolute;
	top: -80px;
	right:190px;
	z-index: 1;
}

.hoverbox .odd a:hover .preview {
	display: block;
	position: absolute;
	top: -80px;
	right:-80px;
	z-index: 1;
}

.hoverbox img {
}

.hoverbox li
{
	position: relative;
}

.hoverbox .preview {border-color: #000;}

/* Internet Explorer Hacks
--------------------------------------------------------------*/

* html .hoverbox a {position: relative;}
* html .hoverbox a:hover {font-size: 100%; z-index: 1;}
* html .hoverbox a:hover .preview {top: -38px; left: -50px;}
* html .hoverbox li {position: static;}
