/* CSS needed for the script */

table.addinfo	{
	width: 98%; 
	padding-bottom: 15px;
	}
	
th.addinfo	{
	text-transform: uppercase;
	font-family:Verdana,san-serif;
	vertical-align:top;
	text-align:left;
	padding-left: 5px; 
	width: 20%;
	font-size: 10pt;
	}
	
td.addinfo	{
	font-family:Verdana,san-serif;
	vertical-align:top;
	text-align:left;
	padding-left: 5px; 
	font-size: 10pt;
	}
	
table.ajax	{
	border-collapse: collapse;
	border-spacing:0;
	width: 98%;
	padding-bottom: 15px;	
	padding-left: 15px;
	}

th.ajax {
	text-transform: uppercase;
	font-family:Verdana,san-serif;
	vertical-align:top;
	text-align:left;
	border: 1px solid #A9A9A9;
	color: white;
	background: #64748B; 
	height: 20pt; 
	padding-left: 5px; 
	font-size: 10pt;;
	}
td.ajax {
	font-weight:bold;
	font-family:Verdana,san-serif;
	font-size: 10pt;
	border: 1px solid #A9A9A9; 
	padding: 5px; 
	}
	
td.cell	{
	font-family:Verdana,san-serif;
	border: 1px solid #A9A9A9; 
	padding: 5px; 
	font-size: 10pt; 
	color: black;  
	text-align: left; 
	vertical-align: top;
	}
	
#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('arrow.gif');
	width:20px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
	height:40px;
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:2px solid #317082;	/* Border width */
	left:18px;	/* Same as border thickness */
	top:0px;
	position:absolute;
	width:650px;	/* Width of tooltip content */
	height:325px;	/* 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;
}

