<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
@charset "UTF-8";
 */

/* BODY, SPLASH, AND CONTAINER */

body {
	font: 1em Verdana, Arial, Helvetica, sans-serif;
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	}
	
/* Splash */

.byebye_slide {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column; 
	align-items: center;
	justify-content: center;
/*
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
 */
	width: 90%;
	margin: auto;
	padding: 1em 1em;
}

.byebye_greeting {
	display: flex;
	display: -webkit-flex;
	flex-direction: row;
	-webkit-flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
/* 
	justify-content: center;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
 */
	width: 60%;
	margin: auto;
	padding: 1em 1em;	
}

.byebye_message {
	text-align: left;
}

.welcome_slide {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	width: 60%;
	margin: auto;
	padding: 1em 1em;
}

.second_slide {
	width:40%
}

#images {
	display: flex;
	display: -webkit-flex;
	flex-direction: row;
	-webkit-flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	width: 100%;
	padding: 1em 1em;
}
	
#container {
	width: 680px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
/* 
	background: #C0B798;
 */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #fff;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/* HEADER */
div#header {
	display:block;
	width: 100%;
	margin: 0 auto;
	text-align:center;
}

header h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: center;
	margin-top: -10px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	letter-spacing: 0.05em;
	word-spacing: 0.3em;
	color: #f00;
}
 
h2.Subtitle {
	margin-top:0em;
	font-variant:small-caps;
	text-align:center;
	color:#f00;
	font-size: 1.4em;
}

h2.Body_Subtitle {
	margin-top:1em;
	font-variant:small-caps;
	text-align:center;
	color:#f00;
	font-size: small;
}

header h6 {
	margin: auto; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding-bottom: 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: cursive;
	font-size: small;
	text-align: center;
	color: #f00;
}

header hr {
	float:none;
	color: #fff;
}

/*  MAIN CONTENT */

#mainContent {
	background: #fff;
	text-align: justify;
	background-color: #fff;
	color: #000;
	padding-top: 10px;
	padding-right: 50px;
	padding-bottom: 10px;
	padding-left: 50px;
	margin-top: 0px;
	margin-bottom: 0px;
}

/* MENUBAR */
	
#mainContent ul {
float:left;
width:100%;
padding:0;
margin:0 0 30px 0;
list-style-type:none;
}

#mainContent ul li a {
float:left;
text-decoration:none;
color:#fff;
width:23.5%;
background-color:#f00;
padding:0.2em;
border-right:1px solid white;
text-align:center;
}

/* MENUBAR LINKAGE */

#mainContent ul li a:hover {background-color:#fff; color:#888; font-weight:900;}
#mainContent ul li a.last {border-right:none;}
#mainContent li {display:inline;}


/* Viewing Guide */

#container #mainContent p.Guide {
	font-size: 0.8em;
	color:#888;
	}	

/* MAIN CONTENT */

span.firstLetter {
	float:left;
	width:1.1em;
	font-size:400%;
	font-family:cursive;
	color:white;
	line-height:85%;
}

#container #mainContent hr {
	color: #f00;
}

span.super {
	vertical-align: super;
	font-size:0.6em;
}

/* TABLE OF CONTENTS AND IMAGE */

#mainContent #tableContent {
	background-color:transparent;
	text-align:left;
	float:none;
	display:block;
}

#mainContent h2.Subtitle {
	text-align:left;
}

.SectionSubTitle {
	text-align:center;
	font-size:1.6em;
}

#mainContent h3.Subtitle {
	text-align:left;
	color:#f00;
	font-family: 'Bradley Hand', cursive;
	font-size: 1.3em;
}

#mainContent #tableContent ul {
	background-color:transparent;
	float:none;
	list-style:inside;
	list-style-type:disc;
}

#mainContent #tableContent ul li {
	float:none;
	text-align:left;
	display:block;
}

#TableContent li.SectionTitle ul.TableSubContent li.SubContentTitle {
	font-variant: small-caps;
	color: #000000;
}

#mainContent #tableContent .SectionTitle {
	font-size: 1.2em;
	font-weight:bold;
	color: #807A79;
	font-variant: small-caps;
/* 
	color: #C0B798;
 */
}

#mainContent #tableContent ul li a {
	background-color:transparent;
	border:none;
	float:none;
	text-align:left;
	font-size:0.8em;
	
}

#mainContent #tableContent ul li a:link {color:#F00;}
#mainContent #tableContent ul li a:visited {color:#888;}
#mainContent #tableContent ul li a:hover {color:#000; font-weight:700;}
#mainContent #tableContent ul li a:active {color:#f00;}

/* RETURN TO INDEX LINKAGE */

footer.Contents {text-align:center; color:#FFF}

footer.Contents a:link {color:#F00;font-size:0.8em; text-decoration:none}
footer.Contents a:visited {color:#888;font-size:0.8em;}
footer.Contents a:hover {color:#000; font-weight:700;font-size:0.8em;}
footer.Contents a:active {color:#f00;font-size:0.8em;}

/* Thumbnails */
/*Picture Frames*/

span.Photo_Frame {
	float:right;
	padding: 0.5em;
	background-color:#fff;
	border-style:solid;
	border-width:0.5em;
	border-color:#ADA16E;
	margin-left: 1em;
	margin-top:1em;
	margin-bottom:1em;
}

.gallery {
	display:none;
}

/* COMMON LISTS */

section#the_coup .Itemization ol {
	background-color:transparent;
	float:none;
	list-style:inside;
	list-style-type:disc;
}

section#the_coup .Itemization li {
	text-align:left;
	display:block;
}

/* SPECIAL EFFECTS */

section p.Intro:first-letter {
	float:left;
	display:block;
	position:relative;
	margin-top: 0.12em;
/* 
	margin:-0.125em;
 */
	margin-right:0.1em;
	margin-left:0em;
	text-transform:uppercase;
	overflow:hidden;
	font-family:Georgia;
	font-size:4.4em;
/* 
	line-height:1.1em;
 */
 }

img.sheep_image {
	float:right;
	clear:right;
	background-color: #666;
}
	
/*
span.firstLetter {
	float:left;
	width:1.1em;
	font-size:400%;
	font-family:cursive;
	color:white;
	line-height:3em;
	margin-top:1em;
}
*/

span.super {
	vertical-align: super;
	font-size:0.6em;
}

p.Footnotes {
	font-size: 0.8em;
	clear:left;
}

h3 {
	text-align: left;
}

.italic_insert {
	color: #f00;
}

/* INTERNAL LINKAGE */
a.InternalLink:link {color:#888;font-size:1em; text-decoration:none}
a.InternalLink:visited {color:#AAA;font-size:1em;}
a.InternalLink:hover {color:#F00; font-weight:700;font-size:1em;}
a.InternalLink:active {color:#FFF;font-size:01em;}

/* Sideboard Linkage */

a.Sideboard:link {color:#CDA210;font-size:1em; text-decoration:none}
a.Sideboard:visited {color:#AAA;font-size:1em;}
a.Sideboard:hover {color:#FFF; font-weight:700;font-size:1em;}
a.Sideboard:active {color:#000;font-size:01em;}


 
/* HORIZONTAL LINE */

hr {
	float: left;
	width:30%;
}

/* FOOTER */

footer#webdesign {
/*	clear: both; */
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #999;
}

div#footer_item_right {
	text-align: right;
	text-align: -moz-right;
	text-align: -webkit-right;
}

.Italics {
	font-style:italic;
}

.SmallCaps {
	font-variant:small-caps;
}

/*.FooterLeftFloat {
	float:left;
	margin:0em;
	text-align:left;
	font-size:0.8em;
	padding-left: 2em;
	padding-bottom: 2em;
	border-style:none;
	background-color:#f00;
}

.FooterRightFloat {
	float:right;
	margin:0em;
	text-align:right;
	font-size:0.8em;
	padding-right: 2em;
	padding-bottom: 2em;
	border-style:none;
	background-color:#f00;
}
*/

a.footlink:link {
	font-weight: 400;
	color: #FFF;
	text-decoration: none;
	outline:none;
}

a.footlink:visited {
	font-weight: 400;
	color: #fff;
	text-decoration: none;
	outline:none;
}

a.footlink:hover {
	font-weight: 700;
	color: #000;
	text-decoration: none;
	outline:none;
}

a.footlink:active {
	font-weight: 700;
	color: #000;
	text-decoration: none;
	outline:none;
}


/*This code is responsible for the styling of the first letter of selected paragraphs.*/



em.Decoration {
	font-style:normal;
}

h1.Closing {
	font-style:normal;
	font-family:cursive;
	text-align:center;
	margin-bottom:0em;
	}

p.Signature {
	font-style:normal;
	font-family:cursive;
	text-align:right;
}
</pre></body></html>