/*   =========================================================================
     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: #e6e6c8;
  color: #990000;	
  font-family: "Times New Roman", Times, serif;
  font-size: 12pt;
  padding: 10px;
}*/



#navcontainer
{
 width: 100px;	
}


#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      /*   menu buttons   */
{
display: block;   width: 140px;
/*  padding: 3px;    padding is more effective in li */

/*   background-color: #036;   */
/*   border-bottom: 1px solid #eee;   */
}


#navcontainer a:link, #navlist a:visited   /* link colours  */
{
color: #FFFFFF;
background-color: rgb(89,90,45);  /*  muddy green  */
text-decoration: none;
border-bottom: 2px solid rgb(211,209,16);   
border-left: 2px solid rgb(211,209,16);
border-top: 2px solid #000000;
border-right: 2px solid #000000;
}

#navcontainer a:hover
{
color: rgb(160,240,160);
background-color: rgb(65,62,31);  /*  muddy green  */	
border-bottom: 2px solid #000000;   
border-left: 2px solid #000000;
border-top: 2px solid rgb(211,209,16);
border-right: 2px solid rgb(211,209,16);
}


/*

navlist
{
  background: #FFFF99;
  color: #990000;	
  font-family: "Arial", Times, serif;
  font-size: 12pt;
  
}

*/


li
{
/*   width: 150px; height: 16px;   */
 padding: 2px;	
list-style-type: none
list-style-image: none

} 



 

 
 
/* =====================================  end ============================================== */ 





