/* 
WHW edits
- Remove retina @media block at the bottom
- Remove '.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(icons/loading.gif) no-repeat 50% 50%; }'
- Remove 'background-image: url(icons/next.png);'
- Remove 'background-image: url(icons/prev.png);'
- Remove 'background: url(icons/close.png) no-repeat 5px 5px;'
- Remove default theme
*/


/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99998;
	width: 100%;
	height: 100%;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-wrap  {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
}
.nivo-lightbox-content {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	text-align: center;
}
.nivo-lightbox-nav { display: none; }
.nivo-lightbox-prev {
	position: absolute;
	top: 50%;
	left: 0;
}
.nivo-lightbox-next {
	position: absolute;
	top: 50%;
	right: 0;
}
.nivo-lightbox-close {
	position: absolute;
	top: 2%;
	right: 2%;
}

.nivo-lightbox-image { text-align: center; }
.nivo-lightbox-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}
.nivo-lightbox-content iframe {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
	max-height: 100%;
	overflow: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}
.nivo-lightbox-error {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
	display: table-cell;
	vertical-align: middle;
}

/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	    -ms-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	-webkit-transform: scale(0.7);
	   -moz-transform: scale(0.7);
	    -ms-transform: scale(0.7);
	        transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	   -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	    -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	     -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
	-webkit-transform: translateX(-10%);
	   -moz-transform: translateX(-10%);
	    -ms-transform: translateX(-10%);
	        transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
	-webkit-transform: translateX(10%);
	   -moz-transform: translateX(10%);
	    -ms-transform: translateX(10%);
	        transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transform: translateY(-10%);
	   -moz-transform: translateY(-10%);
	    -ms-transform: translateY(-10%);
	        transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
	-webkit-transform: translateY(10%);
	   -moz-transform: translateY(10%);
	    -ms-transform: translateY(10%);
	        transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}






.rwml-menu-imported {
	display: none;
}

#stacks_in_389 {
	display: none !important;
}


/* Start by hiding all translatable items. This class is applied via jQuery in the scripts-global.js file */
.rwml-translatable {
	display: none;
}


/* If the content with a selector of '.rwml-translatable' is equal to the body class and language attribute, display it */
body.de .rwml-translatable:lang(de) {
	display: inherit;
}



/* If the content with a selector of '.rwml-translatable' is equal to the body class and language attribute, display it */
body.en .rwml-translatable:lang(en) {
	display: inherit;
}















#stacks_in_813_1 {
	display: none;
}

#rwml-menu, .rwml-menu {
	display: none !important;
}

#backtop1 {
position: fixed;  z-index: 9999999; outline: none; overflow: hidden;
text-align: center; cursor: pointer; transition: all 600ms linear; 
display: none; 
left: auto; right: 2%; top: auto; bottom: 2%;
 
color: rgba(251, 174, 74, 1.00);
background-color: rgba(230, 230, 230, 1.00);
height: 40px;
width: 40px;
line-height: 40px;
font-size: 20px;
border-radius: 60px;
 
/*customcss;*/
}

#backtop1:hover {
background-color: rgba(242, 242, 242, 1.00);
color: rgba(253, 134, 40, 1.00);

/*customcss;*/
}

#backtop1.mcOut {
opacity: 0;
}

@media screen and (max-width: 480px) {
#backtop1 {
 
height: 60px;
width: 60px;
line-height: 60px;
font-size: 20px;
 
/*customcss;*/
}}/* biorhyme-200 - latin */
@font-face {
  font-family: 'BioRhyme';
  font-style: normal;
  font-weight: 200;
  src: url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.eot'); /* IE9 Compat Modes */
  src: local('BioRhyme ExtraLight'), local('BioRhyme-ExtraLight'),
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.woff') format('woff'), /* Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.svg#BioRhyme') format('svg'); /* Legacy iOS */
}
/* biorhyme-300 - latin */
@font-face {
  font-family: 'BioRhyme';
  font-style: normal;
  font-weight: 300;
  src: url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.eot'); /* IE9 Compat Modes */
  src: local('BioRhyme Light'), local('BioRhyme-Light'),
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.woff') format('woff'), /* Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.svg#BioRhyme') format('svg'); /* Legacy iOS */
}
/* biorhyme-regular - latin */
@font-face {
  font-family: 'BioRhyme';
  font-style: normal;
  font-weight: 400;
  src: url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('BioRhyme'), local('BioRhyme-Regular'),
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-regular.svg#BioRhyme') format('svg'); /* Legacy iOS */
}
/* biorhyme-700 - latin */
@font-face {
  font-family: 'BioRhyme';
  font-style: normal;
  font-weight: 700;
  src: url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.eot'); /* IE9 Compat Modes */
  src: local('BioRhyme Bold'), local('BioRhyme-Bold'),
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.woff') format('woff'), /* Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.svg#BioRhyme') format('svg'); /* Legacy iOS */
}
/* biorhyme-800 - latin */
@font-face {
  font-family: 'BioRhyme';
  font-style: normal;
  font-weight: 800;
  src: url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.eot'); /* IE9 Compat Modes */
  src: local('BioRhyme ExtraBold'), local('BioRhyme-ExtraBold'),
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.woff') format('woff'), /* Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.svg#BioRhyme') format('svg'); /* Legacy iOS */
}
/* biorhyme-200 - latin */
@font-face {
  font-family: 'BioRhyme ExtraLight';
  font-style: normal;
  font-weight: 200;
  src: url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.eot'); /* IE9 Compat Modes */
  src: local('BioRhyme ExtraLight'), local('BioRhyme-ExtraLight'),
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.woff') format('woff'), /* Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-200.svg#BioRhyme') format('svg'); /* Legacy iOS */
}
/* biorhyme-300 - latin */
@font-face {
  font-family: 'BioRhyme Light';
  font-style: normal;
  font-weight: 300;
  src: url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.eot'); /* IE9 Compat Modes */
  src: local('BioRhyme Light'), local('BioRhyme-Light'),
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.woff') format('woff'), /* Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-300.svg#BioRhyme') format('svg'); /* Legacy iOS */
}
/* biorhyme-700 - latin */
@font-face {
  font-family: 'BioRhyme Bold';
  font-style: normal;
  font-weight: 700;
  src: url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.eot'); /* IE9 Compat Modes */
  src: local('BioRhyme Bold'), local('BioRhyme-Bold'),
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.woff') format('woff'), /* Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-700.svg#BioRhyme') format('svg'); /* Legacy iOS */
}
/* biorhyme-800 - latin */
@font-face {
  font-family: 'BioRhyme ExtraBold';
  font-style: normal;
  font-weight: 800;
  src: url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.eot'); /* IE9 Compat Modes */
  src: local('BioRhyme ExtraBold'), local('BioRhyme-ExtraBold'),
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.woff') format('woff'), /* Modern Browsers */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../../../rw_common/plugins/stacks/webfont-helper-biorhyme/biorhyme-v3-latin-800.svg#BioRhyme') format('svg'); /* Legacy iOS */
}

.webfont-helper-all






{
  font-family: 'BioRhyme', Arial;
  
}

#stacks_in_952 .webfont-helper-wrap, #stacks_in_952 .webfont-helper-wrap > .out {
  display: none;
}

/*
*/
#stacks_in_954 {
  user-select: none;
}
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_954 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_954 svg {
  color: rgba(85, 85, 85, 1.00);
  fill: rgba(85, 85, 85, 1.00);
  stroke: rgba(85, 85, 85, 1.00);
}
#stacks_in_954 i,
#stacks_in_954 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_954 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_954 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_954 .material-icons-two-tone {
  color: rgba(85, 85, 85, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(85, 85, 85, 1.00),
              0px -.1px 0px rgba(85, 85, 85, 1.00),
              .1px 0px 0px rgba(85, 85, 85, 1.00),
              -.1px 0px 0px rgba(85, 85, 85, 1.00);
}
#stacks_in_954 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
/*  */
#events-stacks_in_911 {
  margin: 0 auto;
  max-width: 600px; }
  #events-stacks_in_911 ul.events-grid {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    #events-stacks_in_911 ul.events-grid li.events-grid-item {
      padding: 10px 10px;
      padding-top: 0;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto; }
      #events-stacks_in_911 ul.events-grid li.events-grid-item:first-child {
        padding-top: 10px; }
  #events-stacks_in_911 .event {
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.20); }
    #events-stacks_in_911 .event-header {
      /*  */
      /*  */
      background: rgba(36, 36, 36, 1.00);
      /*  */
      /*  */
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      box-sizing: border-box; }
      #events-stacks_in_911 .event-header .header-title {
        /*  */
        font-family: "BioRhyme";
        /*  */
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
            -ms-flex: 0 1 auto;
                flex: 0 1 auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        box-sizing: border-box; }
        #events-stacks_in_911 .event-header .header-title h3, #events-stacks_in_911 .event-header .header-title .header-description, #events-stacks_in_911 .event-header .header-title .header-title-info {
          margin: 0;
          padding: 5px; }
        #events-stacks_in_911 .event-header .header-title h3 {
          color: rgba(255, 255, 255, 1.00);
          font-size: 18px;
          line-height: 25.199999px;
          font-weight: bold; }
        #events-stacks_in_911 .event-header .header-title .header-description {
          color: rgba(255, 255, 255, 0.50) !important;
          font-size: 14px;
          line-height: 19.600000px; }
        #events-stacks_in_911 .event-header .header-title .header-title-info {
          font-size: 13px;
          line-height: %( %id=event_info_size[0] * 1.4 )%%px; }
          #events-stacks_in_911 .event-header .header-title .header-title-info span {
            color: rgba(90, 154, 244, 1.00);
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex; }
            #events-stacks_in_911 .event-header .header-title .header-title-info span:first-child {
              margin-right: 10px; }
          #events-stacks_in_911 .event-header .header-title .header-title-info i {
            font-size: inherit;
            margin-right: 5px; }
      #events-stacks_in_911 .event-header .header-date {
        /*  */
        /*  */
        background: rgba(58, 58, 58, 1.00);
        /*  */
        /*  */
        /*  */
        font-family: "BioRhyme";
        /*  */
        padding: 10px 10px;
        min-width: 120px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
            -ms-flex: 0 1 auto;
                flex: 0 1 auto;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        box-sizing: border-box;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        #events-stacks_in_911 .event-header .header-date .date-top {
          text-align: center;
          color: rgba(255, 255, 255, 1.00);
          font-size: 40px; }
        #events-stacks_in_911 .event-header .header-date .date-bottom {
          text-align: center;
          color: rgba(90, 154, 244, 1.00);
          font-size: 14px; }
      #events-stacks_in_911 .event-header .header-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 10px;
        -webkit-box-flex: 0;
            -ms-flex: 0 1 auto;
                flex: 0 1 auto;
        margin-left: auto;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        box-sizing: border-box;
        color: rgba(255, 255, 255, 1.00); }
        #events-stacks_in_911 .event-header .header-toggle .toggle-inner {
          /*  */
          font-family: "BioRhyme";
          /*  */
          width: 40px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          cursor: pointer;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          box-sizing: border-box;
          vertical-align: middle;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; }
    #events-stacks_in_911 .event-details {
      /*  */
      height: 0;
      /*  */
      /*  */
      font-family: "BioRhyme";
      /*  */
      /*  */
      /*  */
      background: rgba(40, 40, 40, 1.00);
      /*  */
      /*  */
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      overflow: hidden; }
      #events-stacks_in_911 .event-details .details-inner {
        padding: 15px 15px; }
        #events-stacks_in_911 .event-details .details-inner h1, #events-stacks_in_911 .event-details .details-inner h2, #events-stacks_in_911 .event-details .details-inner h3, #events-stacks_in_911 .event-details .details-inner h4, #events-stacks_in_911 .event-details .details-inner h5, #events-stacks_in_911 .event-details .details-inner h6 {
          color: rgba(255, 255, 255, 1.00); }
        #events-stacks_in_911 .event-details .details-inner p, #events-stacks_in_911 .event-details .details-inner ul, #events-stacks_in_911 .event-details .details-inner li, #events-stacks_in_911 .event-details .details-inner span, #events-stacks_in_911 .event-details .details-inner blockquote {
          line-height: 22.400000px;
          font-size: 16px;
          color: rgba(255, 255, 255, 0.40); }
        #events-stacks_in_911 .event-details .details-inner a, #events-stacks_in_911 .event-details .details-inner a:link, #events-stacks_in_911 .event-details .details-inner a:visited {
          line-height: 22.400000px;
          font-size: 16px;
          color: rgba(90, 154, 244, 1.00); }

#events-stacks_in_911 .event.event-opened .event-details {
  height: auto; }

#events-stacks_in_911 .event.event-opened .event-header .header-toggle .toggle-inner i::before {
  content: '\f126'; }

#events-stacks_in_911 .event.event-opened .event-details {
  height: auto; }

#events-stacks_in_911 .event.event-opened .event-header .header-toggle .toggle-inner i::before {
  content: '\f126'; }

#events-stacks_in_911.hide-date-top .date-top {
  display: none; }

#events-stacks_in_911.hide-date-bottom .date-bottom {
  display: none; }

#events-stacks_in_911.hide-description .header-title .header-description {
  display: none; }

#events-stacks_in_911.hide-location .header-title .header-title-info span:first-child {
  display: none; }

#events-stacks_in_911.hide-time .header-title .header-title-info span:nth-child(2) {
  display: none; }

@media (max-width: 500px) {
  #events-stacks_in_911 .event-header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    #events-stacks_in_911 .event-header .header-title {
      width: 100%; }
      #events-stacks_in_911 .event-header .header-title .header-title-info span {
        margin-bottom: 5px; }
    #events-stacks_in_911 .event-header .header-date {
      width: 100%; }
    #events-stacks_in_911 .event-header .header-toggle {
      width: 100%; }
      #events-stacks_in_911 .event-header .header-toggle .toggle-inner {
        width: 100%;
        min-height: 40px; }
        #events-stacks_in_911 .event-header .header-toggle .toggle-inner::after {
          display: inline;
          font-size: 14px;
          margin-left: 10px;
          content: 'View Details'; } }

@media (min-width: 400px) and (max-width: 780px) {
  /*  */
  #events-stacks_in_911 .event-header .header-title h3 {
    font-size: 16px;
    line-height: 22.400000px; }
  #events-stacks_in_911 .event-header .header-title .header-description {
    font-size: 13px;
    line-height: 18.199999px; }
  #events-stacks_in_911 .event-header .header-title .header-title-info {
    font-size: 13px;
    line-height: %( %id=event_info_size[1] * 1.4 )%%px; }
  #events-stacks_in_911 .event-header .header-date .date-top {
    font-size: 40px; }
  #events-stacks_in_911 .event-header .header-date .date-bottom {
    font-size: 14px; }
  #events-stacks_in_911 .event-details .details-inner {
    font-size: 16px;
    line-height: 22.400000px; }
  /*  */ }

@media (max-width: 400px) {
  /*  */
  #events-stacks_in_911 .event-header .header-title h3 {
    font-size: 16px;
    line-height: 22.400000px; }
  #events-stacks_in_911 .event-header .header-title .header-description {
    font-size: 13px;
    line-height: 18.199999px; }
  #events-stacks_in_911 .event-header .header-title .header-title-info {
    font-size: 13px;
    line-height: %( %id=event_info_size[2] * 1.4 )%%px; }
  #events-stacks_in_911 .event-header .header-date .date-top {
    font-size: 40px; }
  #events-stacks_in_911 .event-header .header-date .date-bottom {
    font-size: 14px; }
  #events-stacks_in_911 .event-details .details-inner {
    font-size: 16px;
    line-height: 22.400000px; }
  /*  */ }



#stacks_in_456 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_458 {
	margin: -18px 0px 0px 10px;
}



#stacks_in_452 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_4 {
	margin: -18px 0px 0px 10px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay { 
	
	background: rgba(0, 0, 0, .85); 
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: #FFFFFF;
background: -moz-radial-gradient(center, ellipse cover,  #FFFFFF 0%, #EAEAEA 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#FFFFFF), color-stop(100%,#EAEAEA));
background: -webkit-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: -o-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: -ms-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: radial-gradient(ellipse at center, #FFFFFF 0%,#EAEAEA 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#EAEAEA',GradientType=1 );
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; }
.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	color: #FFFFFF;
	background: #000000;
}

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: #FFFFFF;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: #FFFFFF;
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: #FFFFFF;
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_854 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}



#topBoxTriggerRegionstacks_in_854 #topBoxTriggerstacks_in_854 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}

#topBoxTriggerRegionstacks_in_854 #topBoxTriggerContentstacks_in_854 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_854 #topBoxTriggerContentstacks_in_854 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_854 {
	color: #424242;
}

#topBoxContentWrapperstacks_in_854 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_854 h1,
#topBoxContentWrapperstacks_in_854 h2,
#topBoxContentWrapperstacks_in_854 h3,
#topBoxContentWrapperstacks_in_854 h4,
#topBoxContentWrapperstacks_in_854 h5,
#topBoxContentWrapperstacks_in_854 h6 {
	color: #000000;
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_854 a {
	color: #0050DD;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_854 a:visited {
	color: #0050DD;
}

#topBoxContentWrapperstacks_in_854 a:hover,
#topBoxContentWrapperstacks_in_854 a:focus,
#topBoxContentWrapperstacks_in_854 a:active {
	color: #FF0000;
}

#topBoxContentWrapperstacks_in_854 .topBoxAudio,
#topBoxContentWrapperstacks_in_854 .topBoxVideo {
	width: 100%;
	display: block;
}

#topBoxContentWrapperstacks_in_854 .trackName,
#topBoxContentWrapperstacks_in_854 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_854 {
	display: none;
}



#stacks_in_854 {
	padding:  12px;
}

#stacks_out_854 {
	width: 80%;
}




#stacks_in_868 .split_wrap1 h1, #stacks_in_868 .split_wrap1 h2, #stacks_in_868 .split_wrap1 h3, #stacks_in_868 .split_wrap1 h4, #stacks_in_868 .split_wrap1 h5, #stacks_in_868 .split_wrap1 h6, .split_wrap1 h1, .split_wrap1 h2, .split_wrap1 h3, .split_wrap1 h4, .split_wrap1 h5, .split_wrap1 h6 { 
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
  	
margin-bottom: 0px !important; margin-top: 2px !important; 
margin-right: 0px !important; margin-left: 0px !important; 

	line-height:  115%;
	 
}

 

#stacks_in_868 .split_wrap1, .split_wrap1 {  
	display: table; width: 100%; line-height:115%; 
	/*customcss*/ 
}

#stacks_in_868 .split_left1, .split_left1 { 
	display: table-cell; 
	min-width: 100px;
	width: 90.00%; 
	padding-right: 5%;
	vertical-align: middle;
 
 

	
}

#stacks_in_868 .split_right1, .split_right1 {	
	display: table-cell; 
	min-width: 100px;
	width: auto; 
	text-align: left;
	vertical-align: top;
 text-align: right;  
 

	
}

#stacks_in_868 .split_left1 h1, #stacks_in_868 .split_left1 h2, #stacks_in_868 .split_left1 h3, #stacks_in_868 .split_left1 h4, #stacks_in_868 .split_left1 h5, #stacks_in_868 .split_left1 h6, .split_left1 h1, .split_left1 h2, .split_left1 h3, .split_left1 h4, .split_left1 h5, .split_left1 h6 { 
 padding: 5px 5px; 
 } 

#stacks_in_868 .split_right1 h1, #stacks_in_868 .split_right1 h2, #stacks_in_868 .split_right1 h3, #stacks_in_868 .split_right1 h4, #stacks_in_868 .split_right1 h5, #stacks_in_868 .split_right1 h6, .split_right1 h1 .split_right1 h2, .split_right1 h3, .split_right1 h4, .split_right1 h5, .split_right1 h6 { 
 padding: 5px 5px;
 }

#stacks_in_868 .clear1, .clear1 { 
	display: block;
	clear: none;
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
}

#stacks_in_868 .split_wrap1 .text_stack, .split_wrap1 .text_stack {
	text-align: left;
	margin-top: 0px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

#stacks_in_868 .split_wrap1 img, .split_wrap1 img { 
  transition: all 1s ease-in-out; 
  
  


   
}

#stacks_in_868 .split_wrap1:hover img, .split_wrap1:hover img {
  

  
}

#stacks_in_868 .split_dropzone1, .split_dropzone1 { 
	margin-top: 15px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

@media screen and (max-width: 480px) {

#stacks_in_868 .split_wrap1 h1, #stacks_in_868 .split_wrap1 h2, #stacks_in_868 .split_wrap1 h3, #stacks_in_868 .split_wrap1 h4, #stacks_in_868 .split_wrap1 h5, #stacks_in_868 .split_wrap1 h6, .split_wrap1 h1, .split_wrap1 h2, .split_wrap1 h3, .split_wrap1 h4, .split_wrap1 h5, .split_wrap1 h6 { 
	
	 	
}

	#stacks_in_868 .split_left1, .split_left1 {
	 width: 100% !important; min-width: 0px !important; display: block; padding-right: 0px;  
	 
	 
	 
	 text-align: left;  
	
	}
	#stacks_in_868 .split_right1, .split_right1 { 
	 width: 100% !important; min-widht: 0px !important; display: block;  
	 text-align: right;  
	 
	 
	 
	
	}
	
#stacks_in_868 .split_left1 h1, #stacks_in_868 .split_left1 h2, #stacks_in_868 .split_left1 h3, #stacks_in_868 .split_left1 h4, #stacks_in_868 .split_left1 h5, #stacks_in_868 .split_left1 h6, .split_left1 h1, .split_left1 h2, .split_left1 h3, .split_left1 h4, .split_left1 h5, .split_left1 h6 {}

#stacks_in_868 .split_right1 h1, #stacks_in_868 .split_right1 h2, #stacks_in_868 .split_right1 h3, #stacks_in_868 .split_right1 h4, #stacks_in_868 .split_right1 h5, #stacks_in_868 .split_right1 h6, .split_right1 h1 .split_right1 h2, .split_right1 h3, .split_right1 h4, .split_right1 h5, .split_right1 h6 {
}
}

@media screen and (max-width: 480px) {
	#stacks_in_868 .split_wrap1 img, .split_wrap1 img { float: none;

}
}


.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_865 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_865 {
		display: none !important;
	}
}




#stacks_in_875 .split_wrap2 h1, #stacks_in_875 .split_wrap2 h2, #stacks_in_875 .split_wrap2 h3, #stacks_in_875 .split_wrap2 h4, #stacks_in_875 .split_wrap2 h5, #stacks_in_875 .split_wrap2 h6, .split_wrap2 h1, .split_wrap2 h2, .split_wrap2 h3, .split_wrap2 h4, .split_wrap2 h5, .split_wrap2 h6 { 
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
  	
margin-bottom: 0px !important; margin-top: 2px !important; 
margin-right: 0px !important; margin-left: 0px !important; 

	line-height:  115%;
	 
}

 

#stacks_in_875 .split_wrap2, .split_wrap2 {  
	display: table; width: 100%; line-height:115%; 
	/*customcss*/ 
}

#stacks_in_875 .split_left2, .split_left2 { 
	display: table-cell; 
	min-width: 100px;
	width: 10.00%; 
	padding-right: 5%;
	vertical-align: middle;
 
 

	
}

#stacks_in_875 .split_right2, .split_right2 {	
	display: table-cell; 
	min-width: 100px;
	width: auto; 
	text-align: left;
	vertical-align: middle;
 text-align: right;  
 

	
}

#stacks_in_875 .split_left2 h1, #stacks_in_875 .split_left2 h2, #stacks_in_875 .split_left2 h3, #stacks_in_875 .split_left2 h4, #stacks_in_875 .split_left2 h5, #stacks_in_875 .split_left2 h6, .split_left2 h1, .split_left2 h2, .split_left2 h3, .split_left2 h4, .split_left2 h5, .split_left2 h6 { 
 padding: 5px 5px; 
 } 

#stacks_in_875 .split_right2 h1, #stacks_in_875 .split_right2 h2, #stacks_in_875 .split_right2 h3, #stacks_in_875 .split_right2 h4, #stacks_in_875 .split_right2 h5, #stacks_in_875 .split_right2 h6, .split_right2 h1 .split_right2 h2, .split_right2 h3, .split_right2 h4, .split_right2 h5, .split_right2 h6 { 
 padding: 5px 5px;
 }

#stacks_in_875 .clear2, .clear2 { 
	display: block;
	clear: none;
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
}

#stacks_in_875 .split_wrap2 .text_stack, .split_wrap2 .text_stack {
	text-align: left;
	margin-top: 0px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

#stacks_in_875 .split_wrap2 img, .split_wrap2 img { 
  transition: all 1s ease-in-out; 
  
  


   
}

#stacks_in_875 .split_wrap2:hover img, .split_wrap2:hover img {
  

  
}

#stacks_in_875 .split_dropzone2, .split_dropzone2 { 
	margin-top: 15px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

@media screen and (max-width: 480px) {

#stacks_in_875 .split_wrap2 h1, #stacks_in_875 .split_wrap2 h2, #stacks_in_875 .split_wrap2 h3, #stacks_in_875 .split_wrap2 h4, #stacks_in_875 .split_wrap2 h5, #stacks_in_875 .split_wrap2 h6, .split_wrap2 h1, .split_wrap2 h2, .split_wrap2 h3, .split_wrap2 h4, .split_wrap2 h5, .split_wrap2 h6 { 
	
	 	
}

	#stacks_in_875 .split_left2, .split_left2 {
	 width: 100% !important; min-width: 0px !important; display: block; padding-right: 0px;  
	 
	 
	 
	 text-align: left;  
	
	}
	#stacks_in_875 .split_right2, .split_right2 { 
	 width: 100% !important; min-widht: 0px !important; display: block;  
	 text-align: right;  
	 
	 
	 
	
	}
	
#stacks_in_875 .split_left2 h1, #stacks_in_875 .split_left2 h2, #stacks_in_875 .split_left2 h3, #stacks_in_875 .split_left2 h4, #stacks_in_875 .split_left2 h5, #stacks_in_875 .split_left2 h6, .split_left2 h1, .split_left2 h2, .split_left2 h3, .split_left2 h4, .split_left2 h5, .split_left2 h6 {}

#stacks_in_875 .split_right2 h1, #stacks_in_875 .split_right2 h2, #stacks_in_875 .split_right2 h3, #stacks_in_875 .split_right2 h4, #stacks_in_875 .split_right2 h5, #stacks_in_875 .split_right2 h6, .split_right2 h1 .split_right2 h2, .split_right2 h3, .split_right2 h4, .split_right2 h5, .split_right2 h6 {
}
}

@media screen and (max-width: 480px) {
	#stacks_in_875 .split_wrap2 img, .split_wrap2 img { float: none;

}
}


#stacks_in_864 {
	font-size: 182%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_866 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_866 {
		display: none !important;
	}
}
#stacks_in_867 .onthelineouterspace
{
display:block;
padding: 12px 0px 12px 0px;
}
#stacks_in_867 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:1px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 2px #DDDDDC;
-moz-box-shadow: 0px 0px 2px #DDDDDC;
box-shadow: 0px 0px 2px #DDDDDC;
opacity:1;

/*CustomCSS;*/
}


.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_874 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_874 {
		display: none !important;
	}
}
#stacks_in_883 .onthelineouterspace
{
display:block;
padding: 12px 0px 12px 0px;
}
#stacks_in_883 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:1px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 2px #DDDDDC;
-moz-box-shadow: 0px 0px 2px #DDDDDC;
box-shadow: 0px 0px 2px #DDDDDC;
opacity:1;

/*CustomCSS;*/
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay { 
	
	background: rgba(0, 0, 0, .85); 
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	-webkit-box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
	-moz-box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: #FFFFFF;
background: -moz-radial-gradient(center, ellipse cover,  #FFFFFF 0%, #EAEAEA 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#FFFFFF), color-stop(100%,#EAEAEA));
background: -webkit-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: -o-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: -ms-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: radial-gradient(ellipse at center, #FFFFFF 0%,#EAEAEA 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#EAEAEA',GradientType=1 );
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; }
.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	color: #FFFFFF;
	background: #000000;
}

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: #FFFFFF;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: #FFFFFF;
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: #FFFFFF;
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_884 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}



#topBoxTriggerRegionstacks_in_884 #topBoxTriggerstacks_in_884 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}

#topBoxTriggerRegionstacks_in_884 #topBoxTriggerContentstacks_in_884 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_884 #topBoxTriggerContentstacks_in_884 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_884 {
	color: #424242;
}

#topBoxContentWrapperstacks_in_884 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_884 h1,
#topBoxContentWrapperstacks_in_884 h2,
#topBoxContentWrapperstacks_in_884 h3,
#topBoxContentWrapperstacks_in_884 h4,
#topBoxContentWrapperstacks_in_884 h5,
#topBoxContentWrapperstacks_in_884 h6 {
	color: #000000;
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_884 a {
	color: #0050DD;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_884 a:visited {
	color: #0050DD;
}

#topBoxContentWrapperstacks_in_884 a:hover,
#topBoxContentWrapperstacks_in_884 a:focus,
#topBoxContentWrapperstacks_in_884 a:active {
	color: #FF0000;
}

#topBoxContentWrapperstacks_in_884 .topBoxAudio,
#topBoxContentWrapperstacks_in_884 .topBoxVideo {
	width: 100%;
	display: block;
}

#topBoxContentWrapperstacks_in_884 .trackName,
#topBoxContentWrapperstacks_in_884 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_884 {
	display: none;
}



#stacks_out_884 {
	width: 80%;
}




#stacks_in_887 .split_wrap1 h1, #stacks_in_887 .split_wrap1 h2, #stacks_in_887 .split_wrap1 h3, #stacks_in_887 .split_wrap1 h4, #stacks_in_887 .split_wrap1 h5, #stacks_in_887 .split_wrap1 h6, .split_wrap1 h1, .split_wrap1 h2, .split_wrap1 h3, .split_wrap1 h4, .split_wrap1 h5, .split_wrap1 h6 { 
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
  	
margin-bottom: 0px !important; margin-top: 2px !important; 
margin-right: 0px !important; margin-left: 0px !important; 

	line-height:  115%;
	 
}

 

#stacks_in_887 .split_wrap1, .split_wrap1 {  
	display: table; width: 100%; line-height:115%; 
	/*customcss*/ 
}

#stacks_in_887 .split_left1, .split_left1 { 
	display: table-cell; 
	min-width: 100px;
	width: 90.00%; 
	padding-right: 5%;
	vertical-align: middle;
 
 

	
}

#stacks_in_887 .split_right1, .split_right1 {	
	display: table-cell; 
	min-width: 100px;
	width: auto; 
	text-align: left;
	vertical-align: top;
 text-align: right;  
 

	
}

#stacks_in_887 .split_left1 h1, #stacks_in_887 .split_left1 h2, #stacks_in_887 .split_left1 h3, #stacks_in_887 .split_left1 h4, #stacks_in_887 .split_left1 h5, #stacks_in_887 .split_left1 h6, .split_left1 h1, .split_left1 h2, .split_left1 h3, .split_left1 h4, .split_left1 h5, .split_left1 h6 { 
 padding: 5px 5px; 
 } 

#stacks_in_887 .split_right1 h1, #stacks_in_887 .split_right1 h2, #stacks_in_887 .split_right1 h3, #stacks_in_887 .split_right1 h4, #stacks_in_887 .split_right1 h5, #stacks_in_887 .split_right1 h6, .split_right1 h1 .split_right1 h2, .split_right1 h3, .split_right1 h4, .split_right1 h5, .split_right1 h6 { 
 padding: 5px 5px;
 }

#stacks_in_887 .clear1, .clear1 { 
	display: block;
	clear: none;
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
}

#stacks_in_887 .split_wrap1 .text_stack, .split_wrap1 .text_stack {
	text-align: left;
	margin-top: 0px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

#stacks_in_887 .split_wrap1 img, .split_wrap1 img { 
  transition: all 1s ease-in-out; 
  
  


   
}

#stacks_in_887 .split_wrap1:hover img, .split_wrap1:hover img {
  

  
}

#stacks_in_887 .split_dropzone1, .split_dropzone1 { 
	margin-top: 15px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

@media screen and (max-width: 480px) {

#stacks_in_887 .split_wrap1 h1, #stacks_in_887 .split_wrap1 h2, #stacks_in_887 .split_wrap1 h3, #stacks_in_887 .split_wrap1 h4, #stacks_in_887 .split_wrap1 h5, #stacks_in_887 .split_wrap1 h6, .split_wrap1 h1, .split_wrap1 h2, .split_wrap1 h3, .split_wrap1 h4, .split_wrap1 h5, .split_wrap1 h6 { 
	
	 	
}

	#stacks_in_887 .split_left1, .split_left1 {
	 width: 100% !important; min-width: 0px !important; display: block; padding-right: 0px;  
	 
	 
	 
	 text-align: left;  
	
	}
	#stacks_in_887 .split_right1, .split_right1 { 
	 width: 100% !important; min-widht: 0px !important; display: block;  
	 text-align: right;  
	 
	 
	 
	
	}
	
#stacks_in_887 .split_left1 h1, #stacks_in_887 .split_left1 h2, #stacks_in_887 .split_left1 h3, #stacks_in_887 .split_left1 h4, #stacks_in_887 .split_left1 h5, #stacks_in_887 .split_left1 h6, .split_left1 h1, .split_left1 h2, .split_left1 h3, .split_left1 h4, .split_left1 h5, .split_left1 h6 {}

#stacks_in_887 .split_right1 h1, #stacks_in_887 .split_right1 h2, #stacks_in_887 .split_right1 h3, #stacks_in_887 .split_right1 h4, #stacks_in_887 .split_right1 h5, #stacks_in_887 .split_right1 h6, .split_right1 h1 .split_right1 h2, .split_right1 h3, .split_right1 h4, .split_right1 h5, .split_right1 h6 {
}
}

@media screen and (max-width: 480px) {
	#stacks_in_887 .split_wrap1 img, .split_wrap1 img { float: none;

}
}


.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_896 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_896 {
		display: none !important;
	}
}




#stacks_in_897 .split_wrap2 h1, #stacks_in_897 .split_wrap2 h2, #stacks_in_897 .split_wrap2 h3, #stacks_in_897 .split_wrap2 h4, #stacks_in_897 .split_wrap2 h5, #stacks_in_897 .split_wrap2 h6, .split_wrap2 h1, .split_wrap2 h2, .split_wrap2 h3, .split_wrap2 h4, .split_wrap2 h5, .split_wrap2 h6 { 
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
  	
margin-bottom: 0px !important; margin-top: 2px !important; 
margin-right: 0px !important; margin-left: 0px !important; 

	line-height:  115%;
	 
}

 

#stacks_in_897 .split_wrap2, .split_wrap2 {  
	display: table; width: 100%; line-height:115%; 
	/*customcss*/ 
}

#stacks_in_897 .split_left2, .split_left2 { 
	display: table-cell; 
	min-width: 100px;
	width: 10.00%; 
	padding-right: 5%;
	vertical-align: middle;
 
 

	
}

#stacks_in_897 .split_right2, .split_right2 {	
	display: table-cell; 
	min-width: 100px;
	width: auto; 
	text-align: left;
	vertical-align: middle;
 text-align: right;  
 

	
}

#stacks_in_897 .split_left2 h1, #stacks_in_897 .split_left2 h2, #stacks_in_897 .split_left2 h3, #stacks_in_897 .split_left2 h4, #stacks_in_897 .split_left2 h5, #stacks_in_897 .split_left2 h6, .split_left2 h1, .split_left2 h2, .split_left2 h3, .split_left2 h4, .split_left2 h5, .split_left2 h6 { 
 padding: 5px 5px; 
 } 

#stacks_in_897 .split_right2 h1, #stacks_in_897 .split_right2 h2, #stacks_in_897 .split_right2 h3, #stacks_in_897 .split_right2 h4, #stacks_in_897 .split_right2 h5, #stacks_in_897 .split_right2 h6, .split_right2 h1 .split_right2 h2, .split_right2 h3, .split_right2 h4, .split_right2 h5, .split_right2 h6 { 
 padding: 5px 5px;
 }

#stacks_in_897 .clear2, .clear2 { 
	display: block;
	clear: none;
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
}

#stacks_in_897 .split_wrap2 .text_stack, .split_wrap2 .text_stack {
	text-align: left;
	margin-top: 0px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

#stacks_in_897 .split_wrap2 img, .split_wrap2 img { 
  transition: all 1s ease-in-out; 
  
  


   
}

#stacks_in_897 .split_wrap2:hover img, .split_wrap2:hover img {
  

  
}

#stacks_in_897 .split_dropzone2, .split_dropzone2 { 
	margin-top: 15px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

@media screen and (max-width: 480px) {

#stacks_in_897 .split_wrap2 h1, #stacks_in_897 .split_wrap2 h2, #stacks_in_897 .split_wrap2 h3, #stacks_in_897 .split_wrap2 h4, #stacks_in_897 .split_wrap2 h5, #stacks_in_897 .split_wrap2 h6, .split_wrap2 h1, .split_wrap2 h2, .split_wrap2 h3, .split_wrap2 h4, .split_wrap2 h5, .split_wrap2 h6 { 
	
	 	
}

	#stacks_in_897 .split_left2, .split_left2 {
	 width: 100% !important; min-width: 0px !important; display: block; padding-right: 0px;  
	 
	 
	 
	 text-align: left;  
	
	}
	#stacks_in_897 .split_right2, .split_right2 { 
	 width: 100% !important; min-widht: 0px !important; display: block;  
	 text-align: right;  
	 
	 
	 
	
	}
	
#stacks_in_897 .split_left2 h1, #stacks_in_897 .split_left2 h2, #stacks_in_897 .split_left2 h3, #stacks_in_897 .split_left2 h4, #stacks_in_897 .split_left2 h5, #stacks_in_897 .split_left2 h6, .split_left2 h1, .split_left2 h2, .split_left2 h3, .split_left2 h4, .split_left2 h5, .split_left2 h6 {}

#stacks_in_897 .split_right2 h1, #stacks_in_897 .split_right2 h2, #stacks_in_897 .split_right2 h3, #stacks_in_897 .split_right2 h4, #stacks_in_897 .split_right2 h5, #stacks_in_897 .split_right2 h6, .split_right2 h1 .split_right2 h2, .split_right2 h3, .split_right2 h4, .split_right2 h5, .split_right2 h6 {
}
}

@media screen and (max-width: 480px) {
	#stacks_in_897 .split_wrap2 img, .split_wrap2 img { float: none;

}
}


#stacks_in_902 {
	font-size: 182%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_905 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_905 {
		display: none !important;
	}
}
#stacks_in_906 .onthelineouterspace
{
display:block;
padding: 12px 0px 12px 0px;
}
#stacks_in_906 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:1px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 2px #DDDDDC;
-moz-box-shadow: 0px 0px 2px #DDDDDC;
box-shadow: 0px 0px 2px #DDDDDC;
opacity:1;

/*CustomCSS;*/
}


.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_907 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_907 {
		display: none !important;
	}
}
