@charset "utf-8";
/*this adds a scroll bar in safari and firefox browsers to prevent appearance that page shifts-jumps off centre */
html {
	min-height: 100%;
	margin-bottom: 1px;
	overflow-y: scroll; /* Always show the vertical scrollbar */
}
html, body {
	margin: 0px;
	padding: 0px;
	height: 100%;
	font-family: Arial, Tahoma, Verdana, "Times New Roman";
	font-size: 13px;
	color: #333;
	background-attachment: scroll;
	background-image: url(../pics/sky-strip.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#container {
	min-height:100%;
	position:relative;
}
#banner {
	text-align: center;
	float: left;
	width: 100%;
}
#top {
	width: 980px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: left;
	height: 110px;
}
/* logo and h1 heading tag inside the #top */
#logo {
	text-align: left;
	width: 220px;
	padding-top: 5px;
	padding-left: 20px;
	float: left;
}
#pheading {
	float: left;
	width: 630px;
	padding-top: 40px;
	text-align: center;
}
#menubar {
	float: left;
	width: 630px;
	padding-top: 10px;
	text-align: center;
}
#middle {
	text-align: center;
	width: 100%;
	float: left;
}
/* set the main content width */
#midwidth {
	width: 980px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: left;
}
/* this CONTENT div with white background and border holds Editable Content for all pages throughout the site */
#content {
	float: left;
	width: 950px;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
}
#content p {
	margin: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
#content ul {
	margin: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
#content ol {
	margin: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
#content li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 35px;
}
/* to make footer always remain visible and stick to bottom of screen, add this...
position: fixed;
bottom: 0px;
and then you can add Background and Top Border if desired */
#footer {
	width:100%;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 13px;
	color: #666;
	text-align: center;
	float: left;
	padding-top: 10px;
	padding-bottom: 10px;
}
#footer p {
	margin-top: 1px;
	margin-bottom: 0px;
}
/* this holds sundry code down very bottom of page */
#code {
	float: left;
	height: 0px;
	width: 100%;
	text-align: left;
}
/* single column 100% width content holders with left-center-right alignment options */
.single-l {
	text-align: left;
	width: 100%;
	margin-bottom: 10px;
	float: left;
}
.single-c {
	text-align: center;
	width: 100%;
	margin-bottom: 10px;
	float: left;
}
.single-r {
	text-align: right;
	width: 100%;
	margin-bottom: 10px;
	float: left;
}
.text700l {
	text-align: left;
	float: left;
	width: 700px;
	margin-right: 0px;
	margin-left: 150px;
	margin-top: 0px;
	margin-bottom: 15px;
}
/* left and right column options */
.col-l {
	float: left;
	width: 460px;
}
.col-r {
	float: right;
	width: 460px;
}
/* floats left and right for images */
.pic-l {
	float: left;
	margin-right: 10px;
}
.pic-r {
	float: right;
	margin-left: 10px;
}
.tblue {
	color: #00F;
}
.tdblue {
	color: #336699;
}
.tlblue {
	color: #0080D5;
}

/* default colours for LINKS */
a:link {
	color: #00F;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #60F;
}
a:hover {
	text-decoration: underline;
	color: #00F;
}
a:active {
	text-decoration: none;
	color: #df0000;
}
/* default formats for HEADING tags */
h1 {
	font-size: 20px;
	color: #de1f28;
	font-family: Tahoma, Arial, Verdana;
	font-weight: bold;
	margin: 0px;
}
h2 {
	font-size: 14px;
	color: #336699;
	font-family: Tahoma, Arial, Verdana;
	font-weight: bold;
	margin: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
}
h3 {
	font-size: 14px;
	color: #336699;
	font-family: Tahoma, Arial, Verdana;
	font-weight: bold;
	margin: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
}
