/* the design for the whizzo web page is below */
/* the basic design of this web page is:
-Navigation links
-Heading #1 centered ".pad10" 
-Paragraph 1 left margin 100px
-Heading #2 centered ".pad100"
-Paragraph #2
-Paragraph #3

/* This defines the textalign and font for the navigation links on all pages*/
table.nav{
	text-align: center;
	font-family:"Courier New", courier
	}
/* here are the two h1 types with different padding */	
table.nfo{
	text-align: center;
	padding: 10px;
	color: red;
	width: 100%
	font-family:"serif"
	}
img.pad100{
	padding-bottom: 100px
	}
td.total{
	text-align: center;
	padding: 10px;
	color: blue;
	font-family:"sans serif"
	}
h1.pad10{
	color: orange;  
	font-size: xx-large;
	text-align: center;
	padding-bottom: 10px;
	font-family: Arial, sans-serif;
	}
h1.pad100{
	color: orange;  
	font-size: xx-large;
	text-align: center;
	padding-bottom: 100px;
	font-family: Arial, sans-serif;
	}
/* here are the different paragraph types used */
/* the first two are required ones and the third was for fun on investors relations page*/
/* the fourth is for the style1.css page, purple text for fun */
/* I used sans serif for the captions and serif for the text to help people who go 
the trouble to read all this with the little lines*/
p.one{
	/*margin-left: 100px; */
	color: green; 
	font-family: Arial, sans-serif;
	}
p.two{
	/*margin-left:50px;*/
	color: orange;
	font-family: Times, serif
	}
p.three{
	/*margin-left:50px;*/
	color: orange;
	background-color: green;
	font-family: Times, serif
	}
p.four{
	/*margin-left:50px;*/
	color: purple;
	font-family: "Courier New", courier
	}
/* here are the settings for the link colors, 
I put in green for hover for the effect and named the class opp*/
a.opp:link{
			color: #ff0000
			}
a.opp:visited{
			color: #0000ff
			}
a.opp:hover{
			color: #00ff00
			}
	
.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center
	}
