<!-- new.css -->
<!-- 
This is the master Cascading Style Sheet that controls the appearance of text on web pages.
In the HEAD element of each document, insert a LINK tag and set the attributes for it as follows: 
<LINK REL="stylesheet" HREF="[relative path]/master.css">
-->

<!-- 
To set text attributes in an HTML source file, use this syntax:
<div class=classname>Your Text Here</div> where 'classname' is a class name chosen from those below.
Class names begin with a period. Type them all lower-case as shown, but omit the period in the HTML.
-->

<style type="text/css">

<!-- 

/* the HTML comment tag hides class code from style-impaired browsers */

* 
	{
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	line-height: normal;
	}

tr /*added 9-2007*/	
 { vertical-align:top;
}

.h1  /* 16 point sans-serif, bold */
	{
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 16pt;
	}

.h2  /* 14 point sans-serif, bold */
	{ 
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 14pt;
	}

.h2c  /* 14 point sans-serif, bold, CUSTOM COLOR */
	{ 
	color: #B90000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 14pt;
	}

.h3  /* 12 point sans-serif, bold */
	{ 
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 12pt;
	}

.h3c  /* 12 point sans-serif, bold, CUSTOM COLOR */
	{ 
	color: #B90000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 12pt;
	}
	
.h4  /* 11 point sans-serif, bold */
	{ 
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 11pt;
	}
	
.h4c  /* 10 point sans-serif, bold, CUSTOM COLOR  */
	{ 
	color: #B90000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 10pt;
	}


.body  /* 10 point sans-serif */
	{ 
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 12px;
	}

.bodybold  /* 11 point sans-serif, bold */
	{ 
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 11pt;
	}

.table  /* 10 point sans-serif: use for text inside table cells other than header row */
	{ 
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 10pt;
	}

.tablered  /* 10 point sans-serif: use for text inside table cells other than header row */
	{ 
	color: red;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 10pt;
	}

.tablebold  /* 10 point sans-serif: use for text inside table cells other than header row */
	{ 
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 10pt;
	}

.tableledg /* 8 point bold sans-serif: use for table legend text inside table. */
	{ 
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 8pt;
	}

.labelc  /* 10 point sans-serif, bold, CUSTOM COLOR - use for labels above form fields */
	{ 
	color: #B90000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 10pt;
	}

.f1   /* use for 8 point sans-serif RED footer text */
	{ 
	color: #ff0000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 8pt;
	}

.tbllblc  /* 10 point sans-serif, bold, CUSTOM COLOR - use for labels above form fields */
	{ 
	color: black;
	background: #999999;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 10pt;
	}
	

	/* my test */
a:link {
	text-decoration: underline;
	color:#000000;
}
a:visited {
	text-decoration: underline;
	color:#000000;
}
a:hover {
	text-decoration: underline;
	color: #ff0000;
}
a:active {
	text-decoration: underline;
	color:#000000;
}

.footerBld {
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 13px;
	}
	
.footerC {
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 10px;
	}
	
table.toggle {
	color: black;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: normal;
	font-size: 10px;
	text-align:center;
	border-width: 1px;
	border-spacing: ;
	border-style: solid;
	border-color:#999999;
	border-collapse: collapse;
	background-color: white;

}
table.toggle th {
	border-width: 1px;
	padding: 3px;
	border-style: solid;
	border-color: ;
	background-color: white;
	}
table.toggle td {
	border-width: 1px;
	padding: 3px;
	border-style: solid;
	border-color: ;
	background-color: white;
}
.finePoint {
font-size:11px;
}
.winchMaterials a {
font-size:18px;
font-weight:bold;
color:#b90000;
}

</style>

-->
