


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

.hoverbox
{
	cursor: default;
	list-style: none;
}

.hoverbox a
{
	cursor: default;
}

.hoverbox a .preview
{
	display: none;
}

/* new pop up position, relative to <li> i think
----------------------------------------------------------------------*/
.hoverbox a:hover .preview
{
	display: block;
	position: absolute;
	top: -150px;
	left: -420px;
	z-index: 1;
}

/* individual images in the box
----------------------------------------------------------------------*/
.hoverbox img
{
	background: black;
	border-color: #aaa #ccc #ddd #bbb;
	border-style: solid;
	border-width: 0px;
	color: inherit;
	padding: 2px;
	vertical-align: top;
	width: 100px;
	
}

/* the box the images are in
----------------------------------------------------------------------*/
.hoverbox li
{
	background: black;
	border-color: #ddd #bbb #aaa #ccc;
	border-style: solid;
	border-width: 0px;
	color: inherit;
	display: inline;
	float: left;
	margin: 0px;
	padding: 0px;
	position: relative;
}

/* the pop up
----------------------------------------------------------------------*/
.hoverbox .preview
{
	border-color: #333333;
	border-width: 1px;
	width: 400px;
	
}