#optin {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}

/* CSS Document */
/* 
The Following code defines what the text will look like. I am using CSS for fonts and sizes
because it is relatively straightforward. I didn't want to show you more complex CSS. 
*/

/* These three lines determine how all h1, h2 and h3 headers will look */
/* If you want to change all of the Headers from Arial to Georgia, simply
change which lines are commented out, and which ones aren't.  */

#optin h1{
	/* font-family: Tahoma;*/ 
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 16pt;
	letter-spacing: -1;
	font-weight: bold;
	text-align: center;
	line-height: 1.3em;
}

#optin h2{
	/* font-family: Tahoma; */
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 14pt;
	letter-spacing: -1;
	font-weight: bold;
	text-align: center;
	color: #000000;
}

#optin h3{
	/* font-family: Tahoma;*/ 
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	font-size: 14pt;
	letter-spacing: -1;
	font-weight: bold;
	color: #000080;
	text-align: center;
}

#optin h4 {
	/* font-family: Tahoma; */
	/*font-family: Georgia, "Times New Roman", Times, serif;*/
	font-size: 14pt;
	color: #00080;
	background-position: center;

}

/* This is the P tag definition, and determines how most of the text will look. */
#optin p {
	/* font-family: arial; */
	/* font-family: Georgia, "Times New Roman", Times, serif;  */
	/* font-size: 12pt; */
	text-align: left; 
	font-style: normal;
	font-weight: normal;
	color: #000000;
	/* text-indent: 20px; */

}

/* LI tags surround the List Items -- the bulleted stuff. */
#optin li {
	/* font-family: arial; */
	/* font-family: Georgia, "Times New Roman", Times, serif; */
	/* font-size: 12pt;*/
	text-align: left;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	line-height: 1.5;
}

/* This is what color links will be. */
#optin a {
	color: #0000FF;
	/* text-decoration: none; */
}

#optin div.photo {
	float: right;
	width: 25%;
	border: thin silver solid;
	margin: 0.5 em;
	padding: 0.5 em;
}

#optin div.photo p { 
	text-align: center;
	font-style: italic;
	font-size: smaller;
	text-indent: 0;
}

#optin table.optin {
	width: 355px;
	text-align: center;
	margin-bottom: 10px;
	border-right: #000000 3px dashed;
	border-left: #000000 3px dashed;
	border-top: #000000 3px dashed;
	border-bottom: #000000 3px dashed;
	/* width: 70%; */
	border-collapse: collapse;
	background-color: #98ffff;
}





