/*                                                        -*-indented-text-*-
 ============================================================================
 *x Software + Systeme - xS+S - Andreas Haumer
 A-3242 TEXING, Altendorf 37 / A-1100 WIEN, Karmarschgasse 51/2/20
 Tel: +43-1-6060114-0 / Fax: +43-1-6060114-71 / EMail: office@xss.co.at
 ----------------------------------------------------------------------------
 Filename : tooltips.css
 RCSId    : $Id: tooltips.css,v 1.6 2007/05/10 12:30:54 martin Exp $
 Purpose  : cascading style sheet for tooltips
 Author   : Martin Höller <martin@xss.co.at>
 Date     : 28-Feb-2002
 Update   : $Date: 2007/05/10 12:30:54 $
 ----------------------------------------------------------------------------
*/

#xss_tooltip {
    background-color   : #FFFFC0;
    color              : black;

    font-family        : Helvetica,san-serif;
    font-size          : 12px;

    border-style       : solid;
    border-width       : 1px;
    border-color       : black;

/*    width              : 200px; */

    padding            : 0px;
    margin             : 0px;
}

#xss_tooltip_title {
    background-color   : #E0E0A0;
    color              : green;

    font-family        : Helvetica,san-serif;
    font-size          : 12px;
    font-weight        : bold;

    border-style       : solid;
    border-width       : 0px;
    border-bottom-width: 1px;
    border-top-width   : 1px;

    padding            : 2px;
    margin             : 2px;
}

#xss_tooltip_body {
    padding            : 5px;
    margin             : 5px;
}

div#tooltip {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    top: 0px;
    width: 330px;
    height: 220px;
    background-color: white;
}
	 
/* top row */
div.frametl, div.framet, div.frametr {
    position: absolute;
    top: -13px;
}

/* middle row */
div.framecl, div.ttcontent, div.framecr {
    position: absolute;
    height: 100%;
    top: 0px;
}

/* bottom row */
div.framebl, div.frameb, div.framebr {
    position: absolute;
    bottom: -13px;
    height: 13px;
}

/* center column */
div.framet, div.ttcontent, div.frameb {
    left: 0px;
    width: 100%;
    text-align: center;
    vertical-align: middle;
}

/* left column */
div.frametl, div.framecl, div.framebl {
    left: -13px;
}

/* right column */
div.frametr, div.framecr, div.framebr {
    right: -13px;
    width: 13px;
}

div.ttcontent {
	border: solid 0px;
    overflow: hidden;
}

img.frametl, img.framet, img.frametr,
img.framecl, img.framecr,
img.framebl, img.frameb, img.framebr {
	width: 13px;
	height: 13px;
}

img.framet, img.frameb {
	width: 100%;
}

img.framecl, img.framecr {
	height: 100%;
}

#ajaxStatus, #ajaxMsg, #ajaxContent #pnsId {
	display: none;
}

#ajaxContent table {
	text-align: left;
	width: 100%;
}

#ajaxContent table th {
	width: 10%;
}

#ajaxContent table td {
	text-align: center;
}

#ajaxContent div#pnsTitle {
	font-size: large;
	font-weight: bold;
	color: #FFD602;
	background-color: #213A7C;
}

#ajaxContent div#time {
	font-style: italic;
	padding-top: 5px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: solid 1px black;
}

#ajaxContent div#mvs {
	font-size: 13px;
}

#ajaxContent th {
	font-weight: normal;
}
