/* Original versions found all over the Web */
/* Modified by Dave Gash, www.hypertrain.com */
/* Further Modified by Webmaster, www.rheumatology.org */

/* --- popup tooltips --- */

/* SET STYLE FOR BASIC TIPTERM LINK */
/* basic tipterm link */
span.tipterm {
	position: relative;
	font-style: normal;
	font-weight: normal;
	color: /*#008080 #606384 */#005595;
	text-decoration: none;
}

/* SET STYLE FOR HOVERED TIPTERM LINK */
/* hovered tipterm link */
span.tipterm:hover {
cursor: pointer;
z-index: 100;
}

/* basic tooltip span */
span.tipterm span {
padding: 3px;
font-style: normal;
font-weight: normal;
display: none;
text-decoration: none;
}

/* hovered tipterm link tooltip span */
span.tipterm:hover span {
display: block;
position: absolute;
top: 20px; 
left: 25px; 
width: 300px;
border: 1px solid /*#008080*/#606384;
background-color: #ffffee; 
color: /*#008080 #606384*/#005595;
text-align: left;
}


/* --- inline definitions --- */

/* SET STYLE FOR BASIC DEFTERM LINK */
/* basic defterm link */
span.defterm {
font-weight: bold;
color: #000080;
text-decoration: none;
}

/* SET STYLE FOR HOVERED DEFTERM LINK */
/* hovered defterm link */
span.defterm:hover {
cursor: col-resize;
}

/* basic definition span */
span.defterm span {
font-weight: bold;
background-color: #ffffff;
display: none;
}

/* SET SPAN INSIDE HOVERED DEFINITION LINK */
/* hovered defterm link definition span */
span.defterm:hover span {
display: inline;
}

