body {
	background-color: #013C61;
	}

p {
    text-align: left;
    color:#dddddd;
    font-family: sans-serif;
    font-size: 11px;
    }
    
p.dark {
    text-align: left;
    color:#444444;
    font-family: sans-serif;
    font-size: 11px;
    }
    
p.tiny {
    text-align: left;
    color:#cccccc;
    font-family: sans-serif;
    font-size: 10px;
    }
    
h1  {
    text-align: left;
    font-weight: bold;
    color:#cccccc;
    font-family: sans-serif;
    font-size: 16px;
    }
    
h1.dark  {
    text-align: left;
    font-weight: bold;
    color:#444444;
    font-family: sans-serif;
    font-size: 16px;
    }
    
h2  {
    text-align: left;
    font-weight: bold;
    color:#cccccc;
    font-family: sans-serif;
    font-size: 14px;
    }
    
h3  {
    text-align: left;
    font-weight: bold;
    color:#cccccc;
    font-family: sans-serif;
    font-size: 12px;
    }

.free-website h1 {
    color: #ffffff;
}

.free-website h2 {
    color: #ffffff;
}

.free-website p {
    color: #ffffff;
}

div {
    text-align: center;
    color:#444444;
    font-family: sans-serif;
    font-size: 12px;
    }

div.footer {
	text-align: center;
    color:#dddddd;
    font-family: sans-serif;
    font-size: 12px;
    }
    
div.mini-header {
	text-align: center;
	font-weight: bold;
    color:#eeeeee;
    font-family: sans-serif;
    font-size: 10px;
    }
    
ul {
	text-align: left;
    color:#cccccc;
    font-family: sans-serif;
    font-size: 12px;
   }
   
ol {
	text-align: left;
    color:#cccccc;
    font-family: sans-serif;
    font-size: 12px;
   }

a:link {
   color: #eeeeee;
   }
a:visited {
   color: #bbbbbb;
   }
a:active {
   color: #111111;
   }
a:hover {
   color: #aaaaaa;
   }

.menu
    {
    background-color: #003B60;
    line-height: 110%;
    border:  solid 1px  #aaaaaa;
    }

.menu a:link {color:#ffffff; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; text-decoration:none}
.menu a:visited {color:#cccccc; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; text-decoration:none}
.menu a:hover {color:#ffffff; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; text-decoration:underline}
.menu a:active {color:#fbd04f; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; text-decoration:none}

/* form */
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font-family: verdana,arial,sans-serif;
  margin-left: 50;
  padding: 0;
  width: 360px;
}

form fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #777777;
  border-width: 1px;
  border-style: solid;
  background: #def2fc;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

form fieldset legend {
	font-size: 12px; /* bump up legend font size, not too large or it'll overwrite border on left */
    background: #ffffff;                   /* be careful with padding, it'll shift the nice offset on top of border  */
    border-width: 1px;
    border-style: solid;
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	font-size: 12px;
	width: 110px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

form small {
	display: block;
	margin: 0 0 5px 10px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 10px;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

/* form eof */