/* style.css */

/* LAYOUT ELEMENTS */

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

   #wrapper  {
	width: 550px;
	height: 100%;
	margin: 50px 0 0 150px;
	border-left: 1px solid #00cccc;
	padding: 100px 0 10px 50px;
   }


   /* TEXT STYLES REGULAR */

   h1  {
	font-family: helvetica, verdana, sans-serif;
	font-size: 30px;
	color: #00cccc;
	font-weight: bold;
	text-align: left;
	padding-top: 75px;
   }

   h2  {
	font-family: helvetica, verdana, sans-serif;
	font-size: 14px;
	line-height: 18px;
	font-style: normal;
	font-weight: normal;
	text-align: left;
	padding-bottom: 10px;
	color: black;
   }
   
   p  {
	font-family: helvetica, verdana, sans-serif;
	font-size: 12px;
	line-height: 18px;
	font-style: normal;
	padding-top: 0px;
	text-align: left;
	padding-bottom: 10px;
	color: black;
   }

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

   a:hover  {
	color: #660099;
   }

   img  {
	border: black 1px solid;
   }

   em  {
	font-style: italic;
   }

   strong  {
	font-weight: bold;
   }

	.float1 { float: left; }
	.float2 { float: left; margin-left: 20px; }
	.clear { clear: both; }



