/* 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: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
}

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

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

a:active {
	color : #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	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 : #336699;
}

/* header styles are selectable in the dreamweaver properties menu */
h1 {
	color : #007A79;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 12px;
	line-height : 14px;
	font-weight: normal;
}

h2 {
	color : #006666;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 11px;
	line-height : 13px;
	font-weight: normal;
	font-style: italic;
}

h3 {
	color : #990000;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10px;
	line-height : 12px;
}

/* this formats all form input elements - dropdowns, text boxes, etc */
input {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10px;
	line-height : 12px;
}

/* 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 : Arial, Helvetica, sans-serif;
	font-size : 12px;
	line-height : 15px;
	color: #663333;
}

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

/* custom link styles - if you need different links for different areas - the .custom can be whatever you like*/
.custom a:link {
	color : #336699;
	font-family : Arial, Helvetica, sans-serif;
	font-size : 12px;
	line-height : 15px;
	font-weight: normal;
}

.custom a:visited {
	color : #336699;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.custom a:hover {
	color : #003366;
	text-decoration : none;
}

.custom a:active {
	color : #003366;
	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 : #339900;
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 11px;
	line-height : 13px;
	text-decoration : underline;
	font-weight: normal;
}

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

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

.customyellow a:active {
	color : #FF9933;
	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 : #336699;
	font-family : Arial, Helvetica, sans-serif;
	font-size : 11px;
	font-weight : normal;
	line-height : 13px;
}
