/* HTML Elements */ 
	a {} /* Avoid using as will assign it to <a name=""> */
		a:link {
			color: #9E1D22;
			}
		a:visited {
			color: #9E1D22;
			}
		a:hover {
			color: #ff0000;		
			}
		a:active {
			color: #ff0000;		
			} 			 
	
	body {
		background-color: #FAFCF7;
		font: 80%/160% verdana, arial, helvetica, sans-serif; 
		margin: 0;
		padding: 0;
		}		
	
	dl, ol, ul {
		margin-top: 0;
		}
	
	dl dl,dl ol, dl ul, ol dl, ol ol, ol ul, ul dl, ul ol, ul ul {
		}
	
	li {
		padding-top: 6px;
		margin-left: 0;
		padding-left: 0;
		}
		li p, li h2 {
			font-size: 100%;
			}
	
	p, td {
		margin-top: 0;
		}
	
	h1, h2, h3, h4, h5, h6 {
		font-family: arial, helvetica, sans-serif;
		font-weight: bold;	
		color: #85AC44;
		margin: 0 0 1em;
		}
		h1 {
			font-size: 150%; 
			}
		h2 {
			font-size: 130%; 
			padding: 0;
			}
		h3 {
			font-size: 110%; 
			}
		h4 {
			font-size: 100%; 
			}
		h5 {
			font-size: 100%; 
			}
		h6 {
			font-size: 100%; 
			}
	
	img {
		border: none;
		}
	
	li li, dd li, td h1, td h2, td h3, td h4, td h5, td h6, td label, td li, td p, td td {
		font-size: 100%;
		}


/* Format Classes */

	.alignLeft {
		clear: left;
		float: left;
		width: 40%;
		}
		img.alignLeft {
			width: auto;
			}
		li.alignLeft {
			width: 45%;
			}
	
	.alignRight {
		clear: right; 
		float: right;
		width: 40%;
		}
		img.alignRight {
			width: auto;
			}
		li.alignRight {
			clear: none;
			float: none;
			width: auto;
			}
	
	.formRequired {
		font-weight: bold;
		color: #550066;
		}
	
	.highlight {
		background: yellow;
		font-size: 100%;
		font-weight: bold;
		}
		.highlight a {
			text-decoration: none;
			}
	
	.listHeading {
		font-family: Arial, Verdana, Helvetica, sans-serif;
		font-size: 80%; 
		font-style: normal;
		}
		li .listHeading, td .listHeading {
			font-size: 100%;
			}
			
	.needContent {
		background: yellow;
		}				
	
	.noBullets {
		list-style: none;
		margin: 0;
		}
		.textboxLeft .noBullets, .textboxRight .noBullets { 
			margin: 0;	
			}
	
	.pullQuote {}
	
	.smallText {
		font-size: 70%;
		text-align: right;
		}
		li.smallText {
			list-style: none;
			}
	
	.twoColList {}
	.twoColList li {
		float: left;
		padding-bottom: 10px;
		padding-right: 5%;
		width: 40%;
		}
		
	.textboxCenter { 
		background: #eee;
		border-top: 1px dashed red;
		border-bottom: 1px dashed red;
		margin: 10px 20px;
		padding: 10px;
		}
	
	.textboxLeft {
		background: #eee;
		border-bottom: 1px dashed red;
		border-right: 1px dashed red;
		float: left;
		margin: 10px 40px 10px  10px;
		padding: 10px;
		width: 35%;
		}
	
	.textboxRight { 
		background: #eee;
		border-left: 1px dashed red; 
		border-top: 1px dashed red; 
		clear: right; 
		float: right; 
		margin: 10px 20px;
		padding: 10px;
		width: 35%;
		}
