@charset "utf-8";
/* CSS Document */

#popup {
	text-align: left;
	position: absolute;
	overflow: visible;
	right: -10px;
	color: #000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 10px;
	padding-top: 2px;
	padding-right: 2px;
	padding-left: 0px;
}

a.popup {
	/* This is the key. */
    position: relative;
	z-index: 11;
	text-decoration: none;
	color: #1D170D;
	font-style: normal;
	font-weight: bold;
	font-size: 10px;
}
a.popup:hover {
	z-index: 13;
	color: #FFF;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
}
a.popup span { display: none; }
a.popup:hover span.popup {
	/* The span will display just on :hover state. */
    display: block;
	position: absolute;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size: 11px;
	top: 33px;
	left: -3px;
	width: 125px;
	padding: 4px;
	border: 1px dotted #000;
	color: #CC9;
	text-align: left;
	text-transform: none;
	background-image: none;
	font-weight: normal;
	background-color: #4F3617;
}
