/*--------------------------------------------------
Basic Style Sheet
version: 1.0
author: me
website: 
date: 
--------------------------------------------------*/

/*  Basic Elements and Layout  */
/* note - margin is outside specified width, but padding is inside specified width in IE but additional in others */

html
   {
   margin: 0;   /*  setting border: 0 hoses IE win window inner well border  */
   padding: 0;
   }

body
   {
   background-color: #FFFFFF;
   background-image: url('background.gif');
   border-style: none;
   margin: 0px auto;   /*  center on everything else  */
   padding: 0px;   /*  setting border: 0 hoses IE win window inner well border  */
   text-align: center;   /*  center on IE  */
   }



/*-----------------------------------------------------------------------------
Miscellaneous
-----------------------------------------------------------------------------*/

.standard
   {
   background-color: inherit;
   color: #333333;
   font-family: verdana, arial, sans-serif;
   font-size: 26px;
   font-style: normal;
   font-weight: normal;
   line-height: 17px;
   margin: 0px;
   padding: 0px;
   text-align: center;
   }

p
   {
   margin-top: 0px; /* fixes IE and FF treating new paragraphs differently */
   margin-bottom: 11px;
   margin-left: 0px;
   margin-right: 0px;
   }

















































