/* Sets <body> </body> properties left and right margin to % of screen width */
body         {
	margin: auto 10% 2% 10%;
	background: White;
	font-size: 100.00%;
	font-family: "Times New Roman", Times, serif;
	line-height: 125%;
	letter-spacing: 1px;
	word-spacing: .2px;	
}

/* 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;	
	font-weight: bold;
}
a:active   {
	color: black;
	text-decoration: none;
	font-size: inherit;
	font-weight: bold;
}



/* 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: 90%;
	padding: 8px;
	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: 0px none transparent;
	font-style: normal;
	font-size: 10px;
	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 */
#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 paragraphs <p></p>, indents by 30 pixels    */
p          {
	text-indent: 30px;
	font-style: normal;
	font-size: 19px;
	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: 19px;
	font-weight: 300;
}

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


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

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


/* sets borders color and style of <table> element  */
table         {
	BORDER-BOTTOM-COLOR: Blue;
	BORDER-BOTTOM-STYLE: solid;
	BORDER-LEFT-COLOR: Blue;
	BORDER-LEFT-STYLE: solid;
	BORDER-RIGHT-COLOR: Blue;
	BORDER-RIGHT-STYLE: solid;
	BORDER-TOP-COLOR: Blue;
	BORDER-TOP-STYLE: solid;
}

/*  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: 21px;
	font-weight: 600;
	border: none;
}

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


/* sets font style and weight of <em></em> */
em         {
	font-style: oblique;
	font-weight: 600;
	font-size: inherit;
}


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

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

/* sets  style and weight of <b></b> */
b     {
	font-style: normal;
	font-size: inherit;
	font-weight: 600;
}

/* 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 color and boarders, CSS trick to force color to display. <hr> */

hr        {
	height: 0px;
	border: 0px;
	border-top: 2px solid Blue;
	text-align: center; !important;	
}


/* 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: #0000FF;
	font-style: normal;
	font-weight: 900;
	margin-top: 1mm;
	margin-bottom: 1mm;
	line-height: 110%;
}

h1         {
	font-size: 46px;
}
h2         {
	font-size: 42px;
}
h3         {
	font-size: 38px;
}
h4         {
	font-size: 34px;
}
h5         {
	font-size: 30px;
}
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: 200;
}
.XS        {
	font-style: normal;
	font-size: 12px;
	font-weight: 200;
}
.XXS       {
	font-style: normal;
	font-size: 10px;
	font-weight: 200;
}


.XXLred    {
	Color: #ff0000;
	font-style: normal;
	font-size: 26px;
	font-weight: 500;
}
.XLred     {
	color: #ff0000;
	font-style: normal;
	font-size: 23px;
	font-weight: 500;
}
.Lred      {
	Color: #ff0000;
	font-style: normal;
	font-size: 21px;
	font-weight: 500;
}
.Mred      {
	Color: #ff0000;
	font-style: normal;
	font-size: 19px;
	font-weight: 500;
}
.Sred      {
	Color: #ff0000;
	font-style: normal;
	font-size: 15px;
	font-weight: 500;
}
.XSred     {
	Color: #ff0000;
	font-style: normal;
	font-size: 12px;
	font-weight: 500;
}
.XXSred    {
	Color: #ff0000;
	font-style: normal;
	font-size: 10px;
	font-weight: 500;
}

.XXLblue   {
	Color: #0000FF;
	font-style: normal;
	font-size: 26px;
	font-weight: 500;
}
.XLblue    {
	color: #0000FF;
	font-style: normal;
	font-size: 23px;
	font-weight: 500;
}
.Lblue     {
	Color: #0000FF;
	font-style: normal;
	font-size: 21px;
	font-weight: 500;
}
.Mblue     {
	Color: #0000FF;
	font-style: normal;
	font-size: 19px;
	font-weight: 500;
}
.Sblue     {
	Color: #0000FF;
	font-style: normal;
	font-size: 15px;
	font-weight: 500;
}
.XSblue    {
	Color: #0000FF;
	font-style: normal;
	font-size: 12px;
	font-weight: 500;
}
.XXSblue   {
	Color: #0000FF;
	font-style: normal;
	font-size: 10px;
	font-weight: 500;
}


.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;
}

