@charset "utf-8";
body {
	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;
	background-color: #E8E08E;
	font-family: "Courier New", Courier, monospace;
	font-size: 100%;
	line-height: 1.5;
	font-size: 18px;
}

.oneColFixCtrHdr #container {
	max-width: 1200px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFF;
	font-size: 18px;
}
.doubleborder {
	border: 4px double #FFF;
	padding: 5px;
	background-color: #556b2f;
}
.logopadding {
	background-color: #556b2f;
	color: #688E23;
	padding: 6px;
}
.centretext {
	text-align: center;
}
.floatright {
	float: right;
	padding-left: 20px;
}
.oneColFixCtrHdr #header {
	padding: 0 10px 0 20px;  /* 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. */
	background-color: #A5B557;
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	text-align: justify;
	font-size: 18px;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px;
	background-color: #A5B557;
	font-size: small;
}
.oneColFixCtrHdr #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 */
}
.floatleft {
	float: left;
	padding-right: 12px;
}

.centretext {
	text-align: center;
}
.clicktext {
	font-weight: bold;
	text-transform: none;
	color: #360;
	padding-left: 10px;
	font-size: 18px;
	padding-bottom: 3px;
}
.greendottedborder {
	border: 3px double #A5B557;
}
.greentext {
	color: #660;
}
.greenlink {
	color: #A5B557;
	font-size: 14px;
	text-decoration: none;
}
.greenlink A:link {
color: #A5B557;
text-decoration: none;
}

.greenlink A:visited {
color: #A5B557;
text-decoration: none;
}

.greenlink A:hover {
color: #CC0000;
text-decoration: underline;
}
.blacklinks {
	color: #000;
	text-decoration: none;
}
.blacklinks A:link {
color: #000;
text-decoration: none;
}

.blacklinks A:visited {
color: #000;
text-decoration: none;
}

.blacklinks A:hover {
color: #CC0000;
text-decoration: underline;
}
img {
  width: auto ;
  max-width: 100% ;
  height: auto ;
}
#logo {
	padding-bottom: 20px;
	padding-top: 28px;
}
#quote {
	text-align: center;
}
.quote {
	border: double 3px #A5B557;
	padding: 5px;
}
#quotetwo {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 5px;
}
#googlead {
	width: 336px;
	height: auto;
	float: right;
}
#footerad {
	margin: auto;
	text-align: center;
	height: 100px !important;
	padding-top: 5px;
	padding-bottom: 15px;
}
	/* below defines CSS rules for mobile screens of less than 480px */
      @media only screen and (max-width: 480px) {
           h1 { font-size: 18px; }
           h2 { font-size: 14px; }
           h3 { font-size: 12px; }
		   p {font-size: 11px;}
		   .navigation { font-size: 8px; }
		   #googlead { width: 250px; }
		   #footerad { height: 260px !important; }
         }
		 	/* below specifies responsive ad sizes for certain screen sizes */
.Responsive300x250 { width: 250px; height: 250px; }
@media(min-width: 500px) { .Responsive300x250 { width: 300px; height: 250px; } }
@media(min-width: 800px) { .Responsive300x250 { width: 336px; height: 280px; } }