/* CSS Document */

/* Set the bg color, default font family and size here. */
body {
	background: #221E1F;
	font-family:Helvetica, Verdana, Arial, sans-serif;
	font-size: 110%;
	color: #FFFFFF;  
}

/* Set the color and font for headings. The bottom margin adds space below the heading. */
h1,h2,h3,h4,h5,h6 {
   color: #fff;
   font-family: Georgia, "Times New Roman", Times, serif;
   margin-bottom: 0.2em;
}

/* Add a bit of padding below all the paragraphs. */
p { padding-bottom: 0.2em; }

/* No borders on any images. */
img	{ border: none; }

/* Links are blue and not underlined. */
a {
	color: #66CCFF;
	text-decoration: none;
}

/* Visited links are also blue but just a little lighter. */
a:visited  { color: #00CCFF; }

/* Hovered links are green and underlined. */
a:hover {
	color: #66FF66;
	text-decoration: underline;
