


/* 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;}


#coolmenu{
border: 0px solid black;
width: 118px;
background-color: white;
}

#coolmenu a{

padding: 0px;
padding-left: 0px;
display: block;
width: 100%;
color: darkblue;
text-decoration:underline;
}

html>body #coolmenu a{ /*Non IE rule*/
width: auto;
}

#coolmenu a:hover{
background-color: green;
color: white;
text-decoration:none;
}

.buttonscontainer {width: 120px;}

.buttons a {color: white;
border: 1px solid;
background-color: green;
padding: 2px;
padding-left: 3px;
font: 13px Arial, sans-serif;
font-weight: bold;
text-decoration: none;
border-color:  black black ;
display: block;
margin: 0px;
width: 100%;
text-align: left;}

.buttons a:hover {border: 1px solid;
padding-left: 4px;
padding-top: 3px;
padding-bottom: 1px;
padding-right: 1px;
background-color: white;
border-color: black   black;
color: black;
text-decoration: none;}

.buttonscontainer2 {width: 120px;}

.buttons2 a {color: white;
border: 1px solid;
background-color: green;
padding: 2px;
padding-left: 3px;
font: 13px Arial, sans-serif;
font-weight: bold;
text-decoration: none;
border-color:  silver ;
display: block;
margin: 0px;
width: 100%;
text-align: left;}

.buttons2 a:hover {border: 1px solid;
padding-left: 4px;
padding-top: 3px;
padding-bottom: 1px;
padding-right: 1px;
background-color: white;
border-color: white   white;
color: black;
text-decoration: none;}









