/* =Hoverbox Code
----------------------------------------------------------------------*/

.hoverbox
{
	cursor: default;
	list-style: none;
}

.hoverbox a
{
	cursor: default;
}

.hoverbox a .preview
{
	display: none;
}

.hoverbox a:hover .preview /* picture displayed on hover */
{
	display: block;
	position: absolute;
	top: -33px;
	left: -45px;
	z-index: 1;
}

.hoverbox img /* picture inside mounting frame */
{
	background: #fff;
	border-color: #aaa #ccc #ddd #bbb;
	border-style: solid;
	border-width: 1px;
	color: inherit;
	padding: 2px;
	vertical-align: top;
	width: 100px; /* this is the size of the smaller thumbnails */
	height: 75px; /* this is the size of the smaller thumbnails */
}

.hoverbox li /* matrix display of images - position of block determined by position of individual pictures */
{
	background: #eee;
	border-color: #ddd #bbb #aaa #ccc; /* the external border around the masking frame */
	border-style: solid;
	border-width: 1px;
	color: inherit;
	display: inline;
	float: left;
	margin: 2px; /* space between each picture */
	padding: 5px; /* space around each picture - essentially width of mounting frame */
	position: relative;
}

.hoverbox .preview /* picture dsplayed on hover */
{
	border-color: #000;
	width: 200px; /* this is the size of the larger hovered picture */
	height: 150px; /* this is the size of the larger hovered picture */
}