html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}


/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif
	background-color:#FFFFFF;
	color: #96736D;
	font-size:14px;
	line-height: 10px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}

p, td
{
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif
	color: #96736D;
	font-size:14px;

}


/* Commonly used to style page titles. */
h1 {
  color: #905341;
  font-size: 15px;
  line-height: 10px;
}
/* Commonly used to style section titles. */
h2 {
  color: #905341;
  font-size: 12px;
  line-height: 10px;
}
/* Sets the style for unvisited links. */
a,  a:link, a:visited{
  color: #96736D;
  font-size:12px;  
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:hover {
  font-size:12px;
  color: #663333;
  text-decoration: underline;
}

