/* CSS STYLESHEET: styles-main.css */

/* --------------------- */
/* History                            
    Date      Who  Change
	24APR2024 TSA  Created
*/
/* Common Artwork */
:root {
  --front-page-bg: url('/jackson/assets/artwork/front-page-bg.jpg');
  --other-pages-bg: url('/jackson/assets/artwork/other-page-bg.jpg');
  
}


* {
  margin: 0;
  padding: 0;
}


html,
body {
  max-width: 1200px;
  height: 100%;
  align-items: center;
  padding: 10px;
}

/* Body Main tag for all pages */
body {
  max-width: 1200px;
  font-family: Cambria, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  background-color:antiquewhite;
}

/* Headings */
h1,
h2,
h3 {
  margin: 0 0 20px 0;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bold;
  text-align: left;
  padding-bottom: 10px;
}

h1 {
  font-size: 1.8em;
  padding-top: 20px;

}

h2 {
  font-size: 1.4em;
  padding-top: 15px;
  text-transform: capitalize;
}

h3 {
  font-size: 1.4em;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: normal;
  font-style: italic;
  text-transform: capitalize;
  padding-top: 10px;
}

p,
ul,
ol,
dl,
th,
td {
  margin-top: 0;
  margin-bottom: 6px;
  line-height: 1.4;
  text-align: left;
}

li{
  margin-left:20px;
  line-height: 1.4;
}

a { 
  text-decoration: none;
}


#userContentFP{
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  
}


table.holder{
  background-color: #FFF;
  border-width: 0;
  padding: 0;
  margin: 0;
}

footer{
  width: 900px;
  margin-top: 40px;
  padding: 40px 20px;
  border-top: #666666 solid 2pt;
 align-items: center;
  
}
/* --------------------- */