/* CSS only needed for the demo */

.mendoza_info{
	margin-top:10px;
	padding:0px;
	text-align:left;
	font-family: verdana;
	font-size:0.9em;
	line-height: 140%;
}

.head{
	color:#006BB1;
	text-align:left;
	font-size:1.4em;
	font-family: verdana;
}

.oddRow{
	background-color:#FFF;
}
.evenRow{
	background-color:#EEE;
}

.productTable{
	border:3px double #000;
}



/* 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 */
	width:10px;
	position:absolute;
	left:0px;
	top:0px;
	z-index:1000005;
	height:60px;
	}

#ajax_tooltipObj .ajax_tooltip_content{
	border:1px solid #006BB1;	/* Border width */
	left:18px;	/* Same as border thickness */
	top:0px;
	position:absolute;
	width:240px;	/* Width of tooltip content */
	height:280px;	/* Height of tooltip content */
	background-color:#FFF;	/* Background color */
	padding:5px;	/* Space between border and content */
	font-size:0.8em;	/* Font size of content */
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
}
