
span.tip,
div.tip 
{
	position:relative; 
	display : inline;
	width : 300px;
}



span.tip:hover,
div.tip:hover {
	font-weight : bold;	
	z-index : 100;
}

.tip img {
	display :inline;
	padding : .5em;
}

.tip .tiptext
{
	display : none;
}

.tip img.left {
	float : left;
}

.tip img.right {
	float : right;
}

span.tip:hover .tiptext,
div.tip:hover .tiptext {
	display : block;
    border:1px solid #0cf;
    background-color:#cff; 
    color:#000;
    z-index:1000000;
	font-weight : normal;
}

.tip:hover h1
.tip:hover h2
.tip:hover h3
{
	background-color:#cff;
	color: #000;
}


