@charset "UTF-8";
body {
	margin: 0;
	padding: 0;
	color: #000;
	background-color: #E2E4EA;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 15px;
	line-height: 1.4em;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	padding-right: 15px;
	padding-left: 15px;
	font-style: italic;
	letter-spacing: 0.15em;
	margin: 0;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #1F4323;
	text-decoration: none;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	font-weight: bold;
}
.container .content p a {
	font-weight: normal;
}
a:visited {
	color: #1F4323;
	text-decoration: none;
	font-weight: bold;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ This fixed width container surrounds all other divs ~~ */
.container {
	width: 960px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	color: #333;
	background-color: #E2E4EA;
}

/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
.header {
	background-color: #E2E4EA;
	margin: 0px;
	padding: 20px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	position: relative;
	height: 100px;
	color: #191464;
}
.content {
	width: 780px;
	float: left;
	text-align: left;
	color: #000;
	position: relative;
	margin: 0px;
	padding: 0;
}
.content p {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 0.85em;
	line-height: 1.7em;
	font-style: normal;
	font-weight: normal;
	margin-top: 15px;
	text-align: left;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	margin: 0px;
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 40px;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 350px;
	padding-bottom: 10px;
	color: #FC9;
	background-color: #000;
	line-height: 2em;
	padding-top: 5px;
	font-size: 18px;
}
.sidebar2 {
	float: right;
	width: 155px;
	color: #ED1C24;
	background-color: #E2E4EA;
	font-size: 1em;
	text-align: right;
	padding-right: 0;
	padding-left: 0;
	padding-top: 5px;
	margin: 0px;
}
.sidebar2 p {
	padding-bottom: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	font-size: 1em;
	padding-right: 0px;
	color: #1b1464;
	font-style: normal;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px;
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	display: block;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #ADB96E;
	color: #F19329;
}

/* ~~ The footer styles ~~ */
.footer {
	padding: 10px 0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	background-color: #E2E4EA;
	color: #333;
}
.footer p {
	color: #333;
}
.smaller {
	font-size: 0.8em;
	line-height: 1.8em;
	color: #900;
}
.medium {
	font-size: 0.86em;
	line-height: 2.5em;
}

/* ~~ Miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	margin-right: 0px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 15px;
	margin-bottom: 10px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
body,td,th {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #FFF;
}
a:hover {
	color: #EC2324;
}
a:active {
	text-decoration: none;
	font-weight: bold;
	color: #1F4323;
}
.header h1 {
	background-color: #E2E4EA;
	padding: 0px;
	color: #1b1464;
	text-align: center;
	margin: 0px;
	font-size: 1.8em;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
h2 {
	font-size: 1.4em;
	color: #1b1464;
	line-height: 1.5em;
	/* [disabled]margin-bottom: 15px; */
}
h3 {
	font-size: 1.1em;
	line-height: 1.5em;
	padding: 0px;
	margin-top: 5px;
	margin-left: 15px;
	margin-bottom: 15px;
	color: #1b1464;
}
.content table tr td {
	color: #333;
	letter-spacing: 0.1em;
	vertical-align: top;
	/* [disabled]border-bottom-width: medium; */
	/* [disabled]border-bottom-style: inset; */
	/* [disabled]border-bottom-color: #648A9A; */
	text-align: center;
}
.content table tr th {
	text-transform: uppercase;
	color: #FC9;
	letter-spacing: 0.1em;
	text-align: left;
}
h4 {
	padding-bottom: 6px;
}
.content table tr td h4 {
	padding-bottom: 14px;
}
.centered {
	text-align: center;
}
.container .content #poem {
	margin-left: 300px;
}
.content table tr {
	border-bottom-width: medium;
	border-bottom-style: solid;
	/* [disabled]border-bottom-color: #ED1C24; */
}
.pub_title {
	font-style: italic;
	font-size: 1.10em;
	font-weight: bold;
}
.indentTwoHundred {
	padding-left: 200px;
}
.poemRight {
	clear: both;
	float: right;
	background-color: #E2E4EA;
	border: medium none #990000;
}
.container .content #garland {
	width: 420px;
	float: right;
}
.container .content #poem {
	margin-left: 440px;
	width: 380px;
}
.content #apDiv2 {
	width: 420px;
	float: left;
}
