@charset "utf-8";
/* sidenavBubbles CSS Document adapted from: Soh Tanaka's 
	http://www.sohtanaka.com/web-design/side-navigation-tooltip-popup-bubble/
*/

ul.sidenav {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style: none;
}

ul.sidenav li {
	position: relative;
	text-align: right;
	width: 170px;
	cursor: pointer;
}

ul.sidenav li a {
	display: block;
	position: relative;
	z-index: 2;
	background-color: #E9F0C6;
	padding: 0.5em 0.75em;
	color: #005500;
	text-decoration: none;
}

ul.sidenav a.active {
	border-bottom:1px solid #811801;
	font-weight:bold;
	background-color: #FFFF99;
	color: #811801;
	overflow: hidden;
}

ul.sidenav a:hover
{
	background-color: #FFFF99;
	color: #811801;
	overflow: hidden;
}

ul.sidenav li div {
	display: none;
	position: absolute;
	top: 2px;
	left: 0px;
	width: 170px;
	font-size: 0.6em;
	background: url(../sidenavBubbles/bubble_top-ptRitnarrow-ylo.gif) no-repeat right top;
	text-align: left;
}
ul.sidenav li div p {
	margin: 8px 15px 20px 0px;
	line-height: 1.6em;
	padding: 0 5px 10px 20px;
	background: url(../sidenavBubbles/bubble_btm-narrow-ylo.gif) no-repeat right bottom;
}

/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.sidenav li
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
