/* CSS Document */
/* ATI -  Pop ups */
/*
function show(id, text_id) {
	document.getElementById(id).innerHTML = '<div class="show_element"><table datasrc="#index"><tr><td><span datafld="'+text_id+'"></span></td></tr></table></div>';
}
function hide(id) {
	document.getElementById(id).innerHTML = '<div class="hide_element"></div>';
}
*/
div.show_element {
	position:absolute;
	top:480;
	left:270;
	/*height: 75px;*/
	
	font-size:11px;
	text-align:justify;
	color: black;
	text-decoration: none;
	
	background-color: #78B5C8;
	/*width: 65em;*/
	padding:1em 1em 1em 1em;
	
	/*show the element*/
	display:inline;	
}
div.hide_element {
	display:none;
}