body {font-family: Georgia, "Times New Roman", Times, serif; font-size: 12pt;}
form {font-family: Georgia, "Times New Roman", Times, serif; font-size: 10pt;}
a {font-weight: bolder; color: #ffa208; text-decoration: none}

/* Removed the spaces around H1-H6 tags. Using Header tags makes Google happy */ 
h1,h2,h3,h4,h5,h6 {font-family: Georgia, "Times New Roman", Times, serif; margin: 0px; padding: 0px;}

/* h1 is too big and breaks the page layout */
h1 {font-size: 22pt}  /* pagetitle */
h2 {font-size: 18pt; font-weight: bold} /* title */
h3 {font-size: 12pt; font-weight: bold } /* subtitle */
h4 {font-size: 14pt; font-weight: normal} /* page-texttop */
h5 {font-size: 36px; font-weight: bold} /* supertitle */
h6 {font-size: 10pt} /* footer */

/* Never to be used if a H tag is better suited */
.title {font-size: 18pt; font-weight: bold}
.pagetitle {font-size: 22pt; font-weight: bold}
.supertitle {font-size: 36px; font-weight: bold}
.subtitle {font-size: 12pt; font-weight: bold }
.footer {font-size: 10pt}
.page-texttop {font-size: 14pt; font-weight: normal}

/* navbar properties */
.navbar {
	background-color: #FF9A00;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 9pt;
	color: #000000;
	font-weight: bold;
	text-align: center;
}
.navbar a, .navbar a:link, .navbar a:visited {
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}
.navbar a:hover {
	font-weight: bold;
	color: #FCF1E3;
	text-decoration: none;
}
.navbar a:active {
	font-weight: bold;
	color: #322A1E;
	text-decoration: none;
}
/* navbar properties */

/* TextButton based tables properties - start */
.TextButton {font-size: 12pt; font-weight: bold ; color: #000000; background-color: ffa208}
.TextButton a {font-size: 12pt; font-weight: bold ; color: #000000; background-color: ffa208}
/* TextButton based tables properties - end */


.neon {font-weight: bolder; color: #6699FF; text-decoration: none }

/*
the code for removing the space from below a H1 tag:
h1,h2,h3,h4,h5,h6{
margin-bottom: 0px;
padding-bottom: 0px;
}

Similarly, the code for removing the space from above a H1 tag:
h1,h2,h3,h4,h5,h6{
margin-top: 0px;
padding-top: 0px;
}
Of course, these two can be combined to remove the space from both above and below a H1 tag. 
h1,h2,h3,h4,h5,h6{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
*/
