/* these are the default link styles - they inherit font formatting from what ever area they are in - eg body or td.
They must be in this order L - V - H - A*/
a:link {
	color : #FFFFFF;
	font-family: Poor Richard, Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	text-decoration: none;
}

a:visited {
	color : #FFFFFF;
	font-family: Poor Richard, Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	text-decoration: none;
}

a:hover {
	color : #FFFFFF;
	text-decoration : underline;
	font-family: Poor Richard, Verdana, Arial, Helvetica, sans-serif;
	font-size: large;
}

a:active {
	color : #FFFFFF;
	font-family: Poor Richard, Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	text-decoration: none;
}

/* this controls main page style - background colour or image - applies to anything that doesn't live in a table */
body {
	background-color : #000000;
	font-family : "Poor Richard";
    font-size : medium;
}


/* this is for text in table cells formats automatically, doesn't appear in dreamweaver CSS list - it's optional
you can set background colour if you want - I don't as a rule*/
/*
td{
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 11px;
	line-height : 14px;
	color: #FFFFFF;
}
*/
td{
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 11px;
	color: #FFFFFF;
}
hr{
	color :#FFFFFF; 
	background-color :#FFFFFF";
	align="center";
	size="3";
	width="75%";
}

/* this is a custom style - pseudo class - designated by a full stop before the name - these appear in the dreamweaver CSS list */
.othertext{
	color : #007A79;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 11px;
	font-weight : normal;
	line-height : 13px;
}

/* custom link styles - if you need different links for different areas - the .custom can be whatever you like*/
.custom a:link {
	color : #333366;
	font-family : "Poor Richard";
	font-size : large;
	line-height : 12px;
	text-decoration : none;
	font-weight: bold;
    font-style: italic;
}

.custom a:visited {
	color : #333333;
	text-decoration : none;
	font-size: 10px;
	font-weight: bold;
}

.custom a:hover {
	color : #990000;
	text-decoration : underline;
}

.custom a:active {
	color : #333366;
	text-decoration : none;
}
/* custom link styles - if you need different links for different areas - the .custom can be whatever you like*/
.customyellow a:link {
	color : #006666;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 11px;
	line-height : 13px;
	text-decoration : underline;
	font-weight: normal;
}

.customyellow a:visited {
	color : #006666;
	text-decoration : underline;
	font-size: 11px;
	font-weight: normal;
	line-height: 13px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.customyellow a:hover {
	color : #006666;
	text-decoration : none;
	font-size: 11px;
	line-height: 13px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
}

.customyellow a:active {
	color : #006666;
	text-decoration : underline;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 13px;
	font-weight: normal;
}
/* custom link styles - if you need different links for different areas - the .custom can be whatever you like*/
.customred a:link {
	color : #990000;
	font-family : Arial, Helvetica, sans-serif;
	font-size : 12px;
	line-height : 14px;
	text-decoration : underline;
	font-weight: normal;
}

.customred a:visited {
	color : #333366;
	text-decoration : underline;
	font-size: 12px;
	font-weight: normal;
	line-height: 14px;
	font-family: Arial, Helvetica, sans-serif;
}

.customred a:hover {
	color : #CC0000;
	text-decoration : underline;
	font-size: 12px;
	line-height: 14px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}

.customred a:active {
	color : #990000;
	text-decoration : none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	font-weight: normal;
}
.othertextwhite {
	color : #FFFFFF;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 11px;
	font-weight : normal;
	line-height : 13px;
}
.othertextitalic {
	color : #007A79;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 11px;
	font-weight : normal;
	line-height : 13px;
	font-style: italic;
}
.othertextsmall {
	color : #333333;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 8px;
	font-weight : normal;
	line-height : 13px;
}
.poorRichard {
	color : #FFFFFF;
	font-family : Poor Richard, Verdana, Arial, Helvetica, sans-serif;
	font-size : 20px;
	font-weight : normal;
	line-height : 30px;
}
