/*   =========================================================================
     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"


    ===========================================================================  */


body 
{
  background: #f1f468;
   /* background: #e6e6c8; */
  color: #990000;	
  font-family: "Times New Roman", Times, serif;
  font-size: 12pt;
  padding: 10px;
}



#navcontainer
{
 width: 240px;	
}


#navcontainer ul    /*  unordered list    */
{
margin-left: 12;    /*  left nudge to align buttons with image below  */
padding-left: 0;
list-style-type: none;
font-family: "Verdana", Times, serif;  font-size: 12px;  font-weight: bold;
line-height: 22px;     text-align: left; 
}


#navcontainer a
{
display: block;   width: 240px;
/*  padding: 3px;    padding is more effective in li */

/*   background-color: #036;   */
/*   border-bottom: 1px solid #eee;   */
}


/*  #navcontainer a:link,   #navlist a:visited   /* menu link colours  */


#navcontainer a:link,   #navlist a:visited     /* menu link colours  */
{
color: #777777;      /*  text colour  */ 
/* background-color: #AD7B63;    /*  mid Brown  */
/* background-color: #e6e6c8;    /*  Ivory  */
/* background-color: #ffff99;    /*  Pale Yellow  */
/* background-color: #ffff77;    /*  deeper Yellow  */

background-color: #e6e6c8;    /*  Ivory  */
text-decoration: none;
border-style: outset;
border-color: #808070;
-moz-border-radius: 4px;
}


#navcontainer a:hover
{
background-color:  #ffff77;     /* Light Ivory  */	
color: #000000;	  /*  text colour  */
border-style: inset;
border-color: #F0F0D0;
-moz-border-radius: 4px;
}














#navcontainer a:active   /*  changes colours for click duration  */
{
background: #bb9900;
color: #ffffff;
}



#navcontainer a:current   /*  changes colours for click duration  */
{
background: #444444;
color: #ffffff;
}






li
{
/*   width: 150px; height: 16px;   */
 padding: 2px;	
list-style-type: none
list-style-image: none

} 



 

 
 
/* =====================================  end ============================================== */ 





