/* CSS only needed for the demo */


#menuColumn{
	width:160px;
	float:left;
	padding:5px;
	font-size:0.9em;
}
#mainContent{

}

.oddRow{
	background-color:#FFF;
}
.evenRow{
	background-color:#EEE;
}

.productTable{
	border:3px double #000;
}
h3{
	margin-top:0px;
}


/* End css for the demo */

/* CSS needed for the script */

#ajax_tooltipObj{
	z-index:1000000;
	text-align:left;
}
#ajax_tooltipObj div{
	position:relative;
}

/* If you don't want the arrow - Just set the width of this div to 1 or something like that and drop the background selectors from the CSS below */

#ajax_tooltipObj .ajax_tooltip_arrow{	/* Left div for the small arrow */
	background-image:url('../images/arrow.gif');
	width:20px;
	position:absolute;
	left:456px;
	top:320px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000;
	height:60px;
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:2px solid #317082;	
	left:220px;
	top:320px;
	position:absolute;
	width:350px;	
	
	background-color:#e5faeb;	
	padding:2px;	
	font-size:10px;	
	z-index:1000001;
}
#ajax_tooltipObj .ajax_tooltip_content p{
text-align:justify; }
#ajax_tooltipObj .ajax_tooltip_content h1{
font-size:12px; font-weight:bold; border-bottom: 1px dotted #333333;
}