/* @group Owl Theme */

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

/* @end */

/* @group Owl Transitions */

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}

/* @end *//* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_135 #myExtraContent1,
#ExtraContentPlusstacks_in_135 #fs {
	display: none;
}


#stacks_in_53 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_25 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_25 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_25 #jwresp_col2_stacks_in_25{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_25 #jwresp_col1_stacks_in_25,#stacks_in_25 #jwresp_col2_stacks_in_25{width:100%;float:none;display:block}#stacks_in_25 #jwresp_col1_stacks_in_25{margin-bottom:15px}}

#stacks_in_25 {
	margin: 0px 0px 30px 0px;
}
#portholeStackstacks_in_38 {	
	width: 100%;
	padding-bottom: 100%;
	display: block;
	position: relative;
	z-index: 0;
}

#portholeStackstacks_in_38 *,
#portholeStackstacks_in_38 *:before,
#portholeStackstacks_in_38 *:after {	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#portholeFillstacks_in_38 {
	width: 100%;
	height: 100%;
	border-radius: 500px;
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0.99;
	border: 0px solid #FF0000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	box-shadow: inset 0 0 0 0 rgba(0,0,0, 0.4), inset 0 0 0 10px rgba(255,255,255,0.70), 0 1px 2px rgba(0,0,0,0.1);
}

#portholeStackstacks_in_38:hover #portholeFillstacks_in_38 {
	opacity: 0.99;
	border: 0px solid #0000FF;
	box-shadow: inset 0 0 0 0 rgba(0,0,0, 0.4), inset 0 0 0 10px rgba(255,255,255,0.90), 0 1px 2px rgba(0,0,0,0.1);
}

#portholeContentAbsolutestacks_in_38 {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	z-index: 3;
	width: 100%;
	display: block;
}

#portholeContentstacks_in_38 {
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	width: 75%;
	margin: 0 auto;
	display: block;
	text-align: center;
	color: #ffffff;
}

#portholeContentLargestacks_in_38 {
	font-family: 'Droid Sans', sans-serif;
	line-height: 1.25em;
	font-weight: 400;
	color: #FFFFFF;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 4;
	position: relative;
	opacity: 0.99;
	text-transform: none;
}

#portholeStackstacks_in_38:hover #portholeContentLargestacks_in_38 {
	color: #FFFFFF;
	opacity: 0.99;
}

/*  */
#portholeContentLargestacks_in_38 {
	font-size: 250%;
}

#portholeStackstacks_in_38:hover #portholeContentLargestacks_in_38 {
	font-size: 250%;
}
/*  */

/*  */

/*  */

#portholeContentSmallstacks_in_38 {
	font-family: 'Droid Sans', sans-serif;
	line-height: 1.50em;
	font-weight: 400;
	color: #FFFFFF;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 4;
	position: relative;
	opacity: 0.99;
	text-transform: uppercase;
}

#portholeStackstacks_in_38:hover #portholeContentSmallstacks_in_38 {
	color: #FFFFFF;
	opacity: 0.99;
}

/*  */
#portholeContentSmallstacks_in_38 {
	font-size: 150%;
}

#portholeStackstacks_in_38:hover #portholeContentSmallstacks_in_38 {
	font-size: 150%;
}
/*  */

/*  */

/*  */

/* Icons */

#portholeContentLargestacks_in_38 [class^="fa fa-"] {
	color: #FFFFFF;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

#portholeStackstacks_in_38:hover #portholeContentLargestacks_in_38 [class^="fa fa-"] {
	color: #FFFFFF;
}

#portholeContentSmallstacks_in_38 [class^="fa fa-"] {
	color: #FFFFFF;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

#portholeStackstacks_in_38:hover #portholeContentSmallstacks_in_38 [class^="fa fa-"] {
	color: #FFFFFF;
}

#portholeLinkstacks_in_38 a {
	display: block;
	border: none;
	text-decoration: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	background: transparent;
}
















/* Local image image applied as a CSS background */
#portholeFillstacks_in_38 {
	background: url(../files/container_local_image-38.jpg);
	background-size: 100% 100%;
	background-attachment: scroll;
}







@media print {
	#portholeFillstacks_in_38 {
		display: none;
	}
	
	#portholeStackstacks_in_38 {	
		padding-bottom: 0;
	}
	
	#portholeContentstacks_in_38 {
		width: 100%;
	}
	
	#portholeLinkstacks_in_38 a,
	#portholeContentAbsolutestacks_in_38 {
		position: relative;
		top: auto;
		left: auto;
	}
	
	#portholeContentSmallstacks_in_38,
	#portholeContentLargestacks_in_38 {
		font-size: 14pt;
		line-height: 1.50em;
		opacity: 1.00;
		color: #000000;
		text-align: left;
	}
}
#stacks_in_31 {
	font-size: 125%;
}

#stacks_in_79 {
	margin: 7px 0px 7px 0px;
}
#stacks_in_80_button {
	display:block;
	position: relative;
	text-align: center;
}


#stacks_in_80 a:link, #stacks_in_80 a:visited {
	 display:inline-block; 
	
	
	position: relative;
	text-decoration:none;
}
#stacks_in_80 a:hover, #stacks_in_80 a:active {
	color:#000000;
}










#stacks_in_80 a:link, #stacks_in_80 a:visited {
	background-color:#FFFFFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#BFBFBF));
	border:1px solid #BFBFBF;
	padding:3px 20px;
	color:#000000;
	box-shadow:rgba(0, 0, 0, 0.5) 0px 1px 2px;
	margin:5px;
	font-weight:bold;
}
#stacks_in_80 a:hover {
	background-color:#FFFFFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#A5A5A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_80 a:active {
	background-color:#FFFFFF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}

#stacks_in_80 {
	margin: 8px 0px 0px 0px;
}
/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_23 #myExtraContent2,
#ExtraContentPlusstacks_in_23 #fs {
	display: none;
}


#stacks_in_41 {
	margin: 40px 0px 20px 0px;
}
#stacks_in_45 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_45 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_45 #jwresp_col2_stacks_in_45{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_45 #jwresp_col1_stacks_in_45,#stacks_in_45 #jwresp_col2_stacks_in_45{width:100%;float:none;display:block}#stacks_in_45 #jwresp_col1_stacks_in_45{margin-bottom:15px}}

#stacks_in_45 {
	margin: 0px 0px 20px 0px;
}

#stacks_in_52 {
	font-size: 125%;
}
#rotatorstacks_in_55 {
	overflow: hidden;
}

#rotatorstacks_in_55 .owl-item {
	display: inline-block;
	margin-bottom: -5px;
	vertical-align: top;
}

#rotatorstacks_in_55 .item img {
	max-width: 100%;
	height: auto;
}

#progressBarstacks_in_55 {
	display: block;
	width: 100%;
	background: #EDEDED;
}

#barstacks_in_55 {
	width: 0%;
	max-width: 100%;
	height: 4px;
	background: #0000FF;
}

#rotatorstacks_in_55 .owl-controls {
	display: block;
}

#rotatorstacks_in_55 .owl-controls .owl-page span {
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #555555;
	cursor: pointer;
}

/*  */
#rotatorstacks_in_55 .owl-controls {
	position: absolute;
	bottom: 5%;
	left: 0;
	width: 100%;
}
/*  */

/*  */

/* @group RefinedSlider Edit Mode */

/*  */

/* @end */

#stacks_in_121 {
	margin: 0px 0px 40px 0px;
}
/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_83 #myExtraContent3,
#ExtraContentPlusstacks_in_83 #fs {
	display: none;
}


#stacks_in_85 {
	margin: 40px 0px 20px 0px;
}

#stacks_in_87 {
	margin: 0px 0px 30px 0px;
}

#stacks_in_88 {
	font-size: 125%;
}
#usefulStackWrapperstacks_in_133 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 850px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_133 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_133 {
		display: none;
	}
}














/* ---- isotope ---- */
.grid_stacks_in_102 {
  margin: 0 auto; /* centered */
}

/* clear fix */
.grid_stacks_in_102:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .shuffler-element-item ---- */

.grid_stacks_in_102 > .youtube-gallery-grid-video-container {
    position: relative;
    float: left;
    width: 200px;
    margin-bottom: 0px;
    border: 0pxpx solid #929292;
  /*margin: 5px;*/
  padding: 1px; /* Prevents leftmost icons from being cut off at the left side. */
  /*background: #888;*/
  /*color: #262524;*/
}

.youtube-gallery-grid-video-container > * {
    margin: 0;
    padding: 0;
}


/* Each video's play image */
.youtube-gallery-grid-video-container img {
  width:100%;
  height:auto;
}
a.youtube-gallery-stacks_in_102 {
  float: left;
  position: relative;
}
a.youtube-gallery-stacks_in_102 span {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../files/images/play-btn.png") no-repeat;
  background-position: 50% 50%;
  background-size: 300%;
}
@media screen and (max-width: 480px) {
  a.youtube-gallery-stacks_in_102 span {
    background-size: 400%;
  }
}

#stacks_in_102 {
	margin: 0px 0px 40px 0px;
}

#stacks_in_158 {
	margin: 40px 0px 20px 0px;
}

#stacks_in_174 {
	margin: 0px 0px 10px 0px;
}

#stacks_in_156 {
	margin: 0px 0px 20px 0px;
}

#stacks_in_168 {
	margin: 40px 0px 20px 0px;
}

#stacks_in_172 {
	margin: 0px 0px 10px 0px;
}
/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_4 #myExtraContent5,
#ExtraContentPlusstacks_in_4 #fs {
	display: none;
}


#stacks_in_19 {
	margin: 10px 0px 10px 0px;
}

#stacks_in_20 {
	margin: 5px 0px 5px 0px;
}
#stacks_in_6 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_6 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_6 #jwresp_col2_stacks_in_6{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_6 #jwresp_col1_stacks_in_6,#stacks_in_6 #jwresp_col2_stacks_in_6{width:100%;float:none;display:block}#stacks_in_6 #jwresp_col1_stacks_in_6{margin-bottom:15px}}

#stacks_in_6 {
	padding: 0px 0px 10px 0px;
}
/* Start Contact Form stack CSS code */.stacks_in_9formwrap{	margin: 0;}#stacks_in_9comment{display: none;height: 0px;padding: 0px;margin: 0px;}.stacks_in_9mail{padding: 0;}.stacks_in_9fieldset{	border: none;	outline: none;	float : none !important;	text-align: left !important;}.stacks_in_9formail{}.stacks_in_9fieldset{	padding: 0 20px 0 3px;}#stacks_in_9 label{display: block;margin: 10px 0 0 0;padding: 0 0 5px 0;line-height: 1.1em;}#stacks_in_9 label *{display: inline;}#stacks_in_9 .stacks_in_9input{padding: 3px 7px 3px 7px;width: 90%;font-size: 12px;background: #FFFFFF !important;color: #555555 !important;margin: 0;border: 1px solid #D8D8D8 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px !important;}#stacks_in_9 textarea{padding: 7px;width: 100%;font-size: 13px;border: 1px solid #D8D8D8 !important;background: #FFFFFF !important;color: #555555 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}.stacks_in_9sendmail{margin-top: 20px !important;padding: 4px 7px 4px 7px !important;display: block;text-align: center !important;font-size: 12px;color: #444444 !important;border: 1px solid #D8D8D8 !important;background-color: #FFFFFF !important;-moz-border-radius: 3px !important;-webkit-border-radius: 3px !important;border-radius: 3px;cursor: pointer;}#sendmail:hover{cursor: pointer;}.stacks_in_9response{display: none;width: 80%;border: 1px solid #D6392B;background: #FEF4FA;padding: 10px;margin: 20px auto 0 0;color: #444444;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;min-height: 35px;}.stacks_in_9loader{float: left;width: 35px;height: 35px;padding: 0 15px 30px 0;}.stacks_in_9autoreplay{visibility: hidden;height: 0px;display: none;}#stacks_in_9 textarea{	color: #555555 !important;}/* End Contact Form stack CSS code */#usefulStackWrapperstacks_in_119 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 200px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_119 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_119 {
		display: none;
	}
}












#portholeStackstacks_in_115 {	
	width: 100%;
	padding-bottom: 100%;
	display: block;
	position: relative;
	z-index: 0;
}

#portholeStackstacks_in_115 *,
#portholeStackstacks_in_115 *:before,
#portholeStackstacks_in_115 *:after {	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#portholeFillstacks_in_115 {
	width: 100%;
	height: 100%;
	border-radius: 500px;
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0.99;
	border: 0px solid #FF0000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	box-shadow: inset 0 0 0 0 rgba(0,0,0, 0.4), inset 0 0 0 10px rgba(255,255,255,0.70), 0 1px 2px rgba(0,0,0,0.1);
}

#portholeStackstacks_in_115:hover #portholeFillstacks_in_115 {
	opacity: 0.99;
	border: 0px solid #0000FF;
	box-shadow: inset 0 0 0 0 rgba(0,0,0, 0.4), inset 0 0 0 10px rgba(255,255,255,0.30), 0 1px 2px rgba(0,0,0,0.1);
}

#portholeContentAbsolutestacks_in_115 {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	z-index: 3;
	width: 100%;
	display: block;
}

#portholeContentstacks_in_115 {
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	width: 75%;
	margin: 0 auto;
	display: block;
	text-align: center;
	color: #ffffff;
}

#portholeContentLargestacks_in_115 {
	font-family: 'Droid Sans', sans-serif;
	line-height: 1.25em;
	font-weight: 400;
	color: #FFFFFF;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 4;
	position: relative;
	opacity: 0.99;
	text-transform: none;
}

#portholeStackstacks_in_115:hover #portholeContentLargestacks_in_115 {
	color: #FFFFFF;
	opacity: 0.99;
}

/*  */
#portholeContentLargestacks_in_115 {
	font-size: 250%;
}

#portholeStackstacks_in_115:hover #portholeContentLargestacks_in_115 {
	font-size: 250%;
}
/*  */

/*  */

/*  */

#portholeContentSmallstacks_in_115 {
	font-family: 'Droid Sans', sans-serif;
	line-height: 1.25em;
	font-weight: 400;
	color: #FFFFFF;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 4;
	position: relative;
	opacity: 0.99;
	text-transform: none;
}

#portholeStackstacks_in_115:hover #portholeContentSmallstacks_in_115 {
	color: #FFFFFF;
	opacity: 0.99;
}

/*  */
#portholeContentSmallstacks_in_115 {
	font-size: 150%;
}

#portholeStackstacks_in_115:hover #portholeContentSmallstacks_in_115 {
	font-size: 150%;
}
/*  */

/*  */

/*  */

/* Icons */

#portholeContentLargestacks_in_115 [class^="fa fa-"] {
	color: #FFFFFF;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

#portholeStackstacks_in_115:hover #portholeContentLargestacks_in_115 [class^="fa fa-"] {
	color: #FFFFFF;
}

#portholeContentSmallstacks_in_115 [class^="fa fa-"] {
	color: #FFFFFF;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

#portholeStackstacks_in_115:hover #portholeContentSmallstacks_in_115 [class^="fa fa-"] {
	color: #FFFFFF;
}

#portholeLinkstacks_in_115 a {
	display: block;
	border: none;
	text-decoration: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	background: transparent;
}
















/* Local image image applied as a CSS background */
#portholeFillstacks_in_115 {
	background: url(../files/container_local_image-115.jpg);
	background-size: 100% 100%;
	background-attachment: scroll;
}







@media print {
	#portholeFillstacks_in_115 {
		display: none;
	}
	
	#portholeStackstacks_in_115 {	
		padding-bottom: 0;
	}
	
	#portholeContentstacks_in_115 {
		width: 100%;
	}
	
	#portholeLinkstacks_in_115 a,
	#portholeContentAbsolutestacks_in_115 {
		position: relative;
		top: auto;
		left: auto;
	}
	
	#portholeContentSmallstacks_in_115,
	#portholeContentLargestacks_in_115 {
		font-size: 14pt;
		line-height: 1.50em;
		opacity: 1.00;
		color: #000000;
		text-align: left;
	}
}/* Start Obscure Email stack CSS code */.stacks_in_165topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_165mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_165small{font-weight: normal;font-size: 12px;}.stacks_in_165centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_165centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code */
#stacks_in_129 {
	margin:  7px;
	padding:  8px;
}

#stacks_in_130 {
	font-size: 125%;
}
