/*
* Filename.....:infobox.css
* Aufgabe......:Stylesheet for PHP class "infobox"
* Erstellt am..:Montag,7. März 2005
*       _  __      _ _
*  ||| | |/ /     (_) |        Wirtschaftsinformatiker IHK
* \. ./| ' / _ __  _| |_ ___   www.ingoknito.de
* - ^ -|  < | '_ \| | __/ _ \  
* / - \| . \| | | | | || (_) | Peter Klauer
*  ||| |_|\_\_| |_|_|\__\___/  06131-651236
* mailto.......:knito@knito.de
*
* Changes:
* 2005-03-27: Deleted old style definitions for infobox table.
* 2005-03-15: Change: set div.infobox::left to -10000px to move it out of the way and to not display
*             the box at position 0,0 anymore after a infobox-link was clicked and the new page 
*             also uses infoboxes (and the new pages loads slow and the mouse is still hovering 
*             over an infobox link, phew!).
* 2006-03-07: New: div.infobox, div.infoboxbody and div.infoboxcaption added for new js::maketip()
*             Old js.maketip() generated a table, new js.maketip() generates a div.
*/

div.infobox{
	background: #009933;
	color:#000000;
	font:10pt sans-serif;
	left:-10000px;
	position:absolute;
	top:0px;
	visibility:hidden;
	z-index: 99;
}
div.infoboxbody{
	color:#000000;
	margin:2px;
	padding:2px;
	margin-top: 2px;	
	background-color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
}

div.infoboxcaption{
	color:#FFFFFF;
	background-color:transparent;
	text-align:center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
	height: 14px;
	vertical-align: middle;
	margin: 1px;
}

