/* 
fade in-out based on http://css3.bradshawenterprises.com examples cross fading
other examples show how to use multiple pictures and fancy transitions 
*/


body { margin: 0; } 
div#slider { 
overflow: hidden; 
	border: 10px solid blue; 
}
div#slider figure img { width: 100%; float: left;   position: absolute;
  left: 0;
  top: 0; 
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
} 
div#slider figure img.top {
	animation-name: cf3FadeInOut;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-duration: 9s;
	animation-direction: alternate;
}
div#slider figure { 
  text-align: left;
  font-size: 0;
}
@keyframes cf3FadeInOut {
	0% { opacity: 1; }
	45% { opacity: 1; }
	55% { opacity: 0; }
	100% { opacity: 0; } 
}

/* or try this one which might work with more than 2 images */
/* this set is for 3 images, on the home page */

/* 
For "n" images You must define:
a=presentation time for one image
b=duration for cross fading
Total animation-duration is of course t=(a+b)*n

animation-delay = t/n or = a+b

Percentage for keyframes:

    0%
    a/t*100%
    (a+b)/t*100% = 1/n*100%
    100%-(b/t*100%)
    100%
 */
 /* for n=3, a=8, b=1, t=27, 0%, 30%, 33%, 96%, 100% */
 /* for n=4, a=6, b=1, t=28, 0%, 21%, 25%, 96%, 100% */
 /* for n=6, a=5, b=1, t=36, 0%, 14%, 17%, 97%, 100% */
 /* and change the number of nth-of-type sections below */


@-webkit-keyframes cf6FadeInOut {
   0% { opacity: 0; }
   3% { opacity: 1; }
  17% { opacity: 1; }
  20% { opacity: 0; }
  97% { opacity: 0; }
  100% { opacity: 0; }
}

@-moz-keyframes cf6FadeInOut {
   0% { opacity: 0; }
   3% { opacity: 1; }
  17% { opacity: 1; }
  20% { opacity: 0; }
  97% { opacity: 0; }
  100% { opacity: 0; }
}

@-o-keyframes cf6FadeInOut {
   0% { opacity: 0; }
   3% { opacity: 1; }
  17% { opacity: 1; }
  20% { opacity: 0; }
  97% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes cf6FadeInOut {
   0% { opacity: 0; }
   3% { opacity: 1; }
  17% { opacity: 1; }
  20% { opacity: 0; }
  97% { opacity: 0; }
  100% { opacity: 0; }
}

#cf6a {
 /* this affects location of rotating pics but border doesn't seem to contain anything */
  text-align: center; 
-webkit-text-align: center;  
display: flex;
display: -webkit-flex;
justify-content: center;
-webkit-justify-content: center;
align-items: center;
-webkit-align-items: center;
border: 0px solid green;  
background-color: #5eddbc;
top:0; bottom:0; left:0; right:0;
/*  position:relative;
  height:281px;
  width:450px;
  margin:0 auto; */
/*  display: flex;
 align-items: center;
 */

}
#cf6a img { 
  opacity: 0;
border: 0px solid green;
 width: 100%; float: left;   position: absolute;
  left: 0; 
/*  should be automatic with flexbox, but doesn't work in older ios/safari (puts at bottom) */
top: 0; 
 
  }


#cf6a img {
  -webkit-animation-name: cf6FadeInOut;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 36s;
-webkit-animation-fill-mode: forwards;

  -moz-animation-name: cf6FadeInOut;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 36s;
-moz-animation-fill-mode: forwards;

  -o-animation-name: cf6FadeInOut;
  -o-animation-timing-function: ease-in-out;
  -o-animation-iteration-count: infinite;
  -o-animation-duration: 36s;
-o-animation-fill-mode: forwards;

  animation-name: cf6FadeInOut;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 36s;
animation-fill-mode: forwards;
}

#cf6a img:nth-of-type(6) {
  -webkit-animation-delay: 30s;
  -moz-animation-delay: 30s;
  -o-animation-delay: 30s;
  animation-delay: 30s;
}
#cf6a img:nth-of-type(5) {
  -webkit-animation-delay: 24s;
  -moz-animation-delay: 24s;
  -o-animation-delay: 24s;
  animation-delay: 24s;
}
#cf6a img:nth-of-type(4) {
  -webkit-animation-delay: 18s;
  -moz-animation-delay: 18s;
  -o-animation-delay: 18s;
  animation-delay: 18s;
}
#cf6a img:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  animation-delay: 12s;
}
#cf6a img:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  animation-delay: 6s;
}
#cf6a img:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}


/* this set is for 6 images, on the about page */
@-webkit-keyframes aboutFadeInOut {
   0% { opacity:1; }
  13% { opacity:1; }
  17% { opacity:0; }
  97% { opacity:0; }
  100% { opacity:1; }
}

@-moz-keyframes aboutFadeInOut {
  0% { opacity:1; }
  13% { opacity:1; }
  17% { opacity:0; }
  97% { opacity:0; }
  100% { opacity:1; }
}

@-o-keyframes aboutFadeInOut {
  0% { opacity:1; }
  13% { opacity:1; }
  17% { opacity:0; }
  97% { opacity:0; }
  100% { opacity:1; }
}

@keyframes aboutFadeInOut {
  0% { opacity:1; }
  13% { opacity:1; }
  17% { opacity:0; }
  97% { opacity:0; }
  100% { opacity:1; }
}

#about {
  /* position:relative; */
  /* height:281px; */
/*   max-height:400px; */ 
width:100%;  
 /* for whatever reason, need these 2 to force picture to where I want it */ 
   /* text-align: left; */
  /* font-size: 0; */

  border: 0px solid blue;  
}
#about img { 
display: block;
 opacity:0;
 max-height: 400px;  
position: absolute;
  top: 0; margin-left: auto;
  margin-right: auto;

  border: 0px solid red;   
  }

#about img {
  -webkit-animation-name: aboutFadeInOut;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;

  -moz-animation-name: aboutFadeInOut;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 30s;

  -o-animation-name: aboutFadeInOut;
  -o-animation-timing-function: ease-in-out;
  -o-animation-iteration-count: infinite;
  -o-animation-duration: 30s;

  animation-name: aboutFadeInOut;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}
#about img:nth-of-type(1) {
  -webkit-animation-delay: 25s;
  -moz-animation-delay: 25s;
  -o-animation-delay: 25s;
  animation-delay: 25s;
}
#about img:nth-of-type(2) {
  -webkit-animation-delay: 20s;
  -moz-animation-delay: 20s;
  -o-animation-delay: 20s;
  animation-delay: 20s;
}
#about img:nth-of-type(3) {
  -webkit-animation-delay: 15s;
  -moz-animation-delay: 15s;
  -o-animation-delay: 15s;
  animation-delay: 15s;
}
#about img:nth-of-type(4) {
  -webkit-animation-delay: 10s;
  -moz-animation-delay: 10s;
  -o-animation-delay: 10s;
  animation-delay: 10s;
}
#about img:nth-of-type(5) {
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  -o-animation-delay: 5s;
  animation-delay: 5s;
}
#about img:nth-of-type(6) {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}


/* 
@keyframes slidy {
0% { left: 0%; }
49% { left: 0%; }
50% { left: -100%; }
100% { left: -100%; }
}
body { margin: 0; } 
div#slider { overflow: hidden; }
div#slider figure img { width: 33.3333%; float: left; } 
div#slider figure { 
  position: relative;
  width: 300%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 20s slidy infinite; 
}
*/

/* try to do a sponsor scrolling marquee vertical */
.sponsors {
    width: 18em;
    height: 8em;
    margin: 1em auto;
    overflow: hidden;
    background: white;
    position: relative;
    box-sizing: border-box;
	border: 0px solid green;  
}

.marquee {
    top: 6em;
    position: relative;
    box-sizing: border-box;
    animation: marquee 40s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

/* Make it move! */
@keyframes marquee {
    0%   { top:   8em }
    100% { top: -97em } 
}

/* Make it look pretty */
.microsoft .marquee {
	margin: 0;
    padding: 0 1em;
    line-height: 1.5em;
    font: 1em 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
}

.microsoft:before, .microsoft::before,
.microsoft:after,  .microsoft::after {
    left: 0;
    z-index: 1;
    content: '';
    position: absolute;
    pointer-events: none;
    width: 100%; height: 2em;
    background-image: linear-gradient(top, #FFF, rgba(255,255,255,0));
}

.microsoft:after, .microsoft::after {
    bottom: 0;
    transform: rotate(180deg);
}

.microsoft:before, .microsoft::before {
    top: 0;
}

/* Style the links */
.vanity {
    color: #333;
    text-align: center;
    font: .75em 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
}

.vanity a, .microsoft a {
    color: #1570A6;
    transition: color .5s;
    text-decoration: none;
}

.vanity a:hover, .microsoft a:hover {
    color: #F65314;
}

/* Style toggle button */
.toggle {
	display: block;
    margin: 2em auto;
}



/* a. Default Overrides and Common Styles
/* ------------------------------------------------------------------ */

body { 
	background: #E6E5F5;
	border-top: 0px solid #9FCC7F; 
 /* background: url(/images/background.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;  */
  }
.page { 
	padding-bottom: 18px;
	margin-bottom: 36px; 
}

.page h2,
.entry h2,
.entry h2 a {
/* 	font: 31px/36px 'opensans-semibold', sans-serif; */
	font: bold 31px/36px  'Grandstander', sans-serif;
	color: #444;
	margin-bottom: 0;
	letter-spacing: -.5px;
}
.page h2 { margin-bottom: 18px; }


/* b. Header Styles
/* ------------------------------------------------------------------ */

header { 
   width: 100%;   
  /* height: 288px;   */
  /* background: #fff; */   
   /* border: 1px solid #0a0a0a; */ /* affects headers of each section as well as top (picture) header */
}
header .header-content {
	/* background: #fff url(img/header-content-bg.png) no-repeat right top; */
	/* height: 288px; */
	/* border-bottom: 1px dashed #E8E8E8; */
	position: relative;	
}
/* For high-res devices */
@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

	header .header-content {
		background: #fff url(img/header-content-bg.png) no-repeat right top;
		background-size: 361px 256px;
	}

}

/* header logo */
header h1#logo-text { 
	margin: 0; 
	padding: 10; 

	/* change the values of top and left to adjust the position of the logo text */
	/* position: absolute;
	top: 108px; left: 18px;	*/
}
header h1#logo-text a {	 
	margin: 0; 
	padding: 0;
	font: normal 75px Georgia, Serif;
	letter-spacing: -5px;
	color: #93b876;
	text-decoration: none;
}
header p#intro {	
	margin: 0; 
	padding: 0;
	font: 16px/24px 'opensans-light', Georgia, Serif;
	font-weight: normal;	
	color: #C8C8C8;
	color: #555555;
	width: 400px;
	
	/* change the values of top and left to adjust the position */
	/* position: absolute;
	top: 192px; left: 30px;	*/	
}


/* primary navigation
--------------------------------------------------------------------- */
#nav-wrap, #nav-wrap ul, #nav-wrap li, #nav-wrap a {
	 margin: 0;
	 padding: 0;
	 border: none;
	 outline: none;
}

/* nav-wrap */
#nav-wrap {
   /* font: 12px 'opensans-bold', sans-serif; */
/*    font: 12px 'Arial Narrow Bold', Arial, sans-serif; */
/* font-family: 'Bubblegum Sans', cursive; */
font-family: 'Grandstander', cursive;
   font-stretch: condensed;
   text-transform: uppercase;
   letter-spacing: 2px;   
   background: #F5F4F3;
   border-bottom: 1px solid #EAE8E8;
   width: 100%;
  float: left;
/*    min-height: 30px;  */
}

/* hide toggle button */
#nav-wrap  > a { display: none; }

ul#nav {
   /* min-height: 50px; */
   width: auto;
   margin: 0px;
   display: flex; justify-content: center; align-items: center; border: 0px solid green;
/*
	 float: right; 
   position: relative;
   right: 0px;   
   bottom: 0px;
*/
   /* left align the menu */
/*    text-align: right;   */ 
}
ul#nav li {
   position: relative;
   list-style: none;
   /* height: 50px; */
   display: inline-block;   
   padding-top: 0px;
}

/* float left to remove gaps between 1st level list items */
ul#nav > li { float: left; }

/* Links */
ul#nav li a {
   display: inline-block;
   padding: 0 15px;
   line-height: 40px;
	text-decoration: none;
   color: #888888;  

	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

ul#nav li a:hover { color: #cc8888; }
ul#nav li a:active { color: #f00 !important; background-color: transparent !important; }
ul#nav li.current > a {    
	/* background: #fff;	 */
	color: #d80;
	padding: 0 14px;  
   /* border-right: 1px solid #EAE8E8;
   border-top: 1px solid #EAE8E8;
   border-left: 1px solid #EAE8E8; */
   border-radius: 3px 3px 0 0;   
}

/* sub menu */
ul#nav ul {
   position: absolute;
   top: 40px;
   left: 0px;
   padding-bottom: 0px;
	background: #F5F4F3;
   min-width: 100%;
   border: 1px solid #EAE8E8;
   border-top: none;
z-index: 999;
	border-radius: 0 0 6px 6px;

   /* for transition effects */
   opacity: 0;
   filter: alpha(opacity=0);

	-webkit-transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
}

/* 
ul#nav ul ul {
	position: absolute;
	top: 0;
	left: 100%;
	border-radius: 0 3px 3px 0;
}
*/

ul#nav ul li {
   padding: 0;
   display: block;
   text-align: left;

   /* for transition effects */
   height: 0;
	overflow: hidden;

  	-webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}

/* on hover */
ul#nav li:hover > ul { 
	opacity: 1; 
	filter: alpha(opacity=100); 
}
ul#nav li:hover > ul li {
	height: 42px;
	overflow: visible;  
}

/* sub menu anchor links */
ul#nav ul li a {
	padding: 6px 20px;
	margin: 0;
   white-space: nowrap;
   font-size: 13px;
   /* font-family: 'opensans-regular', sans-serif;*/
/* font-family: 'Bubblegum Sans', cursive;   */
font-family: 'Grandstander', cursive;
text-transform: none;
   letter-spacing: 0;   
}


/* c. Content
--------------------------------------------------------------------- */

#content-wrap {
	/* background: #ff0; */
	padding: 42px 0 36px 0;
   border: 0px solid #00aa00;
}
#content-wrap #main { padding-right: 40px; }



/* d. Sidebar 
--------------------------------------------------------------------- */

#sidebar {
	padding-top: 0px;
	padding-left: 40px;
}
#sidebar h3 {
	font: 15px/24px 'opensans-bold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;	
}
#sidebar .widget { margin-bottom: 18px; }
#sidebar p { margin-bottom: 12px; }
#sidebar hr { margin-bottom: 24px; }

/* search  */
#sidebar .widget_search { 
	padding-top: 0;  
	margin-bottom: 36px;
}
#sidebar .widget_search h3 { display: none; }
#sidebar .widget_search form {
   position: relative; 
   margin: 0;
}
#sidebar .widget_search .text-search {
	padding-right: 40px;
	border:none;
   width: 100%;
   min-width: 150px;
   border-radius: 3px;
}
#sidebar .widget_search .submit-search {
	background:url(img/search-icon.png) no-repeat;
	box-shadow: none;
	border:none;
	cursor:pointer;
	width: 18px;
	height: 18px;
	min-height: 18px;
   margin: -9px 0 0 0;
   padding: 0;
   position: absolute;
   top: 50%;
   right: 18px;     
}
@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

	#sidebar .widget_search .submit-search {
		background:url(img/search-icon_@2x.png) no-repeat;
		background-size: 18px 18px;
	}

}

/* categories  */
#sidebar .widget_categories {  }
#sidebar .widget_categories ul { 
	margin-top: 12px; 
	margin-bottom: 24px;
}

/* link List */
#sidebar .link-list {   
   padding: 0;
   margin: 18px 0 24px 0;
}
#sidebar .link-list li {
	font: 15px/30px 'merriweather-regular', sans-serif;
	padding: 8px 0;
	margin: 0;
	border-bottom: 1px dotted #E6E6E6;
}
#sidebar .link-list li:first-child { 
	border-top: 1px dotted #E6E6E6;
}
#sidebar .link-list li a {	color: #4A5153; }
#sidebar .link-list li a:hover {	color: #313131; /* color: #93B876; */ }


/* tag cloud */
#sidebar .tagcloud {
   margin: 18px 0 24px -12px;
   padding: 0;
   font-size: 17px;
}
#sidebar .tagcloud a {
   font: 12px/24px 'opensans-bold', sans-serif !important;
   display: inline-block;
   float: left;
   margin: 0 0 12px 12px;
   padding: 6px 15px;
   position: relative;
   text-transform: uppercase;
   letter-spacing: 0.5px;

   background: #E9EBEE;
	text-decoration: none;
   letter-spacing: .5px;
   color: #778888;

   -webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;

   border-radius: 3px;
}
#sidebar .tagcloud a:hover {
   color: #fff;
   background: #93B876;
}


/* e. Entry
/* ------------------------------------------------------------------ */
.entry {
	padding-bottom: 12px;
	margin-bottom: 24px;
}
.entry header { height: auto; }

.entry .entry-meta ul {
	margin: 6px 0 18px;
	color: #B7B9BD;
	line-height: 24px;
}
.entry .entry-meta ul li {
	display: inline;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: 'merriweather-regular', sans-serif;	
}
.entry .entry-meta ul .meta-sep {}
.entry .entry-meta ul li a { color: #B7B9BD; }

.entry .entry-content-media {	margin: 24px 0 18px;	}

.entry .tags {
  margin-top: 18px;
  font-family: 'opensans-regular', sans-serif;
  color: #888;
}
.entry .tags a { font-family: 'opensans-bold', sans-serif; }


/* post-nav */
.post-nav {
   margin: 18px 0 6px;
   padding: 12px 0 0 0;
   font: 15px/30px 'opensans-light', sans-serif;
}
.post-nav li {
   display: inline-block;
   margin: 0;
   padding: 0;
   width: 49%;
   line-height: 30px;
}
.post-nav li a { color: #888;  }
.post-nav li strong {
   font: 16px/30px 'opensans-bold', sans-serif;
   text-transform: uppercase;
   color: #93B876;
   letter-spacing: 0.5px;
   display: block;
}
.post-nav li.next {
   float: right;
   text-align: right;
}
.post-nav li.prev {
   float: left;
   text-align: left;
}

/* Comments -------------------------------------------- */

#comments {
   padding-top: 12px;
   padding-bottom: 12px;
}
#comments h3 {
   font: 20px/30px 'opensans-bold', sans-serif;
   margin-bottom: 6px;
}

/* Comments List */
ol.commentlist {
   border-top: 1px dotted #E1E5E3;
	margin: 29px 0 54px 0;
	padding: 0;  
}
.commentlist > li {
   position: relative;
	list-style: none;
	margin: 0;	
	border-bottom: 1px dotted #D9DEDB;
	padding: 24px 0 17px 0;	
	padding-left: 14%;
}
.commentlist li .avatar {
   position: absolute;
   left: 0px;
   display: block;
   height: 48px;
   width: 48px;
}
.commentlist li .avatar img {
   margin-top: 6px;
   height: 48px;
   width: 48px;
  	border-radius: 100%;
}
.commentlist li .comment-info cite {
   font: 16px/30px 'opensans-bold', sans-serif;
   color: #454545;
}
.commentlist li .comment-info .comment-meta {
   font-size: 14px;
   line-height: 24px;
   display: block;
}
.commentlist li .comment-info .comment-meta .reply {
   font-family: 'opensans-bold', sans-serif;
}
.commentlist li .comment-info .comment-meta .sep {
   margin: 0 5px;
   color: #AEB6B7;
}
.commentlist li .comment-text {
	clear: both;
	margin: 18px 0 0 0;
   padding: 0;
   line-height: 30px;
}

/* children */
.commentlist li ul.children {
   margin: 0;
   padding: 18px 0 0 0;
}
.commentlist li ul.children li {
   padding-left:  5% ;
   padding-top: 17px;
   border-top: 1px dotted #D9DEDB;
}

/* comment form ----------------------------------------- */

#comments form { margin-top: 36px; }
#comments form label {
   padding-left: 24px;
   width: 41.66667%;
   float: right;
}
#comments form div {
   margin: 12px 0 18px 0;
}
#comments form input,
#comments form textarea,
#comments form select {
   width: 58.33333%;
   float: left;
}
#comments form .message label {
   display: none;
}
#comments form textarea {
   width: 100%;
}
#comments form button.submit {
	text-transform: uppercase;
	letter-spacing: 2px;
   display: block;
   margin-top: 12px;
}
#comments form span.required {
	color: #93B876;
	font-size: 15px;
}

input[type=TEXT]{
    width: 100%;
	color: #222288; 
/*    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box; */
}		
input[type=text]:focus {
    background-color: lightblue;
	color: #000000;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
	color: #222288; 
}
textarea:focus {
    background-color: lightblue;
	color: #000000;
}
		
/* page navigation -------------------------------------- */

.pagenav {
   font: 18px/30px 'opensans-bold', sans-serif;
   text-align: left;
   margin-top: 12px;
   padding-top: 18px;
   margin-bottom: 48px;
   border-top: 1px solid #E8E8E8;
}
.pagenav p {
	margin-bottom: 18px;
}
.pagenav span {
	font: 18px/30px 'opensans-regular', sans-serif;
   color: #C0C6C9;
   margin: 0 15px;
}
.pagenav a[rel="prev"] { 
	margin-right: 10px;
	padding-right: 15px;
	border-right: 1px dotted #CBCFD1;
}
.pagenav a[rel="prev"]:before {
	/*content: '\f053';*/
	/*content: '\f104';*/
	content: '\f177';
	font-family: 'fontawesome';
	font-size: 15px;
	margin-right: 12px;
}
.pagenav a[rel="next"]:after {
	/*content: '\f054';*/
	/*content: '\f105';*/
	content: '\f178';
	font-family: 'fontawesome';
	font-size: 15px;
	margin-left: 12px;
}


/* f. Archives
/* ------------------------------------------------------------------ */
.archive-list h4 {
	font: 15px/24px 'opensans-bold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.archive-list ul {
	list-style: disc;	
	margin-left: 17px;
}


/* g. Footer
/* ------------------------------------------------------------------ */

footer {	
   padding-top: 36px;
   margin-bottom: 42px;
   font-size: 13px;
   line-height: 24px;
   position: relative; 
   color: #34393A;  
   background: #F5F4F3;
 background: rgba(245, 244, 243, 0.6);
    border: 0px solid #ccc;
}
footer h3 {
   font: 14px/24px 'opensans-bold', sans-serif;
   margin-bottom: 9px;
   font-weight: normal;
   text-transform: uppercase;
   letter-spacing: 1px;
}
footer p {
	margin-bottom: 24px;	
}

footer a, footer a:visited { color: #6C934D; }
footer a:hover, footer a:focus { color: #34393A; }

footer .info { padding-right: 30px; }

footer ul {
   margin: 0;
   padding: 0;
}
footer ul li {
   margin: 0;
   line-height: 24px;
}
footer ul li a,
footer ul li a:visited { color: #34393A; }
footer ul li a:hover,
footer ul li a:focus { color: #6C934D; }

/* social links */
footer .social-links {
   margin: 18px auto 42px auto;
   padding: 0;  
   text-align: center;
}
footer .social-links li {
   display: inline-block;
   font-size: 32px;
   line-height: 48px;
   padding: 0;
   margin: 0 16px;
   color: #444; 
}
footer .social-links li:first-child { margin-left: 0; }


/* Photostream */
footer .photostream {
   list-style: none;
   margin: 12px 0 24px -15px;
   padding: 0;
   overflow: hidden;
}
footer .photostream li {
   display: inline-block;
   margin: 0 0 12px 12px;
   padding: 0;
}

footer .photostream li a { 
	display: block; 
	height: 60px;
   width: 60px;
   background: #fff;
   padding: 9px;
   border: 1px solid #E9E9E9;
   border-radius: 3px;
}
footer .photostream li a img {   
   vertical-align: bottom;
}
/* copyright */
footer .copyright {
   margin: 0;
   padding: 24px 18px 6px 18px;
   clear: both; 
   text-align: center;
    
}

/* Go To Top Button */
#go-top {
	position: fixed;
	bottom: 30px;
   right: 30px;  
   text-align: center; 
   display: none;
}
#go-top a {
	text-decoration: none;
	border: 0 none;
	display: block;
	width: 48px;
	height: 48px;
	background-color: #494949;

	-webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;

   color: #fff;
   font-size: 16px;
   line-height: 48px;
 	border-radius: 3px;
}
#go-top a:hover { background: #7BA857; }


		#slideshow1 {
		   /* margin: 0px auto; 
		    position: relative;  
		    max-width: 1020px; 
			width: auto; */
			max-height: 280px; 
			/* overflow: hidden;
		    padding: 10px;
			border-width: 0px;
			border-style: solid;
			border-color: yellow; 
			flex: 1 0 25%; */
		}


		#slideshow1 > div {
		    position: static;
		    top: 0px;
		    left: 0px;
		    right: 0px;
		    bottom: 0px;
			/* height: auto;
			width: auto; 
text-align: center; display: flex; align-items: center;	 justify-content: center; 	*/
			border-width: 0px;
			border-style: solid;
			border-color: red;
		}
		

		#slideshow1 div img {
    /* position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;
		text-align: center; display: flex; align-items: center;	 justify-content: center;
		max-width: 100%;
		width: auto;
		height: auto;
		max-height: 100%;
		vertical-align: middle;
			border-width: 0px;
			border-style: solid;
			border-color: blue;	
			*/
		}


