/* stylesheet.css - do not edit unless you are sure you know what you are doing!!! */

/* Some colours you can use. There are plenty more. Search for HTML COLORS in Google */
        
        /* whites */

        /* antiquewhite */ 
        /* linen */
        /* mintcream */
        /* snow */           
        
        /* grays */

        /* gray */
        /* silver */
        
        
        /* others */

        /* teal */
        /* lavender */
        /* orchid */
        /* gold */
        /* palegreen */
        /* seagreen */
        /* yellowgreen */
        /* powderblue */
        /* lightblue */
        /* steelblue */
        /* wheat */
        /* darkorange */
        /* tomato */
        /* firebrick */
        /* maroon */


body { 
        color: black;        /* text colour */      
        background-color:silver; /* bg colour */
        font:9px verdana;       
        font-weight: none;
        text-decoration: none;
     }


 

td   {                       /* table cells - normal */           
        font:11px verdana;
        font-weight: none;
        text-decoration: none;
     }

td.header                    /* table cells - headers */                  
        {                 
        color: black;        /* font colour */
        background: green;    /* bg colour */     
        font:11px verdana;   
        font-weight: none;
        text-decoration: none;
        }

td.content                   /* table cells - content */
        {                 
        color: black;        /* font colour */
        background: white;   /* bg colour */       
        font:11px verdana;
        font-weight: none;
        text-decoration: none;
        }


input,textarea {             /* form input boxes */
        color: black; 
        font: 8pt verdana;
        font-weight: none;
        text-decoration: none;
        background: whitesmoke;
        border-width: .1em;
        border-style: solid;
        border-color: black;       
      }

img.photo {                       /* photos placeholders */
     border:1px solid black;
     background-color:white;
   } 

a {                             /* hyperlinks */ 
	font-size:11px;
	font-family:verdana;	
	text-decoration:underline;
  }

a:link {color:darkblue;}
a:visited {color:darkblue;}
