/*
HoverWin
Coded by Nathan Fitzgerald
www.altiventure.com
*/

/* Z-index of #hover-mask must lower than #hover-boxes .hover-window */
#hover-mask {
  position:absolute;
  z-index:9000;
  background-color:#fff;
  display:none;
}
  
#hover-boxes .hover-window {
  position:absolute;
  width:640px;
  height:496px;
  display:none;
  z-index:9999;
  padding:10px;
  border: solid #1E1E1E 1px; /* border for the hover window */
}

/* Customize the hover window here, you can add background image too */
#hover-boxes #hover-dialog {
  width:640px;
  height:496px;
  background-color: #4A67AD;
}

#hover-boxes #hover-dialog p {
	font-size: 12px;
	font-family: Arial, Verdana, sans-serif;
	font-weight: bold;
	color: #fff;
	margin: 0 0 4px 0;
	padding: 0;
}