/* General styles  */
body {
	background-color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	-webkit-text-size-adjust: none;
}
.img-responsive {
	display: block;
	width: 100%;
	height: auto;
}
.img-border {
	border: solid 1px #000;
}
a:link, a:visited {
	color: #339933;
	text-decoration: none;
}
a:hover, a:active {
	color: #339933;
	text-decoration: underline;
}
.red {
	color: #f00;
}
.red a:link, .red a:visited {
	color: #f00;
	text-decoration: none;
}
.red a:hover, .red a:active {
	color: #f00;
	text-decoration: underline;
}
strong{
	font-weight: bold;	
}
/* Header styles */
#header {
	position: relative;
}
#menu-toggle {
	display: inline-block;
	position: absolute;
	top: 24px;
	right: 24px;
	width: 38px;
	height: 38px;
	background-color: #ccc;
	border-radius: 3px;
	background-image: url(../images/icon-menu.png);
	background-repeat: no-repeat;
	background-position: center center;
}
#logo {
	width: 110px;
	height: auto;
	padding: 10px;
}
#logo img {
	width: 100%;
}
#menu {
	display: none;
}
#menu a {
	display: block;
	padding: 10px;
	color: #657a81;
	font-size: 0.9em;
	font-weight: bold;
	border-top: solid 1px #ccc;
	background-color: #eee;
	text-decoration: none;
}
#menu a:hover {
	background-color: #ddd;
}
#menu ul.sub a {
	font-weight: normal;
	padding-left: 20px;
}
/* Content styles */
.splash {
	position: relative;
	border-top: solid 5px #ccc;
	border-bottom: solid 5px #ccc;
	margin-bottom: 10px;
}
.splash h1 {
	position: absolute;
	width: 100%;
	bottom: 0px;
	padding: 10px;
	font-size: 1.3em;
	font-weight: bold;
	color: #fff;
	background-image: url(../images/bg-trans-black-40.png);
	background-repeat: repeat;
}
.introHeader, .sectionHeader {
	position: relative;
}
.sectionHeader {
	margin-bottom: 10px;
}
.introHeader h2, .sectionHeader h2 {
	position: absolute;
	width: 100%;
	bottom: 0px;
	padding: 10px;
	font-size: 1.0em;
	font-weight: bold;
	color: #fff;
	background-image: url(../images/bg-trans-black-40.png);
	background-repeat: repeat;
}
.introHeader a, .sectionHeader a {
	color: #fff;
	text-decoration: none;
}
.introText {
	margin-bottom: 10px;
}
.introText h2 {
	padding: 5px 0px;
	font-size: 1.0em;
	font-weight: bold;
	line-height: 1.2em;
}
.introText p {
	padding: 5px 0px;
	font-size: 14px;
	line-height: 1.2em;
}
.introText ul {
	padding: 5px 0px 5px 25px;
	font-size: 14px;
	line-height: 1.2em;
	list-style: disc;
}
.galleryPic {
	margin-bottom: 10px;
}
#map {
	padding: 0px;
	height: 260px;
	margin-bottom: 10px;
}
/* Contact Form Styles */
.ttForm {
	margin: 0px 0px 10px 0px;
	;
	padding: 10px 15px;
	background-color: #ddd;
}
.ttForm .vtField {
	padding: 5px 0px 0px 0px;
	margin: 0px;
	clear: both;
}
.ttForm label {
	margin: 0px;
	padding: 5px 0px;
	font-size: 0.8em;
	font-weight: bold;
}
.ttForm .formField {
	width: 100%;
	margin: 3px 0px;
	padding: 5px;
	border: none;
	font-size: 0.9em;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #fff;
}
.ttForm .formButton {
	margin: 3px 0px;
	padding: 5px;
	border: none;
	font-size: 0.9em;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #aaa;
	cursor: pointer;
}
/* Footer styles */
.footer {
	padding: 0px;
	background-color: #657a81;
}
.footerL, .footerR {
	text-align: center;
}
.footerL p {
	margin: 0px;
	padding: 15px 10px;
	color: #fff;
	font-size: 0.75em;
	line-height: 1.2em;
}
.footerR img {
	margin: 10px;
}
.footer a {
	color: #fff;
	text-decoration: none;
}

@media screen and (min-width: 400px) { /* Includes scrollbar due to box sizing  */
}

@media screen and (min-width: 660px) { /* Includes scrollbar due to box sizing */
/* Header styles */
#header {
	display: table;
	width: 100%;
	padding: 0px 10px;
}
#menu-toggle {
	display: none;
}
#logo {
	display: table-cell;
	width: 20%;
	padding: 10px 20px;
}
#menu {
	display: table-cell;
	width: 80%;
	padding: 0px;
	vertical-align: bottom;
	background-image: url(../images/bg-header-full.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: 50% 50%;
}
#menu ul {
	display: table;
	position: relative;
	width: 100%;
}
#menu li {
	display: table-cell;
	position: relative;
	text-align: center;
	vertical-align: bottom;
}
#menu a {
	padding: 5px;
	font-size: 0.8em;
	font-weight: normal;
	border-top: none;
	border-bottom: solid 5px #fff;
	background-color: transparent;
}
#menu a:hover {
	border-bottom: solid 5px #47a841;
	background-color: transparent;
}
#menu a.selected {
	border-bottom: solid 5px #8f482b;
}
#menu ul.sub {
	display: block;
	position: absolute;
	left: -9999px;
	z-index: +100;
}
#menu ul.sub li {
	display: block;
}
#menu ul li:hover ul.sub {
	left: 0px;
	text-align: left;
}
#menu ul.sub a {
	background-color: #fff;
	border-bottom: solid 5px #eee;
	padding: 5px;
}
#menu ul.sub a:hover {
	border-bottom: solid 5px #47a841;
}
.footerL {
	width: 57%;
	text-align: left;
	float: left;
}
.footerR {
	width: 43%;
	text-align: right;
	float: right;
}
}
