/* CSS Document */

body
{
  /* MSIE 5 doesn't center based on auto left/right margins, 
     but 'text-align:center' does center top-level divs: */
  text-align: center;
  /* Specify a min-width for the body as wide as the 'wrapper'
     element itself. This prevents negative (i.e. inaccessible)
     left-margins in narrow browser windows when using 
     Navigator 6+/Mozilla on Win32: */
  min-width: 800px;
	margin: 0px;
	background-image:url('background.jpg');
    font-family: Arial, Helvetica, sans-serif;
}

#wrapper {
  /* Reset alignment to compensate for 'text-align:center': */
  text-align: left;
  /* Specify the width of the element. This should be the same
     as 'body min-width': */
  width: 800px;
  background:#EBEBEB;
  /* Set left and right margins to auto, thus centering the 
     element in the containing (body) tag: */
  /* border:1px solid #000; */
  margin-left: auto;
  margin-right: auto;
}



p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000000;
	/* text-align: left;*/
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #000000;
}

