
/* Main page rollover  */

.rollover_toprow a, .rollover_botrow a {
	position:relative;
}/* set stacking context -*/

/* Note that opera has a nasty bug and requires the anchor to hidden with top:-999em and not visibility or display*/
.rollover_toprow a, .rollover_botrow a {
	text-decoration:none;
}

/* style the TCYS Tips in the rollover */
#content .rollover_toprow a span h2, #content .rollover_botrow a span h2 {
	color:#84bf0e;  /* green */
}

.rollover_toprow a span, .rollover_botrow a span {
	top:-999em;/* hide message initially*/
	position:absolute;
	left:50px;
	width:400px;
	padding:5px;
	background:#fff; /* 53c199 */
	color:#000;  /* text */
	border:4px solid green;
	text-decoration:none;
	z-index:100;  /* ensures that the spans are on top of the picture */
}

.rollover_toprow a:hover, .rollover_botrow a:hover {
	visibility:visible;
}/* ie bug needed to make span show*/

.rollover_toprow a:hover span {
	top:-170px;  /* -125 */
}/* show image on hover position the top of the rollovers */

.rollover_botrow a:hover span {
	top:-525px; /* -350 */
}/* show image on hover position the top of the rollovers */

/* force the bottom left image to line up */ 
.rollover_botrow1 a:hover span {
	top:-435px;
}

a img {
	border:none;
}

/* overide list formatting */
#content .rollover_toprow ul li, #content .rollover_botrow ul li {
	list-style-type:disc;
	list-style-position:outside;
	padding-left:0px;
	margin-left:15px;
	font-size:90%;
	color:#84bf0e;  /* green */
	background:none;
}

/* End Main page rollover  */