/* CSS Document */

/*
A. Reset - Meyer
B. Clearfix
C. Webfonts
D. Overall Structure
E. Checkbox Hack
F. Navigation
G. Link Sets
H. Global  - positioning, styles
I. Text - headers, paragraphs
J. Images
K. Slideshow
*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

/*A. Default Reset start*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, .big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/*******************************************
 HTML5 display-role reset for older browsers
 ********************************************/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*end reset*/


/*******************************************
	box set
*******************************************/
*	{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}



/*******************************************
C.	Web Fonts
*******************************************/


/********************************************
	Fluid Media
	interpolation-mode
	http://css-tricks.com/ie-fix-bicubic-scaling-for-images/
********************************************/

figure {
    position: relative;
	}

figure img,
figure object,
figure embed,
figure video {
    display: block;
    max-width: 100%;
	}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
	}


/*******************************************
 Float Clearing http://nicolasgallagher.com/micro-clearfix-hack
 *******************************************/

.group:after {
    content: " "; /* 1 */
    display: table; /* 2 */
    clear: both;
	}

.group {
    *zoom: 1; /* 3 */
	}

.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
 	}

.clearfix {
	display: inline-block;
	}
/* start commented backslash hack \*/
* html .clearfix {
	height: 1%;
	}
.clearfix {
	display: block;
	}
/* close commented backslash hack */


/*******************************************
D. Overall Structure
********************************************/

html {
	  font-size: 100%;
	  line-height: 1;
	  -moz-text-size-adjust: 100%;
	  -ms-text-size-adjust: 100%;
	  -webkit-text-size-adjust: 100%;
	}

body {
	background-color: #959595;
  	background-color: #C0BEBB;
	background-color: #e2e1dd;
	margin: 0;
	font-family: Helvetica, Arial, san-serif;
	/*color: #323232;*/
	color: #141414;
	line-height: 1;
	font-size:1em;
	text-align: center;
	width: 100%;
	}

	/*800px and bread for full nav*/
@media (min-width: 60em)  {

	body {
	background-image: url(../images/grey-bg.gif);
  	background-image: url(../images/grey-bgv2.gif);
    background-image: url(../images/grey-bgv3.gif);
	background-repeat: repeat-x;
	}
}

#wrapper {
	margin: 0 auto;
	padding: 0 0 4em 0 ;
	text-align: left;
	max-width: 75rem; /*1200px*/
	z-index: 2;
	}

main {
	/*float: left;*/
	min-width: 100%;
	display: block;
	margin: 0 auto;
	padding: 1em 1em 4em 1em;
	text-align: left;
	z-index: 3;
	}
main.home {
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 1em 1em 4em 1em;
	text-align: center;
	z-index: 3;
}

header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background-color: #888888;
  	background-color: #B1AFAB;
	background-color: #d9d7d2;
	clear: both;
	height: auto;
	}
@media (min-width: 60em)  {
	header {
	width: 100%;
	padding: 0 1em;
	margin: 0 auto;
	background-color: transparent;
	clear: both;
	}
}

.hold-fifty {
	width:100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.fifty {
	width:100%;
}
@media screen and (min-width:767px){
.fifty {
	width:40%;
	min-width:350px;
}
}

.fifty-left {
	width:100%;
	margin-top: 2rem;
}

@media screen and (min-width:767px){
.fifty-left {
	width:60%;
	min-width:350px;
	margin-top: 4rem;
}
}

.below-entry {
	width: 100%;
	clear: both;
	padding: 2em 0;
	margin-top:2em;
	border-top: 1px solid #8b8b8b;

}
footer {
	position:fixed;
	/*position: relative;*/
	bottom: 0;
	clear: both;
	width: 100%;
	margin: 0 auto;
	font-size: .6em;
	line-height: 1.4;
	padding: .75rem;
	/*border-top: 1px solid #999;*/
	text-align: center;
	display: block;
	z-index: 200;
	background-color: #b3b1ad;
	background-color: #d9d7d2;
	color: #373737;
	}

.news-section {
		border-top:1px solid #8b8b8b;
		max-width: 100%;
		padding-top: 1rem;
		margin-top: 1rem;
		margin-left: 1rem;
		margin-bottom: 0;
	}



.hold-listingim {
	max-width: 100%;
	margin: 0 auto;

	}

.hold-listingim, .hold-listingim a  {
	font-size:.85rem;
	text-align: center;
	line-height:1.4;
}
.hold-listingsidebar {
	max-width: 100%;
	float:left;
	padding: 1em 0 1em 0;
	}
.hold-listingim img {
	padding-bottom: .25em;
}

@media (min-width: 30em)  {
	.hold-listingim {
	max-width: 30%;
	float:left;
	padding: 0 2em 1em 0;
	margin-left: 0
	}

.hold-listingsidebar {
	max-width: 70%;
	float:left;
	padding: 0 1em 4em 1em;

	}
}
.holdseries {
	max-width: 100%;
	min-width: 100%;
	float:left;
	}


.holdsidebar {
	max-width: 100%;
	float:left;
	padding: 0 1em 4em 1em;
	}


@media (min-width: 60em)  {
.holdseries {
	max-width: 70%;
	min-width: 70%;
	float:left;
	margin-right: 20px;
	padding-bottom: 4em;
	}

.holdsidebar {
	max-width: 30%;
	float: left;
	padding: 0 0 4em 0;
	}
}

.detailgroup {
	display: inline-block;
	max-width: 100%;
	padding: 2em;
	margin:0 auto;
	}

@media (min-width: 60em)  {
.detailgroup {
	display: inline-block;
	max-width: 100%;
	padding: 2em 2em 2em 0;
	margin:0 auto;
	}
}

.detailgroup img {
	max-height:250px;
/*
	margin:auto;
	padding:0 1.5em .5em
*/
}

.left-bio {
	margin: 0 auto;
	max-width: 100%;
	padding:0;
}

@media (min-width: 60em)  {
.left-bio {
	float:left;
	max-width: 60%;
	padding:0;
	margin-bottom:10rem;
}
}

.right-bio {
	margin: 0 auto;
	max-width: 100%;
	padding:2em 0;
}

@media (min-width: 60em)  {
.right-bio {
	float:left;
	max-width: 40%;
	padding:2.5em;
}
}
/*******************************************
 E.   Advanced Checkbox Hack
*******************************************/
			/*for toggle */

#navmenu {
	position: relative;
	margin: 0;
	min-width: 100%;
	padding: 0;
	z-index: 100;
	text-transform: uppercase;
	}

#navmenu a {
   display: inline-block;
	}

/*start for navigation on small	*/
#navmenu nav {
	height: 0;
	overflow: hidden;
	}




body {
    -webkit-animation: bugfix infinite 1s;
	}

@-webkit-keyframes bugfix {
    from {padding: 0;}
    to {padding: 0;}
	}

/*
1. Hide <nav> off-screen / -9999px/-999em technique works best.
*/

#navmenu input[type=checkbox] {
    position: absolute;
    top: -999em;
    left: -999em;
	z-index: 0;
}

#navmenu label {
    display: block;
	height: 2em;
    background: url("../images/menu-ver.png") no-repeat right center;
    text-indent: -999em;
    cursor: pointer;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;
	z-index:0;
	margin-top: -3.35em;
	margin-bottom: .85em;
	margin-right: 1em;
	}

#navmenu label:hover {
		background: url("../images/menu-white.png") no-repeat right center;
	background: url("../images/menu-ver-dark.png") no-repeat right center;
		}


/* 6. Show <nav> on-screen / drop-down menu */

#navmenu input[type=checkbox]:checked ~ nav {
    height: auto;
    overflow: hidden;
	}

ul.topnav {
	list-style: none;
	text-align: left;
	padding: .75em 0;
	width: 100%;
	}

ul.topnav li {
	font-size: 1em;
	font-weight: 100;
	line-height: 1;
	test-transform: uppercase;
	font-family: Helvetica, Arial, sans-serif;
	color: #1c1c1c;
	padding: .75em 0 0 1.2em;
	border-top: 1px solid #ccc;
	margin: .25em 0 .75em 0;
	}


/*******************************************
    End Advanced Checkbox Hac
****************************************** */
/*******************************************
Sub Dropdown menu styles
*******************************************/

nav ul ul {
	display: none;
	}


nav ul li:hover > ul {
	display: block;
	z-index:300;
	}

nav ul {
	padding: 0;
	list-style: none;
	position: relative;
	display: inline-table;
	line-height: 1.1;
	}

nav ul:after {
	content: ""; clear: both; display: block;
	}

nav li.drop {
	border-top: hidden;
	text-transform: none;
	padding: .5em 0 0 1em;
	margin: .5em 0 0 1em;
	}
/*	enddropdownmenus*/


	/*800px and bread for full nav*/
@media (min-width: 60em)  {


nav {
	max-width: 80%;
	padding: 0 1em .5em 1em;
	margin-top: -3em;
	float: right;
	color: #323232;
	}

#navmenu {
	height: 1em
	/*margin-top:0;
	min-width:80%;
	padding:-3.2em .1em .5em .1em;*/
	}

ul.topnav li {
	font-size: .875em;
	test-transform: uppercase;
	font-family: Helvetica, Arial, sans-serif;
	color: #1c1c1c;
	padding: 0 .5em;
	border-top: 0px solid #ccc;
	margin: 0 .15em 0 .15em ;
	border-right: 1px solid #4c4c4c;
	height: 1em;
	}

ul.topnav {
    list-style: none;
    text-align: left;
    padding: .25em 0;
	}


nav ul ul {
	display: none;
	}

nav ul li:hover > ul {
	display: block;
	}
nav ul li:hover > ul {
	display: block;
	z-index:300;
	}

nav ul:after {
	content: ""; clear: both; display: block;
	}

nav li.drop {
	border-top: hidden;
	text-transform: none;
	padding: 1em .75em 1.5em;
	margin: 0;
	text-align:left;
	}

ul.topnav li.topfree {
	font-size: 1em;
	text-transform: uppercase;
	font-family: Helvetica, Arial, sans-serif;
	color: #1c1c1c;
	padding: -4.5em .5em .5em .5em;
	border-top: 0px solid #ccc;
	text-align:left;
	}
li.topfree {
	padding: -4.5em .5em .5em .5em;
	border-right: 1px solid #1c1c1c;
	margin-right:1em;
	}


/*start for navigation on small	*/
	#navmenu nav {
	height:auto;
	overflow:visible;
	}

#navmenu label {
    display: none;
	}

/*broughtin*/
nav ul li {
	padding:.325em .5em 0 .5em;
	margin:0;
	list-style: none;
	position: relative;
	display:inline-table;
	line-height:1;

	}

nav ul:after {
	content: ""; clear: both; display: block;
	}


nav ul li a {
	display: block;
	color: #fefefb;
	line-height:1;
	margin:.35em ;
	text-decoration: none;
	text-align:center;
	}

nav ul ul li a.drop {
	z-index:500;
	font-size:.9725em;
	line-height:1;
	font-weight:100;
	margin: 0 0 .4em .2em;
	text-align:left;
	border-right: hidden;
	}

nav ul ul {
	background: #888888;
  	background: #B1AFAB;
	padding:.6em 0 .8em 0;
	position: absolute;
	left: -.15em;
	top: 100%;
	width:200%;
	z-index:500;
}

nav ul li ul li.drop {
    border-right: hidden;
    text-align: left;
    display: block;
    clear: both;
    width: 100%;
}


 A.mmenu:link {
	color: #ffffff;
	text-decoration: none;

}

 A.mmenu:visited {
	color: #ffffff;
	text-decoration: none;

}


A.mmenu:active {
	color: #ffffff;
	text-decoration:none;

	}


A.mmenu:hover {
	color: #ffffff;
	text-decoration:none;

	}
}

/********************************************
	Lists
	********************************************/

ul .series-nav {
	font-family: Helvetica, san-serif;
	font-size: .875rem;
	padding: 1rem;
	margin: 0;
	}

ul li.series-nav {
	font-family: Helvetica, san-serif;
	font-size: .875rem;
	line-height:1.2;
	padding: .5rem 0;
	color: #343434;
	}

@media (min-width: 60em)  {
	ul .series-nav {
	font-family: Helvetica, san-serif;
	font-size: .875rem;
	padding: 1rem;
	margin: 0;
	}

ul li.series-nav {
	font-family: Helvetica, san-serif;
	font-size: .875rem;
	line-height:1.2;
	padding: .5rem 1rem;
	color: #343434;
	}
}
/*******************************************
G. Link Sets
*******************************************/

A.navl:link {
	color: #3F3F3F;
	text-decoration: none;
	}
A.navl:visited {
	color: #3F3F3F;
	text-decoration: none;
	}
A.navl:active {
	color: #3F3F3F;
	text-decoration: none;
	}
A.navl:hover {
	color: #ffffff;
	text-decoration: none;
	}


A:link {
	color: #323232;

	text-decoration: none;
	}
A:visited {
	color: #323232;

	text-decoration: none;
	}
A:active {
	color: #323232;

	text-decoration: none;
	}
A:hover {
	color: #ffffff;

	text-decoration: none;
	}

/*******************************************
H. Global  - positioning, styles
********************************************/

.left {
	text-align: left;
	}

.center {
	text-align: center;
	}

.none {
	margin: 0;
	padding: 0
	}
.smaller {
	font-size:75%
}

strong, bold {
	font-family: Helvetica, sans-serif;
	color:#3F3F3F;
	font-weight: 700;
}

em {
	font-family: Helvetica, sans-serif;
	font-style: italic;
	}
cite {
	font-style: italic;
}
sup {
  font-size: 80%;
  margin-bottom: .5rem;
  display: inline-block;
  line-height: 1;
  /*padding-bottom: 1rem;*/
  vertical-align: super;
}
.group-social {
	display:flex;
	justify-content: flex-start;
	height:52px;
	padding:1rem 0;
}
.social {
	position:relative;
	max-height:52px;
	padding:1rem;
}
p.mix-center {
	text-align:center;
	max-width:100%
}
@media screen and (min-width: 58em){
	p.mix-center {
		text-align:center;
		max-width:360px}
}

/********************************************
I. Text - headers, paragraphs
********************************************/

h1,h2,h3,h4,h5,p {
	font-weight:100;
	}

h1,h2,h3,h4,h5 {
		text-align:left;
	}



h1.name {
	color: #323433;
	font-size: 32px;
	line-height: 1;
	padding: 1rem ;
	text-align: left;
	}
@media (min-width: 60em)  {
	h1.name {
	font-size: 42px;
	}
}

h3.homefeature {
	font-size: 1.1em;
	font-family: Helvetica, san-serif;
	color: #666666;
	font-weight: 700;
	line-height: 1.1;
	padding: 1rem 0 ;
	text-align: center;
	text-transform: uppercase;
	}
h3.homefeature-none {
	font-size: 1.1em;
	font-family: Helvetica, san-serif;
	color: #666666;
	font-weight: 700;
	line-height: 1.1;
	padding: 1rem 0;
	text-align: center;
	text-transform: uppercase;
	}
@media (min-width: 58em)  {
h3.homefeature {
	font-size: 1.1em;
	font-family: Helvetica, san-serif;
	color: #666666;
	font-weight: 700;
	line-height: 1.1;
	padding: 1rem;
	text-align: left;
	text-transform: uppercase;
	}

h3.homefeature-none {
	font-size: 1.1em;
	font-family: Helvetica, san-serif;
	color: #666666;
	font-weight: 700;
	line-height: 1.1;
	padding: 1rem 0;
	text-align: left;
	text-transform: uppercase;
	}
}
h5.series-name {
	font-family: Helvetica, san-serif;
	font-size: .875em;
	font-weight: 700;
	text-align: center;
	margin: 5px 0;
	color: #323433;
	}

h4.news-title {
	text-transform: uppercase;
	font-size: 1em;
	text-align: left;
	margin: 5px 0;
	font-weight:bold;
	}

h4.home-announ {
	text-transform: uppercase;
	font-size: 1em;
	color: #353535;
	line-height: 1.5;
	font-weight: 700;
	text-align: center;
	margin: 5px 0;
	}
@media (min-width: 58em)  {
h4.home-announ {
	text-transform: uppercase;
	font-size: 1em;
	color: #353535;
	line-height: 1.5;
	font-weight: 700;
	margin: 5px 0;
	}
}
h4.news-title-more {
	text-transform: uppercase;
	font-size: 1em;
	text-align: left;
	margin: 1em 0;
	font-weight:bold;
	}
@media (min-width: 60em)  {
h4.news-title-more {
	text-transform: uppercase;
	font-size: 1em;
	text-align: left;
	margin: 1em;
	}
}
h4.contact-pg {
	font-size: 1em;
	line-height: 1.2;
	text-align: left;
	margin: 1em;
	}

p {
	margin: 1em 0;
	padding: 0;
	font-size: 1em; /*(15px)*/
	line-height: 1.4;
	text-align: left;
	}
@media (min-width: 60em)  {
p {
	margin: 1em 0;
	padding: 0 1rem;
	font-size: .875em; /*(15px)*/
	line-height: 1.4;
	text-align: left;
	}
}

p.list {
	margin: 1em 0;
	padding: 0;
	font-size: 1rem; /*(15px)*/
	line-height: 1.4;
	text-align: left;
	}
@media (min-width: 60em)  {
	p.list {
	margin: 1em 0;
	padding: 0;
	font-size: 1rem; /*(15px)*/
	line-height: 1.4;
	text-align: left;
	}
}

p.direct {
	margin-top:-5px;
	font-size:75%;
	text-align:center;
}
@media (min-width: 60em)  {
	p.direct {
	margin-top:-5px;
	font-size:75%;
	text-align:left;
		
}
}

.ser-describe {
	margin: 2em 0;
	color: #141414;
	padding: 1em 0;
	font-size: 1rem; /*(15px)*/
	line-height: 1.4;
	text-align: left;
	border-top: 1px solid #888;
	}

.ser-describeno {
	margin: 0;
	padding: 1em 0;
	font-size: 1rem; /*(15px)*/
	line-height: 1.4;
	text-align: left;
	border-top: none;
	}

@media (min-width: 60em)  {
.ser-describe {
	margin: 2em 0 2em 1em;
	padding: 1em 0;
	font-size: .95rem; /*(15px)*/
	line-height: 1.4;
	text-align: left;
	max-width: 250px;
	float:left;
	clear:none;
	border-top: 1px solid #888;
	}

.ser-describeno {
	margin: 0 0 1em 1em;
	padding: 0;
	font-size: .95rem; /*(15px)*/
	line-height: 1.4;
	text-align: left;
	max-width: 250px;
	float:left;
	clear:none;
	border-top: none;
	}
}

.text {
	clear: none;
	font-size: .875em;
	font-weight: 100;
	}

a.truncate_more_link {
	font-weight: bold;
	font-size: 1em;
	color: #424343;
	}
a.truncate_more_link:hover {
	font-weight: bold;
	font-size: 1em;
	color: #ccc;
	}

.medium {

	font-size: .875em;
/*	padding: .875rem 1rem .875rem 1rem;*/
	margin: 2em 0;
	text-align: left;
	color: #373737;
	}

@media (min-width: 60em)  {
	.medium {
		max-width: 250px;
	font-size: .875em;
/*	padding: .875rem 1rem .875rem 1rem;*/
	margin: 4em 0 1em;
	text-align: left;
	color: #373737;
	}
}


/********************************************
J.	Images
********************************************/

img {
	border: 0px;
	z-index: 0;
	max-width: 100%;
	padding: .5em;
}

img.spaceright {
		max-width: 100%;
		padding: 0;
		margin: 0 .625em .625em .625em;
}

img.spaceleft {
		max-width: 100%;
		padding: 0;
		margin: 0 .625em .625em .625em;
}

img.bigimg {
		max-width: 100%;
		padding: 1em 0;
		margin: 0;
}


img.gallery {
		max-width: 100%;
		padding: 1em 0;
		margin: 0 auto;
}

img.gallery-hgt {
		/*min-height: auto;*/
		max-width: 209px;
		padding: 1em;
		margin: 0 auto;
	}
	img.gallery-hgtnorm {
		max-height: none;
		padding:1.75em;
		margin: 0 auto;
	}

@media (min-width: 30em)  {
img.gallery-hgt {
		/*min-height: none;*/
		padding: 1.75em;
		margin: 0 auto;
	}

	img.gallery-hgtnorm {
		padding:1.75em;
		margin: 0 auto;
		max-height:231px;
	}
}

figure 	{
		max-width: 100%;
		z-index: 0;
}

figcaption {
	 font-size: .75em;
	 line-height: 1.4;
	 margin: 0 0 3em .75em;
	 text-align: left;
}

.hold-open {
	max-width:1200px;
	margin:0 auto;
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
}


.sideinfo {
  width: 100%;
/*	display: inline-block;*/
  margin: 1em 0;
  padding:0;
  position: relative;
  text-align:center;
}

.sideinfo p {
  text-align: center;
  margin: 0 auto;
  margin-top: -10px;
  font-size: 4px;
  padding-top: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
  max-width: 20px;
}
@media screen and (min-width:58em){
.sideinfo p {
	text-align:left;
	margin: -10px auto 1.3rem;
	}
}
@media screen and (min-width:58em){
.sideinfo {
	width: 35%;
/*	display: inline-block;*/
	margin: 0;
	padding:6em 10rem 2em 1rem;
/*	position: absolute;*/
/*	top: ;*/
/*	max-width:400px;*/
/*		float:left;*/
	position:relative;
	text-align:left;
}
}

/*
.sideinfo p {
	margin: 0;
	padding: 1em 0;
}
*/
/********************************************
K. Slideshow
********************************************/

.containslideshow {
/*	max-width:1200px;*/
	padding:0;
	margin:0 auto;
	float:none;
	text-align:center;
	width:100%;
}

@media screen and (min-width: 58em){
	.containslideshow {
/*	max-width:1200px;*/
		min-width:400px;
	width:100%;
	float:none;
	padding:0;
	margin:0 auto;
	position:relative;
	max-width:1200px;
}
}
.containslideshow figure img{
/*	max-width:1200px;*/
	padding:0;
	margin:0 auto;
	float:none;
	text-align:center;
	max-width:100%;
}

.containslideshow figure figcaption{
/*	max-width:1200px;*/
	padding:8px 0 0;
	margin:0 auto;
	float:none;
	text-align:center;
	max-width:100%;
}

.cycle-slideshow {
	width: 100%;
	margin: .65em auto ;
}

.cycle-slideshow img {
	max-width: 100%;
	height: auto;
	padding: 0;
	margin: 0 auto;
	text-align:center;
}

#alt-caption {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	text-align: center;
	font-size: .75em;
	color: #666;
	padding: .25em .5em;
	height: 4em
}
@media screen and (min-width:58em){
#alt-caption {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	text-align: center;
	font-size: .75em;
	color: #666;
	padding: .25em .5em;
	height: 4em
}

}
/*End slideshow styles*/

	/********************************************
	Video
	********************************************/
	.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 0;
	margin:0;
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hold-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
	margin-bottom:2rem
}
.hold-iframe iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-separation {
	margin:20px auto;
	clear:both;
	padding:1em 0;
	border-bottom:1px solid #545353
}


.gallery-group {
	width:100%;
	margin: 0 auto;
text-align: center;
}

.gallery-group figure {
display: inline-block;

text-align: center;
padding: 1rem 2.5rem;
}

.gallery-group figure figcaption {
	font-size:1.1rem;
	text-align: center;
	text-transform: uppercase;
	font-weight:500;
}

.gallery-group figure img {
/*	max-width:100%;*/
	max-height:250px;
	display:inline-block;
}

/*********************
 bottom button
 **********************/


#myBtn {
  display: none; /* Hidden by default */
  position: fixed ; /* Fixed/sticky position */
  bottom: 3em; /* Place the button at the bottom of the page */
  right:1rem;
  z-index: 99; /* Make sure it does not overlap */
  border: none;  /*    Remove borders */
  outline: none; /* Remove outline */
  background-color: rgba(180,180,180,.5);  /*Set a background color */
  color: rgb(50,50,50); /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 8px; /* Some padding */
  border-radius: 50px; /* Rounded corners */
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 1px 5px 10px rgba(50,50,50,.6);
 /*right: 1.5em;  Place the button 30px from the right */
	text-transform:uppercase;
	font-size:.5rem;
}

#myBtn i {
  color:  #333 ;
  margin: 0 0 -4px;
  position: relative;
  top: 0;
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99;
}

#myBtn:hover {
  background-color: rgb(75,75,75,.5); /* Add a dark-grey background on hover */
	color:white;
	
}

#myBtn:hover i {
    color: white;
    top: -4px;
}