/* top banner that says "Saint Mary Antiochian Orthodox Church" */
#top {
	/* background-color: #0066cc; */
	background-color: #2175bc;
	border: 0;
	padding: 1.5em;
}
#top h1, #top h1 a {
	margin: 0;
	padding: 0;
	color: #ffcc33;
}

/* main relative div to which the content and navigation are positions absolutely against. */
#main {
	position: relative;
	min-width: 600px;
	width: 100%;
	margin: 25px 0 0 0;
	padding: 0;
	border: none;
}

/* content, which is positioned absolutely against the relatively-positioned "main" div */
#content {
	position: absolute;
	left: 9%;
	right: 9%;
	width: 57%;
}

/* navigation, which is also positioned absolutely against the relatively-positioned "main" div */
#navigation {
	position: absolute;
	width: 25%;
	right: 0;
	margin-bottom: 1em;
	background-color: #90bade;
	color: #333;
}
#navigation ul {
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;
	border: none;
}
#navigation li {
	border-bottom: 1px solid #90bade;
	margin: 0;
}
#navigation li a {
	display: block;
	padding: 5px 5px 5px 0.5em;
	border-left: 10px solid #1958b7;
	border-right: 10px solid #508fc4;
	background-color: #2175bc;
	color: #fff;
	text-decoration: none;
}
#navigation li a:hover {
	border-left: 10px solid #1c64d1;
	border-right: 10px solid #5ba3e0;
	background-color: #2586d7;
	color: #ffd733;
}

/* footer */
#footer {
	clear: both;
	margin-top: 42px;
	border-top: 1px solid;
	padding: 0;
}
#footer p {
	margin-top: 0;
	margin-bottom: 0;
}
#footer p+p {
	margin-top: 0;
	text-indent: 0;
}
#footer a {
	text-decoration: none;
}
#footer #tracking {
	float: right;
	margin-top: 5px;
	margin-left: 5px;
}

/* column left */
.columnleft {
	float: left;
	width: 45%;
}
.columnleft { padding-right: 10px; }

/* column right */
.columnright {
	float: right;
	width: 45%;
}
.columnright { padding-left: 10px; }