/**************************************************
* Filename: sitestyle-ns4.css                     *
* Info: Site style sheet (Netscape 4)             *
* Author: James Shiell (jwds1)                    *
* Last modified: 22/11/00 by jwds1                *
**************************************************/
/* 
   This is the site style sheet for Netscape 4, which is near
   braindead when it comes to styles.
   
   1) The font must be specified in every element, or it reverts 
      to the NS default.
   2) The font always renders smaller than on IE or Gecko, so we 
      knock it up a little.
*/

BODY {
  color: black;
  background: white;
  font-family: Arial, sans-serif;
  font-size: 11pt;
}

A:link    { color: black }    
A:visited { color: black }   
A:hover   { color: red } 
A:active  { color: orange }  

A.nounderline { 
  font-family: Arial, sans-serif;
  text-decoration: none     
}

.text {
  font-family: Arial, sans-serif;
  font-size: 11pt;
}

.shaded {
  font-family: Arial, sans-serif;
  color: rgb(192, 192, 192);
  font-size: 11pt;
}

.red {
  font-family: Arial, sans-serif;
  color: rgb(255, 0, 0);
  font-size: 11pt;
}

.proptext {
  font-family: Courier, monospace;
  font-size: 11pt;
}

.largetext {
  font-family: Arial, sans-serif;
  font-size: 12pt;
}

.uniheader {
  font-family: Times Roman, serif;
  font-size: 12pt;
}

.deptheader {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 16pt;
}

.biggerheader {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 18pt;
}
 
.goldtext {  
  font-family: Arial, sans-serif;
  color: rgb(199, 174, 5);
}

.justified {
  font-family: Arial, sans-serif;
  font-size: 10pt;
  text-align: left;
}

.pubheadlinks {
  font-family: Times Roman, serif;
  color: white;
  font-size: 12pt;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
  vertical-align: middle;
  text-decoration: none;
}
A:link.pubheadlinks { 
  color: white;
  text-decoration: none
}    
A:visited.pubheadlinks  {
  color: white;
  text-decoration: none
}   
A:hover.pubheadlinks    {
  text-decoration: none;
  font-style: bold;
  font-size: 12pt;
  color: white
} 
A:active.pubheadlinks   { 
  color: orange; 
  text-decoration: none
}  

.pubmenulinks {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 9pt;
  text-decoration: none;
}
A:link.pubmenulinks { 
  color: white 
}    
A:visited.pubmenulinks  { 
  color: white 
}   
A:hover.pubmenulinks    {
  color: silver;
  font-size: 9pt;
  font-style: bold; 
} 
A:active.pubmenulinks   { 
  color: yellow
} 

.pubmenulinkslower {
  font-family: Arial, sans-serif;
  color: black;
  font-size: 10pt;
  text-decoration: none;
}

.sitelinks {
  font-family: Arial, sans-serif;
  font-size: 10pt;
}

.headlinks {
  font-family: Arial, sans-serif;
  font-size: 10pt;
} 

.bigheader {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 12pt;
}

.header {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 11pt;
}

.italic {
  font-family: Arial, sans-serif;
  font-style: italic;
  font-size: 11pt;
}

.headerless {
  font-family: Arial, sans-serif;
  font-style: italic;
  font-size: 12pt;
} 

.button {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 11pt;
}


