body {
	font-family: Tahoma, Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #485E48; /*dk green*/;
	
    color: #000000; /*black*/
}
/*==========================
indicates no border around any image 
============================*/
body img {
	border: 0px;
	text-decoration: none;
}

/* =========================
start of style
============================*/
img {
  max-width: 100%;
  height: auto;
}
* {
  box-sizing: border-box;
}

.row {
  display: flex;
}

/* Create three equal columns that sits next to each other */
.column {
  flex: 33.33%;
  padding: 5px;
} 

/* =================================
end of style 
====================================*/

/* ================================= 
Page container - margins auto center the container on the page 
=====================================*/
#container {
	margin: 10px auto;
	padding: 20px;
	background-color: #ffffff;
	width: 90%;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	max-width: 1200px;
}
/*====================== 
styles for top banner 
========================*/
#banner {
	background-position: center;
	padding: 10px;
	background-color: #FFFFFF;
	background-image: url('images/NehemiahBannerGreenGlow2.jpg');
	height: 100px;
	background-repeat: no-repeat;
	color: #000000;
}
/*====================
all site links
=====================*/
a:link {
	font-weight: 500;
	color: #004145;
	background: transparent;
	text-decoration: underline;
}
a:visited {
	font-weight: 500;
	color: #000000;
	background: transparent;
	padding: 0px;
	text-decoration: underline;
}
a:hover {
	font-weight: 500;
	text-decoration : none;
	background: #C8DEC8;
	color: #000000;
}
a:active {
	font-weight: 500;
	text-decoration : underline;
	color: #000000;
}
/*===============================
Wrapper for three content columns
================================*/
#columns-wrapper {
	clear: both;
}
/*====================== 
styles for main content area 
=========================*/
#content {
	margin-right: 240px;
	margin-left: 240px;
	padding: 5px;
	text-align: left;
	vertical-align: top;
}
/*======================
content area list items
========================*/
#content ul li {
	list-style-image: url('images/green-bullet-bg.gif');
	margin: 2px;
	padding: 2px;
}
#content li li {
	list-style-image: url('images/green-bullet-sm.gif');
	padding: 2px 0;
}
/* ***********************************
Navigation Bar - Right hand side 
************************************* */
#rightcol {
	color: #000;
	padding: 10px;
	margin: 10px;
	border: 2px solid #485E48;
	float: right;
	background-color: #ffffff;
	width: 200px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
#rightcol ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
}
#rightcol ul li {
	padding-bottom: 2px; /*bottom spacing between menu items*/
}
#rightcol ul li a {
	font: normal .85em Arial;
	color: #000000;
	display: block;
	padding: 5px 0;
	line-height: 17px;
	padding-left: 30px;
	text-decoration: none;
	background: url('images/054081-rounded-glossy-black-icon-natural-wonders-flower-cauliflower.png') no-repeat 8px 6px;
}
#rightcol ul li a:visited {
	color: #000000;
}
#rightcol ul li a:hover {
	color: #000000;
	background: #A3CEA3 url('images/054081-rounded-glossy-black-icon-natural-wonders-flower-cauliflower.png') no-repeat 8px 6px;
}
.heading {
	font-family: 'Della Respira', serif;
	font-weight: 700;
	color: #000000;
	margin-bottom: 0; /*bottom spacing between header and rest of content*/;
	text-transform: uppercase;
	padding: 7px 0 7px 15px;
	font-size: .9em;
}
/* *****************************************************
Navigation Bar - Left hand side 
**************************************************** */
#leftcol {
	color: #000;
	padding: 10px 10px 10px 10px;
	margin: 10px 10px 10px 10px;
	border: 2px solid #242F24;
	float: left;
	background-color: #ffffff;
	width: 200px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	box-shadow: inset 0px 0px 30px #A3CEA3;
}
#leftcol ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 4px;
}
#leftcol li {
	list-style: none;
	padding: 2px 0;
}
#leftcol ul li {
	text-decoration: none;
	margin-top: 2px;
}
#leftcol ul ul li {
	padding: 3px 0 3px 5px;
	font-size: 80%;
	font-weight: normal;
}
#leftcol p {
	font-size: .85em;
}
/*============== 
Styles for footer 
===================*/
#footer {
	border-top: 2px solid #242F24;
	clear: both;
	padding: 5px;
	background-color: rgb(255, 255, 255);
	text-align: center;
}
#footer p {
	margin-top: 0px;
	margin-bottom: 0px;
}
/*================== 
general styles 
=================*/
hr {
	width: 90%;
	text-align: center;
	background-color: #004145;
	height: 5px;
}
/* =================
Styles for heading tags 
=============== */
h1, h2, h3, h4 {
	color: #485E48; /*dk green*/;
	background-color: inherit;
	font-family: 'Della Respira', serif;
}
h1 {
	font-size: 1.5em;
}
h2 {
	font-size: 1.2em;
}
h3 {
	font-size: .9em;
}
h4 {
	font-size: .9em;
}
/*================
general styles
==============*/
.center {
	text-align: center;
}
.no-margin {
	margin: 0px;
}
.smtxt {
	font-size: small;
}
/* ============
floats images to right or left or centered
============*/
.imgrgt {
	float: right;
	padding: 7px;
}
.imglft {
	float: left;
	padding: 7px;
}
.imgctr {
	display: block;
	margin: 0px auto;
}
