 /* how a link will appear to the user  */
A:link    { 
           text-decoration: none; 
           color: #000000;
           background: none;
           }

 /* how an active link will appear to the user  */
 A:active  { 
           text-decoration: none; 
           color: #000000;
           background: none;
           }  

 /* how a visited link will appear to the user */
 A:visited {
           text-decoration: none; 
           color: #000000;
           background: none;
           }

 /* how a link will appear to the user when the mouse moves over said link */
 A:hover   { 
           text-decoration: underline;
           color: #ff0000;
           background: none;
           } 

#news a    { 
           text-decoration: underline; 
           color: #000000;
           background: none;
           }

#news a:hover    { 
           text-decoration: none; 
           color: #ff0000;
           background: none;
           }

 /* how the background and text in the body of the page will render*/
 body      {
           color: #000000;
           background-color: #ffffff;
           }

p	  {
           font-family: verdana, arial, sans-serif;
           font-size: 11px;
           line-height: 1.5;
	  }

p.list	  {
           font-family: verdana, arial, sans-serif;
           font-size: 11px;
           text-align: right;
           line-height: 1;
	  }

p.title	  {
           font-family: verdana, arial, sans-serif;
           font-size: 18px;
           font-style: italic;
           line-height: 1;
	  }

p.blogtitle {
           font-family: verdana, arial, sans-serif;
           font-size: 12px;
           font-weight: bold;
           line-height: 1;
	  }

p.date	  {
           font-family: verdana, arial, sans-serif;
           font-size: 10px;
           font-style: italic;
           line-height: 1;
	  }

h1, div.header	  {
           font-family: geneva, verdana, arial, sans-serif;
           font-size: 11px;
           font-style: italic;
	   font-weight: normal;
	   text-align: right;
	  }

