body{   color:black;    background-image:URL(../webimages/marble_background.jpg);  font-size:100%;	width:1000px;	}
        a:link{  	color:#0044dd;  }
        a:visited{       color:#00dd44;  }
        a:hover{ 	color:orange;   }
	a:active{	color:red;	}
alertfont{		color:red;	font-weight:normal;	text-decoration:underline;	}
table.external{		font-size:100%;	font-family:nornal;	}
table.internal{		font-size:80%;	font-family:Helvetica;	}
.footnote{		font-size:90%;	background-color:#CCCCCC;	padding:12px;	margin-left:15px;	}
fnsymbol{		font-size:80%;	background-color:#222222;	color:white;	}
ul ol{	list-style-type:cjk-ideographic	}

div.window {  /* Specifies size and border of the window */
    position: absolute;            /* The position is specified elsewhere */
    width: 160px; height: 200px;   /* Window size, not including borders */
    border: 2px outset yellow;       /* Note 3D "outset" border effect */
}

div.titlebar {  /* Specifies position, size, and style of the titlebar */
    position: absolute;      /* It's a positioned element */
    top: 0px; height: 18px;  /* Titlebar is 16px + padding and borders */
    width: 150px;            /* 290 + 5px padding on left and right = 300 */
    background-color: #b94;  /* Titlebar color */
    border-bottom: groove gray 2px;  /* Titlebar has border on bottom only */
    padding: 3px 5px 2px 5px;  /* Values clockwise: top, right, bottom, left */
    font: bold 11pt sans-serif;       /* Title font */
}

div.content {  /* Specifies size, position and scrolling for window content */
    position: absolute;         /* It's a positioned element */
    top: 25px;                  /* 18px title+2px border+3px+2px padding */
    height: 165px;              /* 200px total - 25px titlebar - 10px padding*/
    width: 150px;               /* 300px width - 10px of padding */
    padding: 5px;               /* Allow space on all four sides */
    overflow: auto;             /* Give us scrollbars if we need them */
    background-color: #ffffff;  /* White background by default */
}

div.translucent { /* this class makes a window partially transparent */
    opacity: .75;               /* Standard style for transparency */
    -moz-opacity: .75;          /* Transparency for older Mozillas */
    filter: alpha(opacity=75);  /* Transparency for IE */
}

.tooltipShadow {
    background: url(../webimages/shadow.png);  /* translucent shadow */
}

.tooltipContent {
    left: -4px; top: -4px;        /* how much of the shadow shows */
    background-color: #ccddff;       /* yellow background */
    border: solid black 0px;      /* thin black border */
    padding: 5px;                 /* spacing between text and border */
    font: bold 10pt sans-serif;   /* small bold font */
}


