/**  Coded by: Jeffrey (Joseph Witchard) with help from friends at the HTML Goodies Help Forums
 **  Created on: 01/04/09
 **  Last modified: 10/09/09
 **  Purpose: To provide the styles for 
 **           the JavaScript news scroller 
 **           to display and operate correctly. */

/* thia file contains the CSS necessary for the news ticker */

#newsBody {
  width: 200px;
  height: 300px;
  color: #000000;
  font-weight: bold;
  background-image: url(/scroller_background_parchment.jpg);
          }
          
/* some of the links are too bright on the parchment background, so let's change that */

#newsBody a:link { text-decoration: none; color: #000066; }
#newsBody a:visited { text-decoration: none; color: #660066; }
#newsBody a:active { text-decoration: underline; color: #000066; }
#newsBody a:hover { text-decoration: none; color: #660066; }
          
#newsWindowArea {
  position: absolute;
  margin-top: 32px;
  top: 10px;
  left: 50px;
  width: 175px;
  height: 240px;
  overflow: hidden;
                }
  

#newsWindow {
  position: relative;
  padding-left: 15px;
  width: 175px;
  height: 250px;
  overflow: hidden;
  margin: 0px auto;
            }

#newsText {
  width: 75px;
  position: absolute;
  font-size: 9pt;
  margin-left: 5px;
          } 
          
#newsHead {
  width: 200px;
  height: 44px;
  text-align: center;
          }
