body {
scrollbar-face-color: #233342;
scrollbar-shadow-color: #151E27;
scrollbar-highlight-color: #364E64;
scrollbar-3dlight-color: #233342;
scrollbar-darkshadow-color: #151E27;
scrollbar-track-color: #151E27;
scrollbar-arrow-color: #E68405;

}

BODY, TD {
font-family: Verdana;
color: #99ADBF;
font-size: 9pt;
}

a {
font-family: Verdana;
color: #FFFFFF;
font-size: 8pt;
text-decoration: none;
}

a:hover {
font-family: Verdana;
color: #FF9900;
text-decoration: none;
}

blockquote {
font-family: Verdana;
color: #A4CBE9;
text-decoration: none;
font-size: 8pt;
}

.page_title {
font-family: Verdana;
color: #FF9900;
font-size: 10pt;
}

input,textarea,select {
	font-family: Verdana; font-size: 8pt; color: #7190AC;
        border: 1px solid #7190AC;
        background-color: #283949;
}

input.button {
        font-family: Verdana; font-size: 8pt; color: #7190AC;
        border: 1px solid #7190AC;
        background-color: #283949;
}
td.borders {
        border: 1px solid #7190AC;
}

<!--
// Use these to set up the message:
var msg = "This is SUSR's Newest Website!"
var delay = 30
var startPos = 100

// Don't touch these variables:
var timerID = null
var timerRunning = false
var pos = 0

// Crank it up!
StartScrolling()

function StartScrolling(){
    // Make sure the clock is stopped
    StopTheClock()

    // Put in spaces to get "start" position
    for (var i = 0; i < startPos; i++) 
    msg = " " + msg
    // Off we go...
    DoTheScroll()
}
function StopTheClock(){
    if(timerRunning)
        clearTimeout(timerID)
    timerRunning = false
}
function DoTheScroll(){
    if (pos < msg.length)
        self.status = 
	msg.substring(pos, msg.length);
    else
        pos=-1;
    ++pos
    timerRunning = true
    timerID = 
   self.setTimeout("DoTheScroll()", delay)
}
file://-->