﻿/* =========================================================
 This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, 
 would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, 
 the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. 
 ==========================================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-size: 100%;
}
a {
	outline: 0;
}
/* ======================================================
 The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of 
 the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the 
 page and create a centered container for the page content to display. 
 =======================================================*/
body {
	padding: 0px 0px 0px 0px;
	background-color: #d1e8c9;
	line-height: 1.2em;
	font-size: 1em;
	color: #2d2e2e;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px 0px 0px 0px;
}
body img {
	border: 0px;
	text-decoration: none;
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}
/* =====================================
Commonly used to style page titles. 
RGA Changed to Arial as default obsolete font
margin: 5px 0px 5px 10px;
top right bottm left

RGA Split h1 to have different margin

========================================*/
h1 {
	color: #77bb5f;
	margin: 12px 0px 8px 1px;
	font-family: "Arial", Georgia, "Times New Roman", Times, serif;
}

h2, h3 {
	color: #77bb5f;
	margin: 8px 0px 8px 1px;
	font-family: "Arial", Georgia, "Times New Roman", Times, serif;
}


h1 {
	font-size: 1.7em;
}
h2 {
	font-size: 1.3em;
}
h3 {
	font-size: 1.1em;
}

/*================================
RGA add border around HR tag
and Colour
=================================*/

hr {
	margin: 0px 0px 30px 0px;
	color: #77bb5f
}



/*================================
Link Styles unless specified separately
RGA visited changed to gold CC6600 focus to green
hover to green

=================================*/
a, a:link {
	color: #CC6600;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #CC6600;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #77bb5f;
	text-decoration: underline;
}
a:focus {
	color: #77bb5f;
}
a:active {
	color: #2170bd;
}
/*==============================================
This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to 
avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the 
container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply 
set the left and right margins to center the container on the page. 
================================================*/
#outerWrapper {
	background-color: #fff;
	width: 80%;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 25px auto 25px auto;
	border: 1px #77bb5f solid;
/*===================================
Add border radius RGA 22-AUG-2025
Tried to Change from 10px to 8px 13SEP2025 but left as-is 
====================================*/
	
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;

		
	
	-moz-box-shadow: 0 0 20px #453823;
	-webkit-box-shadow: 0 0 20px #453823;
	box-shadow: 0 0 20px #453823;
}
/*===================================
Masthaead Styles
====================================*/
#outerWrapper #header {
	background: bottom repeat #77bb5f;
	padding: 10px 10px 10px 10px;
	font-weight: bold;

/* add radius
*/
	
    border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	-moz-border-radius: 8px 8px 0px 0px;
	
	
}
/*=======================================
Wrapper for the content columns
========================================*/
#contentWrapper {
	background: url('../images/content-bg1.jpg') right repeat-y #FFFFFF;

  display: grid;
  grid-template-columns: 1fr 216px; /* left flexible, right fixed */
  gap: 16px;

}
/*==================================
Right sidebar "#rightColumn1" 
Removed to Media-queries CSS
===================================*/
/*================================
Right sidebar navigation menu
==================================*/
#rightColumn1 ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 4px;
}
#rightColumn1 li {
	list-style: none;
	padding: 2px 0;
}
#rightColumn1 ul li a {
	display: block;
	color: #FFFFFF;
	padding: 4px;
	text-decoration: none;
	background-color: #77bb5f;
	border: 1px solid #1C140E;
	margin-top: 3px;
	
}
#rightColumn1 ul li a:hover {
	color: #FFFFFF;
	background-color: #013399;
	border: 1px solid #1C140E;
}
#rightColumn1 p {
	font-size: .9em;
}
.heading {
	display: block;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
	padding: 4px;
	background: #77BB5F;
	text-decoration: none;
	border: 1px solid #77BB5F;
}
/*============ 
For Google search box 
==============*/
.search {
	text-align: center;
	margin: 3px auto 8px auto;
	font-size: .8em;
	font-family: Tahoma, Helvetica, Arial, sans-serif;
}
.search p {
	margin-bottom: 0px;
	font-size: .85em;
}
.myform {
	margin: 0;
	padding: 0;
}
.myform .textinput {
	width: 100px;
	border: 1px solid gray;
}
.myform .submit {
	font: bold 11px Verdana;
	height: 22px;
	background-color: #766E62;;
	color: #FFFFFF;
}
/*==================================
 Contains the main page content. 
 Removed to Media-queries CSS
 
 When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. 
===================================*/
/* ========================================
 Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without 
being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and 
before the close of the container with floated elements. 
===========================================*/
.clearFloat {
	display: block;
	clear: both;
}
/*=================================================
Footer Styles 
==================================================*/
#outerWrapper #footer {
	background-color: #77bb5f;
	padding: 10px 10px 10px 10px;
	color: #ffffff;

/* add radius
*/
	
	border-radius: 0px 0px 8px 8px;
	-webkit-border-radius: 0px 0px 8px 8px;
	-moz-border-radius: 0px 0px 8px 8px;
	color: #ffffff;
	
	
	
}
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	font-size: .85em;
}
#outerWrapper #footer a:link {
	color: #ffffff;
}
#outerWrapper #footer a:visited {
	color: #CCCCCC;
}
#outerWrapper #footer a:hover, #outerWrapper #footer a:focus {
	color: #FFFFFF;
}
#outerWrapper #footer a:active {
	color: #999999;
}
/*============================================
Floating images left, right or centered on page
=============================================*/
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
.imgctr {
	display: block;
	margin: 0px auto;
}
/*Make Image Scalable - Assign this class to any image to make it scale with the browser window size*/
img.scalable {
	height: auto !important;
	width: auto !important;
	max-width: 100%;
}
/*=====================================
Misc Typographic styles
======================================*/
.ctr {
	text-align: center;
}
.smltxt {
	font-size: small;
}
/*=============
form styles 
==============*/
form fieldset {
	padding: 1em;
	font: 80%/1 sans-serif;
	border: 2px solid #77bb5f;
	width: auto;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	box-shadow: 3px 3px 6px #dddddd;
	-moz-box-shadow: 3px 3px 6px #dddddd;
	-webkit-box-shadow: 3px 3px 6px #dddddd;
}
form fieldset label {
	width: 15%;
	margin-right: 0.5em;
	padding-top: 0.2em;
	text-align: right;
	font-weight: bold;
}
form fieldset legend {
	padding: 0.2em 0.5em;
	color: #77bb5f;
	font-size: 90%;
	text-align: right;
	font-variant: small-caps;
}
.cf {
	border: 1px #353c48 solid;
	background-image: url('../images/form-bg.jpg');
	background-repeat: repeat;
}
.button {
	font: normal 90% Verdana, serif;
	height: 22px;
	border: 1px solid #CDBB99;
	background-color: #4A3527;
	color: #ffffff;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
input:focus {
	border: 2px solid #993300;
}

/*==================================
 RGA Responsive Iframe for Calender
====================================*/

.container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 75%; /*  4:3 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*================================
 RGA News inside Iframe Formatting
 Forces container to 400pixels
===================================*/


#newscontainer {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden; 
  padding-top: 75%; /*  4:3 Aspect Ratio */

  border: none;

}

#news-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#newsbox {
  margin: 8px;
  border: 2px solid #77bb5f;
  max-width: 100%;
    
  border-radius: 8px;
  padding: 16px; 
 
}

/*================================
 RGA Ham Clock Iframe Formatting
 
===================================*/


#hamcontainer {
  position: relative;
  width: 100%;
  overflow: hidden; 
  padding-top: 62.5%; /* 8:5 Aspect Ratio */
  border: none;

}

#ham-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}



