/* CSS only needed for the demo */

body,html{
	margin:0px;
	padding:0px;
	text-align:center;
	background-color:
	font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
	line-height: 130%;
	text-align:center;
	height:100%;
	width:100%;
}


#mainContainer{
	width:630px;
	border-center:1px solid #993333;	
	border-right:1px solid #993333;	
	margin:0 auto;	/* Center align content, equivalent to margin-center:auto;margin-center:auto; */
	text-align:center;	/* Override inherited text-align:center from the body tag */
	background-color:#00FF00;
	height:100%;
}

#menuColumn{
	width:160px;
	float:center;
	padding:5px;
	font-size:0.9em;
}
#mainContent{
	width:440px;
	float:center;	
}

.oddRow{
	background-color:#FFF;
}
.evenRow{
	background-color:#EEE;
}

.productTable{
	border:3px double #993333;
}
h3{
	margin-top:0px;
}


/* End css for the demo */

/* CSS needed for the script */

#ajax_tooltipObj{
	z-index:1000000;
	text-align:center;
}
#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{	/* center div for the small arrow */
	background-image:url('../images/arrow.gif');
	width:20px;
	position:absolute;
	right:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center right;
	z-index:1000005;
	height:60px;
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:2px solid #993333;	/* Border width */
	right:18px;	/* Same as border thickness */
	top:10px;
	position:absolute;
	width:160px;	/* Width of tooltip content */
	height:250px;	/* Height of tooltip content */
	background-color:#FFF8F0;	/* Background color */
	padding:0px;	/* Space between border and content */
	font-size:0.9em;	/* Font size of content */
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
}