@charset "utf-8";
/* CSS Document */

/* Hoverbox Code */
.hoverbox
{
  cursor: default;
  list-style: none;
}

.hoverbox a
{
  cursor: pointer;
}

.hoverbox a .preview
{ 
  display:none;
}

.hoverbox:hover
{
   z-index:100;
}

.hoverbox a:hover .preview#center
{
  display: block;
  position: absolute;
  top: -33px;
  left: -45px;
  z-index: 1;
}

.hoverbox a:hover .preview#right
{
  display: block;
  position: absolute;
  top: -33px;
  left: -133px; /* -45px */
  z-index: 2;
}

.hoverbox img
{
  background:#fff;
  border:1px outset #4b4a42; 
  margin:0;
  color: inherit;
  padding:1px;
  vertical-align:top;
}

.hoverbox
{
  background: #fff;
  color: inherit;
  display: inline;
  float: left;
  position: relative;
}

.hoverbox .preview
{
  border:1px solid #4b4a42;
}

