Here is my global.css and an .hmtl file.
My global.css
BODY
{
b { font-family: Verdana;}
span { font-family: Verdana; font-weight: bold; font-size: .6em; color: white}
.name { color: black}
.dim { color: darkgray}
.blue { color: navy}
.maroon {color: maroon}
.title { font-size: .7em; color: black}
.header { font-size: .8em}
}
And My BSSExecutionStatus.html page:
<HTML>
<HEAD>
<TITLE>BSS Execution Status</TITLE>
<link rel="stylesheet" type="text/css" href="stylesheets/global.css" >
<script language="JavaScript">
function wopen1() { window.open("?.html")}
</script>
</HEAD>
<BODY>
<center>
<table border = "1" bgcolor = "#808080">
<tr>
<td>
<table width="650" height="20" border = "1" bgcolor = "#808080">
<tr><td width="750" height="20" bgcolor = "navy">
<span class="header">BSS Execution Status</span>
</td></tr>
</table>
<table width="650" height="20" border = "0" bgcolor = "#FFFFFF">
<tr>
<td width="100"></td>
<td>
<span class="blue">Timer Cnt </span>
<input span class="blue" name = "timer" type = "text"
size = "1" value = "0" >
</td><td>
<span class="blue">TimeOut Count </span>
<input span class="blue" name = "timeout" type = "text"
size = "1" Value = "7">
</td></tr>
</table>
<table width="650" border = "0" bgcolor = "#FFFFFF">
<tr>
<td width="300">
<table width="280" height="50" border = "0" bgcolor = "#62ADE7">
<tr><td><center>
<span class="name">CONFIG: Olympic</span></td></tr>
<tr><td><center>
<span class="name">CASE: Current</span></td></tr>
</table>
<table width="280" border = "0" bgcolor = "#514370">
<tr><td><center>
<span>LAUNCH TIME: Olympic</span></td>
<td>
<input span class="blue" name = "launchtime" type = "text"
size = "" Value = "10/12/2005 3:01:31 PM">
</td>
</tr>
<tr><td><center>
<span>PROCESS TIME:</span></td>
<td>
<input span class="blue" name = "processtime" type = "text"
size = "" Value = "0:05:41">
</td>
</tr>
<tr><td><center>
<span>BSS START TIME:</span></td>
<td>
<input span class="blue" name = "processtime" type = "text"
size = "" Value = "10/5/2005 7:16:00 PM">
</td>
</tr>
<tr><td><center>
<span>BSS END TIME:</span></td>
<td>
<input span class="blue" name = "processtime" type = "text"
size = "" Value = "10/31/2005 10:16:00 PM">
</td>
</tr>
<tr><td><center>
<span>PROCESS STEP:</span></td>
<td>
<input span class="blue" name = "processtime" type = "text"
size = "" Value = "Done">
</td>
</tr>
<tr><td><center>
<span>PERCENT DONE:</span></td>
<td>
<input span class="blue" name = "processtime" type = "text"
size = "" Value = "100">
</td>
</tr>
<tr><td><center>
<span>BSS VERSION NBR:</span></td>
<td>
<input span class="blue" name = "processtime" type = "text"
size = "" Value = "1.12.2">
</td>
</tr>
</table>
<table width="280" border = "0" bgcolor = "#62ADE7">
<tr><td><center>
<input span class="name" type = "button" size = ""
Value = "Display Error Report" onclick = "f()">
</td></tr>
<tr><td><center>
<input span class="name" type = "button" size = ""
Value = " Print Error Report " onclick = "f()">
</td></tr>
<tr><td><center>
<input span class="maroon" type = "button" size = ""
Value = " Stop Simulation " onclick = "f()">
</td></tr>
</table>
</td>
<td width="350">
<table width="350" height="50" border = "0" bgcolor = "#2C7722">
<tr><td>
<span class="header">BSS Process Complete</span>
</td></tr>
</table>
<table width="350" height="260" border = "0" bgcolor = "#2C7722">
<tr><td height="100">
<span class="header">
BSS Process Complete. Normal Completion.</span>
</td></tr>
<tr><td height="160"></td></tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</center>
</BODY>
</HTML>
I'm so thankfull that you're taking a look at it.