div#container{width: 200px; margin:0 auto}
h{ color: #F60; margin: 1em 0 0; letter-spacing: -2px; }
p{margin: 0 0 1.7em; }

/*---------- bubble tooltip -----------*/
a.tt{
    position:relative;
    z-index:24;
    font-weight:bold;
    text-decoration:none;
}
a.tt span{ display: none; }

/*background:; ie hack, something must be changed in a for ie to execute it*/
a.tt:hover{ z-index:25;}
a.tt:hover span.tooltip{
	display:block;
	position:absolute;
	top:5px;
	left:-12px;
	/*border:1px solid #333333;*/
	width:188px;
	color: #333333;
	text-align: center;
}
a.tt:hover span.top{
	display: block;
	padding: 20px 0px 0;
	background-image: url(images/tooltipBorder_top.jpg);
	background-repeat: repeat-x;
	background-position: center bottom;
}
a.tt:hover span.middle{ /* different middle bg for stretch */
	display: block;
	background:#FFFFFF;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCCCCC;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
}
a.tt:hover span.bottom{
	display: block;
	padding:3px 8px 10px;
	background-image: url(images/tooltipBorder_bottom.jpg);
	background-repeat: repeat-x;
	background-position: center top;
}

