﻿body
{
	color: rgb(0, 0, 0);
	background-color: rgb(0, 0, 0);
	background-image: url(img/bg.gif); /*background-attachment:fixed;*/
	font-family: Arial;
}

p
{
	font-family: Arial;
}

h3
{
	font-family: Arial;
}

td
{
	font: bold arial, sans-serif;
}

img
{
	border-color: #ffcc00;
}

a.info
{
	position: relative; /*this is the key*/
	z-index: 24;
	color: #00f;
}

a.info:hover
{
	z-index: 25;
}

a.info span
{
	display: none;
}

a.info:hover span
{
	/*the span will display just on :hover state*/
	display: block;
	position: absolute;
	top: 0em;
	left: 0em;
	width: 15em;
	border: 1px solid #333;
	background-color: #FFFFCC;
	color: #000;
	text-align: left;
	text-decoration: none;
	font-size: 10pt;
}
