/* Sets left and right margin to 10% of screen width, font to Times and 
background image to default beige AQ tree */

body         {
	margin: auto 10% auto 10%;
	font-size: 100.00%;
	font-family: "Times New Roman", Times, serif;
	background: url(images/tree.jpg) repeat;
	background-color: #FFFFF3;
}

/* This section sets color of URL'S and whether they are under lined or not */

a:link     {
	color: #C80000;
	text-decoration: underline;
}
a:visited  {
	color: #0032FF;
	text-decoration: none;
}
a:hover    {
	color: green;
	text-decoration: underline;
}
a:active   {
	color: black;
	text-decoration: none;
}

/* sets font side and weight of <p> paragraphs </p> */

p          {
	text-indent: 0px;
	font-style: normal;
	font-size: 19px;
	font-weight: 400;
}

/* sets font size and weight of paragraphs <p class-"indent"> indents by 30 pixels </p>   */

p.indent {
	text-indent: 30px;
	font-style: normal;
	font-size: 19px;
	font-weight: 400;
}

/* sets font size and weight of <dl> element <dt> */
            
dt         {
	font-style: normal;
	font-size: 21px;
	font-weight: 600;
}

/* sets font size and weight of <dl> element <dd>  */

dd         {
	font-style: normal;
	font-size: 19px;
	font-weight: 300;
}

/* sets font size and weight of <ol> or <ul> element <li>  */

li         {
	font-style: normal;
	font-size: 19px;
	font-weight: 300;
}

/* sets font size and weight of <table summary="Layout table" > element <th> */

th         {
	font-style: normal;
	font-size: 21px;
	font-weight: 600;
}

/*  sets font size and weight of <table summary="Layout table" > element <td> */

td         {
	font-style: normal;
	font-size: 19px;
	font-weight: 300;
}

/* sets font style and weight of <em> and <i> */

em         {
	font-style: oblique;
	font-weight: 400;
}

i          {
	font-style: oblique;
	font-weight: 400;
}

/* sets font size, style and weight of <strong> */

strong     {
	font-style: normal;
	font-size: larger;
	font-weight: 500;
}

/* sets font size, style and weight of <b> */

b         {
	font-style: normal;
	font-size: inherit;
	font-weight: 500;
}
sub {
font-size : smaller;
font-family : inherit;
font-style : inherit;
font-variant : inherit;
font-weight : normal;
}

sup {
	font-size: smaller;
	font-family: inherit;
	font-style: inherit;
	font-variant: inherit;
	font-weight: normal;
	padding-bottom: 2px;
}

/* sets font color, style and weight of headlines
   reduces margins around headlines to reduce blank lines 
	aligns text to center  */

h1,h2,h3,h4,h5,h6  {
	color: #000000;
	font-style: normal;
	font-weight: 900;
	margin-top: 2mm;
	margin-bottom: -1mm;
}

