/* 
	
	Base style sheet.  Styles that apply to all site pages.
	 - Sets color and font for the elements H1 - H6, P, OL, and UL
	 - 4 indentation classes, sub1 - sub4 for all.
	 - 5 OL style types, number, upper, lower, bigroman, littleroman (default number)
	 - 5 UL style types, circle, disc, square, dash, dot (default circle)

	================
	Do not modify this file.  
	To change or add to base styles for this site, modify Page.css in this same directory.
	================

*/		



	/* Body base style.  Specifies color. */
	BODY
	 {
 		font-family:Verdana, sans-serif;
 		font-style:normal;
	 }
	@media screen
	 {
		BODY
		 {
		 	background-color:rgb(100,130,150);
			color:rgb(0,0,0);
		 }
	 }



	 /* Header-1 base style with 4 indent levels. */
	H1
	 {
 		font-weight:bold;
 		font-size:24pt;
 		margin:.67em 0px .67em 0px;
	 }
	 
	H1.sub1
	 {
 		margin:.67em 25px .67em 25px;
	 }
	 
	H1.sub2
	 {
 		margin:.67em 50px .67em 50px;
	 }
	 
	H1.sub3
	 {
 		margin:.67em 75px .67em 75px;
	 }
	 
	H1.sub4
	 {
 		margin:.67em 100px .67em 100px;
	 }


	 /* Header-2 base style with 4 indent levels. */
	H2
	 {
 		font-weight:bold;
 		font-size:18pt;
 		margin:.67em 0px .67em 0px;
	 }
	 
	H2.sub1
	 {
 		margin:.67em 25px .67em 25px;
	 }
	 
	H2.sub2
	 {
 		margin:.67em 50px .67em 50px;
	 }
	 
	H2.sub3
	 {
 		margin:.67em 75px .67em 75px;
	 }
	 
	H2.sub4
	 {
 		margin:.67em 100px .67em 100px;
	 }
	 

 	/* Header-3 base style with 4 indent levels. */
	H3
	 {
 		font-weight:bold;
 		font-size:14pt;
 		margin:.67em 0px .67em 0px;
	 }

	H3.sub1
	 {
 		margin:.67em 25px .67em 25px;
	 }
	 
	H3.sub2
	 {
 		margin:.67em 50px .67em 50px;
	 }
	 
	H3.sub3
	 {
 		margin:.67em 75px .67em 75px;
	 }
	 
	H3.sub4
	 {
 		margin:.67em 100px .67em 100px;
	 }
	 
	 
 	/* Header-4 base style with 4 indent levels. */
	H4
	 {
 		font-weight:bold;
 		font-size:12pt;
 		margin:.67em 0px .67em 0px;
	 }

	H4.sub1
	 {
 		margin:.67em 25px .67em 25px;
	 }
	 
	H4.sub2
	 {
 		margin:.67em 50px .67em 50px;
	 }
	 
	H4.sub3
	 {
 		margin:.67em 75px .67em 75px;
	 }
	 
	H4.sub4
	 {
 		margin:.67em 100px .67em 100px;
	 }
	 
	 
 	/* Header-5 base style with 4 indent levels. */
	H5
	 {
 		font-weight:bold;
 		font-size:11pt;
 		margin:.67em 0px .67em 0px;
	 }

	H5.sub1
	 {
 		margin:.67em 25px .67em 25px;
	 }
	 
	H5.sub2
	 {
 		margin:.67em 50px .67em 50px;
	 }
	 
	H5.sub3
	 {
 		margin:.67em 75px .67em 75px;
	 }
	 
	H5.sub4
	 {
 		margin:.67em 100px .67em 100px;
	 }
	 
	 
	 /* Header-6 base style with 4 indent levels. */
	H6
	 {
 		font-weight:bold;
 		font-size:10pt;
 		margin:.67em 0px .67em 0px;
	 }

	H6.sub1
	 {
 		margin:.67em 25px .67em 25px;
	 }
	 
	H6.sub2
	 {
 		margin:.67em 50px .67em 50px;
	 }
	 
	H6.sub3
	 {
 		margin:.67em 75px .67em 75px;
	 }
	 
	H6.sub4
	 {
 		margin:.67em 100px .67em 100px;
	 }
	 
	 

	/* Paragraph base style with 4 indent levels. */
	P
	 {
 		font-weight:normal;
 		font-size:8pt;
		margin:6px 0px 1px 0px;
 		line-height:1.3;
 		text-align:justify;
	 }
	@media print
	 {
	  	P
	  	 {
	  	 	font-size:9pt;
		 }
	 }

	P.sub1
	 {
		margin:1px 25px 2px 25px;
 		line-height:1.2;
 		text-align:justify;
	 }
	 
	P.sub2
	 {
		margin:1px 50px 2px 50px;
 		line-height:1.2;
 		text-align:justify;
	 }
	 
	P.sub3
	 {
		margin:1px 75px 2px 75px;
 		line-height:1.2;
 		text-align:justify;
	 }
	 
	P.sub4
	 {
		margin:1px 100px 2px 100px;
 		line-height:1.2;
 		text-align:justify;
	 }
	 

	/* OrderedList base style with 5 types and 4 indent levels. */
	OL
	 {
 		font-weight:normal;
 		font-size:8pt;
		margin:6px 0px 1px 0px;
		padding:0px 0px 0px 25px;
 		line-height:1.3;
 		list-style-type:decimal;
 		list-style-position:outside;
	 }
	@media print
	 {
	  	OL
	  	 {
	  	 	font-size:9pt;
		 }
	 }

	OL.number
	 {
 		list-style-type:decimal;
	 }	 	

	OL.upper
	 {
 		list-style-type:upper-alpha;
	 }	 	

	OL.lower
	 {
 		list-style-type:lower-alpha;
	 }	 	

	OL.bigroman
	 {
 		list-style-type:upper-roman;
	 }	 	

	OL.littleroman
	 {
 		list-style-type:lower-roman;
	 }	 	

	OL.sub1
	 {
		margin:6px 25px 1px 25px;
	 }
	 
	OL.sub2
	 {
		margin:6px 50px 1px 50px;
	 }
	 
	OL.sub3
	 {
		margin:6px 75px 1px 75px;
	 }
	 
	OL.sub4
	 {
		margin:6px 100px 1px 100px;
	 }
	 
	 	/* unOrderedList base style with 5 types and 4 indent levels. */
	UL
	 {
 		font-weight:normal;
 		font-size:8pt;
		margin:6px 0px 1px 0px;
		padding:0px 0px 0px 25px;
 		line-height:1.3;
 		list-style-type:circle;
 		list-style-position:outside;
	 }
	@media print
	 {
	  	UL
	  	 {
	  	 	font-size:9pt;
		 }
	 }

	UL.circle
	 {
 		list-style-type:circle;
	 }	 	
	 	
	UL.disc
	 {
 		list-style-type:disc;
	 }	 	
	 	
	UL.square
	 {
 		list-style-type:square;
	 }	 	

	UL.dash
	 {
 		list-style-image:url(Dash.bmp);
	 }	 	
	 	
	UL.dot
	 {
 		list-style-image:url(Dot.bmp);
	 }	 	

	UL.sub1
	 {
		margin:6px 25px 1px 25px;
	 }
	 
	UL.sub2
	 {
		margin:6px 50px 1px 50px;
	 }
	 
	UL.sub3
	 {
		margin:6px 75px 1px 75px;
	 }
	 
	UL.sub4
	 {
		margin:6px 100px 1px 100px;
	 }
	 
	IFRAME 
	 {
	 	width:100%
	 }
