@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #47344e;
	color: #E9CC96;
}
.arra #container {
	width: 980px;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.arra #header {
	background: #47344e;
	padding: 0 10px;  /* 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. */
	text-align: center;
} 
h1, h2   {
	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;
	line-height: 90%;
	color: #9c84bd;
	font-family: "Tempus Sans ITC", "Tekton Pro", Papyrus, Arial, sans-serif;
}
h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	font-family: "Tempus Sans ITC", "Tekton Pro", Papyrus, "Adobe Caslon Pro", Arial;
	font-size: 24px;
	color: #F39A74;
}

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.arra #mainContent {
	font-family: Verdana, Geneva, sans-serif;
	color: #E9CC96;
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 5px;
} 
.arra #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#47344e;
	text-align: center;
} 
.arra #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 */
	color: #E9CC96;
	font-size: 90%;
}
.navigation {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 24px;
	font-style: normal;
	font-weight: bold;
	color: #F90;
	padding: 5px;
	display: block;
	text-decoration: blink;
	text-align: right;
	line-height: 26px;
}

.navigation:hover {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 24px;
	font-style: normal;
	font-weight: bolder;
	color: #F39A74;
	padding: 5px;
	display: block;
	text-decoration: none;
	text-align: right;
	line-height: 26px;
}
/* Miscellaneous classes for reuse */
.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;
}
a:hover {
	color: #ff9933;
	text-decoration: underline;
}
a:link {
	color: #fe894f;
	text-decoration: none;
	font-weight: bold;
}
a:visited {
	color: #fe894f;
	text-decoration: none;
}
.little {
	font-size: 75%;
}
