<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 AND CONTAINER */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #f00;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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 */
	}
#container {
	width: 680px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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 */

#header {
	background: none;
	padding: 40px 10px 10px 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #fff;
	color: #888;
}
#header h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: center;
	margin-top: -10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	letter-spacing: 0.05em;
	word-spacing: 0.3em;
}

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

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

#header h6 {
	margin: 0; /* 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: #888;
}

/*  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;
}

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

#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 */

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

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

/* SPECIAL EFFECTS */

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

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

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

/* INTERNAL LINKAGE */
a.InternalLink:link {color:#000;font-size:1em; text-decoration:none}
a.InternalLink:visited {color:#888;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:#F00;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 {
	background: #000;
	text-align: justify;
	vertical-align: baseline;
	background-color: #f00;
	color: #FFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	overflow:hidden;
} 

.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.*/


p.Intro:first-letter {
	float:left;
	display:block;
	position:relative;
	margin:-0.125em;
	margin-right:0.1em;
	margin-left:0em;
	text-transform:uppercase;
	overflow:hidden;
	font-family:Georgia;
	font-size:4.3em;
	line-height:1em;
}

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

/*Picture Frames*/

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

/* Portrait Overlay */

/* the overlayed element */
.Portrait_Overlay {
 
    /* must be initially hidden */
    display:none;
 
    /* place overlay on top of other elements */
    z-index:10000;
 
    /* styling */
    background-color:#333;
	background-image:url(../_Images/_overlay/apple-background.png);
 
    width:600px;
    min-height:533px;
 
    /* CSS3 styling for latest browsers */
    -moz-box-shadow:0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;
}

 
/* styling for elements inside overlay */
.Details {
  position:absolute;
  top:50px;
  right:15px;
  font-size:11px;
  text-align:left;
  color:#fff;
  width:150px;
  }
 
.Details h3 {
  color:#CDA210;
  font-size:15px;
  }

/* close button positioned on upper right corner */
.Portrait_Overlay .close {
    position:absolute;
    right:15px;
    top:5px;
    cursor:pointer;
    height:35px;
    width:100px;
	text-align:center;
	font-size:10px;
	color:#fff;
}

/* Landscape Overlay */

/* the overlayed element */
.Landscape_Overlay {
 
    /* must be initially hidden */
    display:none;
 
    /* place overlay on top of other elements */
    z-index:10000;
 
    /* styling */
    background-color:#333;
	background-image:url(/_Images/_overlay/apple-landscape-background.png);
 
    width:533px;
    min-height:500px;
 
    /* CSS3 styling for latest browsers */
    -moz-box-shadow:0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;
}

 
/* styling for elements inside overlay */
.Landscape_Details {
  position:absolute;
  top:400px;
  left:15px;
  font-size:11px;
  text-align:left;
  color:#fff;
  width:515px;
  }
 
.Landscape_Details h3 {
  color:#CDA210;
  font-size:15px;
  }

/* close button positioned on upper right corner */
.Landscape_Overlay .close {
    position:absolute;
    right:15px;
    top:410px;
    cursor:pointer;
    height:35px;
    width:100px;
	text-align:center;
	font-size:10px;
}

/* Provides a handle for jQuery to change change the attributes of the &lt;em&gt; tag */

.EM_Overlay {

	font-weight:600;
	font-style:normal;
}


</pre></body></html>