/* CSS only needed for the demo */



#mainContainer{
	width:630px;
	border-left:1px solid #317082;	
	border-right:1px 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:100%;
}

#menuColumn{
	width:160px;
	float:left;
	padding:5px;
	font-size:0.9em;
}
#mainContent{
	width:440px;
	float:left;	
}

.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/buttons/arrow.gif');
	width:20px;
	position:absolute;
	left:0px;
	top:50px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
	height:150px;
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:2px solid #317082;	/* Border width */
	left:18px;	/* Same as border thickness */
	top:0px;
	position:absolute;
	width:315px;	/* Width of tooltip content */
	height:auto;	/* Height of tooltip content */
	background-color:#FFF;	/* Background color */
	padding:5px;	/* Space between border and content */
	font-size:12px;	/* Font size of content */
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
}

#tooltip_close{
	background:url('../images/buttons/cancel.png') no-repeat;
	width:53px;
	height:18px;
	display:block;
	margin: 0 0 0 0;
	border-top:2px solid #317082;	/* Border width */
	border-left:2px solid #317082;	/* Border width */
	border-right:2px solid #317082;	/* Border width */
	background-position: 5% 50%;
	font-size: 12px;
	font-weight:bold;
	text-align:right;
	color:black;
	padding: 0 5px 0 0;
}
#tooltip_close:hover{
	background:url('../images/buttons/cancel-hover.png') no-repeat;
	background-position: 5% 50%;
	text-decoration: underline;
}

.tooltip_sort_colum{
 width: 100px;
 text-align:right;
}

#expedice_tooltip {
	
	width: 305px;
	height: auto;
	padding:5px 5px 5px 5px;
}
.show_more_text{
	color:black;
	font-weight:bold;
	font-size:12px;
	background:#ffffff;
	width:200px;
}

