/* This is a comment. This  sets <body> </body> properties left and right margin to 18% of screen width, top to auto and bottom to 2%. Borders and margin order goes: Margin/border-top, Margin/border-right, Margin/border-bottom, Margin/border-left around the box. font-size and text-rendering fix browser flubs
rest controls font color and type, size and background settings.  */

body         {
	margin: auto 10% 2% 10%;
	font-size: 100.00%;
	font-family: "Times New Roman", serif;
	color: Black;
	font-variant: normal;
	line-height: normal;
	letter-spacing: normal;
	background-color: #FFFFF4;
	background-image: none;
}

/* This section sets color of URL'S and whether they are underlined or not, they need to be in this order. */
a:link     {
	color: Red;
	text-decoration: underline;
	font-size: inherit;
}
a:visited  {
	color: Blue;
	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;
}

/* sets border of images to none and 0 margins */

img {
	border: none;
	margin: 0;
}

/* sets font size and weight of paragraphs <p></p>, indents by 30 pixels    */

p          {
	text-indent: 30px;
	font-style: normal;
	font-size: 18px;
	font-weight: 300;
}

/* sets font size and weight of paragraphs <p class="noindent"> indents by 0 pixels </p>   */
p.noindent {
	text-indent: 0px;
	font-style: normal;
	font-size: 18px;
	font-weight: 300;
}


/* sets bottom margin of lists */
ol, ul, dl         {
	margin-bottom: -1px;
}

/* sets font size and weight of list element <li></li> */
li         {
	font-style: normal;
	font-size: 18px;
	font-weight: 300;
}

/* sets font size and weight of list element <dt></dt> */
            
dt         {
	font-style: normal;
	font-size: 20px;
	font-weight: 450;
}

/* sets font size and weight of list element <dd></dd> */
dd         {
	font-style: normal;
	font-size: 18px;
	font-weight: 300;
}

/*  sets font size and weight of <table> element <caption></caption> */
caption     {
	font-style: normal;
	font-size: 12px;
	font-weight: 100;
	line-height: 110%;
	letter-spacing: 1px;
	word-spacing: .1px;
}

/* sets font size and weight of <table> element <th></th> */
th         {
	font-style: normal;
	font-size: 20px;
	font-weight: 450;
}


/*  sets font size and weight of <table> element <td></td> */
td         {
	font-style: normal;
	font-size: 18px;
	font-weight: 300;
}


/* sets font style and weight, inherits sixe of parent element of <em></em> and <i></i>*/
em, i         {
	font-style: oblique;
	font-size: inherit;
	font-weight: 500;
}


/* sets font size, style and weight, 110% bigger than parent element of <strong></strong> and <b></b> */
strong, b     {
	font-style: normal;
	font-size: 110%;
	font-weight: 700;
}

/* underlines <acronym title="Latter Day Saint, a member of The Church of Jesus Christ of Latter-day Saints">LDS</acronym> with black dots */
acronym {
  border-bottom: 1px dotted black;
}

/* sets font color, style and weight of headlines <h?></h?>
   reduces margins around headlines to reduce blank lines  */

h1,h2,h3,h4,h5,h6  {
	color: black;
	font-style: normal;
	font-weight: 900;
	margin-top: 1mm;
	margin-bottom: 1mm;
	line-height: 110%;

}

h1         {
	font-size: 40px;
}
h2         {
	font-size: 36px;
}
h3         {
	font-size: 32px;
}
h4         {
	font-size: 28px;
}
h5         {
	font-size: 24px;
}
h6         {
	font-size: 20px;
}

/* Container sets a width of contents <div id="container">content</div> to 90% of the margins set in body and 9px of padding. Sets border to 0Px width,  none for type, transparent for color in other words no border, backgound color and image */

#container{
	width: 90%;
	padding: 8px;
	border: 0px none transparent;
	background-color: #ffffff;
	background-image: none;
}


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

#footer{
	width: 50%;
	margin: auto;
	padding: 10px;
	border: 0px none transparent;
	font-style: normal;
	font-size: 11px;
	font-weight: 100;
	line-height: 110%;
	letter-spacing: 1px;
	word-spacing: .1px;
	text-align: center;
}
/* Pseudo links set links only in footer to black except for active which is green, links inherit other link attributes set above unless other wise set */
#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;}



