﻿/* All form elements are within the definition list for this example */
dl {
	position: relative;
    width: 400px;
	font-size:10px;
}
dt {
    clear: both;
    float:left;
    width: 130px;
    padding: 4px 0 2px 0;
    text-align: left;
    font-weight:bold;
}
dd {
    float: left;
    width: 250px;
    margin: 0 0 8px 0;
    padding-left: 6px;
}


/* The hint to Hide and Show */
.hint {
   	display: none;
    position: absolute;
    right: -150px;
    width: 200px;
    margin-top: -4px;
    border: 1px solid #c93;
    padding: 10px 12px;
    /* to fix IE6, I can't just declare a background-color,
    I must do a bg image, too!  So I'm duplicating the pointer.gif
    image, and positioning it so that it doesn't show up
    within the box */
    background: #ffc url(../images/pointer.gif) no-repeat -10px 5px;
    z-index:100;
}

/* The pointer image is hadded by using another span */
.hint .hint-pointer {
    position: absolute;
    left: -10px;
    top: 5px;
    width: 10px;
    height: 19px;
    background: url(../images/pointer.gif) left top no-repeat;
     z-index:100;
}
span.link {
    	position: relative;
}

    span.link a span {
    	display: none;
}

span.link a:hover {
    	font-size: 99%;
    	color: #000000;
}

span.link a:hover span { 
    display: block; 
	position: absolute; 
	margin-top: -50px; 
	margin-left: 30px; 
    width: 190px; 
    padding: 5px; 
	z-index: 1000; 
	color: #000066; 
	background: #ffffff; 
	font: 12px "Arial", sans-serif;
	text-align: left; 
	text-decoration: none;
	border:solid 1px #000066;
	z-index:100;
}
span.link a:hover span div.title
{
	background:#000066;
	color:#ffffff;	
	padding-left:10px;
	font-weight:bold;
}