@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	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 */
	color: #000000;
}
body.home #ahome,
body.reviewing #areviewing,
body.letters #aletters,
body.essay #aessay,
body.beyond #abeyond,
body.memoir #amemoir,
body.shortStories #ashortStories {
	border-bottom: 7px solid #EDEEE9;
	padding: 0px;
	}
p, h1, h2, h3, h4, h5, h6, li {
	padding: 0px;
	margin-top: 0px;
}
h1{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.6em;
	font-weight: bold;
	color: #000000;
	margin: 0 0 .4ex 0;
	text-align: center;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	color: #000000;
	margin-top: .4ex;
	margin-bottom: .4ex;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	color: #000000;
	margin-top: .2ex;
	margin-bottom: .2ex;
}
h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	color: #000000;
	margin: 1ex 0 -.2ex 0;
}
h5{
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	font-weight: bold;
	color: #000000;
	margin: 1ex 0 -.3ex 0;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #333333;
	text-align: justify;
	text-indent: 25px;
}
#container  {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 3px solid #FF0000;
	text-align: left;
}
#navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 35px;
	border-right-width: thick;
	border-left-width: thick;
	border-right-style: none;
	border-left-style: none;
	font-weight: bold;
	border-top-width: thick;
	border-bottom-width: thick;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #573218;
	border-bottom-color: #573218;
}
/*#container #cover {
	width: 450px;
}
#container #cover img {
	margin-left: 190px;
}
*/
#navigation ul li {
	float: left;
	padding: 0;
	margin: 0;
}
#navigation li a:link, #navigation li a:visited {
	font-family: Arial, Helvetica, sans-serif;
	display: block;
	color: #000;
	text-decoration: none;
	line-height: 20px;
	background: url(../nav_rollover.gif) no-repeat left top;
	border: none;
	margin-top: 7px;
	padding-left: 50px;
	font-size: 90%;
}
#navigation li a:hover, #navigation li a:active {
	color: #000000;
	background-position: left bottom;
}
/*#navigation ul li a.current {
	height: 30px;
	background: url(../nav_current.gif) no-repeat;
	color: #000;
}*/
.special {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	background-color: #573218;
}
.specialCenter {
	text-align: center;
}
.specialItalic {
	font-style: italic;
}
.specialItalicCentered {
	font-style: italic;
	text-align: center;
}
.specialCenterBlackBold {
	text-align: center;
	background-color: #FFFFFF;
	font-weight: bold;
}
.specialBlackBoldBig {
	font-family: "Times New Roman", Times, serif;
	font-size: 30px;
	background-color: #FFFFFF;
	font-weight: bold;
}
.specialBold {
	font-weight: bold;
}
.specialCenterBigFont {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-weight: bold;
}
.specialJustifyGray {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333333;
	text-align: justify;
	margin-top: 10px;
}
.specialBoldItalic {
	font-weight: bold;
	font-style: italic;
}
.specialIndent {
	padding-left: 50px;
	padding-right: 50px;
}
.specialIndentItalic {
	padding-left: 50px;
	padding-right: 50px;
	font-style:italic;
}
.specialGraySmall {
	font-weight: 400;
	font-size:small;
}
.specialGray {
	color: #666666;
	}


#header {
	background: #DDDDDD;  /* 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. */
	height: 216px;
} 
#header h1 {
	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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
#sidebarArticles  {
	float: right; /* since this element is floated, a width must be given */
	width: 340px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
}
#ad_1 {
	border-bottom: 5px solid #000000;
	}
#ad_2 {
	border-bottom: 5px solid #000000;
	}

#sidebar2  {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
#mainContent  {
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-left: 200px;
} 
#mainContentArticles  {
	float: left;
	width: 450px;
	margin: 0px 0px 0px 25px;
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.indent {
	padding: 0 20px;
}
#footer  { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
#footer  p  {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}