/* HTML Global Tag Modifiers
	The results from this style sheet will be affected and will have an affect on other linked
	style sheets.
	Used to modifiy or place commonly used tags.
	Setting these values will affect ALL tags on the form page unless they are also
	set below in the specific class settings.
	This first section is made up of standard HTML tags and their use is entirely optional.
	They can be removed and easily re-entered using W3C standards.
	*/
	
	body{
		/* Effects entire Body of Form
		*/

		background-color: #000022;
		font-family: sans-serif;
		text-align: center;
		min-width: 600px;
		margin: 0 auto;
		font-size: 11px;

		color: white;
		
	/*	background-image: url(background.jpg);
	background-color: #f7f4e3;
	font-size: small
	*/
	}

	input[type="text"]:focus
	{
		background-color: #d6e6f7;
		border: 2px solid #1860b0;
	}

	input[type="text"]:hover
	{
		border: 2px solid #1860b0;
	}
	
	div {
		/* Effects all DIV tags
		*/
	}
	
	span {
		/* Effects all SPAN tags
		*/
	}
	
	fieldset {
		/* Effects all FIELDSET tags
		*/
		color: #fff;
   		border: 0px #a4a0a0 groove;
		font-size: small;
	}

	
	h1 {font-size: 24px; line-height: 44px; font-weight: bold; margin-top: 0; margin-bottom: 0; color:  #b6c69c;}
	h2 {font-size: 18px; line-height: 40px; font-weight: bold; margin-top: 0; margin-bottom: 0; color:  #b6c69c;}
	h3 {font-size: 16px; line-height: 22px; font-weight: bold; margin-top: 0; margin-bottom: 0; color:  #b6c69c;}
	h4 {font-size: 14px; line-height: 26px; font-weight: bold; margin-top: 0; margin-bottom: 0; color:  #fff;}
	
	hr    {
		/* Effects all horizontal rule lines.
			Netscape based browsers do not support coloured HR so be sure to test
		*/
		color: #000000;
		display: none;
	}

table {
	margin: 0 auto;
	}

/* Classes */

p.warning {
    font-size: large;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
    color: #FF0000;
    text-transform: uppercase;
    width: 100%
}

*.testOutput{
	background-color: black;
	font-family: MS Sans Serif;
	font-size: larger;
	color: white;
    /* display: none */
}

A			{ color:  white; text-decoration: underline; font-size: 10pt;} 
A:link		{ color:  white; text-decoration: underline; font-size: 10pt;} 
A:visited	{ color: white; text-decoration: underline; font-size: 10pt;} 
A:active	{ color:  white; text-decoration: underline; font-size: 10pt;} 
A:hover		{ color:  #f3ce32; text-decoration: underline; font-size: 10pt;}
