/* ====================================================
This copyright notice must be untouched at all times.
Copyright (c) 2008 D. Archibald. All rights reserved.
This stylesheet may be modified to fit your requirements.
======================================================= */
/* Defines boxes using CSS-only which pop up when mouse hovers over link */
/* HTML usage:- 
	<a href="#" class="popup">linktexthere
	<span class="popbox">message text for pop up box</span>
	</a>
	Message may contain HTML formatting and some elements (table, ul)
*/

.popup {
	background-color: #FFFFE1; /* BG colour of link */
	}
a.popup, a.popup:visited, a.popup:hover {
	/* CSS for link text */
	text-decoration: none;
	color: #000000;
	border-bottom: 1px dotted rgb(200, 160, 0);
	}
a.popup:hover .popbox {
	visibility: visible;
}	
a.popup:hover {
	background-color: #FFFFE1; /* BG colour on hover rgb(255, 255, 225) */
	border-top: 1px dotted rgb(200, 160, 0);
	cursor: help;
	}

.popbox {
/* CSS for the pop-up box */
	width: 275px;
	position: absolute;
	background: #EFFFEF url(brcorner2.gif) bottom right no-repeat;
	visibility: hidden;
	display: inline;
	padding: 5px 5px 5px 5px;
	border: 1px #CCCCCC solid;
	text-align: left;
	font-size: 8pt;
	}
/**************************************/
