A:link     {text-decoration: underline}
A:visited {text-decoration: underline}
A:hover  {text-decoration: underline; color: #FF3300}
/*---------------------------------------------------------------------------------------------------------------------*/
  .title-pressarticles {font-family: arial,helvetica; font-size: 12pt; font-weight: bold; color: #CCCCCC}
  .arial-10pt-CCCCCC {font-family: arial,helvetica; font-size: 10pt; color: #CCCCCC}
  .arial-10pt-B3B3FF {font-family: arial,helvetica; font-size: 10pt; color: #B3B3FF}
  .arial-10px-B3B3FF {font-family: arial,helvetica; font-size: 10px; color: #B3B3FF}
  .arial-10px-000000 {font-family: arial, helvetica; font-size: 10px; color: #000000}
  .arial-10px-CCCCCC {font-family: arial, helvetica; font-size: 10px; color: #CCCCCC}
  .arial-10px-555555 {font-family: arial, helvetica; font-size: 10px; color: #555555}
/*---------------------------------------------------------------------------------------------------------------------*/
.verdana-10px-contact {font-family: verdana,sans-serif,helvetica,arial; font-size: 10px; color: #88C4B0}

.verdana-10px-CCCCCC {font-family: verdana,sans-serif,helvetica,arial; font-size: 10px; color: #CCCCCC}
.verdana-10pt-CCCCCC {font-family: verdana,sans-serif,helvetica,arial; font-size: 10pt; color: #CCCCCC}
.verdana-10px-FFFFFF {font-family: verdana,sans-serif,helvetica,arial; font-size: 10px; color: #FFFFFF}
.verdana-10pt-FFFFFF {font-family: verdana,sans-serif,helvetica,arial; font-size: 10pt; color: #FFFFFF}
.verdana-10px-FFCCCC {font-family: verdana,sans-serif,helvetica,arial; font-size: 10px; color: #FFCCCC}
.verdana-10px-B3B3FF {font-family: verdana,sans-serif,helvetica,arial; font-size: 10px; color: #B3B3FF}
.verdana-10px-B492BE {font-family: verdana,sans-serif,helvetica,arial; font-size: 10px; color: #B492BE}
.verdana-10px-FFCC00 {font-family: verdana,sans-serif,helvetica,arial; font-size: 10px; color: #FFCC00}
.verdana-10pt-000000 {font-family: verdana,sans-serif,helvetica,arial; font-size: 10pt; color: #000000}
.verdana-10px-000000 {font-family: verdana,sans-serif,helvetica,arial; font-size: 10px; color: #000000}
.verdana-12pt-B3B3FF {font-family: verdana,helvetica; font-size: 12pt; color: #B3B3FF}
.verdana-10pt-FFCC00 {font-family: verdana,helvetica; font-size: 10pt; color: #FFCC00}

.verdana-8pt-bold-33CCFF {font-family: verdana,helvetica; font-size: 8pt; color: #33CCFF; font-weight: bold}
.verdana-10pt-bold-33CCFF {font-family: verdana,helvetica; font-size: 10pt; color: #33CCFF; font-weight: bold}
.verdana-10px-bold-CCCCCC {font-family: verdana,sans-serif,helvetica,arial; font-size: 10px; color: #CCCCCC; font-weight: bold}

.q2px {font-size: 2px}
.q3px {font-size: 3px}
.q5px {font-size: 5px}
.q8px {font-size: 8px}
.q12px {font-size: 12px}
.q10px-bold-CCCCCC {font-family: arial,helvetica; font-size: 10px; color: #CCCCCC; font-weight: bold}
.q10px-bold-000000 {font-family: arial,helvetica; font-size: 10px; color: #000000; font-weight: bold}
.q9px-bold-000000 {font-family: arial,helvetica; font-size:  9px; color: #000000; font-weight: bold; background-color: #eeeeee;}
/*---------------------------------------------------------------------------------------------------------------------*/


/*---------------------------------------------------------------------------------------------------------------------

<LINK rel="stylesheet" href="ss.css">    <---this goes just before </head>, at top of any given HTML page.

Colors:
==========================================
CCCCCC=very lite cool blue; B3B3FF=cool blue; B492BE=dark purple; CC0000=red; 666666=dark grey; FFCCCC=pink; FFFF00=yellow
FFCC00=gold; CCFFFF=lite gem green; 66FF99=medium-lite green; 489498 or 50A8B0=teal (for news)
==========================================

Use <br.a>, e.g., br.a {font-size: 5px}, to insert a small vertical space. You may have to do a <br><br.a> for it to work; the extra <br> gets you to start of next line, and then the <br.a> inserts the vertical space.

To use <br> to insert vertical space in a table, make sure you do a <tr> first; else the <br> gets appended to end of line. In the following example, note that you do NOT need a terminating </td></tr> in this example, because once you have a <br>, that gets you to the next line already. Example: <tr><td align=center><br class="8px"> (and that's it).

No '#'s allowed in classes. Eg., "p.10px-bold-#CCCCCC" is not allowed, but "p.10px-bold-CCCCCC" works fine.

Having something like b.a{font-family: arial, helvetica; font-size: 10pt; color: #B3B3FF} is no good. Ie., you can't assign a font or a color to a break. This works only with <p>, which indicates that textual content follows.

If you want to begin a paragraph w/ certain fonts traits on the line RIGHT AFTER an image, you've got a problem with <p.a> because it always creates a blank line before the paragraph. Soln: insert the <p.a> code BEFORE the image. Then after the image code, use a <br> and then the text. Note that the text following the <br> keeps the same font traits as the most recent <p.a> command dictates.

Can mix up; eg., <td NOWRAP class="verdana-10px-FFFFFF"> means you use the specified class with NOWRAP. Does NOT work for font traits like color or size. Eg., <td color=#CC0000 class=".."> should give red color, but it doesn't.

You can create a class called .hello , then use it with more one command. Eg., <p class="hello">, or <td class="hello">. This removes need to have to create p.hello and td.hello separately.

Names of classes, for NETSCAPE, have following requirements:
1. Class names must begin with a letter.
2. Class names cannot contain a '_'.
-----------------------------------------------------------------------------------------------------------------------*/
