/*   =========================================================================
     Style sheet
     
     The CSS 2.0   16 standard colours:
     
     aqua       gray      navy      silver
     black      green     olive     teal
     blue       lime      purple    white
     fuchsia    maroon    red       yellow
     ---------------------------------------
     CSS 2.1 added  orange
     ---------------------------------------
     CSS 3.0 increased the list to 140 (non-standard)
     Not all browsers support this list
     ---------------------------------------
     

     Statements:  color:red    color:#FF0000   color: rgb(255,0,0)
     
     
     Backgrounds:   Pale Yellow -  235, 235, 200    #e6e6c8

     Text Colours:    ( Dark Red: 153, 0, 0 )

     Old Links:   alink="#000099" link="#000099" vlink="#990099"


    ===========================================================================  */



 
 /*   Hyper-link  styles   (keep in this order)                  */
 /*   (the 'text-decoration: none' suppresses link 'under-line'  */
 

 /* a:link{color: red;        text-decoration:none;}         /* default state                    */
 /* a:visited{color:purple;   text-decoration:none;}      /* visited                          */
 /* a:focus{color: olive;     text-decoration:none;}       /* selected by keyboard            */ 
 /* a:hover{color:green;   background-color: rgb(255,255,153);text-decoration:none;}  /* pointed by mouse                 */
 /* a:active{color: blue;     text-decoration:none;}       /* when clicked                     */ 

 
 
 

a:link{color:blue; text-decoration:none;}               /*  keep this 1st instance of 'link'   */   
a:visited{color:blue; text-decoration:none;}  
/*  a:focus{color: olive; text-decoration:none;}  */
a:hover{color:red;  text-decoration:none;} 
a:active{color: navy; text-decoration:none;}  

 
 

 
 
/* =====================================  end ============================================== */ 