﻿/* Derived From - http://psacake.com/web/jl.asp */
.fixedform label
{
	width: 200px;
	float: left;
	clear: left;
	display: block;
}
.fixedformwide label
{
	width: 140px;
	float: left;
	clear: left;
	display: block;
}
.fixedform
{
	padding-top: 12px;
	line-height: 25px;
	width: 350px;
}
.fixedformwide
{
	width: 500px;
	padding-top: 12px;
	line-height: 25px;
}
.fixedform input, .fixedformwide input
{
	font-size: 11px;
}
a.tooltip
{
	position: relative; /*this is the key*/
	z-index: 24;
	color: #000;
	text-decoration: none;
	border-bottom: gray thin dashed;
	font-weight: normal;
}

a.tooltip:hover
{
	z-index: 25;
	background-color: #f0f0f0;
	font-weight: normal;
}

a.tooltip span
{
	display: none;
}

a.tooltip:hover span
{
	/*the span will display just on :hover state*/
	display: block;
	position: absolute;
	top: 2em;
	left: 2em;
	width: 15em;
	background-color: buttonface;
	color: #000;
	line-height: 16px;
	text-align: left;
	border-right: gray 1px solid;
	border-top: gray 1px solid;
	border-left: gray 1px solid;
	border-bottom: gray 1px solid;
}
