HTML, BODY						{
									margin: 0px;
									padding: 0px;
								}
								
BODY							{	margin: 15px 0px 15px 0px;
									background-color: Beige;
								}
								
.MainContentContainer			{	width: 100%; height: 100%;
									min-width: 300px; max-width: 1200px;
									overflow: hidden;
									display: flex;
									flex-wrap: wrap;
									border: 1px solid black;
									margin: 0px auto 0px auto;
									background-color: Cornsilk;
									box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.8), 0 10px 15px 0 rgba(0, 0, 0, 0.8);
								}
								
.MainTitleContainer				{	flex-basis: 100%;
									height: 150px;																
									background: url("/images/header.jpg") left top repeat-x;
									background-position: 0px 0px;
									background-repeat: repeat-x;
									animation: animatedBackground 15s linear infinite;
									overflow: hidden;	
									border-bottom: 1px solid black;
								}
								
.MainContent					{	flex-basis: 100%;
									display: flex;
									flex-wrap: wrap;
								}
								
.MainContent DIV				{	min-width: 300px;
									box-sizing: border-box;
									overflow: hidden;
								}
								
.MainFooterContainer			{	flex-basis: 100%;
									height: 40px;
									background-color: DarkGreen;
									color: white;
									border-top: 1px solid black;
									border-bottom: 1px solid black;
								}
								
.MainSitemap					{	flex-basis: 100%;
									background-color: AliceBlue;
								}

								
.FooterLine						{	text-align: center;
									font-family: Roboto, Arial;
									font-size: 11pt;
									margin: 10px 0px 0px 0px;
								}

.FooterLine A					{	text-decoration: none;
									color: white;
								}
								
.TitleLine						{	margin: 50px 0px 0px 20px;
									font-family: Chivo;
									font-size: 36pt;
									color: #74bc6a;
									line-height: 80%;
									text-shadow:  1px  1px 1px black,
                  								  1px -1px 1px black,
                 								  -1px  1px 1px black,
                 								  -1px -1px 1px black,
                 								  2px 2px grey;;
								}
								
.Name							{	font-size: 24pt;
									font-family: Chivo;
								}
								
.Title							{	font-size: 42pt;
									font-family: ChivoItalic;
								}
								
@keyframes animatedBackground 	{
									from { background-position: 500% 0; }
									to { background-position: 0% 0; }
								}