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

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

/* <body class="bodywhite"></body>Sets left and right margin to 10% of screen width, font to Times body for pages in site that are white and no background image. */

.bodywhite         {
	margin: 2% 10% 2% 10%;
	font-size: 100.00%;
	font-family: "Times New Roman", Times, serif;
	background: White;
}

/* This section sets color of URL'S and whether they are underlined or not, need to be in this order */

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

img {
	border: none;
	margin: 0;
}

/* Container sets a width of content <div id="container">content</div> to 90% of the margins set in body 
sets border to none */

#container{
	width: 80%; 1% 80% 1%;
	margin: auto;
	padding: 10px;
	border: 0px none transparent;
}

/* Footer sets a width of content <div id="footer">content</div> to 50% of the margins set in body 
sets border to none, centers text, font size 10 px controls spacing */

#footer{
	width: 50%;
	margin: auto;
	padding: 10px;
	border: 2px none transparent;
	font-style: normal;
	font-size: 10px;
	font-weight: 100;
	line-height: 115%;
	letter-spacing: 1px;
	word-spacing: .1px;
	text-align: center;
}

/* Pseudo links set links only in footer to black except for active which is green */
#footer a:link {color: black;}
#footer a:visited {color: black;}
#footer a:hover {color: green;}
#footer a:focus {color: black;}
#footer a:active {color: black;}


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

p          {
	text-indent: 0px;
	font-style: normal;
	font-size: 20px;
	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: 20px;
	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 bottom margin of ol  lists */
ol         {
	margin-bottom: -1px;
}

/* 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: 600;
}

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

b         {
	font-style: normal;
	font-size: inherit;
	font-weight: 600;
}

/* sets font size, style and weight of sub and super script */
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;
}

pre      {
	font-style: normal;
	font-size: 19px;
	font-weight: 200;
}

/* 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;
}


h1         {
	font-size: 36px;
}

h2         {
	font-size: 34px;
}

h3         {
	font-size: 32px;
}

h4         {
	font-size: 30px;
}

h5         {
	font-size: 28px;
}

h6         {
	font-size: 26px;
}


/* selectors for font sizes  and color <span class="XXL"></span>  */
.XXL       {
	font-style: normal;
	font-size: 26px;
	font-weight: 300;
}

.XL        {
	font-style: normal;
	font-size: 23px;
	font-weight: 300;
}

.L         {
	font-style: normal;
	font-size: 21px;
	font-weight: 300;
}

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

.S    {
	font-style: normal;
	font-size: 14px;
	font-weight: 300;
}

.XS    {
	font-style: normal;
	font-size: 12px;
	font-weight: 300;
}

.XXS   {
	font-style: normal;
	font-size: 10px;
	font-weight: 300;
}




.XXLred    {
	Color: #ff0000;
	font-style: normal;
	font-size: 26px;
	font-weight: 300;
}

.XLred     {
	color: #ff0000;
	font-style: normal;
	font-size: 23px;
	font-weight: 300;
}

.Lred      {
	Color: #ff0000;
	font-style: normal;
	font-size: 21px;
	font-weight: 300;
}

.Mred      {
	Color: #ff0000;
	font-style: normal;
	font-size: 19px;
	font-weight: 300;
}

.Sred      {
	Color: #ff0000;
	font-style: normal;
	font-size: 14px;
	font-weight: 300;
}

.XSred     {
	Color: #ff0000;
	font-style: normal;
	font-size: 12px;
	font-weight: 300;
}

.XXSred    {
	Color: #ff0000;
	font-style: normal;
	font-size: 10px;
	font-weight: 300;
}



.XXLblue   {
	Color: Blue;
	font-style: normal;
	font-size: 26px;
	font-weight: 300;
}

.XLblue    {
	color: Blue;
	font-style: normal;
	font-size: 23px;
	font-weight: 300;
}

.Lblue     {
	Color: Blue;
	font-style: normal;
	font-size: 21px;
	font-weight: 300;
}

.Mblue     {
	Color: Blue;
	font-style: normal;
	font-size: 19px;
	font-weight: 300;
}

.Sblue     {
	Color: Blue;
	font-style: normal;
	font-size: 14px;
	font-weight: 300;
}

.XSblue    {
	Color: Blue;
	font-style: normal;
	font-size: 12px;
	font-weight: 300;
}

.XXSblue   {
	Color: Blue;
	font-style: normal;
	font-size: 10px;
	font-weight: 300;
}

.ND {
	text-indent: 9px;
	font-style: normal;
	font-size: 0px;
	font-weight: lighter;
	line-height: 95%;
	letter-spacing: .5px;
	word-spacing: .5px;
	display: none !important;
	visibility: hidden;
	text-align: center;
}

#SCRIPT {
	font-family: "Edwardian Script ITC";
	font-size: 1.5em;
	word-spacing: 3px;
}
#SCRIPT p {
	text-indent: 30px;
	font-size: 1.2em;
	word-spacing: 3px;
	font-weight: 400;
}