@charset "utf-8";
/* ~~ Element/tag selectors ~~ */
* {
	margin: 0;
	padding: 0;
	border: none;
	border-width: 0;
}

html {
	box-sizing:border-box;
	overflow: scroll;
}

body {
	/* background-color: #fff; */
	background-color: #fcfcfc;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
}

p {
	font-size: 0.9em;
	padding: 0 6px 8px 6px;
	margin-top: 10px;
	line-height: 1.6em;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-right: 6px;
	padding-left: 6px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

h1 {
	text-transform: uppercase;
	font-size: 1.4em;
	color: rgba(50, 120, 50, 0.9);
}
h2 {
	font-size: 1.5em;
	margin-top: 12px;
	margin-bottom: 6px;
}
h3 {
	color: #333;
	font-size: 1em;
	text-transform: none;
	font-weight: normal;
	margin-top: 12px;
	margin-bottom: 12px;
}
h4 {
	color: #333;
	font-size: 1.2em;
	text-transform: none;
	font-weight: normal;
	margin-top: 12px;
	margin-bottom: 12px;
}
h5 {
	font-size: 1.0em;
	margin: 0px 0px 6px 0px;
	font-weight: bold;
}

img {
	width: 100%;
	height: auto;
	max-width: 100%;
	vertical-align:middle;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */


a {
	text-decoration: none;
	color: rgba(50, 150, 50, 0.9);
	color: rgba(20, 40, 180, 1);
	font-weight: 400;
}

a:link, a:visited {
	color: rgba(50, 150, 50, 0.9);
	color: rgba(20, 40, 180, 1);
	text-decoration: none;   /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	font-weight: 400;
	color: rgba(50, 180, 50, 0.9);
	color: rgba(20, 40, 180, 1);
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
#container {
	width: 100%;
	background-color: #ffffff;
	max-width: 1000px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 300px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	margin: 0 auto 10px auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the #container's width to 100%. */
	/*
	border-width: 2px;
	border-color: #a3a3a3;
	border-style:solid;
	*/
	position: relative;
}

#noscript {
	font-size: 12pt;
	font-weight: bold;
	color: #FF0000;
	border: 2px solid #FF0000;
	padding: 6px;
	margin: 0 200px 10px 200px;
	text-align: center;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. ~~ */
#header {
	background-image: url(../assets/felicity-wood-banner-6.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 50px;
}
#logo {
	background-color: rgba(50, 120, 50, 0.9);
	text-align: center;
	width: 50%;
	padding: 2%;
	border-radius: 0px 0px 12px 12px;
	margin-left: auto;
	margin-right: auto;
}
#logo img {
	width: 100%;
}
@media (max-width:600px) {  /* Small screens */
	.logo {
		width: 88%;
	}
}
#pagebody { /* #pagebody appears between #header and #footer and occupies the full width of #container. It holds #sidebar-left and #content. */
	position: relative;
	background-color: #614559;
	z-index:0;
}

#content {
/*	max-width: 800px; */
	background-color: #ffffcc;
	z-index:1;
}

.style-italic {
	font-style:italic;
}

/* ~~ This grouped selector gives the lists in the #content area space ~~ */
#contents ul, #contents ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

.color-box {
	display: block;
	float: left;
	width: 36px;
	height: 36px;
	margin-right: 15px;
	border: 1px solid #ddd;
}
#menubar {
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 999;
}
#menubar.white {
	background-color: #ffffff;
	color: #333;
}
#menubar.grey {
	background-color: #f0f0f0;
	color: #333;
}
#menubar.black {
	background-color: #555;
	color: #eee;
}
#menubar.white a.nav-btn {
		color: #333;
}
#menubar.grey a.nav-btn {
		color: #333;
}
.white {
	background-color: #ffffff;
	color: #333;
}
.grey {
	background-color: #f0f0f0;
	color: #333;
}
.black {
	background-color: #555;
	color: #EEE;
}

a.nav-btn, a.nav-btn:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
/*	padding: 5px 5px 5px 15px; */
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	float: left;
	padding: 8px 0px 8px 0px;
	padding: 10px;
	text-align: center;
	font-weight:300;
	color: #FFF;
}
a.nav-btn.icon {
	font-size: 1.3em;
	padding: 6px 12px 6px 12px;
}
a.nav-btn:hover, a.nav-btn:active, a.nav-btn:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: rgba(250, 150, 20, 0.9);
	font-weight:300;
	text-decoration: none;
}
.footer-link {
	color: #fe890e;
	font-size: 0.8em;
}
a.ftr-btn, a.ftr-btn:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
/*	padding: 5px 5px 5px 15px; */
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	/* width: 20%; */
	width: 16.66%;
	float: left;
	text-align: center;
	text-decoration: none;
	font-weight:300;
	background-color: #1b2841;
	color: #fff;
}
a.ftr-btn:hover, a.ftr-btn:active, a.ftr-btn:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #C0C0C0;
	color: #000;
	font-weight:300;
	text-decoration: none;
}

/* ~~ The footer ~~ */
#footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the #container to understand where the columns end and contain them */
	margin-top: 8px;
	padding: 15px;
	background-color: #fcfcfc;
	color: #614559;
	text-align: center;
	}

.top-of-page {
	text-align:center;
	width: 100px;
	margin-left: auto;
	margin-right: auto;
}

.quote {
	font-size: 0.9em;
	font-style:italic;
	margin-bottom: 5px;
	padding-bottom: 0;

}

.source {
	font-size: 0.9em;
	margin-bottom: 0;
	padding-bottom: 0;
	padding-left: 15px;
	font-weight: bold;
}

.source-affiliation {
	font-size: 0.9em;
	margin-top: 0;
	padding-top: 0;
	padding-left: 15px;
}

.title {
	font-style:italic;
}

.copyright {
	font-size: 0.8em;
	text-align: center;
	margin: 6px 0;
	}

/* ~~ miscellaneous float/clear classes ~~ */
.imgdivfltlft, .imgdivfltrt {
	display: block;
	max-width: 30%;
	padding: 5px;
	float: left;
	margin-right: 15px;
}
.imgdivfltrt {
	float: right;
}
.about-pic {
	background-image: url(../assets/felicity_1165.jpg);
	background-position: center center;
	background-repeat:no-repeat;
	background-size: cover;
	display: block;
	width: 30%;
	max-width: 30%;
	padding: 5px;
	float: right;
	margin-left: 15px;
	border-radius: 15px;
	height: 300px;
}
@media (max-width:600px) {
	.about-pic {
		max-width: 100%;
		margin-top: 15px;
		margin-bottom: 15px;
		width: 100%;
	}
}
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.style-centre {
	text-align:center;
}
.style-left {
	text-align:left;
}
.style-right {
	text-align:right;
}

/* Styles from w3.css */
.fw-image {
    max-width: 100%;
    height: auto;
		width: 100%;
}
.text-teal,
.hover-text-teal:hover {
    color: #009688!important
}
.fw-row {
	position: relative;
}
.fw-col,
.fw-half,
.fw-third,
.fw-twothird,
.fw-threequarter,
.fw-quarter {
    float: left;
		padding: 8px;
		border-radius: 8px;
		margin: 1%;
		border-width: 1px;
		border-color: #ddd;
		border-style: solid;
		background-color: #fcfcfc;
		margin-bottom: 25px;
}
.fw-container {
    padding: 0.01em 16px
}
.fw-rest {
    overflow: hidden
}
@media (max-width:600px) {  /* Small screens */
	#container {
		max-width: 590px;
	}
	#header-inner {
		display: block;
		position:fixed;
	}
	#content {
		margin-left: 0;
		padding: 25px;
	}
	#sidebar-left {
		position: fixed;
		display: none;
	}
	ul.nav-footer {
		display:none;
	}
	.fw-hide-small {
		display:none;
	}
	a.nav-btn, a.ftr-btn {
		font-size: 0.9em;
	}
}
@media (min-width: 601px) {  /* Medium Screens */
	#container {
		max-width: 800px;
	}
	.fw-hide-medium {
		display: none;
	}
    .fw-quarter {
        width: 24.99999%
    }
    .fw-third {
        width: 33.33333%
    }
    .fw-half {
        width: 46%
    }
    .fw-twothird {
        width: 66.66666%
    }
    .fw-threequarter {
        width: 74.99999%
    }
	.imgdivfltlft, .imgdivfltrt {
		max-width: 40%;
	}
}
@media (min-width:901px) { /* Large Screens */
	#container {
		max-width: 1000px;
	}
	.fw-hide-large {
		display: none;
	}
    .fw-quarter {
		float: left;
        width: 24.99999%
    }
    .fw-half {
		float: left;
        width: 46%
    }
}

.content {
	padding: 0px 25px 25px 25px;
	margin-top: 25px;
}

.review-button {
	font-size: 0.9em;
	color: #FFF;
	background-color: rgba(50, 120, 50, 0.9);
	margin-bottom: 25px;
	padding: 5px 10px;
	border-radius: 8px;
	padding: 8px;
	cursor: pointer;
}
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: rgba(50, 120, 50, 0.9);
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}
