/* 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 */
        /*background-color:antiquewhite;*/ 
        /*background-color:linen;*/
        /*background-color:mintcream;*/
        /*background-color:snow;*/           
        
        /* grays */
        /*background-color:gray*/
        /*background-color:silver*/
        /*background-color:#eee;*/ 
        
        /* others */
        /*background-color:teal;*/
        /*background-color:lavender;*/
        /*background-color:orchid;*/
        /*background-color:gold;*/
        /*background-color:palegreen;*/
        /*background-color:seagreen;*/
        /*background-color:yellowgreen;*/
        /*background-color:powderblue;*/
        /*background-color:lightblue;*/
        /*background-color:steelblue;*/
        /*background-color:#09c;*/ 
        /*background-color:wheat;*/
        /*background-color:darkorange;*/
        /*background-color:tomato;*/
        /*background-color:firebrick;*/
        /*background-color:maroon;*/


body { 
        color: #000000;        /* text colour */      
        background-color: white; /* bg colour - advisable not to edit this one yourself. Leave for designers. */
        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: white;        /* font colour */
        background: steelblue; /* bg colour */     
        font:11px verdana;   
        font-weight: none;
        text-decoration: none;
        }

td.content                   /* table cells - content */
        {                 
        color: black;        /* font colour */
        background: whitesmoke; /* bg colour */       
        font:11px verdana;
        font-weight: none;
        text-decoration: none;
        }

td.pic  {                   /* table cells - thumbnail captions */                   
        color: #000000; 
        font:9px verdana;
        font-weight: none;
        text-decoration: none;
     }

input,textarea {             /* form input boxes */
        color: #000000; 
        font: 8pt verdana;
        font-weight: none;
        text-decoration: none;
        background: white;
        border-width: .1em;
        border-style: solid;
        border-color: black;       
      }

img.photo {                       /* photos placeholders */
     border:1px solid white;
     background-color:gray;
   } 

a {                             /* links */ 
	font-size:11px;
	font-family:verdana;	
	text-decoration:none;
  }

a:link {color:steelblue;}
a:visited {color:steelblue;}
a:hover {text-decoration:underline;}

