/* Headings */

h1, h2, h3, h3
{
	font-family: Arial;
	color: teal;
 
}

h1
{
	font-size: 16pt;
	font-style:normal;
}

h2
{
	font-size: 14pt;
}

h3
{
	font-size: 12pt;
}

h4
{
	font-size: 8pt;
}

/* Hyperlinks */

a
{
	color: teal;
	text-decoration: underline;
	font-weight: bold;
}
a:hover
{
	color: white;
	text-decoration: none;
	background: teal;
}
a.plain
{
	color: black;
	text-decoration: none;
	font-weight: normal;
}
a:hover.plain
{	
	color: black;
	text-decoration: none;
	background-color: transparent;
	font-weight: normal;
}


a.button
{
	color: white; 
	text-decoration: none;
	padding-left: 10px;
	padding-right: 10px;
	background: teal;
	font-weight: bold;
}
a.button span
{
	background: teal;
}


a:hover.button
{
	background: green;
}
a:hover.button span
{
	background: green;
}





