.h1{
	font-family: Arial, Helvetica, sans-serif;
	font-size:24px;
	text-align:center;
	color:#000000;
	background-color:transparent;
	font-weight:bold;
	text-align:left;
}
.h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #000000;
	text-align: center;
}
body{
	color:#000000;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-style:normal;
	margin:4px
	}

p{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	background-color: transparent;
}
tr {
}

th {
	/*background-color:Transparent;*/
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	/*color:#000000;*/
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	/*width: 150px;
	height:200px;*/
}
.wingdings { 
	font-family:"Wingdings 3";
	font-size:12px;
	color:#000000;
	}
.boldwingdings { 
	font-family:"Wingdings 3";
	font-size:12px;
	font-weight: bold;
	color:#000000;
}

/* for span class="boldtext" within a paragraph*/

.boldtext{
	color:#000000;
	font-weight: bold;
}

.boldunderline{
	color:#000000;
	font-weight: bold;
	text-decoration:underline;
}

/* This is your basic link style. In this case, blue text*/

a:link {
	color:#0000FF;
}

/*This style is how your link will look when the visitor has already been to that page. Here, dark purple text. This must be placed ahead of the mouseover style in your style sheet to work properly.*/

a:visited {
	color: #472848;
}

/* This is how the mouseover will look. Here I have specified underline, with red text and no background colour. When the visitor moves their mouse over the link, only the text and underline will change. */

a:hover {
	text-decoration: underline;
	background-color: Transparent;
	color: #6F0000;
}

/* This is mostly useless, as it is what the visitor sees when they are actually clicking the link. */

a:active {
	text-decoration: none;
}

/*That set of styles changes the links on the whole page. Hang onto your seats, because this next bit should blow you away.

What if you want the links in a certain section of your page to be different, like for menus? Well, you already know everything you need to know to do that. You can add link styles to your class style. 

Create a class style called menu with the following specifics:*/

.menu {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	background-color: #FFFFFF; 
	text-align:center;
	margin-left:2px;
	height: 45px;
}

/*Then add the link controls to the class style by stating the class, which is .menu in this case, and adding the link controls you used in the previous examples. */

.menu a:link {
	color: #0000FF;
}

.menu a:visited {
	color: #472848;
}

.menu a:hover {
	text-decoration: underline;
	font-weight:bold; 
	background-color: Transparent;
	color: #9F0000;
}

.menu a:active {
	text-decoration: none;
}
.nav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	background-color: #E9E9E9; 
	text-align:center;
	margin-left:2px;
	height: 45px;
}

/*Then add the link controls to the class style by stating the class, which is .menu in this case, and adding the link controls you used in the previous examples. */

.nav a:link {
	color: #0000FF;
}

.nav a:visited {
	color: #472848;
}

.nav a:hover {
	text-decoration: underline;
	font-weight:bold; 
	background-color: Transparent;
	color: #9F0000;
}

.nav a:active {
	text-decoration: none;
}

/*.note
{background-color: #003333;
border-width: thin;
border-color: black;
Border-style:ridge
color:white;
font-familt:Verdana,Geneva,sans-serif;
font-size: .9em;
vertical-align: text-bottom}*/

/*.TitleHeader for the Title on the Body document
*/


.bullet-table {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	color: #000000;
	background-position: left top;
	letter-spacing: normal;
	text-align: right;
	vertical-align: text-bottom;
	word-spacing: normal;
	white-space: nowrap;
	display: table-row;
	list-style-position: outside;
	list-style-type: circle;
}
.nobullets {
	LIST-STYLE-TYPE: none
}

