/* CSS definitions */

/* Bold dark green links with no under-line */
A:link, A:visited, A:active
{
color: #336633;
font-weight: bold;
text-decoration: none;
}

/* Light green mouse-over with under-line */
A:hover
{
color: #669933;
text-decoration: underline;
}

/* Rails End font is justified Times New Roman */
P
{
font-family: "Times New Roman", Times, serif;
text-align: justify;
color: #000000;
}

/* Set all headers to dark green */
/* Centre H1s and put space above for banner */
H1
{
font-weight: bold;
color: #336633;
text-align: center;
padding-top: 10px
}

H2
{
font-weight: bold;
color: #336633;
}

H3
{
font-weight: bold;
color: #336633;
}

H4
{
font-weight: bold;
color: #336633;
}

/* Centre links and pad above */
.text_links
{
text-align: center;
padding-top: 10px;
}

/* Copyright message small, light blue and centred */
.footer
{
font-size: 10px; 
font-family: Arial, Helvetica, sans-serif;
text-align: center;
color: #6699FF;
}

.footer A:link
{
color: #6699FF;
}

.footer A:visited
{
color: #6699FF;
}

.footer A:active
{
color: #6699FF;
}
