.hover_box{
	position: relative;
	z-index: 0;
	color: #FF6600;
	text-decoration: none;
	cursor:default;
}
.hover_box:hover{
background-color: transparent;
z-index: 50;
}

.hover_box span{
	position: absolute;
	background-color: #F7F7F7;
	padding: 5px;
	left: 5px;
	border: 1px solid gray;
	visibility: hidden;
	color: black;
	text-decoration: none;
	font-size: 10px;
	font-family: tahoma;
	width: 200px;
	text-align: justify;
}
.hover_box span img{
	border-width: 0;
	padding: 2px;
	float: left;
	margin-right: 3px;
}

.hover_box:hover span{
	visibility: visible;
	top: 0;
	left: 10px; 
}


