div.feedburnerFeedBlock {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
width: 600px;
text-indent: 40px;
}

div.feedburnerFeedBlock p.feedTitle {
font-size: 110%;
font-weight: bold;
text-indent: 40px;
}

div.feedburnerFeedBlock span.headline a{
color: #990000 ;
font-weight: bold;
text-indent: 40px;
}
div.feedburnerFeedBlock span.headline {
display: inline;
text-indent: 40px;
}

div.feedburnerFeedBlock p.date {
display: inline;
margin-left: 1em;
margin-right: .5em;
color: #aaaaaa ;
text-indent: 40px;
}

div.feedburnerFeedBlock ul li div {
display: inline;
text-indent: 40px;
}
div.feedburnerFeedBlock ul li {
text-indent: 40px;
margin:0;
padding:0 0 .25em 0;
}
div.feedburnerFeedBlock ul {
margin:0 0 1.5em;
padding:0 0 1.5em;
border-bottom:1px dotted #ccc;
list-style:none;
} 

body {
		background: #ffffff;
		background position: center;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-top: 9px;
}
.style4 {	
	font-size: 13px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.style5 {	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
}
.style1 {font-family: Tahoma, Arial, Helvetica, sans-serif}
.style11 {font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; font-size: 14px; color: #FFFFFF; }
.style12 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 16px; }
.style14 {
	font-size: 12px; 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-weight: bold; 
	color: #333333; }
.style7 {font-size: 12px; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; }
.style18 {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	color: #333333; font-size: 12px;}
.italic12 {
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: italic;
	color: #333333}
	
.linksbody {
	font-size: 12px; 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-weight: bold; 
	color: #333333; }

a:link {
	color: #333333;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #333333;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
	
  //send email
  $email = $_REQUEST['email'] ; 
  $subject = $_REQUEST['subject'] ;
  $message = $_REQUEST['message'] ;
  mail( "cgersh@comcast.net", "Subject: $subject",
  $message, "From: $email" );
  echo "Thank you for using our mail form";
  }
else
//if "email" is not filled out, display the form
  {
  echo "<form method='post' action='mailform.php'>
  Email: <input name='email' type='text' /><br />
  Subject: <input name='subject' type='text' /><br />
  Message:<br />
  <textarea name='message' rows='15' cols='40'>
  </textarea><br />
  <input type='submit' />
  </form>
