/* style.css */

/* LAYOUT ELEMENTS */

   body, input, textarea {
	background-color: white;
   }

   #wrapper  {
	width: 550px;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	border-right: 1px solid #ccffcc;
	border-left: 1px solid #ccffcc;
	vertical-align: center;
   }


   /* TEXT STYLES REGULAR */

   h1  {
	font-family: helvetica, verdana, sans-serif;
	font-size: 50px;
	color: #ccffcc;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	padding-top: 150px;
	padding-bottom: 0px;
   }


   
   p  {
	font-family: helvetica, verdana, sans-serif;
	font-size: 11px;
	line-height: 16px;
	font-style: normal;
	padding-top: 0px;
	text-align: center;
	padding-bottom: 100px;
	color: black;
   }

   a  {
	font-family: helvetica, verdana, sans-serif;
	font-style: normal;
	font-weight: bold;
	color: #339999;
	text-decoration: none;
   }

   a:hover  {
	color: #cc3366;
   }

   img  {
	border: black 1px solid;
   }

   em  {
	font-style: italic;
   }

   strong  {
	font-weight: bold;
   }



