<!-- 
/* LINKed from Sermons.php via PHP variable $CSSLocal from include of Header1.php */
/* Copyright (C) Hal Adam 2006 */
/* Picture tooltip CSS code */
/* Initial Anchor link.  Set near top of display stack. */
/* Used to display Les Dawe's Mug shot when moving one's mouse over his name */
a.Tooltippic,a:link,a:visited {
	position:relative;
	z-index:24;
	background-color:#EDEEEF; /* Very Light Grey */
	color:#000000; /* black */
	font-family:verdana,Tahoma,arial,helvetica,geneva,sans-serif;
	font-weight:normal;
	font-size:100%;
	text-decoration:none;
	cursor:hand;
	}
/* When mouse hovers over anchor link then use this for link. */
a.Tooltippic:hover {
	z-index:25;
	background-color:#ccffcc; /* light green */
	color:#000000; /* black */
	}
/* Initial anchor Tooltip text is NOT displayed. */
a.Tooltippic span {
	display:none
	}
/* When mouse hovers over anchor link then use this for tootip text */
a.Tooltippic:hover span {
	display:block;
	position:absolute;
	top:20px;
	left:-20px;
	border:slim solid #66cc66; /* slightly darker green */
	background-color:#ccffcc; /* light green */
	color:#000000; /* black */
	padding-top:.2em;	
	padding-left:.2em;
	padding-right:.2em;
	padding-bottom:.2em;
	}
-->
