/* styles used to add "tool tips" mouseover to asset model text */	
.tool_text{
	position:relative;
	z-index:24;
	font-family:Arial;
	font-size:1.0em;
	text-decoration:underline;
	cursor:pointer;cursor:hand 
	
}
.tool_text_hover{
	position:relative;
	z-index:25;
	font-family:Arial;
	font-size:1.0em;
	cursor:pointer;cursor:hand 
	
}
.tool_text span{
	display: none;
}
.tool_text_hover span{
  display:block;
	width:200px;
  position:absolute;
  border:1px solid black;
	padding:5px;
  top:25px;
  left:18px;
  background-color:#C3EBEB; color:#666;
  text-align: left;
	font-size:0.8em;
} 
/* end tool text styles */

