/* CSS only needed for the demo */

body,html{
	margin:0px;
	padding:0px;
	text-align:center;
	/*background-color: #E2EBED;*/
	/*font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;*/
	line-height: 130%;
	text-align:left;
	height:100%;
	width:100%;
}


#mainContainer{
	width:300%;
	border-left:3px solid #317082;	
	border-right:3px solid #317082;	
	margin:0 auto;	/* Center align content, equivalent to margin-left:auto;margin-right:auto; */
	text-align:left;	/* Override inherited text-align:center from the body tag */
	background-color:#FFF;
	height:300%;
	
}

#menuColumn{
	width:60px;
	float:left;
	padding:5px;
	font-size:0.9em;
}
#mainContent{
	width:10px;
	float:left;	
}

.oddRow{
	background-color:#FFF;
}
.evenRow{
	background-color:#EEE;
}

.productTable{
	border:3px double #000;
}
h3{
	margin-top:0px;
}


#ajax_tooltipObj .ajax_tooltip_arrow{	/* Left div for the small arrow */
	background-image:url('../images/arrow1.gif');
	width:420px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
	height:60px;
	
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:1px solid #CCCCCC;	/* Border width */
	left:8px;	/* Same as border thickness */
    top:-120px;
	position:absolute;
	width:400px;	/* Width of tooltip content */
	height:120px;	/* Height of tooltip content */
	background-color:#F2F2F2;	/* Background color */
	padding:0px;	/* Space between border and content */
	font-size:0.8em;	/* Font size of content */
	overflow:hidden;	/* Hide overflow content */
	margin-top:0px;
	
}

/* End css for the demo */