/* Evergreen Golden Retriever Rescue                     */

/* --------- margin, padding and border-width ---------- */
/* 1 value:   applies to all four sides                  */
/* 2 values:  top/bottom | left/right                    */
/* 3 values:  top | left/right | bottom                  */
/* 4 values:  top | right | bottom | left                */
/* ----------------------------------------------------- */

/* ------ centered content w/ auto-width margins ------- */

body {
  margin:08px 0px;
  padding:0px;
  text-align:center;        /* work around for WIN IE5.x */
 /* Title.jpg is composed of 4 photos joined together using MS Paint. Only 1 image can be used for a background. */
  background-color:#660000;
  font-size:13px;			
  font-family:Verdana, sans-serif;	
  }

div#main {	
  width:100%;
  margin:0px 8px;          /* center content            */
  text-align:center;        /* work around for WIN IE5.x */
  background-color:#FFFF66;
  }

div#navigate {
  margin-top:100%;	
  margin-left:50px;
  font-size:17px;
  text-align:left;        /* work around for WIN IE5.x */
  background-color:transparent;
  font-family:Veranda, sans-serif;	
  }
  
div#navigate a {
  display:block;
  }
  
div#content {
  margin-top:100%;           /* start below Title.jpg     */
  margin-left:220px 25px;
  background-color:transparent;
  }
	
div#footer {
  margin:8px 0px;
  padding:0px;
  width:512px;
  margin:0px auto;          /* center content            */
  border-top:3px double #265638;
  background-color:transparent;
  text-align:center;        /* work around for WIN IE5.x */		
  }	

/* -----------------------  links ---------------------- */

a:link { color:#003300; }          /* not visited          */
a:visited { color:blue; }       /* visited              */
a:hover { color:#CC0000; }         /* pointed to           */
a:focus { color:#CC0000; }         /* selected by keyboard */
a:active { color:blue; }        /* clicked              */

/* ---------------------- text ------------------------- */
	
p {
  margin-top:0px;
  margin:15px 25px;
  text-align:left;
  font-size:13px;
  font-family:Verdana, sans-serif;	
  }

h1 {
  margin-top:0px;
  margin:15px 15px;
  text-align:center;
  font-size:18px;
  font-family:Verdana, sans-serif;
  }

h2 {
  margin-top:0px;
  margin:15px 15px;
  text-align:center;
  font-size:13px;
  color:Red;
  font-family:Verdana, sans-serif;
  }
  
h3 {
  margin-top:0px;
  margin:15px 15px;
  text-align:center;
  font-size:13px;
  font-family:Verdana, sans-serif;
  } 
  
span.small {
  text-align:center;
  font-size:11px;
  font-family:Verdana, sans-serif;
  }	

div#footer p {
  margin-top:0px;
  padding-top: 2px;
  text-align:center;	
  font-size:11px;
  }	
	
div#footer span {
  float:right;
  font-size:11px;
  font-family:Verdana, sans-serif;
  }
	
/* --------------------- box model --------------------- */ 
/* Windows IE5.x incorrectly includes the cellspacing,   */
/* padding and borders in the width property. If padding */
/* borders or border-spacing (cellspacing) are needed,   */
/* the best solution is the Tantek Celik's hack based on */
/* an IE5.x CSS parsing bug.                             */
/*                                                       */
/* For equal width cells in a table, set the cell width  */
/* rather then the table width.  To set the cell width,  */
/* subtract the table border-width from the final table  */ 
/* width and divide by the number of cells.              */
/* e.g. (512 - (2 * 0)) / 4	= 128                        */
/* To calculate the cell content width (W3C guidlines),  */
/* subtract the cellspacing, border-width, and padding   */
/* from the actual cell width.                           */
/* e.g. 128 - 10 - 0 - (2 * 0) = 118                     */
/* ----------------------------------------------------- */

/* ---------------- navigation table ------------------- */

#navbar { 
  text-align:center;
  color:gray;                        /* table font color */ 
  }
	
#navbar td {
  padding:13px;
  }
	
#navbar a {text-decoration: none; }
	
/* ----------------------------------------------------- */