<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * jarallax css
 */

.jarallax {
    position: relative;
    z-index: 0;
}
.jarallax &gt; .jarallax-img {
    position: absolute;
    object-fit: cover;
    /* support for plugin https://github.com/bfred-it/object-fit-images */
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


/*
 * vegas css
 */

.vegas-wrapper,
.vegas-overlay,
.vegas-timer,
.vegas-slide,
.vegas-slide-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
}

.vegas-overlay {
    opacity: .5;
    background: transparent url("overlays/02.png") center center repeat;
}

.vegas-timer {
    top: auto;
    bottom: 0;
    height: 2px;
}

.vegas-timer-progress {
    width: 0%;
    height: 100%;
    background: white;
    -webkit-transition: width ease-out;
    transition: width ease-out;
}

.vegas-timer-running .vegas-timer-progress {
    width: 100%;
}

.vegas-slide,
.vegas-slide-inner {
    margin: 0;
    padding: 0;
    background: transparent center center no-repeat;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform, opacity;
}

body .vegas-container {
    overflow: hidden !important;
    position: relative;
}

.vegas-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

body.vegas-container {
    overflow: auto;
    position: static;
    z-index: -2;
}

body.vegas-container &gt; .vegas-timer,
body.vegas-container &gt; .vegas-overlay,
body.vegas-container &gt; .vegas-slide {
    position: fixed;
    z-index: -1;
}

/* Target Safari IOS7+ in order to add 76px */
_::full-page-media, _:future,
:root body.vegas-container &gt; .vegas-slide,
:root body.vegas-container &gt; .vegas-overlay {
    bottom: -76px;
}

/*******************************************/
/* blur transition */
/*******************************************/
.vegas-transition-blur,
.vegas-transition-blur2 {
    opacity: 0;
    -webkit-filter: blur(32px);
            filter: blur(32px);
}

.vegas-transition-blur-in,
.vegas-transition-blur2-in {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
}

.vegas-transition-blur2-out {
    opacity: 0;
}

/*******************************************/
/* burn transition */
/*******************************************/
.vegas-transition-burn,
.vegas-transition-burn2 {
    opacity: 0;
    -webkit-filter: contrast(1000%) saturate(1000%);
            filter: contrast(1000%) saturate(1000%);
}

.vegas-transition-burn-in,
.vegas-transition-burn2-in {
    opacity: 1;
    -webkit-filter: contrast(100%) saturate(100%);
            filter: contrast(100%) saturate(100%);
}

.vegas-transition-burn2-out {
    opacity: 0;
    -webkit-filter: contrast(1000%) saturate(1000%);
            filter: contrast(1000%) saturate(1000%);
}

/*******************************************/
/* fade transition */
/*******************************************/
.vegas-transition-fade,
.vegas-transition-fade2 {
    opacity: 0;
}

.vegas-transition-fade-in,
.vegas-transition-fade2-in {
    opacity: 1;
}

.vegas-transition-fade2-out {
    opacity: 0;
}

/*******************************************/
/* flash transition */
/*******************************************/
.vegas-transition-flash,
.vegas-transition-flash2 {
    opacity: 0;
    -webkit-filter: brightness(25);
            filter: brightness(25);
}

.vegas-transition-flash-in,
.vegas-transition-flash2-in {
    opacity: 1;
    -webkit-filter: brightness(1);
            filter: brightness(1);
}

.vegas-transition-flash2-out {
    opacity: 0;
    -webkit-filter: brightness(25);
            filter: brightness(25);
}

/*******************************************/
/* negative transition */
/*******************************************/
.vegas-transition-negative,
.vegas-transition-negative2 {
    opacity: 0;
    -webkit-filter: invert(100%);
            filter: invert(100%);
}

.vegas-transition-negative-in,
.vegas-transition-negative2-in {
    opacity: 1;
    -webkit-filter: invert(0);
            filter: invert(0);
}

.vegas-transition-negative2-out {
    opacity: 0;
    -webkit-filter: invert(100%);
            filter: invert(100%);
}

/*******************************************/
/* slideDown transition */
/*******************************************/
.vegas-transition-slideDown,
.vegas-transition-slideDown2 {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
}

.vegas-transition-slideDown-in,
.vegas-transition-slideDown2-in {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
}

.vegas-transition-slideDown2-out {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

/*******************************************/
/* slideLeft transition */
/*******************************************/
.vegas-transition-slideLeft,
.vegas-transition-slideLeft2 {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}

.vegas-transition-slideLeft-in,
.vegas-transition-slideLeft2-in {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
}

.vegas-transition-slideLeft2-out {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
}

/*******************************************/
/* slideRight transition */
/*******************************************/
.vegas-transition-slideRight,
.vegas-transition-slideRight2 {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
}

.vegas-transition-slideRight-in,
.vegas-transition-slideRight2-in {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
}

.vegas-transition-slideRight2-out {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
}

/*******************************************/
/* slideUp transition */
/*******************************************/
.vegas-transition-slideUp,
.vegas-transition-slideUp2 {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

.vegas-transition-slideUp-in,
.vegas-transition-slideUp2-in {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
}

.vegas-transition-slideUp2-out {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
}

/*******************************************/
/* swirlLeft transition */
/*******************************************/
.vegas-transition-swirlLeft,
.vegas-transition-swirlLeft2 {
    -webkit-transform: scale(2) rotate(35deg);
            transform: scale(2) rotate(35deg);
    opacity: 0;
}

.vegas-transition-swirlLeft-in,
.vegas-transition-swirlLeft2-in {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
    opacity: 1;
}

.vegas-transition-swirlLeft2-out {
    -webkit-transform: scale(2) rotate(-35deg);
            transform: scale(2) rotate(-35deg);
    opacity: 0;
}

/*******************************************/
/* swirlRight transition */
/*******************************************/
.vegas-transition-swirlRight,
.vegas-transition-swirlRight2 {
    -webkit-transform: scale(2) rotate(-35deg);
            transform: scale(2) rotate(-35deg);
    opacity: 0;
}

.vegas-transition-swirlRight-in,
.vegas-transition-swirlRight2-in {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
    opacity: 1;
}

.vegas-transition-swirlRight2-out {
    -webkit-transform: scale(2) rotate(35deg);
            transform: scale(2) rotate(35deg);
    opacity: 0;
}

/*******************************************/
/* zoomIn transition */
/*******************************************/
.vegas-transition-zoomIn,
.vegas-transition-zoomIn2 {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
}

.vegas-transition-zoomIn-in,
.vegas-transition-zoomIn2-in {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
}

.vegas-transition-zoomIn2-out {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
}

/*******************************************/
/* zoomOut transition */
/*******************************************/
.vegas-transition-zoomOut,
.vegas-transition-zoomOut2 {
    -webkit-transform: scale(2);
            transform: scale(2);
    opacity: 0;
}

.vegas-transition-zoomOut-in,
.vegas-transition-zoomOut2-in {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
}

.vegas-transition-zoomOut2-out {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
}

/*******************************************/
/* kenburns animation */
/*******************************************/
.vegas-animation-kenburns {
    -webkit-animation: kenburns ease-out;
            animation: kenburns ease-out;
}

@-webkit-keyframes kenburns {
    0% {
        -webkit-transform: scale(1.5);
                transform: scale(1.5);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}

@keyframes kenburns {
    0% {
        -webkit-transform: scale(1.5);
                transform: scale(1.5);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}

/*******************************************/
/* kenburnsDownLeft animation */
/*******************************************/
.vegas-animation-kenburnsDownLeft {
    -webkit-animation: kenburnsDownLeft ease-out;
            animation: kenburnsDownLeft ease-out;
}

@-webkit-keyframes kenburnsDownLeft {
    0% {
        -webkit-transform: scale(1.5) translate(10%, -10%);
                transform: scale(1.5) translate(10%, -10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

@keyframes kenburnsDownLeft {
    0% {
        -webkit-transform: scale(1.5) translate(10%, -10%);
                transform: scale(1.5) translate(10%, -10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

/*******************************************/
/* kenburnsDownRight animation */
/*******************************************/
.vegas-animation-kenburnsDownRight {
    -webkit-animation: kenburnsDownRight ease-out;
            animation: kenburnsDownRight ease-out;
}

@-webkit-keyframes kenburnsDownRight {
    0% {
        -webkit-transform: scale(1.5) translate(-10%, -10%);
                transform: scale(1.5) translate(-10%, -10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

@keyframes kenburnsDownRight {
    0% {
        -webkit-transform: scale(1.5) translate(-10%, -10%);
                transform: scale(1.5) translate(-10%, -10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

/*******************************************/
/* kenburnsDown animation */
/*******************************************/
.vegas-animation-kenburnsDown {
    -webkit-animation: kenburnsDown ease-out;
            animation: kenburnsDown ease-out;
}

@-webkit-keyframes kenburnsDown {
    0% {
        -webkit-transform: scale(1.5) translate(0, -10%);
                transform: scale(1.5) translate(0, -10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

@keyframes kenburnsDown {
    0% {
        -webkit-transform: scale(1.5) translate(0, -10%);
                transform: scale(1.5) translate(0, -10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

/*******************************************/
/* kenburnsLeft animation */
/*******************************************/
.vegas-animation-kenburnsLeft {
    -webkit-animation: kenburnsLeft ease-out;
            animation: kenburnsLeft ease-out;
}

@-webkit-keyframes kenburnsLeft {
    0% {
        -webkit-transform: scale(1.5) translate(10%, 0);
                transform: scale(1.5) translate(10%, 0);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

@keyframes kenburnsLeft {
    0% {
        -webkit-transform: scale(1.5) translate(10%, 0);
                transform: scale(1.5) translate(10%, 0);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

/*******************************************/
/* kenburnsRight animation */
/*******************************************/
.vegas-animation-kenburnsRight {
    -webkit-animation: kenburnsRight ease-out;
            animation: kenburnsRight ease-out;
}

@-webkit-keyframes kenburnsRight {
    0% {
        -webkit-transform: scale(1.5) translate(-10%, 0);
                transform: scale(1.5) translate(-10%, 0);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

@keyframes kenburnsRight {
    0% {
        -webkit-transform: scale(1.5) translate(-10%, 0);
                transform: scale(1.5) translate(-10%, 0);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

/*******************************************/
/* kenburnsUpLeft animation */
/*******************************************/
.vegas-animation-kenburnsUpLeft {
    -webkit-animation: kenburnsUpLeft ease-out;
            animation: kenburnsUpLeft ease-out;
}

@-webkit-keyframes kenburnsUpLeft {
    0% {
        -webkit-transform: scale(1.5) translate(10%, 10%);
                transform: scale(1.5) translate(10%, 10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

@keyframes kenburnsUpLeft {
    0% {
        -webkit-transform: scale(1.5) translate(10%, 10%);
                transform: scale(1.5) translate(10%, 10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

/*******************************************/
/* kenburnsUpRight animation */
/*******************************************/
.vegas-animation-kenburnsUpRight {
    -webkit-animation: kenburnsUpRight ease-out;
            animation: kenburnsUpRight ease-out;
}

@-webkit-keyframes kenburnsUpRight {
    0% {
        -webkit-transform: scale(1.5) translate(-10%, 10%);
                transform: scale(1.5) translate(-10%, 10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

@keyframes kenburnsUpRight {
    0% {
        -webkit-transform: scale(1.5) translate(-10%, 10%);
                transform: scale(1.5) translate(-10%, 10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

/*******************************************/
/* kenburnsUp animation */
/*******************************************/
.vegas-animation-kenburnsUp {
    -webkit-animation: kenburnsUp ease-out;
            animation: kenburnsUp ease-out;
}

@-webkit-keyframes kenburnsUp {
    0% {
        -webkit-transform: scale(1.5) translate(0, 10%);
                transform: scale(1.5) translate(0, 10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}

@keyframes kenburnsUp {
    0% {
        -webkit-transform: scale(1.5) translate(0, 10%);
                transform: scale(1.5) translate(0, 10%);
    }
    100% {
        -webkit-transform: scale(1) translate(0, 0);
                transform: scale(1) translate(0, 0);
    }
}


/*
 * com.bwd.lib.sectionspro
 */

.sections-stack.s-pro.eq-height,.sections-stack.s-pro.eq-height&gt;.shear-wrapper{margin-top:0!important}.sections-stack.s-pro.top-margin-none{margin-top:0}.sections-stack.s-pro.bot-margin-none{margin-bottom:0}.sections-stack.s-pro .inner-content{position:relative}.sections-stack.s-pro .content-wrapper.fill-content{height:100%}.sections-stack.s-pro .content-wrapper&gt;.content{margin:0;padding:0}.sections-stack.s-pro .shear-inner::before,.sections-stack.s-pro .shear-inner::after{-webkit-box-sizing:border-box!important;box-sizing:border-box!important;pointer-events:none!important;position:absolute;top:0;height:100%;left:0;width:100%;content:""}.sections-stack.s-pro.allow-pull-out&gt;.shear-wrapper&gt;.shear-inner.full-height,.sections-stack.s-pro.allow-pull-out&gt;.shear-wrapper&gt;.shear-inner&gt;.inner-content.v-center,.sections-stack.s-pro.allow-pull-out&gt;.shear-wrapper&gt;.shear-inner.fixed-height&gt;.inner-content{overflow:visible!important}



.com_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}.com_bigwhiteduck_stacks_headerpro_stack .text-inherit{text-align:inherit}
 .sections-stack .content.preload-content{opacity:0}html.no-js .sections-stack .content.preload-content{opacity:1}

.slabtexted .slabtext{display:-moz-inline-box;display:inline-block;white-space:nowrap}.slabtextinactive .slabtext{display:inline;white-space:normal;font-size:1em!important;letter-spacing:inherit!important;word-spacing:inherit!important;*letter-spacing:0!important;*word-spacing:0!important}.slabtextdone .slabtext{display:block;line-height:.9}
/* PaySnap v.3.0.1  Stylesheet (START) */



#paysnap-debug-wrap {
    background-color: rgba(0,0,0,0.30);
    padding:8px;
    -webkit-border-radius: 5px; 
    -moz-border-radius: 5px;
    border-radius: 5px; 
    overflow: auto;
}
#paysnap-debug {
	background-color: white;
	padding: 20px;
	border-radius: 5px;
	border: 4px solid rgba(0,0,0.5);
	color: #333333;
}

.ps-error {
  background: repeating-linear-gradient(
    45deg,
    #fee9ea,
    #fee9ea 10px,
    #fcd4d5 10px,
    #fcd4d5 20px
  );
  border: 2px dashed #e6494a;
  border-radius: 4px;
  color: #e6494a;
  text-align: center;
  text-transform: uppercase;
  margin:8px 0;
}

.ps-error p {
	width:auto; padding:2px 6px; 
	background:#E6494A; 
	color:#ffffff; 
	font-size:12px; 
	font-weight:bold;
	border-radius:24px; 
	border: solid 2px #E6494A; 
	text-align:center; 
	display:inline-block;
}


.btn-paysnap{
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.btn-paysnap:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn-paysnap:hover,
.btn-paysnap:focus {
  color: #333333;
  text-decoration: none;
}

.btn-paysnap:active,
.btn-paysnap.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-paysnap.disabled,
.btn-paysnap[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-paysnap.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

.btn-paysnap.btn-sm,
.btn-paysnap.btn-xs {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-paysnap.btn-xs {
  padding: 1px 5px;
}

.btn-paysnap.btn-block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}
/* 
.btn-paysnap.btn-danger {
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-paysnap.btn-danger:hover,
.btn-paysnap.btn-danger:focus,
.btn-paysnap.btn-danger:active,
.btn-paysnap.btn-danger.active,
.open .dropdown-toggle.btn-paysnap.btn-danger {
  color: #ffffff;
  background-color: #d2322d;
  border-color: #ac2925;
}

.btn-paysnap.btn-danger:active,
.btn-paysnap.btn-danger.active,
.open .dropdown-toggle.btn-paysnap.btn-danger {
  background-image: none;
}

.btn-paysnap.btn-danger.disabled,
.btn-paysnap.btn-danger[disabled],
fieldset[disabled] .btn-paysnap.btn-danger,
.btn-paysnap.btn-danger.disabled:hover,
.btn-paysnap.btn-danger[disabled]:hover,
fieldset[disabled] .btn-paysnap.btn-danger:hover,
.btn-paysnap.btn-danger.disabled:focus,
.btn-paysnap.btn-danger[disabled]:focus,
fieldset[disabled] .btn-paysnap.btn-danger:focus,
.btn-paysnap.btn-danger.disabled:active,
.btn-paysnap.btn-danger[disabled]:active,
fieldset[disabled] .btn-paysnap.btn-danger:active,
.btn-paysnap.btn-danger.disabled.active,
.btn-paysnap.btn-danger[disabled].active,
fieldset[disabled] .btn-paysnap.btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-paysnap.btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-paysnap.btn-success:hover,
.btn-paysnap.btn-success:focus,
.btn-paysnap.btn-success:active,
.btn-paysnap.btn-success.active {
  color: #ffffff;
  background-color: #47a447;
  border-color: #398439;
}

.btn-paysnap.btn-success:active,
.btn-paysnap.btn-success.active {
  background-image: none;
}

.btn-paysnap.btn-success.disabled,
.btn-paysnap.btn-success[disabled] {
  background-color: #5cb85c;
  border-color: #4cae4c;
} */

.btn-paysnap.paysnap-co-btn {
	display: block;
	padding: 12px 24px;
	margin-bottom: 0;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.33;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	width: 100%;
	padding-right: 0;
	padding-left: 0;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	     -o-user-select: none;
	        user-select: none;
}

#paysnap-cart-empty {
	padding: 10px 10px;
	font-size: medium;
	margin-top:60px;
	color:#3C3C3C;
	text-align: center;
}


#paysnap-contents {
	clear: left;
	position: relative;
	height: 200px;
} 

div.paysnap-content {
	height: 200px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow-x: hidden;
}

#paysnap-cart {
	width: 100%;
	height: 200px;
	overflow:hidden;	
}

div.paysnap-content table {
	width: 100%;
	border-spacing: 0;
}

#paysnap-cart-contents {
	width: 100%;
	height: 200px;
	max-height: 200px;
	overflow: auto;
	overflow-x: hidden;
	padding:0;
}


/* clearfix hacks */

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

.clearfix {
	display: inline-block;
}

/* Hides from IE-mac \*/

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}



.paysnap-row-two { margin-top:6px; }
/* @end */



@media screen and (max-device-width: 480px){
    /* All iPhone only CSS goes here */
    
    #paysnap-container {
		left:10px;
	}


}


label.paysnap-label{
	font-weight:bold;
	display: block;
}


#stacks_in_1973 .ydps-debug {
	border-radius:  5px;
	border:  1px dashed silver;
	padding: 20px;
	background: #fff;
}





/* PaySnap v.3.0.1 Stylesheet (END) */


/* @group Reset */
.pace,
.pace .pace-progress,
.pace .pace-progress:before,
.pace .pace-activity,
.pace .pace-activity:after,
.pace .pace-activity:before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	-ms-box-sizing: content-box;
	-o-box-sizing: content-box;
	box-sizing: content-box;
}

/* @end */

/* @group Hide Until Loaded */

/*  */

/* @end */

/* @group Atom */

/*  */
.pace.pace-inactive {
	display: none;
}

.pace {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	z-index: 2000;
	position: fixed;
	height: 60px;
	width: 100px;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.pace .pace-progress {
	z-index: 2000;
	position: absolute;
	height: 60px;
	width: 100px;
	-webkit-transform: translate3d(0, 0, 0) !important;
	-ms-transform: translate3d(0, 0, 0) !important;
	transform: translate3d(0, 0, 0) !important;
}

.pace .pace-progress:before {
	content: attr(data-progress-text);
	text-align: center;
	color: #fff;
	background: #0080FF;
	border-radius: 50%;
	font-family: "Helvetica Neue", sans-serif;
	font-size: 14px;
	line-height: 1;
	padding: 20% 0 7px;
	width: 50%;
	height: 40%;
	margin: 10px 0 0 30px;
	display: block;
	z-index: 999;
	position: absolute;
}

.pace .pace-activity {
	font-size: 15px;
	line-height: 1;
	z-index: 2000;
	position: absolute;
	height: 60px;
	width: 100px;
	display: block;
	-webkit-animation: pace-theme-center-atom-spin 2s linear infinite;
	-moz-animation: pace-theme-center-atom-spin 2s linear infinite;
	-o-animation: pace-theme-center-atom-spin 2s linear infinite;
	animation: pace-theme-center-atom-spin 2s linear infinite;
}

.pace .pace-activity {
	border-radius: 50%;
	border: 5px solid #0080FF;
	content: ' ';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 60px;
	width: 100px;
}

.pace .pace-activity:after {
	border-radius: 50%;
	border: 5px solid #0080FF;
	content: ' ';
	display: block;
	position: absolute;
	top: -5px;
	left: -5px;
	height: 60px;
	width: 100px;
	-webkit-transform: rotate(60deg);
	-moz-transform: rotate(60deg);
	-o-transform: rotate(60deg);
	transform: rotate(60deg);
}

.pace .pace-activity:before {
	border-radius: 50%;
	border: 5px solid #0080FF;
	content: ' ';
	display: block;
	position: absolute;
	top: -5px;
	left: -5px;
	height: 60px;
	width: 100px;
	-webkit-transform: rotate(120deg);
	-moz-transform: rotate(120deg);
	-o-transform: rotate(120deg);
	transform: rotate(120deg);
}

@-webkit-keyframes pace-theme-center-atom-spin {
	0%   { -webkit-transform: rotate(0deg) }
	100% { -webkit-transform: rotate(359deg) }
}
@-moz-keyframes pace-theme-center-atom-spin {
	0%   { -moz-transform: rotate(0deg) }
	100% { -moz-transform: rotate(359deg) }
}
@-o-keyframes pace-theme-center-atom-spin {
	0%   { -o-transform: rotate(0deg) }
	100% { -o-transform: rotate(359deg) }
}
@keyframes pace-theme-center-atom-spin {
	0%   { transform: rotate(0deg) }
	100% { transform: rotate(359deg) }
}

/*  */

/* @end */

/* @group Barber Shop Top */

/*  */

/* @end */

/* @group Barber Shop Bottom */

/*  */

/* @end */



/* @group Big Counter Top Left */

/*  */

/* @end */

/* @group Big Counter Top Centre */

/*  */

/* @end */

/* @group Big Counter Top Right */

/*  */

/* @end */

/* @group Big Counter Middle */

/*  */

/* @end */

/* @group Big Counter Bottom Left */

/*  */

/* @end */

/* @group Big Counter Bottom Centre */

/*  */

/* @end */

/* @group Big Counter Bottom Right */

/*  */

/* @end */

/* @group Bounce */

/*  */

/* @end */

/* @group Box */

/*  */

/* @end */

/* @group Button */

/*  */

/* @end */

/* @group Circle */

/*  */

/* @end */

/* @group Corner */

/*  */

/* @end */

/* @group Double Circles Large */

/*  */

/* @end */

/* @group Double Circles Small */

/*  */

/* @end */

/* @group Double Squares Large */

/*  */

/* @end */

/* @group Double Squares Small */

/*  */

/* @end */

/* @group Double Stripes */

/*  */

/* @end */

/* @group Radar */

/*  */

/* @end */

/* @group Simple */

/*  */

/* @end */



/* @group Fill */

/*  */

/* @end */

/* @group Flash */

/*  */

/* @end */

/* @group Flat Top */

/*  */

/* @end */

/* @group Flat Bottom */

/*  */

/* @end */

/* @group Loading Bar */

/*  */

/* @end */

/* @group Mac OS X Top */

/*  */

/* @end */

/* @group Mac OS X Bottom */

/*  */

/* @end */

/* @group Minimal Top */

/*  */

/* @end */

/* @group Minimal Bottom */

/*  */

/* @end */

/* @group Fat Bar Top */

/*  */

/* @end */

/* @group Fat Bar Bottom */

/*  */

/* @end */

/* @group Flipping Circle */

/*  */

/* @end */

/* @group Flipping Square */

/*  */

/* @end */

/* @group Font Awesome */

/*  */

/* @end */

/* @group Hair Line */

/*  */

/* @end */

/* @group Sphere */

/*  */

/* @end */

/* @group Spinning Box */

/*  */

/* @end */

/* @group Spinning &amp; Zooming Box */

/*  */

/* @end */

/* @group Spinning Circles */

/*  */

/* @end */

/* @group Squares */

/*  */

/* @end */

/* @group Text */

/*  */

/* @end *//*!
 * Bootstrap v4.0.0-alpha.2 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active {
  outline: 0; }

a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

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

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn &gt; .caret,
  .dropup &gt; .btn &gt; .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

html {
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit; }

@-moz-viewport {
  width: device-width; }

@-ms-viewport {
  width: device-width; }

@-o-viewport {
  width: device-width; }

@-webkit-viewport {
  width: device-width; }

@viewport {
  width: device-width; }

html {
  font-size: 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  color: #373a3c;
  background-color: #fff; }

.paragraph {
  color: #373a3c; }

[tabindex="-1"]:focus {
  outline: none !important; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #818a91; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: bold; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

a {
  color: #0275d8;
  text-decoration: none; }
  a:focus, a:hover {
    color: #014c8c;
    text-decoration: underline; }
  a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

pre {
  margin-top: 0;
  margin-bottom: 1rem; }

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle; }

[role="button"] {
  cursor: pointer; }

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  touch-action: manipulation; }

table {
  background-color: transparent; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #818a91;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: left; }

label {
  display: inline-block;
  margin-bottom: .5rem; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button,
select,
textarea {
  margin: 0;
  line-height: inherit;
  border-radius: 0; }

textarea {
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit; }

input[type="search"] {
  box-sizing: inherit;
  -webkit-appearance: none; }

output {
  display: inline-block; }

[hidden] {
  display: none !important; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  color: #373a3c; }

h1 {
  font-size: 2.5rem; }

h2 {
  font-size: 2rem; }

h3 {
  font-size: 1.75rem; }

h4 {
  font-size: 1.5rem; }

h5 {
  font-size: 1.25rem; }

h6 {
  font-size: 1rem; }

.h1 {
  font-size: 2.5rem; }

.h2 {
  font-size: 2rem; }

.h3 {
  font-size: 1.75rem; }

.h4 {
  font-size: 1.5rem; }

.h5 {
  font-size: 1.25rem; }

.h6 {
  font-size: 1rem; }

.lead {
  font-size: 20px;
  font-weight: 300; }

.display-1 {
  font-size: 96px;
  font-weight: 300; }

.display-2 {
  font-size: 88px;
  font-weight: 300; }

.display-3 {
  font-size: 72px;
  font-weight: 300; }

.display-4 {
  font-size: 56px;
  font-weight: 300; }

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

small,
.small {
  font-size: 80%;
  font-weight: normal; }

mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none; }

.list-inline-item {
  display: inline-block; }
  .list-inline-item:not(:last-child) {
    margin-right: 5px; }

.dl-horizontal {
  margin-right: -1.875rem;
  margin-left: -1.875rem; }
  .dl-horizontal::after {
    content: "";
    display: table;
    clear: both; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-left: 0.25rem solid #eceeef; }

.blockquote-footer {
  display: block;
  font-size: 80%;
  line-height: 1.2;
  color: #818a91; }
  .blockquote-footer::before {
    content: "\2014 \00A0"; }

.blockquote-reverse {
  padding-right: 1rem;
  padding-left: 0;
  text-align: right;
  border-right: 0.25rem solid #eceeef;
  border-left: 0; }

.blockquote-reverse .blockquote-footer::before {
  content: ""; }

.blockquote-reverse .blockquote-footer::after {
  content: "\00A0 \2014"; }

.img-fluid, .carousel-inner &gt; .carousel-item &gt; img,
.carousel-inner &gt; .carousel-item &gt; a &gt; img {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 4px; }

.img-thumbnail {
  padding: 0.25rem;
  line-height: 1.2;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

.figure {
  display: inline-block; }

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1; }

.figure-caption {
  font-size: 90%;
  color: #818a91; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: .2rem .4rem;
  font-size: 90%;
  color: #bd4147;
  background-color: #f7f7f9;
  border-radius: 4px; }

kbd {
  padding: .2rem .4rem;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 4px; }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold; }

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 90%;
  line-height: 1.2;
  color: #373a3c; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  .container::after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 544px) {
    .container {
      max-width: 576px; } }
  @media (min-width: 767px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 940px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px; } }
.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  .container-fluid::after {
    content: "";
    display: table;
    clear: both; }

.row {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem; }
  .row::after {
    content: "";
    display: table;
    clear: both; }

.col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
  position: relative;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }

.col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
  float: left; }

.col-xs-1 {
  width: 8.3333333333%; }

.col-xs-2 {
  width: 16.6666666667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.3333333333%; }

.col-xs-5 {
  width: 41.6666666667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.3333333333%; }

.col-xs-8 {
  width: 66.6666666667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.3333333333%; }

.col-xs-11 {
  width: 91.6666666667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.3333333333%; }

.col-xs-pull-2 {
  right: 16.6666666667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.3333333333%; }

.col-xs-pull-5 {
  right: 41.6666666667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.3333333333%; }

.col-xs-pull-8 {
  right: 66.6666666667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.3333333333%; }

.col-xs-pull-11 {
  right: 91.6666666667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.3333333333%; }

.col-xs-push-2 {
  left: 16.6666666667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.3333333333%; }

.col-xs-push-5 {
  left: 41.6666666667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.3333333333%; }

.col-xs-push-8 {
  left: 66.6666666667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.3333333333%; }

.col-xs-push-11 {
  left: 91.6666666667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.3333333333%; }

.col-xs-offset-2 {
  margin-left: 16.6666666667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.3333333333%; }

.col-xs-offset-5 {
  margin-left: 41.6666666667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.3333333333%; }

.col-xs-offset-8 {
  margin-left: 66.6666666667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.3333333333%; }

.col-xs-offset-11 {
  margin-left: 91.6666666667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 544px) {
  .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1 {
    float: left; }
  .col-sm-1 {
    width: 8.3333333333%; }
  .col-sm-2 {
    width: 16.6666666667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.3333333333%; }
  .col-sm-5 {
    width: 41.6666666667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.3333333333%; }
  .col-sm-8 {
    width: 66.6666666667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.3333333333%; }
  .col-sm-11 {
    width: 91.6666666667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.3333333333%; }
  .col-sm-pull-2 {
    right: 16.6666666667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.3333333333%; }
  .col-sm-pull-5 {
    right: 41.6666666667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.3333333333%; }
  .col-sm-pull-8 {
    right: 66.6666666667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.3333333333%; }
  .col-sm-pull-11 {
    right: 91.6666666667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.3333333333%; }
  .col-sm-push-2 {
    left: 16.6666666667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.3333333333%; }
  .col-sm-push-5 {
    left: 41.6666666667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.3333333333%; }
  .col-sm-push-8 {
    left: 66.6666666667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.3333333333%; }
  .col-sm-push-11 {
    left: 91.6666666667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%; }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%; }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%; }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%; }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 767px) {
  .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
    float: left; }
  .col-md-1 {
    width: 8.3333333333%; }
  .col-md-2 {
    width: 16.6666666667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.3333333333%; }
  .col-md-5 {
    width: 41.6666666667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.3333333333%; }
  .col-md-8 {
    width: 66.6666666667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.3333333333%; }
  .col-md-11 {
    width: 91.6666666667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.3333333333%; }
  .col-md-pull-2 {
    right: 16.6666666667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.3333333333%; }
  .col-md-pull-5 {
    right: 41.6666666667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.3333333333%; }
  .col-md-pull-8 {
    right: 66.6666666667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.3333333333%; }
  .col-md-pull-11 {
    right: 91.6666666667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.3333333333%; }
  .col-md-push-2 {
    left: 16.6666666667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.3333333333%; }
  .col-md-push-5 {
    left: 41.6666666667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.3333333333%; }
  .col-md-push-8 {
    left: 66.6666666667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.3333333333%; }
  .col-md-push-11 {
    left: 91.6666666667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.3333333333%; }
  .col-md-offset-2 {
    margin-left: 16.6666666667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.3333333333%; }
  .col-md-offset-5 {
    margin-left: 41.6666666667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.3333333333%; }
  .col-md-offset-8 {
    margin-left: 66.6666666667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.3333333333%; }
  .col-md-offset-11 {
    margin-left: 91.6666666667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1 {
    float: left; }
  .col-lg-1 {
    width: 8.3333333333%; }
  .col-lg-2 {
    width: 16.6666666667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.3333333333%; }
  .col-lg-5 {
    width: 41.6666666667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.3333333333%; }
  .col-lg-8 {
    width: 66.6666666667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.3333333333%; }
  .col-lg-11 {
    width: 91.6666666667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.3333333333%; }
  .col-lg-pull-2 {
    right: 16.6666666667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.3333333333%; }
  .col-lg-pull-5 {
    right: 41.6666666667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.3333333333%; }
  .col-lg-pull-8 {
    right: 66.6666666667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.3333333333%; }
  .col-lg-pull-11 {
    right: 91.6666666667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.3333333333%; }
  .col-lg-push-2 {
    left: 16.6666666667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.3333333333%; }
  .col-lg-push-5 {
    left: 41.6666666667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.3333333333%; }
  .col-lg-push-8 {
    left: 66.6666666667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.3333333333%; }
  .col-lg-push-11 {
    left: 91.6666666667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%; }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%; }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%; }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%; }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1 {
    float: left; }
  .col-xl-1 {
    width: 8.3333333333%; }
  .col-xl-2 {
    width: 16.6666666667%; }
  .col-xl-3 {
    width: 25%; }
  .col-xl-4 {
    width: 33.3333333333%; }
  .col-xl-5 {
    width: 41.6666666667%; }
  .col-xl-6 {
    width: 50%; }
  .col-xl-7 {
    width: 58.3333333333%; }
  .col-xl-8 {
    width: 66.6666666667%; }
  .col-xl-9 {
    width: 75%; }
  .col-xl-10 {
    width: 83.3333333333%; }
  .col-xl-11 {
    width: 91.6666666667%; }
  .col-xl-12 {
    width: 100%; }
  .col-xl-pull-0 {
    right: auto; }
  .col-xl-pull-1 {
    right: 8.3333333333%; }
  .col-xl-pull-2 {
    right: 16.6666666667%; }
  .col-xl-pull-3 {
    right: 25%; }
  .col-xl-pull-4 {
    right: 33.3333333333%; }
  .col-xl-pull-5 {
    right: 41.6666666667%; }
  .col-xl-pull-6 {
    right: 50%; }
  .col-xl-pull-7 {
    right: 58.3333333333%; }
  .col-xl-pull-8 {
    right: 66.6666666667%; }
  .col-xl-pull-9 {
    right: 75%; }
  .col-xl-pull-10 {
    right: 83.3333333333%; }
  .col-xl-pull-11 {
    right: 91.6666666667%; }
  .col-xl-pull-12 {
    right: 100%; }
  .col-xl-push-0 {
    left: auto; }
  .col-xl-push-1 {
    left: 8.3333333333%; }
  .col-xl-push-2 {
    left: 16.6666666667%; }
  .col-xl-push-3 {
    left: 25%; }
  .col-xl-push-4 {
    left: 33.3333333333%; }
  .col-xl-push-5 {
    left: 41.6666666667%; }
  .col-xl-push-6 {
    left: 50%; }
  .col-xl-push-7 {
    left: 58.3333333333%; }
  .col-xl-push-8 {
    left: 66.6666666667%; }
  .col-xl-push-9 {
    left: 75%; }
  .col-xl-push-10 {
    left: 83.3333333333%; }
  .col-xl-push-11 {
    left: 91.6666666667%; }
  .col-xl-push-12 {
    left: 100%; }
  .col-xl-offset-0 {
    margin-left: 0%; }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%; }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%; }
  .col-xl-offset-3 {
    margin-left: 25%; }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%; }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%; }
  .col-xl-offset-6 {
    margin-left: 50%; }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%; }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%; }
  .col-xl-offset-9 {
    margin-left: 75%; }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%; }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%; }
  .col-xl-offset-12 {
    margin-left: 100%; } }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem; }
  .table th,
  .table td {
    padding: 0.75rem;
    line-height: 1.2;
    vertical-align: top;
    border-top: 1px solid #eceeef; }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef; }
  .table tbody + tbody {
    border-top: 2px solid #eceeef; }
  .table .table {
    background-color: #fff; }

.table-sm th,
.table-sm td {
  padding: 0.3rem; }

.table-bordered {
  border: 1px solid #eceeef; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #eceeef; }
  .table-bordered thead th,
  .table-bordered thead td {
    border-bottom-width: 2px; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover tbody tr:hover {
  background-color: #f5f5f5; }

.table-active,
.table-active &gt; th,
.table-active &gt; td {
  background-color: #f5f5f5; }

.table-hover .table-active:hover {
  background-color: #e8e8e8; }
  .table-hover .table-active:hover &gt; td,
  .table-hover .table-active:hover &gt; th {
    background-color: #e8e8e8; }

.table-success,
.table-success &gt; th,
.table-success &gt; td {
  background-color: #dff0d8; }

.table-hover .table-success:hover {
  background-color: #d0e9c6; }
  .table-hover .table-success:hover &gt; td,
  .table-hover .table-success:hover &gt; th {
    background-color: #d0e9c6; }

.table-info,
.table-info &gt; th,
.table-info &gt; td {
  background-color: #d9edf7; }

.table-hover .table-info:hover {
  background-color: #c4e3f3; }
  .table-hover .table-info:hover &gt; td,
  .table-hover .table-info:hover &gt; th {
    background-color: #c4e3f3; }

.table-warning,
.table-warning &gt; th,
.table-warning &gt; td {
  background-color: #fcf8e3; }

.table-hover .table-warning:hover {
  background-color: #faf2cc; }
  .table-hover .table-warning:hover &gt; td,
  .table-hover .table-warning:hover &gt; th {
    background-color: #faf2cc; }

.table-danger,
.table-danger &gt; th,
.table-danger &gt; td {
  background-color: #f2dede; }

.table-hover .table-danger:hover {
  background-color: #ebcccc; }
  .table-hover .table-danger:hover &gt; td,
  .table-hover .table-danger:hover &gt; th {
    background-color: #ebcccc; }

.table-responsive {
  display: block;
  width: 100%;
  min-height: 0.01%;
  overflow-x: auto; }

.thead-inverse th {
  color: #fff;
  background-color: #373a3c; }

.thead-default th {
  color: #55595c;
  background-color: #eceeef; }

.table-inverse {
  color: #eceeef;
  background-color: #373a3c; }
  .table-inverse.table-bordered {
    border: 0; }
  .table-inverse th,
  .table-inverse td,
  .table-inverse thead th {
    border-color: #55595c; }

.table-reflow thead {
  float: left; }

.table-reflow tbody {
  display: block;
  white-space: nowrap; }

.table-reflow th,
.table-reflow td {
  border-top: 1px solid #eceeef;
  border-left: 1px solid #eceeef; }
  .table-reflow th:last-child,
  .table-reflow td:last-child {
    border-right: 1px solid #eceeef; }

.table-reflow thead:last-child tr:last-child th,
.table-reflow thead:last-child tr:last-child td,
.table-reflow tbody:last-child tr:last-child th,
.table-reflow tbody:last-child tr:last-child td,
.table-reflow tfoot:last-child tr:last-child th,
.table-reflow tfoot:last-child tr:last-child td {
  border-bottom: 1px solid #eceeef; }

.table-reflow tr {
  float: left; }
  .table-reflow tr th,
  .table-reflow tr td {
    display: block !important;
    border: 1px solid #eceeef; }

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.2;
  color: #55595c;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px; }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus {
    border-color: #66afe9;
    outline: none; }
  .form-control::placeholder {
    color: #999;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #eceeef;
    opacity: 1; }
  .form-control:disabled {
    cursor: not-allowed; }

select.form-control:not([size]):not([multiple]) {
  height: calc(1.95rem + 2px); }

select.form-control:focus::-ms-value {
  color: #55595c;
  background-color: #fff; }

select.form-control-sm:not([size]):not([multiple]), .input-group-sm &gt; select.form-control:not([size]):not([multiple]),
.input-group-sm &gt; select.input-group-addon:not([size]):not([multiple]),
.input-group-sm &gt; .input-group-btn &gt; select.btn:not([size]):not([multiple]) {
  height: 1.8625rem; }

select.form-control-lg:not([size]):not([multiple]), .input-group-lg &gt; select.form-control:not([size]):not([multiple]),
.input-group-lg &gt; select.input-group-addon:not([size]):not([multiple]),
.input-group-lg &gt; .input-group-btn &gt; select.btn:not([size]):not([multiple]) {
  height: 3.1666666667rem; }

.form-control-file,
.form-control-range {
  display: block; }

.form-control-label {
  padding: 0.375rem 1em;
  margin-bottom: 0; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input.form-control[type="date"],
  input.form-control[type="time"],
  input.form-control[type="datetime-local"],
  input.form-control[type="month"] {
    line-height: 1.95rem; }
  input.input-sm[type="date"], .input-group-sm input.form-control[type="date"],
  input.input-sm[type="time"], .input-group-sm input.form-control[type="time"],
  input.input-sm[type="datetime-local"], .input-group-sm input.form-control[type="datetime-local"],
  input.input-sm[type="month"], .input-group-sm input.form-control[type="month"] {
    line-height: 1.8625rem; }
  input.input-lg[type="date"], .input-group-lg input.form-control[type="date"],
  input.input-lg[type="time"], .input-group-lg input.form-control[type="time"],
  input.input-lg[type="datetime-local"], .input-group-lg input.form-control[type="datetime-local"],
  input.input-lg[type="month"], .input-group-lg input.form-control[type="month"] {
    line-height: 3.1666666667rem; } }

.form-control-static {
  min-height: 1.95rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0; }
  .form-control-static.form-control-sm, .input-group-sm &gt; .form-control-static.form-control,
  .input-group-sm &gt; .form-control-static.input-group-addon,
  .input-group-sm &gt; .input-group-btn &gt; .form-control-static.btn, .form-control-static.form-control-lg, .input-group-lg &gt; .form-control-static.form-control,
  .input-group-lg &gt; .form-control-static.input-group-addon,
  .input-group-lg &gt; .input-group-btn &gt; .form-control-static.btn {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm, .input-group-sm &gt; .form-control,
.input-group-sm &gt; .input-group-addon,
.input-group-sm &gt; .input-group-btn &gt; .btn {
  padding: 0.275rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 4px; }

.form-control-lg, .input-group-lg &gt; .form-control,
.input-group-lg &gt; .input-group-addon,
.input-group-lg &gt; .input-group-btn &gt; .btn {
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.3333333333;
  border-radius: 4px; }

.form-group {
  margin-bottom: 1rem; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-bottom: 0.75rem; }
  .radio label,
  .checkbox label {
    padding-left: 1.25rem;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }
    .radio label input:only-child,
    .checkbox label input:only-child {
      position: static; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: .25rem;
  margin-top: 4px \9;
  margin-left: -1.25rem; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -.25rem; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 1.25rem;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 20px; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: .75rem; }

input[type="radio"]:disabled, input.disabled[type="radio"],
input[type="checkbox"]:disabled,
input.disabled[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
.checkbox-inline.disabled {
  cursor: not-allowed; }

.radio.disabled label,
.checkbox.disabled label {
  cursor: not-allowed; }

.form-control-success,
.form-control-warning,
.form-control-danger {
  padding-right: 2.25rem;
  background-repeat: no-repeat;
  background-position: center right 0.4875rem;
  background-size: 1.2675rem 1.2675rem; }

.has-success .text-help,
.has-success .form-control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #5cb85c; }

.has-success .form-control {
  border-color: #5cb85c; }

.has-success .input-group-addon {
  color: #5cb85c !important;
  border-color: #5cb85c;
  background-color: #eaf6ea; }

.has-success .form-control-feedback {
  color: #5cb85c; }

.has-success .form-control-success {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg=="); }

.has-warning .text-help,
.has-warning .form-control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #f0ad4e; }

.has-warning .form-control {
  border-color: #f0ad4e; }

.has-warning .input-group-addon {
  color: #f0ad4e !important;
  border-color: #f0ad4e;
  background-color: white; }

.has-warning .form-control-feedback {
  color: #f0ad4e; }

.has-warning .form-control-warning {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+"); }

.has-danger .text-help,
.has-danger .form-control-label,
.has-danger .radio,
.has-danger .checkbox,
.has-danger .radio-inline,
.has-danger .checkbox-inline, .has-danger.radio label, .has-danger.checkbox label, .has-danger.radio-inline label, .has-danger.checkbox-inline label {
  color: #d9534f; }

.has-danger .form-control {
  border-color: #d9534f; }

.has-danger .input-group-addon {
  color: #d9534f !important;
  border-color: #d9534f;
  background-color: #fdf7f7; }

.has-danger .form-control-feedback {
  color: #d9534f; }

.has-danger .form-control-danger {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4="); }

@media (min-width: 544px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
      width: auto; }
  .form-inline .input-group &gt; .form-control {
    width: 100%; }
  .form-inline .form-control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.btn {
  margin-bottom: 0.5px;
  display: inline-block;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 4px; }
  .btn:focus, .btn.focus, .btn:active:focus, .btn.focus:active, .btn.active:focus, .btn.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:focus, .btn:hover {
    text-decoration: none; }
  .btn.focus {
    text-decoration: none; }
  .btn:active, .btn.active {
    background-image: none;
    outline: 0; }
  .btn.disabled, .btn:disabled {
    cursor: not-allowed;
    opacity: .65; }

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-primary {
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8; }
  .btn-primary:hover {
    color: #fff;
    background-color: #025aa5;
    border-color: #01549b; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #025aa5;
    border-color: #01549b; }
  .btn-primary:active, .btn-primary.active, .open &gt; .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #025aa5;
    border-color: #01549b;
    background-image: none; }
    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary.focus:active, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open &gt; .btn-primary.dropdown-toggle:hover, .open &gt; .btn-primary.dropdown-toggle:focus, .open &gt; .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #014682;
      border-color: #01315a; }
  .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary:disabled:focus, .btn-primary.focus:disabled {
    background-color: #0275d8;
    border-color: #0275d8; }
  .btn-primary.disabled:hover, .btn-primary:disabled:hover {
    background-color: #0275d8;
    border-color: #0275d8; }

.btn-secondary {
  color: #373a3c;
  background-color: #fff;
  border-color: #ccc; }
  .btn-secondary:hover {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-secondary:focus, .btn-secondary.focus {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad; }
  .btn-secondary:active, .btn-secondary.active, .open &gt; .btn-secondary.dropdown-toggle {
    color: #373a3c;
    background-color: #e6e6e6;
    border-color: #adadad;
    background-image: none; }
    .btn-secondary:active:hover, .btn-secondary:active:focus, .btn-secondary.focus:active, .btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active.focus, .open &gt; .btn-secondary.dropdown-toggle:hover, .open &gt; .btn-secondary.dropdown-toggle:focus, .open &gt; .btn-secondary.dropdown-toggle.focus {
      color: #373a3c;
      background-color: #d4d4d4;
      border-color: #8c8c8c; }
  .btn-secondary.disabled:focus, .btn-secondary.disabled.focus, .btn-secondary:disabled:focus, .btn-secondary.focus:disabled {
    background-color: #fff;
    border-color: #ccc; }
  .btn-secondary.disabled:hover, .btn-secondary:disabled:hover {
    background-color: #fff;
    border-color: #ccc; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #5bc0de; }
  .btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2; }
  .btn-info:active, .btn-info.active, .open &gt; .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2;
    background-image: none; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info.focus:active, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open &gt; .btn-info.dropdown-toggle:hover, .open &gt; .btn-info.dropdown-toggle:focus, .open &gt; .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #269abc;
      border-color: #1f7e9a; }
  .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info:disabled:focus, .btn-info.focus:disabled {
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .btn-info.disabled:hover, .btn-info:disabled:hover {
    background-color: #5bc0de;
    border-color: #5bc0de; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c; }
  .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #419641; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #419641; }
  .btn-success:active, .btn-success.active, .open &gt; .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #419641;
    background-image: none; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success.focus:active, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open &gt; .btn-success.dropdown-toggle:hover, .open &gt; .btn-success.dropdown-toggle:focus, .open &gt; .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #398439;
      border-color: #2d672d; }
  .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success:disabled:focus, .btn-success.focus:disabled {
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .btn-success.disabled:hover, .btn-success:disabled:hover {
    background-color: #5cb85c;
    border-color: #5cb85c; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #f0ad4e; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316; }
  .btn-warning:active, .btn-warning.active, .open &gt; .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #eb9316;
    background-image: none; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning.focus:active, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open &gt; .btn-warning.dropdown-toggle:hover, .open &gt; .btn-warning.dropdown-toggle:focus, .open &gt; .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #d58512;
      border-color: #b06d0f; }
  .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning:disabled:focus, .btn-warning.focus:disabled {
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .btn-warning.disabled:hover, .btn-warning:disabled:hover {
    background-color: #f0ad4e;
    border-color: #f0ad4e; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a; }
  .btn-danger:active, .btn-danger.active, .open &gt; .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #c12e2a;
    background-image: none; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger.focus:active, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open &gt; .btn-danger.dropdown-toggle:hover, .open &gt; .btn-danger.dropdown-toggle:focus, .open &gt; .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #ac2925;
      border-color: #8b211e; }
  .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger:disabled:focus, .btn-danger.focus:disabled {
    background-color: #d9534f;
    border-color: #d9534f; }
  .btn-danger.disabled:hover, .btn-danger:disabled:hover {
    background-color: #d9534f;
    border-color: #d9534f; }

.btn-primary-outline {
  color: #0275d8;
  background-image: none;
  background-color: transparent;
  border-color: #0275d8; }
  .btn-primary-outline:focus, .btn-primary-outline.focus, .btn-primary-outline:active, .btn-primary-outline.active, .open &gt; .btn-primary-outline.dropdown-toggle {
    color: #fff;
    background-color: #0275d8;
    border-color: #0275d8; }
  .btn-primary-outline:hover {
    color: #fff;
    background-color: #0275d8;
    border-color: #0275d8; }
  .btn-primary-outline.disabled:focus, .btn-primary-outline.disabled.focus, .btn-primary-outline:disabled:focus, .btn-primary-outline.focus:disabled {
    border-color: #43a7fd; }
  .btn-primary-outline.disabled:hover, .btn-primary-outline:disabled:hover {
    border-color: #43a7fd; }

.btn-secondary-outline {
  color: #ccc;
  background-image: none;
  background-color: transparent;
  border-color: #ccc; }
  .btn-secondary-outline:focus, .btn-secondary-outline.focus, .btn-secondary-outline:active, .btn-secondary-outline.active, .open &gt; .btn-secondary-outline.dropdown-toggle {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc; }
  .btn-secondary-outline:hover {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc; }
  .btn-secondary-outline.disabled:focus, .btn-secondary-outline.disabled.focus, .btn-secondary-outline:disabled:focus, .btn-secondary-outline.focus:disabled {
    border-color: white; }
  .btn-secondary-outline.disabled:hover, .btn-secondary-outline:disabled:hover {
    border-color: white; }

.btn-info-outline {
  color: #5bc0de;
  background-image: none;
  background-color: transparent;
  border-color: #5bc0de; }
  .btn-info-outline:focus, .btn-info-outline.focus, .btn-info-outline:active, .btn-info-outline.active, .open &gt; .btn-info-outline.dropdown-toggle {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .btn-info-outline:hover {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .btn-info-outline.disabled:focus, .btn-info-outline.disabled.focus, .btn-info-outline:disabled:focus, .btn-info-outline.focus:disabled {
    border-color: #b0e1ef; }
  .btn-info-outline.disabled:hover, .btn-info-outline:disabled:hover {
    border-color: #b0e1ef; }

.btn-success-outline {
  color: #5cb85c;
  background-image: none;
  background-color: transparent;
  border-color: #5cb85c; }
  .btn-success-outline:focus, .btn-success-outline.focus, .btn-success-outline:active, .btn-success-outline.active, .open &gt; .btn-success-outline.dropdown-toggle {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .btn-success-outline:hover {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .btn-success-outline.disabled:focus, .btn-success-outline.disabled.focus, .btn-success-outline:disabled:focus, .btn-success-outline.focus:disabled {
    border-color: #a3d7a3; }
  .btn-success-outline.disabled:hover, .btn-success-outline:disabled:hover {
    border-color: #a3d7a3; }

.btn-warning-outline {
  color: #f0ad4e;
  background-image: none;
  background-color: transparent;
  border-color: #f0ad4e; }
  .btn-warning-outline:focus, .btn-warning-outline.focus, .btn-warning-outline:active, .btn-warning-outline.active, .open &gt; .btn-warning-outline.dropdown-toggle {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .btn-warning-outline:hover {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .btn-warning-outline.disabled:focus, .btn-warning-outline.disabled.focus, .btn-warning-outline:disabled:focus, .btn-warning-outline.focus:disabled {
    border-color: #f8d9ac; }
  .btn-warning-outline.disabled:hover, .btn-warning-outline:disabled:hover {
    border-color: #f8d9ac; }

.btn-danger-outline {
  color: #d9534f;
  background-image: none;
  background-color: transparent;
  border-color: #d9534f; }
  .btn-danger-outline:focus, .btn-danger-outline.focus, .btn-danger-outline:active, .btn-danger-outline.active, .open &gt; .btn-danger-outline.dropdown-toggle {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f; }
  .btn-danger-outline:hover {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f; }
  .btn-danger-outline.disabled:focus, .btn-danger-outline.disabled.focus, .btn-danger-outline:disabled:focus, .btn-danger-outline.focus:disabled {
    border-color: #eba5a3; }
  .btn-danger-outline.disabled:hover, .btn-danger-outline:disabled:hover {
    border-color: #eba5a3; }

.btn-link {
  font-weight: normal;
  color: #0275d8;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled {
    background-color: transparent; }
  .btn-link, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover {
    border-color: transparent; }
  .btn-link:focus, .btn-link:hover {
    color: #014c8c;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link:disabled:focus, .btn-link:disabled:hover {
    color: #818a91;
    text-decoration: none; }

.btn-lg, .btn-group-lg &gt; .btn {
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.3333333333;
  border-radius: 4px; }

.btn-sm, .btn-group-sm &gt; .btn {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 4px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input.btn-block[type="submit"],
input.btn-block[type="reset"],
input.btn-block[type="button"] {
  width: 100%; }

.fade {
  opacity: 0;
  transition: opacity .15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-timing-function: ease;
  transition-duration: .35s;
  transition-property: height; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: .25rem;
  margin-left: .25rem;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent; }

.dropdown-toggle:focus {
  outline: 0; }

.dropup .dropdown-toggle::after {
  border-top: 0;
  border-bottom: 0.3em solid; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 1rem;
  color: #373a3c;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px; }

.dropdown-divider {
  height: 1px;
  margin: 0.5rem 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.2;
  color: #373a3c;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0; }
  .dropdown-item:focus, .dropdown-item:hover {
    color: #2b2d2f;
    text-decoration: none;
    background-color: #f5f5f5; }
  .dropdown-item.active, .dropdown-item.active:focus, .dropdown-item.active:hover {
    color: #fff;
    text-decoration: none;
    background-color: #0275d8;
    outline: 0; }
  .dropdown-item.disabled, .dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
    color: #818a91; }
  .dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)"; }

.open &gt; .dropdown-menu {
  display: block; }

.open &gt; a {
  outline: 0; }

.dropdown-menu-right {
  right: 0;
  left: auto; }

.dropdown-menu-left {
  right: auto;
  left: 0; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #818a91;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990; }

.pull-right &gt; .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 0.3em solid; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group &gt; .btn,
  .btn-group-vertical &gt; .btn {
    position: relative;
    float: left; }
    .btn-group &gt; .btn:focus, .btn-group &gt; .btn:active, .btn-group &gt; .btn.active,
    .btn-group-vertical &gt; .btn:focus,
    .btn-group-vertical &gt; .btn:active,
    .btn-group-vertical &gt; .btn.active {
      z-index: 2; }
    .btn-group &gt; .btn:hover,
    .btn-group-vertical &gt; .btn:hover {
      z-index: 2; }

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }
  .btn-toolbar::after {
    content: "";
    display: table;
    clear: both; }
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar &gt; .btn,
  .btn-toolbar &gt; .btn-group,
  .btn-toolbar &gt; .input-group {
    margin-left: 5px; }

.btn-group &gt; .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group &gt; .btn:first-child {
  margin-left: 0; }
  .btn-group &gt; .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group &gt; .btn:last-child:not(:first-child),
.btn-group &gt; .dropdown-toggle:last-child:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group &gt; .btn-group {
  float: left; }

.btn-group &gt; .btn-group:not(:first-child):not(:last-child) &gt; .btn {
  border-radius: 0; }

.btn-group &gt; .btn-group:first-child:not(:last-child) &gt; .btn:last-child,
.btn-group &gt; .btn-group:first-child:not(:last-child) &gt; .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group &gt; .btn-group:last-child:not(:first-child) &gt; .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group &gt; .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px; }

.btn-group &gt; .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group &gt; .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg &gt; .btn .caret {
  border-width: 0.3em 0.3em 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg &gt; .btn .caret {
  border-width: 0 0.3em 0.3em; }

.btn-group-vertical &gt; .btn,
.btn-group-vertical &gt; .btn-group,
.btn-group-vertical &gt; .btn-group &gt; .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical &gt; .btn-group::after {
  content: "";
  display: table;
  clear: both; }

.btn-group-vertical &gt; .btn-group &gt; .btn {
  float: none; }

.btn-group-vertical &gt; .btn + .btn,
.btn-group-vertical &gt; .btn + .btn-group,
.btn-group-vertical &gt; .btn-group + .btn,
.btn-group-vertical &gt; .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group,
.btn-group-vertical {
  border-radius: 4px; }

.btn-group-vertical &gt; .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical &gt; .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical &gt; .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-vertical &gt; .btn-group:not(:first-child):not(:last-child) &gt; .btn {
  border-radius: 0; }

.btn-group-vertical &gt; .btn-group:first-child:not(:last-child) &gt; .btn:last-child,
.btn-group-vertical &gt; .btn-group:first-child:not(:last-child) &gt; .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical &gt; .btn-group:last-child:not(:first-child) &gt; .btn:first-child,
.btn-group-vertical &gt; .btn-group:last-child:not(:first-child) &gt; .dropdown-toggle {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

[data-toggle="buttons"] &gt; .btn input[type="radio"],
[data-toggle="buttons"] &gt; .btn input[type="checkbox"],
[data-toggle="buttons"] &gt; .btn-group &gt; .btn input[type="radio"],
[data-toggle="buttons"] &gt; .btn-group &gt; .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
    .input-group .form-control:focus, .input-group .form-control:active, .input-group .form-control:hover {
      z-index: 3; }

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }
  .input-group-addon:not(:first-child):not(:last-child),
  .input-group-btn:not(:first-child):not(:last-child),
  .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  color: #55595c;
  text-align: center;
  background-color: #eceeef;
  border: 1px solid #ccc;
  border-radius: 4px; }
  .input-group-addon.form-control-sm,
  .input-group-sm &gt; .input-group-addon,
  .input-group-sm &gt; .input-group-btn &gt; .input-group-addon.btn {
    padding: 0.275rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 4px; }
  .input-group-addon.form-control-lg,
  .input-group-lg &gt; .input-group-addon,
  .input-group-lg &gt; .input-group-btn &gt; .input-group-addon.btn {
    padding: 0.75rem 1.25rem;
    font-size: 1.25rem;
    border-radius: 4px; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child &gt; .btn,
.input-group-btn:first-child &gt; .btn-group &gt; .btn,
.input-group-btn:first-child &gt; .dropdown-toggle,
.input-group-btn:last-child &gt; .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child &gt; .btn-group:not(:last-child) &gt; .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child &gt; .btn,
.input-group-btn:last-child &gt; .btn-group &gt; .btn,
.input-group-btn:last-child &gt; .dropdown-toggle,
.input-group-btn:first-child &gt; .btn:not(:first-child),
.input-group-btn:first-child &gt; .btn-group:not(:first-child) &gt; .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn &gt; .btn {
    position: relative; }
    .input-group-btn &gt; .btn + .btn {
      margin-left: -1px; }
    .input-group-btn &gt; .btn:focus, .input-group-btn &gt; .btn:active, .input-group-btn &gt; .btn:hover {
      z-index: 3; }
  .input-group-btn:first-child &gt; .btn,
  .input-group-btn:first-child &gt; .btn-group {
    margin-right: -1px; }
  .input-group-btn:last-child &gt; .btn,
  .input-group-btn:last-child &gt; .btn-group {
    z-index: 2;
    margin-left: -1px; }
    .input-group-btn:last-child &gt; .btn:focus, .input-group-btn:last-child &gt; .btn:active, .input-group-btn:last-child &gt; .btn:hover,
    .input-group-btn:last-child &gt; .btn-group:focus,
    .input-group-btn:last-child &gt; .btn-group:active,
    .input-group-btn:last-child &gt; .btn-group:hover {
      z-index: 3; }

.c-input {
  position: relative;
  display: inline;
  padding-left: 1.5rem;
  color: #555;
  cursor: pointer; }
  .c-input &gt; input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
    .c-input &gt; input:checked ~ .c-indicator {
      color: #fff;
      background-color: #0074d9; }
    .c-input &gt; input:focus ~ .c-indicator {
      box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9; }
    .c-input &gt; input:active ~ .c-indicator {
      color: #fff;
      background-color: #84c6ff; }
  .c-input + .c-input {
    margin-left: 1rem; }

.c-indicator {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  font-size: 65%;
  line-height: 1rem;
  color: #eee;
  text-align: center;
  user-select: none;
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%; }

.c-checkbox .c-indicator {
  border-radius: .25rem; }

.c-checkbox input:checked ~ .c-indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=); }

.c-checkbox input:indeterminate ~ .c-indicator {
  background-color: #0074d9;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0wLDN2Mmg4VjNIMHoiLz4NCjwvc3ZnPg0K); }

.c-radio .c-indicator {
  border-radius: 50%; }

.c-radio input:checked ~ .c-indicator {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==); }

.c-inputs-stacked .c-input {
  display: inline; }
  .c-inputs-stacked .c-input::after {
    display: block;
    margin-bottom: .25rem;
    content: ""; }
  .c-inputs-stacked .c-input + .c-input {
    margin-left: 0; }

.c-select {
  display: inline-block;
  max-width: 100%;
  padding: .375rem 1.75rem .375rem .75rem;
  padding-right: .75rem \9;
  color: #55595c;
  vertical-align: middle;
  background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right 0.75rem center;
  background-image: none \9;
  background-size: 8px 10px;
  border: 1px solid #ccc;
  -moz-appearance: none;
  -webkit-appearance: none; }
  .c-select:focus {
    border-color: #51a7e8;
    outline: none; }
  .c-select::-ms-expand {
    opacity: 0; }

.c-select-sm {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 12px; }
  .c-select-sm:not([multiple]) {
    height: 26px;
    min-height: 26px; }

.file {
  position: relative;
  display: inline-block;
  height: 2.5rem;
  cursor: pointer; }

.file input {
  min-width: 14rem;
  margin: 0;
  filter: alpha(opacity=0);
  opacity: 0; }

.file-custom {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  height: 2.5rem;
  padding: .5rem 1rem;
  line-height: 1.5;
  color: #555;
  user-select: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: .25rem; }

.file-custom::after {
  content: "Choose file..."; }

.file-custom::before {
  position: absolute;
  top: -.075rem;
  right: -.075rem;
  bottom: -.075rem;
  z-index: 6;
  display: block;
  height: 2.5rem;
  padding: .5rem 1rem;
  line-height: 1.5;
  color: #555;
  content: "Browse";
  background-color: #eee;
  border: 1px solid #ddd;
  border-radius: 0 .25rem .25rem 0; }

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: inline-block; }
  .nav-link:focus, .nav-link:hover {
    text-decoration: underline; }
  .nav-link.disabled {
    color: #818a91; }
    .nav-link.disabled, .nav-link.disabled:focus, .nav-link.disabled:hover {
      color: #818a91;
      cursor: not-allowed;
      background-color: transparent; }

.nav-inline .nav-item {
  display: inline-block; }

.nav-inline .nav-item + .nav-item,
.nav-inline .nav-link + .nav-link {
  margin-left: 1rem; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs::after {
    content: "";
    display: table;
    clear: both; }
  .nav-tabs .nav-item {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs .nav-item + .nav-item {
      margin-left: .2rem; }
  .nav-tabs .nav-link {
    display: block;
    padding: 0.5em 1em;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0; }
    .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
      border-color: #eceeef #eceeef #ddd; }
    .nav-tabs .nav-link.disabled, .nav-tabs .nav-link.disabled:focus, .nav-tabs .nav-link.disabled:hover {
      color: #818a91;
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active, .nav-tabs .nav-link.active:focus, .nav-tabs .nav-link.active:hover,
  .nav-tabs .nav-item.open .nav-link,
  .nav-tabs .nav-item.open .nav-link:focus,
  .nav-tabs .nav-item.open .nav-link:hover {
    color: #55595c;
    background-color: #fff;
    border-color: #ddd #ddd transparent; }

.nav-pills::after {
  content: "";
  display: table;
  clear: both; }

.nav-pills .nav-item {
  float: left; }
  .nav-pills .nav-item + .nav-item {
    margin-left: .2rem; }

.nav-pills .nav-link {
  display: block;
  padding: 0.5em 1em;
  border-radius: 4px; }

.nav-pills .nav-link.active, .nav-pills .nav-link.active:focus, .nav-pills .nav-link.active:hover,
.nav-pills .nav-item.open .nav-link,
.nav-pills .nav-item.open .nav-link:focus,
.nav-pills .nav-item.open .nav-link:hover {
  color: #fff;
  cursor: default;
  background-color: #0275d8; }

.nav-stacked .nav-item {
  display: block;
  float: none; }
  .nav-stacked .nav-item + .nav-item {
    margin-top: .2rem;
    margin-left: 0; }

.tab-content &gt; .tab-pane {
  display: none; }

.tab-content &gt; .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  padding: 0.5rem 1rem; }
  .navbar::after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 544px) {
    .navbar {
      border-radius: 4px; } }
.navbar-full {
  z-index: 1000; }
  @media (min-width: 544px) {
    .navbar-full {
      border-radius: 0; } }
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 544px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }
.navbar-fixed-top {
  top: 0; }

.navbar-fixed-bottom {
  bottom: 0; }

.navbar-sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%; }
  @media (min-width: 544px) {
    .navbar-sticky-top {
      border-radius: 0; } }
.navbar-brand {
  float: left;
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-right: 1rem;
  font-size: 1.25rem; }
  .navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none; }
  .navbar-brand &gt; img {
    display: block; }

.navbar-divider {
  float: left;
  width: 1px;
  padding-top: .425rem;
  padding-bottom: .425rem;
  margin-right: 1rem;
  margin-left: 1rem;
  overflow: hidden; }
  .navbar-divider::before {
    content: "\00a0"; }

.navbar-toggler {
  padding: .5rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  .navbar-toggler:focus, .navbar-toggler:hover {
    text-decoration: none; }

@media (min-width: 544px) {
  .navbar-toggleable-xs {
    display: block !important; } }

@media (min-width: 767px) {
  .navbar-toggleable-sm {
    display: block !important; } }

@media (min-width: 992px) {
  .navbar-toggleable-md {
    display: block !important; } }

.navbar-nav .nav-item {
  float: left; }

.navbar-nav .nav-link {
  display: block;
  padding-top: .425rem;
  padding-bottom: .425rem; }
  .navbar-nav .nav-link + .nav-link {
    margin-left: 1rem; }

.navbar-nav .nav-item + .nav-item {
  margin-left: 1rem; }

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.8); }
  .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, 0.8); }

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.3); }
  .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.6); }

.navbar-light .navbar-nav .open &gt; .nav-link, .navbar-light .navbar-nav .open &gt; .nav-link:focus, .navbar-light .navbar-nav .open &gt; .nav-link:hover,
.navbar-light .navbar-nav .active &gt; .nav-link,
.navbar-light .navbar-nav .active &gt; .nav-link:focus,
.navbar-light .navbar-nav .active &gt; .nav-link:hover,
.navbar-light .navbar-nav .nav-link.open,
.navbar-light .navbar-nav .nav-link.open:focus,
.navbar-light .navbar-nav .nav-link.open:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.active:focus,
.navbar-light .navbar-nav .nav-link.active:hover {
  color: rgba(0, 0, 0, 0.8); }

.navbar-light .navbar-divider {
  background-color: rgba(0, 0, 0, 0.075); }

.navbar-dark .navbar-brand {
  color: white; }
  .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
    color: white; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.75); }

.navbar-dark .navbar-nav .open &gt; .nav-link, .navbar-dark .navbar-nav .open &gt; .nav-link:focus, .navbar-dark .navbar-nav .open &gt; .nav-link:hover,
.navbar-dark .navbar-nav .active &gt; .nav-link,
.navbar-dark .navbar-nav .active &gt; .nav-link:focus,
.navbar-dark .navbar-nav .active &gt; .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.open,
.navbar-dark .navbar-nav .nav-link.open:focus,
.navbar-dark .navbar-nav .nav-link.open:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.active:focus,
.navbar-dark .navbar-nav .nav-link.active:hover {
  color: white; }

.navbar-dark .navbar-divider {
  background-color: rgba(255, 255, 255, 0.075); }

.card {
  position: relative;
  display: block;
  margin-bottom: 0.75rem;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px; }

.card-block {
  padding: 1.25rem; }

.card-title {
  margin-bottom: 0.75rem; }

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link:hover {
  text-decoration: underline; }

.card-link + .card-link {
  margin-left: 1.25rem; }

.card &gt; .list-group:first-child .list-group-item:first-child {
  border-radius: 4px 4px 0 0; }

.card &gt; .list-group:last-child .list-group-item:last-child {
  border-radius: 0 0 4px 4px; }

.card-header {
  padding: 0.75rem 1.25rem;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e5e5e5; }
  .card-header:first-child {
    border-radius: 4px 4px 0 0; }

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5; }
  .card-footer:last-child {
    border-radius: 0 0 4px 4px; }

.card-primary {
  background-color: #0275d8;
  border-color: #0275d8; }

.card-success {
  background-color: #5cb85c;
  border-color: #5cb85c; }

.card-info {
  background-color: #5bc0de;
  border-color: #5bc0de; }

.card-warning {
  background-color: #f0ad4e;
  border-color: #f0ad4e; }

.card-danger {
  background-color: #d9534f;
  border-color: #d9534f; }

.card-primary-outline {
  background-color: transparent;
  border-color: #0275d8; }

.card-secondary-outline {
  background-color: transparent;
  border-color: #ccc; }

.card-info-outline {
  background-color: transparent;
  border-color: #5bc0de; }

.card-success-outline {
  background-color: transparent;
  border-color: #5cb85c; }

.card-warning-outline {
  background-color: transparent;
  border-color: #f0ad4e; }

.card-danger-outline {
  background-color: transparent;
  border-color: #d9534f; }

.card-inverse .card-header,
.card-inverse .card-footer {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

.card-inverse .card-header,
.card-inverse .card-footer,
.card-inverse .card-title,
.card-inverse .card-blockquote {
  color: #fff; }

.card-inverse .card-link,
.card-inverse .card-text,
.card-inverse .card-blockquote &gt; footer {
  color: rgba(255, 255, 255, 0.65); }

.card-inverse .card-link:focus, .card-inverse .card-link:hover {
  color: #fff; }

.card-blockquote {
  padding: 0;
  margin-bottom: 0;
  border-left: 0; }

.card-img {
  border-radius: 0.25rem; }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem; }

.card-img-top {
  border-radius: 4px 4px 0 0; }

.card-img-bottom {
  border-radius: 0 0 4px 4px; }

@media (min-width: 544px) {
  .card-deck {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 1.25rem 0; }
    .card-deck .card {
      display: table-cell;
      vertical-align: top; }
  .card-deck-wrapper {
    margin-right: -1.25rem;
    margin-left: -1.25rem; } }

@media (min-width: 544px) {
  .card-group {
    display: table;
    width: 100%;
    table-layout: fixed; }
    .card-group .card {
      display: table-cell;
      vertical-align: top; }
      .card-group .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group .card:first-child {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0; }
        .card-group .card:first-child .card-img-top {
          border-top-right-radius: 0; }
        .card-group .card:first-child .card-img-bottom {
          border-bottom-right-radius: 0; }
      .card-group .card:last-child {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0; }
        .card-group .card:last-child .card-img-top {
          border-top-left-radius: 0; }
        .card-group .card:last-child .card-img-bottom {
          border-bottom-left-radius: 0; }
      .card-group .card:not(:first-child):not(:last-child) {
        border-radius: 0; }
        .card-group .card:not(:first-child):not(:last-child) .card-img-top,
        .card-group .card:not(:first-child):not(:last-child) .card-img-bottom {
          border-radius: 0; } }

@media (min-width: 544px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    -o-column-count: 3;
    -ms-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    -o-column-gap: 1.25rem;
    -ms-column-gap: 1.25rem;
    column-gap: 1.25rem; }
    .card-columns .card {
      display: inline-block;
      width: 100%; } }

.breadcrumb {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eceeef;
  border-radius: 4px; }
  .breadcrumb::after {
    content: "";
    display: table;
    clear: both; }
  .breadcrumb &gt; li {
    float: left; }
    .breadcrumb &gt; li + li::before {
      padding-right: .5rem;
      padding-left: .5rem;
      color: #818a91;
      content: "/"; }
  .breadcrumb &gt; .active {
    color: #818a91; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px; }

.page-item {
  display: inline; }
  .page-item:first-child .page-link {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px; }
  .page-item:last-child .page-link {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px; }
  .page-item.active .page-link, .page-item.active .page-link:focus, .page-item.active .page-link:hover {
    z-index: 2;
    color: white;
    cursor: default;
    background-color: #0375d8;
    border-color: #0375d8; }
  .page-item.disabled .page-link, .page-item.disabled .page-link:focus, .page-item.disabled .page-link:hover {
    color: #818a91;
    cursor: not-allowed;
    background-color: white;
    border-color: #dddddd; }

.page-link {
  position: relative;
  float: left;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.2;
  color: #0375d8;
  text-decoration: none;
  background-color: white;
  border: 1px solid #dddddd; }
  .page-link:focus, .page-link:hover {
    color: #004c8c;
    background-color: #eceeef;
    border-color: #dddddd; }

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.3333333333; }

.pagination-lg .page-item:first-child .page-link {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px; }

.pagination-lg .page-item:last-child .page-link {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px; }

.pagination-sm .page-link {
  padding: 0.275rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5; }

.pagination-sm .page-item:first-child .page-link {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px; }

.pagination-sm .page-item:last-child .page-link {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px; }

.pager {
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  list-style: none; }
  .pager::after {
    content: "";
    display: table;
    clear: both; }
  .pager li {
    display: inline; }
    .pager li &gt; a,
    .pager li &gt; span {
      display: inline-block;
      padding: 5px 14px;
      background-color: white;
      border: 1px solid #dddddd;
      border-radius: 15px; }
    .pager li &gt; a:focus, .pager li &gt; a:hover {
      text-decoration: none;
      background-color: #eceeef; }
  .pager .disabled &gt; a, .pager .disabled &gt; a:focus, .pager .disabled &gt; a:hover {
    color: #818a91;
    cursor: not-allowed;
    background-color: white; }
  .pager .disabled &gt; span {
    color: #818a91;
    cursor: not-allowed;
    background-color: white; }

.pager-next &gt; a,
.pager-next &gt; span {
  float: right; }

.pager-prev &gt; a,
.pager-prev &gt; span {
  float: left; }

.label {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 4px; }
  .label:empty {
    display: none; }

.btn .label {
  position: relative;
  top: -1px; }

a.label:focus, a.label:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-pill {
  padding-right: .6em;
  padding-left: .6em;
  border-radius: 10rem; }

.label-default {
  background-color: #818a91; }
  .label-default[href]:focus, .label-default[href]:hover {
    background-color: #687077; }

.label-primary {
  background-color: #0275d8; }
  .label-primary[href]:focus, .label-primary[href]:hover {
    background-color: #025aa5; }

.label-success {
  background-color: #5cb85c; }
  .label-success[href]:focus, .label-success[href]:hover {
    background-color: #449d44; }

.label-info {
  background-color: #5bc0de; }
  .label-info[href]:focus, .label-info[href]:hover {
    background-color: #31b0d5; }

.label-warning {
  background-color: #f0ad4e; }
  .label-warning[href]:focus, .label-warning[href]:hover {
    background-color: #ec971f; }

.label-danger {
  background-color: #d9534f; }
  .label-danger[href]:focus, .label-danger[href]:hover {
    background-color: #c9302c; }

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #eceeef;
  border-radius: 4px; }
  @media (min-width: 544px) {
    .jumbotron {
      padding: 4rem 2rem; } }
.jumbotron-hr {
  border-top-color: #d0d5d8; }

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0; }

.alert {
  padding: 15px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert &gt; p,
  .alert &gt; ul {
    margin-bottom: 0; }
  .alert &gt; p + p {
    margin-top: 5px; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: bold; }

.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c1e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bcdff1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6d5ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faf2cc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7ecb5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9b9; }
  .alert-danger .alert-link {
    color: #843534; }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.progress {
  display: flex;
  overflow: hidden;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 4px; }

.progress-bar {
  height: 1rem;
  line-height: 1rem; }

.progress-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem; }

.progress-animated {
  animation: progress-bar-stripes 1s linear infinite; }

.progress-primary {
  background-color: #0275d8; }

@media screen and (min-width: 0\0) {
  .progress-primary .progress-bar {
    background-color: #0275d8; } }

.progress-success {
  background-color: #5cb85c; }

@media screen and (min-width: 0\0) {
  .progress-success .progress-bar {
    background-color: #5cb85c; } }

.progress-info {
  background-color: #5bc0de; }

@media screen and (min-width: 0\0) {
  .progress-info .progress-bar {
    background-color: #5bc0de; } }

.progress-warning {
  background-color: #f0ad4e; }

@media screen and (min-width: 0\0) {
  .progress-warning .progress-bar {
    background-color: #f0ad4e; } }

.progress-danger {
  background-color: #d9534f; }

@media screen and (min-width: 0\0) {
  .progress-danger .progress-bar {
    background-color: #d9534f; } }

.media {
  margin-top: 15px; }
  .media:first-child {
    margin-top: 0; }

.media,
.media-body {
  overflow: hidden;
  zoom: 1; }

.media-body {
  width: 10000px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-object {
  display: block; }
  .media-object.img-thumbnail {
    max-width: none; }

.media-right {
  padding-left: 10px; }

.media-left {
  padding-right: 10px; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  padding-left: 0;
  margin-bottom: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  .list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }

.list-group-flush .list-group-item {
  border-width: 1px 0;
  border-radius: 0; }

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0; }

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0; }

a.list-group-item,
button.list-group-item {
  width: 100%;
  color: #555;
  text-align: inherit; }
  a.list-group-item .list-group-item-heading,
  button.list-group-item .list-group-item-heading {
    color: #333; }
  a.list-group-item:focus, a.list-group-item:hover,
  button.list-group-item:focus,
  button.list-group-item:hover {
    color: #555;
    text-decoration: none;
    background-color: #f5f5f5; }

.list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover {
  color: #818a91;
  cursor: not-allowed;
  background-color: #eceeef; }
  .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading {
    color: inherit; }
  .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text {
    color: #818a91; }

.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
  z-index: 2;
  color: #fff;
  background-color: #0275d8;
  border-color: #0275d8; }
  .list-group-item.active .list-group-item-heading,
  .list-group-item.active .list-group-item-heading &gt; small,
  .list-group-item.active .list-group-item-heading &gt; .small, .list-group-item.active:focus .list-group-item-heading,
  .list-group-item.active:focus .list-group-item-heading &gt; small,
  .list-group-item.active:focus .list-group-item-heading &gt; .small, .list-group-item.active:hover .list-group-item-heading,
  .list-group-item.active:hover .list-group-item-heading &gt; small,
  .list-group-item.active:hover .list-group-item-heading &gt; .small {
    color: inherit; }
  .list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
    color: #a8d6fe; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d; }
  a.list-group-item-success .list-group-item-heading,
  button.list-group-item-success .list-group-item-heading {
    color: inherit; }
  a.list-group-item-success:focus, a.list-group-item-success:hover,
  button.list-group-item-success:focus,
  button.list-group-item-success:hover {
    color: #3c763d;
    background-color: #d0e9c6; }
  a.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover,
  button.list-group-item-success.active,
  button.list-group-item-success.active:focus,
  button.list-group-item-success.active:hover {
    color: #ffffff;
    background-color: #3c763d;
    border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }
  a.list-group-item-info .list-group-item-heading,
  button.list-group-item-info .list-group-item-heading {
    color: inherit; }
  a.list-group-item-info:focus, a.list-group-item-info:hover,
  button.list-group-item-info:focus,
  button.list-group-item-info:hover {
    color: #31708f;
    background-color: #c4e3f3; }
  a.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover,
  button.list-group-item-info.active,
  button.list-group-item-info.active:focus,
  button.list-group-item-info.active:hover {
    color: #ffffff;
    background-color: #31708f;
    border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }
  a.list-group-item-warning .list-group-item-heading,
  button.list-group-item-warning .list-group-item-heading {
    color: inherit; }
  a.list-group-item-warning:focus, a.list-group-item-warning:hover,
  button.list-group-item-warning:focus,
  button.list-group-item-warning:hover {
    color: #8a6d3b;
    background-color: #faf2cc; }
  a.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover,
  button.list-group-item-warning.active,
  button.list-group-item-warning.active:focus,
  button.list-group-item-warning.active:hover {
    color: #ffffff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }
  a.list-group-item-danger .list-group-item-heading,
  button.list-group-item-danger .list-group-item-heading {
    color: inherit; }
  a.list-group-item-danger:focus, a.list-group-item-danger:hover,
  button.list-group-item-danger:focus,
  button.list-group-item-danger:hover {
    color: #a94442;
    background-color: #ebcccc; }
  a.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover,
  button.list-group-item-danger.active,
  button.list-group-item-danger.active:focus,
  button.list-group-item-danger.active:hover {
    color: #ffffff;
    background-color: #a94442;
    border-color: #a94442; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.embed-responsive-21by9 {
  padding-bottom: 42.8571428571%; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-9by16 {
  padding-bottom: 177.7777777778%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.embed-responsive-1by1 {
  padding-bottom: 100%; }

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2; }
  .close:focus, .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5; }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2051;
  display: none;
  overflow: hidden;
  outline: 0;
  -webkit-overflow-scrolling: touch; }
  .modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -25%); }
  .modal.in .modal-dialog {
    transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2001;
  background-color: rgba(0, 0, 0, 0.8); }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.in {
    opacity: 1; }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
  .modal-header::after {
    content: "";
    display: table;
    clear: both; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.2; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer::after {
    content: "";
    display: table;
    clear: both; }
  .modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px; }
  .modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 544px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: inherit;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.2;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 0.875rem;
  opacity: 0; }
  .tooltip.in {
    opacity: 0.9; }
  .tooltip.tooltip-top, .tooltip.bs-tether-element-attached-bottom {
    padding: 5px 0;
    margin-top: -3px; }
    .tooltip.tooltip-top .tooltip-arrow, .tooltip.bs-tether-element-attached-bottom .tooltip-arrow {
      bottom: 0;
      left: 50%;
      margin-left: -5px;
      border-width: 5px 5px 0;
      border-top-color: #000000; }
  .tooltip.tooltip-right, .tooltip.bs-tether-element-attached-left {
    padding: 0 5px;
    margin-left: 3px; }
    .tooltip.tooltip-right .tooltip-arrow, .tooltip.bs-tether-element-attached-left .tooltip-arrow {
      top: 50%;
      left: 0;
      margin-top: -5px;
      border-width: 5px 5px 5px 0;
      border-right-color: #000000; }
  .tooltip.tooltip-bottom, .tooltip.bs-tether-element-attached-top {
    padding: 5px 0;
    margin-top: 3px; }
    .tooltip.tooltip-bottom .tooltip-arrow, .tooltip.bs-tether-element-attached-top .tooltip-arrow {
      top: 0;
      left: 50%;
      margin-left: -5px;
      border-width: 0 5px 5px;
      border-bottom-color: #000000; }
  .tooltip.tooltip-left, .tooltip.bs-tether-element-attached-right {
    padding: 0 5px;
    margin-left: -3px; }
    .tooltip.tooltip-left .tooltip-arrow, .tooltip.bs-tether-element-attached-right .tooltip-arrow {
      top: 50%;
      right: 0;
      margin-top: -5px;
      border-width: 5px 0 5px 5px;
      border-left-color: #000000; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #FFFFFF;
  text-align: center;
  background-color: #000000;
  border-radius: 4px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  padding: 1px;
  font-family: inherit;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.2;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 0.875rem;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px; }
  .popover.popover-top, .popover.bs-tether-element-attached-bottom {
    margin-top: -10px; }
    .popover.popover-top .popover-arrow, .popover.bs-tether-element-attached-bottom .popover-arrow {
      bottom: -11px;
      left: 50%;
      margin-left: -11px;
      border-top-color: rgba(0, 0, 0, 0.25);
      border-bottom-width: 0; }
      .popover.popover-top .popover-arrow::after, .popover.bs-tether-element-attached-bottom .popover-arrow::after {
        bottom: 1px;
        margin-left: -10px;
        content: "";
        border-top-color: #fff;
        border-bottom-width: 0; }
  .popover.popover-right, .popover.bs-tether-element-attached-left {
    margin-left: 10px; }
    .popover.popover-right .popover-arrow, .popover.bs-tether-element-attached-left .popover-arrow {
      top: 50%;
      left: -11px;
      margin-top: -11px;
      border-right-color: rgba(0, 0, 0, 0.25);
      border-left-width: 0; }
      .popover.popover-right .popover-arrow::after, .popover.bs-tether-element-attached-left .popover-arrow::after {
        bottom: -10px;
        left: 1px;
        content: "";
        border-right-color: #fff;
        border-left-width: 0; }
  .popover.popover-bottom, .popover.bs-tether-element-attached-top {
    margin-top: 10px; }
    .popover.popover-bottom .popover-arrow, .popover.bs-tether-element-attached-top .popover-arrow {
      top: -11px;
      left: 50%;
      margin-left: -11px;
      border-top-width: 0;
      border-bottom-color: rgba(0, 0, 0, 0.25); }
      .popover.popover-bottom .popover-arrow::after, .popover.bs-tether-element-attached-top .popover-arrow::after {
        top: 1px;
        margin-left: -10px;
        content: "";
        border-top-width: 0;
        border-bottom-color: #fff; }
  .popover.popover-left, .popover.bs-tether-element-attached-right {
    margin-left: -10px; }
    .popover.popover-left .popover-arrow, .popover.bs-tether-element-attached-right .popover-arrow {
      top: 50%;
      right: -11px;
      margin-top: -11px;
      border-right-width: 0;
      border-left-color: rgba(0, 0, 0, 0.25); }
      .popover.popover-left .popover-arrow::after, .popover.bs-tether-element-attached-right .popover-arrow::after {
        right: 1px;
        bottom: -10px;
        content: "";
        border-right-width: 0;
        border-left-color: #fff; }

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 3px 3px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover-arrow, .popover-arrow::after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover-arrow {
  border-width: 11px; }

.popover-arrow::after {
  content: "";
  border-width: 10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner &gt; .carousel-item {
    position: relative;
    display: none;
    transition: .6s ease-in-out left; }
    .carousel-inner &gt; .carousel-item &gt; img,
    .carousel-inner &gt; .carousel-item &gt; a &gt; img {
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner &gt; .carousel-item {
        transition: transform .6s ease-in-out;
        backface-visibility: hidden;
        perspective: 1000px; }
        .carousel-inner &gt; .carousel-item.next, .carousel-inner &gt; .carousel-item.active.right {
          left: 0;
          transform: translate3d(100%, 0, 0); }
        .carousel-inner &gt; .carousel-item.prev, .carousel-inner &gt; .carousel-item.active.left {
          left: 0;
          transform: translate3d(-100%, 0, 0); }
        .carousel-inner &gt; .carousel-item.next.left, .carousel-inner &gt; .carousel-item.prev.right, .carousel-inner &gt; .carousel-item.active {
          left: 0;
          transform: translate3d(0, 0, 0); } }
  .carousel-inner &gt; .active,
  .carousel-inner &gt; .next,
  .carousel-inner &gt; .prev {
    display: block; }
  .carousel-inner &gt; .active {
    left: 0; }
  .carousel-inner &gt; .next,
  .carousel-inner &gt; .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner &gt; .next {
    left: 100%; }
  .carousel-inner &gt; .prev {
    left: -100%; }
  .carousel-inner &gt; .next.left,
  .carousel-inner &gt; .prev.right {
    left: 0; }
  .carousel-inner &gt; .active.left {
    left: -100%; }
  .carousel-inner &gt; .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  opacity: 0.5; }
  .carousel-control.left {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  .carousel-control.right {
    right: 0;
    left: auto;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  .carousel-control:focus, .carousel-control:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-family: serif;
    line-height: 1; }
  .carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev::before {
    content: "\2039"; }
  .carousel-control .icon-next::before {
    content: "\203a"; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px; }
  .carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media (min-width: 544px) {
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px; }
  .carousel-control .icon-prev {
    margin-left: -15px; }
  .carousel-control .icon-next {
    margin-right: -15px; }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix::after {
  content: "";
  display: table;
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-xs-left {
  float: left !important; }

.pull-xs-right {
  float: right !important; }

.pull-xs-none {
  float: none !important; }

@media (min-width: 544px) {
  .pull-sm-left {
    float: left !important; }
  .pull-sm-right {
    float: right !important; }
  .pull-sm-none {
    float: none !important; } }

@media (min-width: 767px) {
  .pull-md-left {
    float: left !important; }
  .pull-md-right {
    float: right !important; }
  .pull-md-none {
    float: none !important; } }

@media (min-width: 992px) {
  .pull-lg-left {
    float: left !important; }
  .pull-lg-right {
    float: right !important; }
  .pull-lg-none {
    float: none !important; } }

@media (min-width: 1200px) {
  .pull-xl-left {
    float: left !important; }
  .pull-xl-right {
    float: right !important; }
  .pull-xl-none {
    float: none !important; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.invisible {
  visibility: hidden !important; }

.text-hide {
  font: "0/0" a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.text-justify {
  text-align: justify !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-xs-left {
  text-align: left !important; }

.text-xs-right {
  text-align: right !important; }

.text-xs-center {
  text-align: center !important; }

@media (min-width: 544px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 767px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-normal {
  font-weight: normal; }

.font-weight-bold {
  font-weight: bold; }

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

.text-muted {
  color: #818a91; }

.text-primary {
  color: #0275d8 !important; }

a.text-primary:focus, a.text-primary:hover {
  color: #025aa5; }

.text-success {
  color: #5cb85c !important; }

a.text-success:focus, a.text-success:hover {
  color: #449d44; }

.text-info {
  color: #5bc0de !important; }

a.text-info:focus, a.text-info:hover {
  color: #31b0d5; }

.text-warning {
  color: #f0ad4e !important; }

a.text-warning:focus, a.text-warning:hover {
  color: #ec971f; }

.text-danger {
  color: #d9534f !important; }

a.text-danger:focus, a.text-danger:hover {
  color: #c9302c; }

.bg-inverse {
  color: #eceeef;
  background-color: #373a3c; }

.bg-faded {
  background-color: #f7f7f9; }

.bg-primary {
  color: #fff !important;
  background-color: #0275d8 !important; }

a.bg-primary:focus, a.bg-primary:hover {
  background-color: #025aa5; }

.bg-success {
  color: #fff !important;
  background-color: #5cb85c !important; }

a.bg-success:focus, a.bg-success:hover {
  background-color: #449d44; }

.bg-info {
  color: #fff !important;
  background-color: #5bc0de !important; }

a.bg-info:focus, a.bg-info:hover {
  background-color: #31b0d5; }

.bg-warning {
  color: #fff !important;
  background-color: #f0ad4e !important; }

a.bg-warning:focus, a.bg-warning:hover {
  background-color: #ec971f; }

.bg-danger {
  color: #fff !important;
  background-color: #d9534f !important; }

a.bg-danger:focus, a.bg-danger:hover {
  background-color: #c9302c; }

.m-x-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.m-a-0 {
  margin: 0 0 !important; }

.m-t-0 {
  margin-top: 0 !important; }

.m-r-0 {
  margin-right: 0 !important; }

.m-b-0 {
  margin-bottom: 0 !important; }

.m-l-0 {
  margin-left: 0 !important; }

.m-x-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.m-a-1 {
  margin: 1rem 1rem !important; }

.m-t-1 {
  margin-top: 1rem !important; }

.m-r-1 {
  margin-right: 1rem !important; }

.m-b-1 {
  margin-bottom: 1rem !important; }

.m-l-1 {
  margin-left: 1rem !important; }

.m-x-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.m-y-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.m-a-2 {
  margin: 1.5rem 1.5rem !important; }

.m-t-2 {
  margin-top: 1.5rem !important; }

.m-r-2 {
  margin-right: 1.5rem !important; }

.m-b-2 {
  margin-bottom: 1.5rem !important; }

.m-l-2 {
  margin-left: 1.5rem !important; }

.m-x-2 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.m-y-2 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.m-a-3 {
  margin: 3rem 3rem !important; }

.m-t-3 {
  margin-top: 3rem !important; }

.m-r-3 {
  margin-right: 3rem !important; }

.m-b-3 {
  margin-bottom: 3rem !important; }

.m-l-3 {
  margin-left: 3rem !important; }

.m-x-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.m-y-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.p-a-0 {
  padding: 0 0 !important; }

.p-t-0 {
  padding-top: 0 !important; }

.p-r-0 {
  padding-right: 0 !important; }

.p-b-0 {
  padding-bottom: 0 !important; }

.p-l-0 {
  padding-left: 0 !important; }

.p-x-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.p-a-1 {
  padding: 1rem 1rem !important; }

.p-t-1 {
  padding-top: 1rem !important; }

.p-r-1 {
  padding-right: 1rem !important; }

.p-b-1 {
  padding-bottom: 1rem !important; }

.p-l-1 {
  padding-left: 1rem !important; }

.p-x-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.p-y-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.p-a-2 {
  padding: 1.5rem 1.5rem !important; }

.p-t-2 {
  padding-top: 1.5rem !important; }

.p-r-2 {
  padding-right: 1.5rem !important; }

.p-b-2 {
  padding-bottom: 1.5rem !important; }

.p-l-2 {
  padding-left: 1.5rem !important; }

.p-x-2 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.p-y-2 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.p-a-3 {
  padding: 3rem 3rem !important; }

.p-t-3 {
  padding-top: 3rem !important; }

.p-r-3 {
  padding-right: 3rem !important; }

.p-b-3 {
  padding-bottom: 3rem !important; }

.p-l-3 {
  padding-left: 3rem !important; }

.p-x-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

.p-y-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

.pos-f-t {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.hidden-xs-up {
  display: none !important; }

@media (max-width: 543px) {
  .hidden-xs-down {
    display: none !important; } }

@media (min-width: 544px) {
  .hidden-sm-up {
    display: none !important; } }

@media (max-width: 766px) {
  .hidden-sm-down {
    display: none !important; } }

@media (min-width: 767px) {
  .hidden-md-up {
    display: none !important; } }

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important; } }

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important; } }

@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important; } }

.hidden-xl-down {
  display: none !important; }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }
.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }
.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }
@media print {
  .hidden-print {
    display: none !important; } }

.featured_image {
  margin-bottom: 2rem;
  border-radius: 4px; }

.gallery_image {
  margin-bottom: 1rem;
  border-radius: 4px; }

p.featured_image_caption {
  margin-bottom: 2rem; }

.accordion_item {
  border-radius: 4px; }

.foundry-label &gt; h3:before,
.foundry-label &gt; h3:after {
  background: rgba(0, 0, 0, 0.1); }

ul.social_badges_container li a {
  border-radius: 4px; }

.foundry_icon i {
  border-radius: 4px; }

.icon_bar_wrapper {
  border-radius: 4px; }

ul.bulleted_list li i {
  line-height: 1.2; }

.label {
  margin-bottom: 0.5rem;
  /* Foundry addition */ }

.positioner_wrapper,
.foundry-base-margin {
  margin-bottom: 1rem; }

.foundry-footer {
  color: #373a3c; }

.foundry-footer a,
.foundry-footer a:visited {
  color: #0275d8; }

.foundry-footer a:hover,
.foundry-footer a:active {
  color: #014c8c; }

.foundry-accordion-title-bar-bg-primary a.accordion_toggle {
  background: #0275d8; }

.foundry-accordion-title-bar-bg-success a.accordion_toggle {
  background: #5cb85c; }

.foundry-accordion-title-bar-bg-info a.accordion_toggle {
  background: #5bc0de; }

.foundry-accordion-title-bar-bg-warning a.accordion_toggle {
  background: #f0ad4e; }

.foundry-accordion-title-bar-bg-danger a.accordion_toggle {
  background: #d9534f; }

pre.prettyprint {
  border-radius: 4px; }

.hi-content-wrap {
  line-height: 1.2; }

ul.lz-menu {
  border-radius: 4px; }

/*****************************************/
/*  Foundry Specific CSS                 */
/*****************************************/
/* End Edit Mode */
/* Site Background Styling Options - Background Image, Color Picker, or determined by theme. */
/* Header Font Sizing Options */
@media (max-width: 33.9em) {
  /* Mobile */
  h1 {
    font-size: 40px; }
  h2 {
    font-size: 32px; }
  h3 {
    font-size: 28px; }
  h4 {
    font-size: 26px; }
  h5 {
    font-size: 22px; }
  h6 {
    font-size: 18px; } }

@media (min-width: 34em) and (max-width: 47.9375em) {
  /* Tablet */
  h1 {
    font-size: 40px; }
  h2 {
    font-size: 32px; }
  h3 {
    font-size: 28px; }
  h4 {
    font-size: 26px; }
  h5 {
    font-size: 22px; }
  h6 {
    font-size: 18px; } }

@media (min-width: 48em) and (max-width: 61.9em) {
  /* Desktop */
  h1 {
    font-size: 64px; }
  h2 {
    font-size: 40px; }
  h3 {
    font-size: 32px; }
  h4 {
    font-size: 28px; }
  h5 {
    font-size: 24px; }
  h6 {
    font-size: 20px; } }

@media (min-width: 62em) {
  /* Widescreen */
  h1 {
    font-size: 64px; }
  h2 {
    font-size: 40px; }
  h3 {
    font-size: 32px; }
  h4 {
    font-size: 28px; }
  h5 {
    font-size: 24px; }
  h6 {
    font-size: 20px; } }

.foundry-mask-primary-bg,
.foundry-primary-bg-color {
  background-color: #0275d8; }

.foundry-mask-success-bg,
.foundry-success-bg-color {
  background-color: #5cb85c; }

.foundry-mask-info-bg,
.foundry-info-bg-color {
  background-color: #5bc0de; }

.foundry-mask-warning-bg,
.foundry-warning-bg-color {
  background-color: #f0ad4e; }

.foundry-mask-danger-bg,
.foundry-danger-bg-color {
  background-color: #d9534f; }

.foundry-site-background {
  fill: #fff; }

.foundry-typeface-one {
  font-family: 'Gelasio', sans-serif;
  font-weight: 400; }

.foundry-typeface-one strong {
  font-weight: 700; }

.foundry-typeface-one strong em {
  font-weight: 700;
  font-style: italic; }

.foundry-typeface-one em {
  font-weight: 400;
  font-style: italic; }

.foundry-typeface-one-page-wide-headers h1,
.foundry-typeface-one-page-wide-headers h2,
.foundry-typeface-one-page-wide-headers h3,
.foundry-typeface-one-page-wide-headers h4,
.foundry-typeface-one-page-wide-headers h5,
.foundry-typeface-one-page-wide-headers h6 {
  font-family: 'Gelasio', sans-serif; }

h1.foundry-typeface-one,
h2.foundry-typeface-one,
h3.foundry-typeface-one,
h4.foundry-typeface-one,
h5.foundry-typeface-one,
h6.foundry-typeface-one {
  font-family: 'Gelasio', sans-serif !important; }
.foundry-typeface-two {
  font-family: 'Righteous', sans-serif;
  font-weight: 400; }

.foundry-typeface-two strong {
  font-weight: 700; }

.foundry-typeface-two strong em {
  font-weight: 700;
  font-style: italic; }

.foundry-typeface-two em {
  font-weight: 400;
  font-style: italic; }

.foundry-typeface-two-page-wide-headers h1,
.foundry-typeface-two-page-wide-headers h2,
.foundry-typeface-two-page-wide-headers h3,
.foundry-typeface-two-page-wide-headers h4,
.foundry-typeface-two-page-wide-headers h5,
.foundry-typeface-two-page-wide-headers h6 {
  font-family: 'Righteous', sans-serif; }

h1.foundry-typeface-two,
h2.foundry-typeface-two,
h3.foundry-typeface-two,
h4.foundry-typeface-two,
h5.foundry-typeface-two,
h6.foundry-typeface-two {
  font-family: 'Righteous', sans-serif !important; }
.foundry-typeface-three {
  font-family: 'Anton', sans-serif;
  font-weight: 400; }

.foundry-typeface-three strong {
  font-weight: 700; }

.foundry-typeface-three strong em {
  font-weight: 700;
  font-style: italic; }

.foundry-typeface-three em {
  font-weight: 400;
  font-style: italic; }

.foundry-typeface-three-page-wide-headers h1,
.foundry-typeface-three-page-wide-headers h2,
.foundry-typeface-three-page-wide-headers h3,
.foundry-typeface-three-page-wide-headers h4,
.foundry-typeface-three-page-wide-headers h5,
.foundry-typeface-three-page-wide-headers h6 {
  font-family: 'Anton', sans-serif; }

h1.foundry-typeface-three,
h2.foundry-typeface-three,
h3.foundry-typeface-three,
h4.foundry-typeface-three,
h5.foundry-typeface-three,
h6.foundry-typeface-three {
  font-family: 'Anton', sans-serif !important; }
       #stacks_in_422 h1,#stacks_in_422 .hTxt:not(.segment) div{font-size:8.00rem}@media all and (max-width:640px){#stacks_in_422 h1,#stacks_in_422 .hTxt:not(.segment) div{font-size:3.95rem}}       #stacks_in_422 h1,#stacks_in_422 div{color:rgba(253, 174, 64, 1.00)}#stacks_in_422 h1 a,#stacks_in_422 div a{color:rgba(253, 174, 64, 1.00)}#stacks_in_422 h1 a:hover,#stacks_in_422 div a:hover{color:rgba(189, 130, 48, 1.00)}#stacks_in_422 small,#stacks_in_422 small div{color:rgba(111, 111, 111, 1.00)}      #stacks_in_422 .hTxt:not(.vault-font){font-family:'Anton',Sans-Serif;font-weight:700;font-style:normal}          #stacks_in_422 .hTxt{text-shadow:0 1px 0 rgba(102, 102, 102, 0.30),0 2px 0 rgba(117, 117, 117, 0.30),0 3px 0 rgba(132, 132, 132, 0.30),0 4px 0 rgba(147, 147, 147, 0.30),0 5px 0 rgba(162, 162, 162, 0.30),0 6px 5px rgba(102, 102, 102, 0.30),0 6px 1px rgba(192, 192, 192, 0.35),0 0 5px rgba(192, 192, 192, 0.35),0 1px 3px rgba(172, 172, 172, 0.35),0 3px 5px rgba(182, 182, 182, 0.35),0 5px 3px rgba(177, 177, 177, 0.35),0 10px 3px rgba(182, 182, 182, 0.35),0 15px 5px rgba(187, 187, 187, 0.35)}          #stacks_in_422 .primary,#stacks_in_422 .hp-img{display:inline-block}  #stacks_in_422 .hp-img.trailer{vertical-align:top;margin-top:0px;margin-left:0px;height:20px}@media screen and (min-width:640px){#stacks_in_422 .hp-img.trailer{height:25px}}#stacks_in_422 .hp-img.trailer.toggle-off,#stacks_in_422 .hp-img.trailer.toggle-Off,#stacks_in_422 .hp-img.trailer.toggle-OFF,#stacks_in_422 .hp-img.trailer.toggle-NO,#stacks_in_422 .hp-img.trailer.toggle-No,#stacks_in_422 .hp-img.trailer.toggle-no,#stacks_in_422 .hp-img.trailer.toggle-false{display:none}  




/* Sets background for custom color picker. Allows use of translucent backgrounds. */


/* Shadow Option */

	#stacks_in_1475 .sticky_content {
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.33);
	}





#stacks_in_1475 .sticky_inner_container {
	padding: 0;
}




#stacks_in_1475 .sticky_content {
	
	padding: 0px !important;
	
}

#stacks_out_1475 {
	margin-right:0;
}


#stacks_in_1477 .mm_site_title h1,
#stacks_in_1477 .mm_site_title h1 a,
#stacks_in_1477 .mobile_mm_site_title h1,
#stacks_in_1477 .mobile_mm_site_title h1 a {
	color: rgba(251, 252, 255, 1.00);
	font-size: 24px;
	
	font-weight: 400;
	font-style: normal;
}

/*#stacks_in_1477 {
	-webkit-font-smoothing: antialiased;
}*/

#stacks_in_1477 .foundry-mega-menu-toggle {
	display: none;
	font-size: 24px;
	padding-left: 20px;
	padding-right: 20px;
	overflow: hidden;
}

#stacks_in_1477 .nav a.mm-plain-link,
#stacks_in_1477 a.link-group-item {
	text-decoration: none;
	font-weight: 400;
}

#stacks_in_1477 .foundry-mega-menu-button {
	margin-top: -1px;
}




#stacks_in_1477 .nav-sticky-container {
	transition-duration: 300ms;
	transition-property: background-color;

	background: rgba(122, 103, 149, 1.00);
	z-index: 100;
	
	
}


#stacks_in_1477 .nav-sticky-container {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.33);
}


#stacks_in_1477 .nav li.top-level-item {
	list-style: none;
}

#stacks_in_1477 .nav &gt; li.top-level-item {
	padding: 0;
	display: inline-block;
	margin-left: -4px;
	position: relative;
}

#stacks_in_1477 .nav &gt; li.top-level-item:first-child {
	margin-left: 0;
}

#stacks_in_1477 .nav &gt; li &gt; a.mm-plain-link {
	display: inline-block;
	color: rgba(250, 251, 254, 1.00);
	text-decoration: none;
	padding: 0 20px;
}

#stacks_in_1477 .nav &gt; li:hover &gt; a.mm-plain-link,
#stacks_in_1477 .nav &gt; li.selected &gt; a.mm-plain-link {
	background-color: rgba(189, 165, 221, 1.00);
	color: rgba(58, 5, 108, 1.00);
}

#stacks_in_1477 .nav &gt; li.selected &gt; a.mm-plain-link,
#stacks_in_1477 .nav .drop_down_plain li:hover &gt; a.mm-plain-link,
#stacks_in_1477 .nav .drop_down_plain li.selected &gt; a.mm-plain-link {
	font-weight: 400;
}

#stacks_in_1477 .nav &gt; li &gt; a.mm-button,
#stacks_in_1477 .nav &gt; li {
	margin-top: 0px;
}

#stacks_in_1477 .nav &gt; li.parent {
	top: 0px;
}


#stacks_in_1477 .nav &gt; li.button_height_adjust {
	margin-top: -1px;
	
		margin-left: 6px;
	
}

/* MEGA DROP DOWN */
#stacks_in_1477 .nav &gt; li.top-level-item &gt; .drop-down-container {
	
	position: absolute;
	display: none;
	
	overflow: hidden;
	
	border-radius: 0px;
	
	z-index: 500;
}

#stacks_in_1477 .nav &gt; li.top-level-item &gt; .drop-down-container.animated {
	animation-duration: 540ms;
	animation-fill-mode: both;

}

#stacks_in_1477 .nav &gt; li.top-level-item &gt; .drop-down-container.show-drop-down {
	display: block !important;
}

#stacks_in_1477 .nav &gt; li &gt; .drop-down-container.right {
	right: 0;
	left: auto;
}

#stacks_in_1477 .clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#stacks_in_1477 a,
#stacks_in_1477 li {
	cursor: pointer;
}

#stacks_in_1477 li.parent &gt; a {
	cursor: pointer;
}

#stacks_in_1477 li.parent &gt; a:after {
	font-family: "FontAwesome";
	content: '\f105';
	padding-left: 5px;
}

#stacks_in_1477 .foundry-mega-menu-toggle {
	background-color: rgba(247, 247, 249, 1.00);
	color: rgba(80, 80, 81, 1.00);
	width: 100%;
	cursor: pointer;
}

#stacks_in_1477 .foundry-mega-menu-toggle:hover {
	background-color: rgba(219, 219, 221, 1.00);
	color: rgba(80, 80, 81, 1.00);
}

@media (max-width: 47.99em) {
	/*Mobile*/

	#stacks_in_1477 .mobile_adjust {
		height: 0;
	}

	#stacks_in_1477 .nav-sticky-container {
		background: transparent;
	}

	#stacks_in_1477 .logo_container,
	#stacks_in_1477 .mm_site_title {
		/*Hide logo at mobile breakpoint*/
		display: none !important;
	}

	#stacks_in_1477 .foundry-mega-menu-toggle {
		display: block;	
	}

	#stacks_in_1477 .foundry-mega-menu {
		display: none;
		top: 0;
	}

	#stacks_in_1477 .nav {
		height: auto;
	}

	#stacks_in_1477 ul.foundry-mega-menu {
		background: rgba(255, 255, 255, 1.00);
	}

	#stacks_in_1477 .nav &gt; li.top-level-item {
		margin-left: 0;
		text-align: left;
	}

	#stacks_in_1477 .nav &gt; li.top-level-item &gt; a.mm-plain-link {
		font-size: 16px;
	}

	#stacks_in_1477 .nav .drop-down-container .mm-plain-link {
		font-size: 16px;
	}

	#stacks_in_1477 .nav li.top-level-item a.mm-plain-link:not(.link-group-item) {
		line-height: 48px;
	}

	#stacks_in_1477 .nav &gt; li.top-level-item,
	#stacks_in_1477 .nav &gt; li &gt; a.mm-plain-link {
		float: none;
		display: block;
	}

	#stacks_in_1477 .nav &gt; li &gt; a.mm-plain-link {
		color: rgba(98, 98, 99, 1.00);
	}

	#stacks_in_1477 .nav &gt; li:hover &gt; a.mm-plain-link,
	#stacks_in_1477 .nav &gt; li.selected &gt; a.mm-plain-link {
		background: rgba(219, 219, 221, 1.00);
		color: rgba(98, 98, 99, 1.00)
	}

	#stacks_in_1477 .nav &gt; li &gt; .drop-down-container {
		position: relative;
		
		display: none;
		
		top: 0;
		box-shadow: none;
		width: 100%;
		max-width: 100%;
		background-color: ;
		border-radius: 0px;
	}

	#stacks_in_1477 .nav &gt; li.top-level-item &gt; .drop-down-container {
		
		position: relative;
		display: none;
		
	}

	/* Removes unneeded font sizing for branding at mobile breakpoint. */
	/* #stacks_in_1477 .mm_site_title h1,
	#stacks_in_1477 .mm_site_title h1 a {
		font-size: px;
		text-decoration: none;
	} */

	#stacks_in_1477 .button_height_adjust {
		padding-left: 20px;
		padding-right: 20px;
	}

	#stacks_in_1477 .nav .drop-down-container {
		margin-top: 0px;
	}

	#stacks_in_1477 .botton-column {
		margin-top: -6px;
	}

}

@media (min-width: 48em) and (max-width: 61.9em) {
	/*Tablet*/
	#stacks_in_1477 .foundry-mega-menu {
		display: block !important;
	}

	#stacks_in_1477 .mm_site_title h1,
	#stacks_in_1477 .mm_site_title h1 a {
		font-size: 20px;
		text-decoration: none;
	}

	#stacks_in_1477 .nav &gt; li.top-level-item &gt; a.mm-plain-link {
		font-size: 16px;
	}

	#stacks_in_1477 .nav .drop-down-container .mm-plain-link {
		font-size: 16px;
	}

	#stacks_in_1477 .nav .drop-down-container {
		margin-top: 0px;
	}

	@keyframes potion_slide_up {
	  from {
			margin-top: 50px;
	  }

	  to {
			margin-top: 0px;
	  }
	}

	@keyframes potion_slide_down {
	  from {
			margin-top: -50px;
	  }

	  to {
			margin-top: 0px;
	  }
	}


}

@media (min-width: 62em) {
	/*Desktop*/
	#stacks_in_1477 .foundry-mega-menu {
		display: block !important;
	}

	#stacks_in_1477 .mm_site_title h1,
	#stacks_in_1477 .mm_site_title h1 a {
		font-size: 24px;
		text-decoration: none;
	}

	#stacks_in_1477 .nav &gt; li.top-level-item &gt; a.mm-plain-link {
		font-size: 16px;
	}

	#stacks_in_1477 .nav .drop-down-container .mm-plain-link {
		font-size: 16px;
	}

	#stacks_in_1477 .nav .drop-down-container {
		margin-top: 0px;
	}

	@keyframes potion_slide_up {
	  from {
			margin-top: 50px;
	  }

	  to {
			margin-top: 0px;
	  }
	}

	@keyframes potion_slide_down {
		from {
			margin-top: -50px;
		}

		to {
			margin-top: 0px;
		}
	}

}


@media (max-width: 47.99em) {
	/*Mobile*/
	#stacks_in_1477 .foundry-mega-menu-toggle,
	#stacks_in_1477 .nav_bar_placeholder {
		height: 48px;
		line-height: 48px;
	}

	#stacks_in_1477 .nav-sticky-container &gt; .container,
	#stacks_in_1477 .nav-sticky-container &gt; .container-fluid {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	
	#stacks_in_1477 .nav li.top-level-item:not(.link-group-list-item),
	#stacks_in_1477 .nav li.top-level-item &gt; a.mm-plain-link:not(.link-group-item),
	#stacks_in_1477 .nav &gt; li &gt; a.mm-plain-link:not(.link-group-item) {
		line-height: 48px;
	}

	#stacks_in_1477 .button_height_adjust {
		line-height: 48px;
	}

	#stacks_in_1477 .nav-sticky-container &gt; .container &gt; ul &gt; li &gt; a.mm-plain-link {
		height: 48px;
		line-height: 48px;
	}
	

	#stacks_in_1477 .nav-sticky-container {
		border-radius: 0px;
	}

	#stacks_in_1477 .foundry-mega-menu-button {
		margin-top: 6px;
	}
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/*Tablet*/
	#stacks_in_1477 .nav,
	#stacks_in_1477 .nav_bar_placeholder {
		height: 48px;
	}

	#stacks_in_1477 .button_height_adjust {
		line-height: 48px;
	}

	#stacks_in_1477 .logo_container {
		height: 48px;
	}

	
	#stacks_in_1477 .nav &gt; li &gt; a.mm-plain-link {
		line-height: 48px;
		height: 48px;
	}
	

	#stacks_in_1477 .nav &gt; li &gt; a.mm-plain-link {
		border-radius: 0px;
	}

	#stacks_in_1477 .foundry-mega-menu-toggle {
		height: 48px;
		line-height: 48px;
	}

	#stacks_in_1477 .nav &gt; li &gt; .drop-down-container {
		top: 48px;
	}

	#stacks_in_1477 .mm_site_title,
	#stacks_in_1477 .mm_site_title h1,
	#stacks_in_1477 .site_logo {
		height: 48px;
		line-height: 48px;
	}
}

@media (min-width: 62em) {
	/*Desktop*/
	#stacks_in_1477 &gt; .nav,
	#stacks_in_1477 .nav_bar_placeholder {
		height: 48px;
	}

	#stacks_in_1477 .button_height_adjust {
		line-height: 48px;
	}


	#stacks_in_1477 .logo_container {
		height: 48px;
	}

	
	#stacks_in_1477 .nav &gt; li &gt; a.mm-plain-link {
		line-height: 48px;
		height: 48px;
	}

	

	#stacks_in_1477 .nav &gt; li &gt; a.mm-plain-link {
		border-radius: 0px;
	}

	#stacks_in_1477 .foundry-mega-menu-toggle {
		height: 48px;
		line-height: 48px;
	}

	#stacks_in_1477 .nav &gt; li &gt; .drop-down-container {
		top: 48px;
	}

	#stacks_in_1477 .mm_site_title,
	#stacks_in_1477 .mm_site_title h1,
	#stacks_in_1477 .site_logo {
		height: 48px;
		line-height: 48px;
	}

}

#stacks_in_1477 .nav &gt; li li {
	line-height: 1.5;
}

#stacks_in_1477 .mm_site_title {
	float: left;
	display: inline-block;
	color: #626263;
	margin-left: 10px !important;
	margin-right: 10px !important;
}




#stacks_in_1477 .nav_bar_placeholder {
	z-index: 998;
	position: relative;
	width: 100%;
}




#stacks_in_1477 .mm_site_title h1 {
	margin: 0;
}

#stacks_out_1477,
#stacks_in_1477,
#stacks_in_1477 .nav_bar_placeholder,
#stacks_in_1477 .nav-sticky-container {
	
	border-radius: 0px;
	
}

#stacks_in_1477 #sticky-wrapper.is-sticky .nav-sticky-container {
	border-radius: 0;
}

#stacks_in_1477 .nav-sticky-container.sticky {
	width: 100% !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 3000;
}


#stacks_in_1477 .nav-sticky-container.simple-sticky {
	top: 0;
	position: fixed;
}


#stacks_in_1477 #sticky-wrapper,
#stacks_in_1477 #sticky-wrapper .nav-sticky-container {
	width: 100% !important;
}

/* Banner Pairing Feature */

	

	





#stacks_in_1477 .mm_site_title {
		white-space: nowrap;
}

#stacks_in_1477 .site_logo {
	width: auto;
}

#stacks_in_1477 .logo_container {
	float: left;
	display: block;
}

#stacks_in_1477 .logo_container img {
	max-width: auto;
	max-height: 100%;
	
		margin-right: 12px;
	
	/*margin-top: -3px !important;*/
}





.potion_slide_up {
  animation-name: potion_slide_up;
	transition-timing-function: ease-in-out;
}

.potion_slide_down {
  animation-name: potion_slide_down;
	transition-timing-function: ease-in-out;
}












@media (max-width: 47.99em) {

	#stacks_in_1477 .foundry-mega-menu {
		
	}

	#stacks_in_1477 .mobile_nav_wrapper {
		list-style: none;
		padding: 0;
		margin: 0;
		height: 48px;
		line-height: 48px;
		float: left;
	}

	#stacks_in_1477 .mobile_logo_container {
		margin-right: 12px;
	}


	#stacks_in_1477 .mobile_logo_container,
	#stacks_in_1477 .mobile_mm_site_title {
		display: inline-block;
		height: 48px;
		line-height: 48px;
		margin: 0;
	}

	#stacks_in_1477 .mobile_logo_container img {
		height: 48px;
		line-height: 48px;
		width: auto;
		position: relative;
		margin-top: -5px;
	}

	#stacks_in_1477 .mobile_mm_site_title h1 {
		font-size: 18px;
	}
}@media (max-width: 47.9em) {
  
}

.stacks_in_1479-plain &gt; a &gt; i {
  margin-right: 4px;
}
@media (max-width: 47.9em) {
  
}

.stacks_in_1480-plain &gt; a &gt; i {
  margin-right: 4px;
}
@media (max-width: 47.9em) {
  
}

.stacks_in_1481-plain &gt; a &gt; i {
  margin-right: 4px;
}
@media (max-width: 47.9em) {
  
}

.stacks_in_1482-plain &gt; a &gt; i {
  margin-right: 4px;
}
@media (max-width: 47.9em) {
  
}

.stacks_in_1483-plain &gt; a &gt; i {
  margin-right: 4px;
}
@media (max-width: 47.9em) {
  
}

.stacks_in_1484-plain &gt; a &gt; i {
  margin-right: 4px;
}
@media (max-width: 47.9em) {
  
}

.stacks_in_1485-plain &gt; a &gt; i {
  margin-right: 4px;
}



.stacks_in_1486-parent-id .drop-down-container {
	background: rgba(162, 151, 194, 1.00);
  right : 0;
}


.stacks_in_1486-parent-id &gt; a.mm-plain-link &gt; i {
  margin-right: 4px;
}

.stacks_in_1486-drop-down &gt; .row {
  
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  
}

.stacks_in_1486-drop-down .drop_down_plain &gt; li &gt; a {
  display: block;
}

.stacks_in_1486-drop-down ul.drop_down_plain {
	padding: 0;
	margin: 0;
}


  .stacks_in_1486-drop-down {
    

    
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.33);
    
  }


@media (max-width: 47.9em) {
  
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/*Tablet*/
  .stacks_in_1486-drop-down {
		min-width: 350px;
	}
}

@media (min-width: 62em) {
	/*Desktop*/
	.stacks_in_1486-drop-down {
		min-width: 450px;
	}
}


.stacks_in_1488-drop-down-plain-links a,
.stacks_in_1488-drop-down-plain-links a:visited {
  color: #626263 !important;
  /*transition-duration: 250ms;
  transition-property: background-color;*/
  
  border-radius: 4px;
  
}

.stacks_in_1488-drop-down-plain-links a:hover,
.stacks_in_1488-drop-down-plain-links a:active,
.stacks_in_1488-drop-down-plain-links li.selected a {
  color: #494A4A !important;
  background-color: #DBDBDD;
}


.stacks_in_1488-drop-down-plain-links a {
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 10px;
  padding-right: 10px;
}




@media (max-width: 47.9em) {
  
}

.stacks_in_1490-plain &gt; a &gt; i {
  margin-right: 4px;
}
@media (max-width: 47.9em) {
  
}

.stacks_in_1491-plain &gt; a &gt; i {
  margin-right: 4px;
}
@media (max-width: 47.9em) {
  
}

.stacks_in_1492-plain &gt; a &gt; i {
  margin-right: 4px;
}
@media (max-width: 47.9em) {
  
}

.stacks_in_1493-plain &gt; a &gt; i {
  margin-right: 4px;
}
@media (max-width: 47.9em) {
  
}

.stacks_in_1494-plain &gt; a &gt; i {
  margin-right: 4px;
}
@media (max-width: 47.9em) {
  
}


@media (max-width: 47.9375em) {
  #stacks_in_1499 .button_group_layout_trigger {
    display: block;
  }
}

@media (min-width: 48em) {
	#stacks_in_1499 .button_group_layout_trigger {
    display: inline-block;
  }
}

#stacks_in_1499 .btn-group .btn {
	margin-bottom: 0;
}




@media (max-width: 47.9375em) {
	/* Mobile */
	#stacks_in_1499 .btn-group:not([class*="dropdown"]):not([class*="open"]),
	#stacks_in_1499 .btn-group-vertical:not([class*="dropdown"]):not([class*="open"]) {
		
	}
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* Tablet */
	#stacks_in_1499 .btn-group:not([class*="dropdown"]):not([class*="open"]),
	#stacks_in_1499 .btn-group-vertical:not([class*="dropdown"]):not([class*="open"]) {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_1499 .btn-group:not([class*="dropdown"]):not([class*="open"]),
	#stacks_in_1499 .btn-group-vertical:not([class*="dropdown"]):not([class*="open"]) {
		
	}
}



#stacks_in_1499 .btn-group-vertical {
	margin-bottom: 21px;
}

#stacks_in_1499 .btn-group-vertical .btn {
	margin-top: -2px;
}




	#stacks_in_1501_myModal .closer_x {
		width: 100%;
		z-index: 99;
		display: block;
		height: 23px;
		padding-right: 5px;
		position: absolute;
	}




.stacks_in_1501-foundry_modal_button.btn:focus {
	outline: none;
}


	.stacks_in_1501-foundry_modal_button.btn {
		background: rgba(182, 166, 216, 1.00);
		background: -moz-linear-gradient(top, rgba(182, 166, 216, 1.00) 1%, rgba(94, 0, 255, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(182, 166, 216, 1.00) 1%,rgba(94, 0, 255, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(182, 166, 216, 1.00) 1%,rgba(94, 0, 255, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(182, 166, 216, 1.00);
		border-bottom-color: rgba(94, 0, 255, 1.00);
	}
	
	.stacks_in_1501-foundry_modal_button.btn:hover {
		background: rgba(182, 166, 216, 1.00);
		background: -moz-linear-gradient(top, rgba(253, 168, 173, 1.00) 1%, rgba(109, 0, 24, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(253, 168, 173, 1.00) 1%,rgba(109, 0, 24, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(253, 168, 173, 1.00) 1%,rgba(109, 0, 24, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(253, 168, 173, 1.00);
		border-bottom-color: rgba(109, 0, 24, 1.00);
	}
	



@media screen and (max-width: 5000px) {
	#quickColumnsstacks_in_1503 {
		-moz-column-count: 3;
		-moz-column-gap: 50px;
		-webkit-column-count: 3;
		-webkit-column-gap: 50px;
		column-count: 3;
		column-gap: 50px;
	}
}

@media screen and (max-width: 768px) {
	#quickColumnsstacks_in_1503 {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
		column-gap: 30px;
	}
}

@media screen and (max-width: 568px) {
	#quickColumnsstacks_in_1503 {
		-moz-column-count: 1;
		-moz-column-gap: 25px;
		-webkit-column-count: 1;
		-webkit-column-gap: 25px;
		column-count: 1;
		column-gap: 25px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_1503 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_1503 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media print {
	#quickColumnsstacks_in_1503 {
		-moz-column-count: 0;
		-moz-column-gap: 0;
		-webkit-column-count: 0;
		-webkit-column-gap: 0;
		column-count: 0;
		column-gap: 0;
	}
}








	#stacks_in_1506_myModal .closer_x {
		width: 100%;
		z-index: 99;
		display: block;
		height: 23px;
		padding-right: 5px;
		position: absolute;
	}




.stacks_in_1506-foundry_modal_button.btn:focus {
	outline: none;
}


	.stacks_in_1506-foundry_modal_button.btn {
		background: rgba(154, 212, 216, 1.00);
		background: -moz-linear-gradient(top, rgba(154, 212, 216, 1.00) 1%, rgba(20, 96, 255, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(154, 212, 216, 1.00) 1%,rgba(20, 96, 255, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(154, 212, 216, 1.00) 1%,rgba(20, 96, 255, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(154, 212, 216, 1.00);
		border-bottom-color: rgba(20, 96, 255, 1.00);
	}
	
	.stacks_in_1506-foundry_modal_button.btn:hover {
		background: rgba(154, 212, 216, 1.00);
		background: -moz-linear-gradient(top, rgba(251, 206, 196, 1.00) 1%, rgba(163, 31, 64, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(251, 206, 196, 1.00) 1%,rgba(163, 31, 64, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(251, 206, 196, 1.00) 1%,rgba(163, 31, 64, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(251, 206, 196, 1.00);
		border-bottom-color: rgba(163, 31, 64, 1.00);
	}
	



@media screen and (max-width: 5000px) {
	#quickColumnsstacks_in_1508 {
		-moz-column-count: 3;
		-moz-column-gap: 50px;
		-webkit-column-count: 3;
		-webkit-column-gap: 50px;
		column-count: 3;
		column-gap: 50px;
	}
}

@media screen and (max-width: 768px) {
	#quickColumnsstacks_in_1508 {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
		column-gap: 30px;
	}
}

@media screen and (max-width: 568px) {
	#quickColumnsstacks_in_1508 {
		-moz-column-count: 1;
		-moz-column-gap: 25px;
		-webkit-column-count: 1;
		-webkit-column-gap: 25px;
		column-count: 1;
		column-gap: 25px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_1508 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_1508 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media print {
	#quickColumnsstacks_in_1508 {
		-moz-column-count: 0;
		-moz-column-gap: 0;
		-webkit-column-count: 0;
		-webkit-column-gap: 0;
		column-count: 0;
		column-gap: 0;
	}
}








	#stacks_in_1511_myModal .closer_x {
		width: 100%;
		z-index: 99;
		display: block;
		height: 23px;
		padding-right: 5px;
		position: absolute;
	}




.stacks_in_1511-foundry_modal_button.btn:focus {
	outline: none;
}


	.stacks_in_1511-foundry_modal_button.btn {
		background: rgba(159, 220, 139, 1.00);
		background: -moz-linear-gradient(top, rgba(159, 220, 139, 1.00) 1%, rgba(16, 111, 40, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(159, 220, 139, 1.00) 1%,rgba(16, 111, 40, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(159, 220, 139, 1.00) 1%,rgba(16, 111, 40, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(159, 220, 139, 1.00);
		border-bottom-color: rgba(16, 111, 40, 1.00);
	}
	
	.stacks_in_1511-foundry_modal_button.btn:hover {
		background: rgba(159, 220, 139, 1.00);
		background: -moz-linear-gradient(top, rgba(162, 167, 123, 1.00) 1%, rgba(164, 116, 11, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(162, 167, 123, 1.00) 1%,rgba(164, 116, 11, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(162, 167, 123, 1.00) 1%,rgba(164, 116, 11, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(162, 167, 123, 1.00);
		border-bottom-color: rgba(164, 116, 11, 1.00);
	}
	



@media screen and (max-width: 5000px) {
	#quickColumnsstacks_in_1513 {
		-moz-column-count: 3;
		-moz-column-gap: 50px;
		-webkit-column-count: 3;
		-webkit-column-gap: 50px;
		column-count: 3;
		column-gap: 50px;
	}
}

@media screen and (max-width: 768px) {
	#quickColumnsstacks_in_1513 {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
		column-gap: 30px;
	}
}

@media screen and (max-width: 568px) {
	#quickColumnsstacks_in_1513 {
		-moz-column-count: 1;
		-moz-column-gap: 25px;
		-webkit-column-count: 1;
		-webkit-column-gap: 25px;
		column-count: 1;
		column-gap: 25px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_1513 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_1513 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media print {
	#quickColumnsstacks_in_1513 {
		-moz-column-count: 0;
		-moz-column-gap: 0;
		-webkit-column-count: 0;
		-webkit-column-gap: 0;
		column-count: 0;
		column-gap: 0;
	}
}



   #stacks_in_415 .bb-text,#stacks_in_415 div,#stacks_in_415 p,#stacks_in_415 h1,#stacks_in_415 h2,#stacks_in_415 h3,#stacks_in_415 h4,#stacks_in_415 h5,#stacks_in_415 h6,#stacks_in_415 span{font-family:Anton,Sans-Serif;font-weight:700;font-style:normal}        #stacks_in_415 .slabtext{line-height:1.10}  #stacks_in_415 .bb-text,#stacks_in_415 div{margin-bottom:0}  #stacks_in_415 h1,#stacks_in_415 h2,#stacks_in_415 h3,#stacks_in_415 h4,#stacks_in_415 h5,#stacks_in_415 h6,#stacks_in_415 p,#stacks_in_415 div,#stacks_in_415 ul,#stacks_in_415 ol,#stacks_in_415 dl{color:rgba(92, 0, 201, 1.00);line-height:1.60}#stacks_in_415 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_415 a:hover{color:rgba(0, 102, 153, 1.00)}  #stacks_in_415&gt;.bb-text{padding-top:0px;margin-top:-0px}

#stacks_in_415 {
	padding:  10px;
}

#stacks_out_415 {
	width: 63%;
}
       #stacks_in_1691 h4,#stacks_in_1691 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_1691 h4,#stacks_in_1691 .hTxt:not(.segment) div{font-size:2.00rem}}       #stacks_in_1691 h4,#stacks_in_1691 div{color:rgba(176, 53, 50, 1.00)}#stacks_in_1691 h4 a,#stacks_in_1691 div a{color:rgba(176, 53, 50, 1.00)}#stacks_in_1691 h4 a:hover,#stacks_in_1691 div a:hover{color:rgba(132, 39, 37, 1.00)}#stacks_in_1691 small,#stacks_in_1691 small div{color:rgba(111, 111, 111, 1.00)}      #stacks_in_1691 .hTxt:not(.vault-font){font-family:'Anton',Sans-Serif;font-weight:500;font-style:normal}            #stacks_in_1691 .primary,#stacks_in_1691 .hp-img{display:inline-block}  #stacks_in_1691 .hp-img.trailer{vertical-align:top;margin-top:0px;margin-left:0px;height:20px}@media screen and (min-width:640px){#stacks_in_1691 .hp-img.trailer{height:25px}}#stacks_in_1691 .hp-img.trailer.toggle-off,#stacks_in_1691 .hp-img.trailer.toggle-Off,#stacks_in_1691 .hp-img.trailer.toggle-OFF,#stacks_in_1691 .hp-img.trailer.toggle-NO,#stacks_in_1691 .hp-img.trailer.toggle-No,#stacks_in_1691 .hp-img.trailer.toggle-no,#stacks_in_1691 .hp-img.trailer.toggle-false{display:none}  

#stacks_out_1691 {
	width: 86%;
}


#stacks_out_1993 {
	width: 150px;
}

#stacks_out_1997 {
	width: 21%;
}

#stacks_in_1986 {
	margin:  20px;
}
#shadyStackstacks_in_894 {
	-webkit-box-shadow: inset -3px 2px 9px 5px rgba(153, 153, 153, 1.00);
	box-shadow: inset -3px 2px 9px 5px rgba(153, 153, 153, 1.00);
	border-radius: 0px;
}


#shadyStackstacks_in_894 {
	padding: 15px;
}




@media print {
	#shadyStackstacks_in_894 {
		margin: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0px;
	}
}
#stacks_in_894 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}
/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_896 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_896  a:link,
#cardlinkstacks_in_896  a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_896 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_896 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_896 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}




@media (max-width: 47.9375em) {
	/* iPhone */
	#stacks_in_898 .foundry_column {
		margin-bottom: 20px;
	}
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* iPad */
	#stacks_in_898 .foundry_column {
		margin-bottom: 40px;
	}
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_898 .foundry_column {
		margin-bottom: 40px;
	}
}


/* CSS for removing gutters if option is enabled. */
#stacks_in_898 .row.no-gutters {
	margin-right: 0;
	margin-left: 0;
  }
  
  #stacks_in_898 .row.no-gutters &gt; [class^="col-"],
  #stacks_in_898 .row.no-gutters &gt; [class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
  }
  




	@media screen and (min-width: 768px) {
	  #stacks_in_898 .equal, #stacks_in_898 .equal &gt; div[class*='col-'] {
	      display: -webkit-box;
	      display: -moz-box;
	      display: -ms-flexbox;
	      display: -webkit-flex;
	      display: flex;
	      flex: 1 1 auto;
	  }

		

		#stacks_in_898 .equal &gt; div[class*='col-'] &gt; .inner_column_content {
				display: block;
				width: 100%;
		}

	}

	#stacks_in_898 &gt; .row &gt; .foundry_column_one {
		background-color: rgba(255, 255, 255, 0.00);
	}

	#stacks_in_898 &gt; .row &gt; .foundry_column_two {
		background-color: rgba(255, 255, 255, 0.00);
	}

	#stacks_in_898 &gt; .row &gt; .foundry_column_three {
		background-color: rgba(255, 255, 255, 0.00);
	}

	#stacks_in_898 &gt; .row &gt; .foundry_column_four {
		background-color: rgba(255, 255, 255, 0.00);
	}










#stacks_in_898 {
	background-color: rgba(239, 233, 163, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  6px;
}
 
/* PaySnap Button v.3.0.1 Stylesheet (START) */

.yd-left { text-align:left; }
.yd-center { text-align:center; }
.yd-right { text-align:right; }



#stacks_in_1979 .yd-btn {
  font-family: -apple-system,BlinkMacSystemFont,sans-serif;
  color: rgba(255, 255, 255, 1.00);
  background: rgba(15, 96, 205, 1.00);
  border-color: rgba(0, 0, 0, 0.25);
  font-size: 14px; 
  padding: 11px;  
  border-radius: 4px;  
  border-width: 1px; 
}

#stacks_in_1979 .yd-btn:disabled {
  opacity:.5;
  cursor:not-allowed;
}

#stacks_in_1979 .paysnap-cart-result {
  color: color: rgba(255, 255, 255, 1.00);
}

#stacks_in_1979 .yd-btn .fa {
  font-size: 14px;
}

#stacks_in_1979 .paysnap-viewcart .paysnap-cart-qty
{
background-color: rgba(0, 0, 0, 0.25) !important;
display: inline-block;
min-width: 10px;
padding: 3px 7px;
line-height: 1;
color: rgba(255, 255, 255, 1.00);
text-align: center;
white-space: nowrap;
vertical-align: middle;
border-radius: 6px;
margin-top: -2px;
font-family: helvetica;
font-size: 14px;
}

/* PaySnap Button v.3.0.1 Stylesheet (END) */
 

#stacks_in_920 {
	margin:  11px;
}
 
/* PaySnap Button v.3.0.1 Stylesheet (START) */

.yd-left { text-align:left; }
.yd-center { text-align:center; }
.yd-right { text-align:right; }



#stacks_in_1982 .yd-btn {
  font-family: -apple-system,BlinkMacSystemFont,sans-serif;
  color: rgba(255, 255, 255, 1.00);
  background: rgba(15, 96, 205, 1.00);
  border-color: rgba(0, 0, 0, 0.25);
  font-size: 14px; 
  padding: 11px;  
  border-radius: 4px;  
  border-width: 1px; 
}

#stacks_in_1982 .yd-btn:disabled {
  opacity:.5;
  cursor:not-allowed;
}

#stacks_in_1982 .paysnap-cart-result {
  color: color: rgba(255, 255, 255, 1.00);
}

#stacks_in_1982 .yd-btn .fa {
  font-size: 14px;
}

#stacks_in_1982 .paysnap-viewcart .paysnap-cart-qty
{
background-color: rgba(0, 0, 0, 0.25) !important;
display: inline-block;
min-width: 10px;
padding: 3px 7px;
line-height: 1;
color: rgba(255, 255, 255, 1.00);
text-align: center;
white-space: nowrap;
vertical-align: middle;
border-radius: 6px;
margin-top: -2px;
font-family: helvetica;
font-size: 14px;
}

/* PaySnap Button v.3.0.1 Stylesheet (END) */
 

#stacks_in_924 {
	margin:  7px;
}

#stacks_in_63 {
	padding:  5px;
}

#stacks_out_63 {
	width: 72%;
}
/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_387 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_387  a:link,
#cardlinkstacks_in_387  a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_387 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_387 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_387 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}


#stacks_out_387 {
	width: 57%;
}
#stacks_in_65&gt;.s3_row {
	margin: 0 -0px;
}

#stacks_in_65&gt;.s3_row&gt;.s3_column_left {
	width: 40.00%;
}

#stacks_in_65&gt;.s3_row&gt;.s3_column_center {
	width: 20.000000%;
}

#stacks_in_65&gt;.s3_row&gt;.s3_column_right {
	width: 40.00%;
}

#stacks_in_65&gt;.s3_row&gt;.s3_column {
	padding: 0 0px;
}








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



}



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


	#stacks_in_65&gt;.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_65&gt;.s3_row&gt;.s3_column {
		padding: 0px 0;
		width:100%;
	}


}




#stacks_in_65 {
	margin:  8px;
}








	#stacks_in_129 .btn {
		background: rgba(182, 166, 216, 1.00);
		background: -moz-linear-gradient(top, rgba(182, 166, 216, 1.00) 1%, rgba(111, 0, 171, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(182, 166, 216, 1.00) 1%,rgba(111, 0, 171, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(182, 166, 216, 1.00) 1%,rgba(111, 0, 171, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(182, 166, 216, 1.00);
		border-bottom-color: rgba(111, 0, 171, 1.00);
	}
	
	#stacks_in_129 .btn:hover {
		background: rgba(182, 166, 216, 1.00);
		background: -moz-linear-gradient(top, rgba(2, 90, 165, 1.00) 1%, rgba(2, 90, 165, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(2, 90, 165, 1.00) 1%,rgba(2, 90, 165, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(2, 90, 165, 1.00) 1%,rgba(2, 90, 165, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(2, 90, 165, 1.00);
		border-bottom-color: rgba(2, 90, 165, 1.00);
	}
	





@media (max-width: 47.9375em) {
	/* Mobile */
	#stacks_in_129 .btn {
		
	}
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* Tablet */
	#stacks_in_129 .btn {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_129 .btn {
		
	}
}


#stacks_in_129 .button-base-margin {
	
	margin-bottom: 0px !important;
	
}








	#stacks_in_130 .btn {
		background: rgba(216, 198, 150, 1.00);
		background: -moz-linear-gradient(top, rgba(216, 198, 150, 1.00) 1%, rgba(253, 143, 16, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(216, 198, 150, 1.00) 1%,rgba(253, 143, 16, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(216, 198, 150, 1.00) 1%,rgba(253, 143, 16, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(216, 198, 150, 1.00);
		border-bottom-color: rgba(253, 143, 16, 1.00);
	}
	
	#stacks_in_130 .btn:hover {
		background: rgba(216, 198, 150, 1.00);
		background: -moz-linear-gradient(top, rgba(253, 138, 131, 1.00) 1%, rgba(163, 0, 13, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(253, 138, 131, 1.00) 1%,rgba(163, 0, 13, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(253, 138, 131, 1.00) 1%,rgba(163, 0, 13, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(253, 138, 131, 1.00);
		border-bottom-color: rgba(163, 0, 13, 1.00);
	}
	





@media (max-width: 47.9375em) {
	/* Mobile */
	#stacks_in_130 .btn {
		
	}
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* Tablet */
	#stacks_in_130 .btn {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_130 .btn {
		
	}
}


#stacks_in_130 .button-base-margin {
	
	margin-bottom: 0px !important;
	
}



#stacks_in_1350 {
	margin-bottom: 21px;
}



	


#stacks_in_1350 .banner {
	width: 100%;
}


	











	#stacks_in_1350 .banner {
		background-color: #FFFDFB;
	}



	









#stacks_in_1350 .banner_inner {
	display: table;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
	z-index: 100;
	width: 100%;
}

#stacks_in_1350 .banner_content {
	display: table-cell;
	vertical-align: middle;
	position: relative;
}

#stacks_in_1350_scroll_button {
	background: rgba(255, 255, 255, 0.80);
	color: rgba(0, 0, 0, 1.00);
	height: 44px;
	width: 44px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	margin-left: -22px;
	bottom: 30px;
	text-align: center;
	line-height: 44px !important;
	cursor: pointer;
	
}

@media (max-width: 47.9375em) {
	/*Small*/
	#stacks_in_1350_scroll_button {
		bottom: 70px;
	}
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/*Medium*/
	#stacks_in_1350_scroll_button {
		bottom: 70px;
	}
}

@media (min-width: 62em) and (max-width: 74.9em) {
	/*Large*/
	#stacks_in_1350_scroll_button {
		bottom: 70px;
	}
}




@media (max-width: 47.9375em) {
  #stacks_in_1352 .button_group_layout_trigger {
    display: block;
  }
}

@media (min-width: 48em) {
	#stacks_in_1352 .button_group_layout_trigger {
    display: inline-block;
  }
}

#stacks_in_1352 .btn-group .btn {
	margin-bottom: 0;
}




@media (max-width: 47.9375em) {
	/* Mobile */
	#stacks_in_1352 .btn-group:not([class*="dropdown"]):not([class*="open"]),
	#stacks_in_1352 .btn-group-vertical:not([class*="dropdown"]):not([class*="open"]) {
		
	}
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* Tablet */
	#stacks_in_1352 .btn-group:not([class*="dropdown"]):not([class*="open"]),
	#stacks_in_1352 .btn-group-vertical:not([class*="dropdown"]):not([class*="open"]) {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_1352 .btn-group:not([class*="dropdown"]):not([class*="open"]),
	#stacks_in_1352 .btn-group-vertical:not([class*="dropdown"]):not([class*="open"]) {
		
	}
}



#stacks_in_1352 .btn-group-vertical {
	margin-bottom: 21px;
}

#stacks_in_1352 .btn-group-vertical .btn {
	margin-top: -2px;
}




	#stacks_in_1354_myModal .closer_x {
		width: 100%;
		z-index: 99;
		display: block;
		height: 23px;
		padding-right: 5px;
		position: absolute;
	}




.stacks_in_1354-foundry_modal_button.btn:focus {
	outline: none;
}


	.stacks_in_1354-foundry_modal_button.btn {
		background: rgba(228, 218, 255, 1.00);
		background: -moz-linear-gradient(top, rgba(228, 218, 255, 1.00) 1%, rgba(127, 0, 255, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(228, 218, 255, 1.00) 1%,rgba(127, 0, 255, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(228, 218, 255, 1.00) 1%,rgba(127, 0, 255, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(228, 218, 255, 1.00);
		border-bottom-color: rgba(127, 0, 255, 1.00);
	}
	
	.stacks_in_1354-foundry_modal_button.btn:hover {
		background: rgba(228, 218, 255, 1.00);
		background: -moz-linear-gradient(top, rgba(254, 209, 202, 1.00) 1%, rgba(206, 0, 13, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(254, 209, 202, 1.00) 1%,rgba(206, 0, 13, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(254, 209, 202, 1.00) 1%,rgba(206, 0, 13, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(254, 209, 202, 1.00);
		border-bottom-color: rgba(206, 0, 13, 1.00);
	}
	



@media screen and (max-width: 5000px) {
	#quickColumnsstacks_in_1356 {
		-moz-column-count: 3;
		-moz-column-gap: 50px;
		-webkit-column-count: 3;
		-webkit-column-gap: 50px;
		column-count: 3;
		column-gap: 50px;
	}
}

@media screen and (max-width: 768px) {
	#quickColumnsstacks_in_1356 {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
		column-gap: 30px;
	}
}

@media screen and (max-width: 568px) {
	#quickColumnsstacks_in_1356 {
		-moz-column-count: 1;
		-moz-column-gap: 25px;
		-webkit-column-count: 1;
		-webkit-column-gap: 25px;
		column-count: 1;
		column-gap: 25px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_1356 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_1356 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media print {
	#quickColumnsstacks_in_1356 {
		-moz-column-count: 0;
		-moz-column-gap: 0;
		-webkit-column-count: 0;
		-webkit-column-gap: 0;
		column-count: 0;
		column-gap: 0;
	}
}








	#stacks_in_1364_myModal .closer_x {
		width: 100%;
		z-index: 99;
		display: block;
		height: 23px;
		padding-right: 5px;
		position: absolute;
	}




.stacks_in_1364-foundry_modal_button.btn:focus {
	outline: none;
}


	.stacks_in_1364-foundry_modal_button.btn {
		background: rgba(228, 218, 255, 1.00);
		background: -moz-linear-gradient(top, rgba(228, 218, 255, 1.00) 1%, rgba(127, 0, 255, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(228, 218, 255, 1.00) 1%,rgba(127, 0, 255, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(228, 218, 255, 1.00) 1%,rgba(127, 0, 255, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(228, 218, 255, 1.00);
		border-bottom-color: rgba(127, 0, 255, 1.00);
	}
	
	.stacks_in_1364-foundry_modal_button.btn:hover {
		background: rgba(228, 218, 255, 1.00);
		background: -moz-linear-gradient(top, rgba(254, 209, 202, 1.00) 1%, rgba(206, 0, 13, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(254, 209, 202, 1.00) 1%,rgba(206, 0, 13, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(254, 209, 202, 1.00) 1%,rgba(206, 0, 13, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(254, 209, 202, 1.00);
		border-bottom-color: rgba(206, 0, 13, 1.00);
	}
	



@media screen and (max-width: 5000px) {
	#quickColumnsstacks_in_1366 {
		-moz-column-count: 3;
		-moz-column-gap: 50px;
		-webkit-column-count: 3;
		-webkit-column-gap: 50px;
		column-count: 3;
		column-gap: 50px;
	}
}

@media screen and (max-width: 768px) {
	#quickColumnsstacks_in_1366 {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
		column-gap: 30px;
	}
}

@media screen and (max-width: 568px) {
	#quickColumnsstacks_in_1366 {
		-moz-column-count: 1;
		-moz-column-gap: 25px;
		-webkit-column-count: 1;
		-webkit-column-gap: 25px;
		column-count: 1;
		column-gap: 25px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_1366 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_1366 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media print {
	#quickColumnsstacks_in_1366 {
		-moz-column-count: 0;
		-moz-column-gap: 0;
		-webkit-column-count: 0;
		-webkit-column-gap: 0;
		column-count: 0;
		column-gap: 0;
	}
}






@media (max-width: 47.9375em) {
	/* iPhone */
	#stacks_in_1448 .foundry_column {
		margin-bottom: 20px;
	}
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* iPad */
	#stacks_in_1448 .foundry_column {
		margin-bottom: 40px;
	}
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_1448 .foundry_column {
		margin-bottom: 40px;
	}
}


/* CSS for removing gutters if option is enabled. */
#stacks_in_1448 .row.no-gutters {
	margin-right: 0;
	margin-left: 0;
  }
  
  #stacks_in_1448 .row.no-gutters &gt; [class^="col-"],
  #stacks_in_1448 .row.no-gutters &gt; [class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
  }
  











#stacks_out_1448 {
	width: 61%;
}



/* Color picker style settings */


#stacks_in_1450 p {
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_1450 p a,
#stacks_in_1450 p a:visited {
	color: rgba(55, 129, 187, 1.00);
}

#stacks_in_1450 p a:hover,
#stacks_in_1450 p a:active {
	color: rgba(64, 103, 138, 1.00);
}

/* Edit mode custom colors. */
#stacks_in_1450 .paragraph {
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_1450 .paragraph a,
#stacks_in_1450 .paragraph a:visited {
	color: rgba(55, 129, 187, 1.00);
}

#stacks_in_1450 .paragraph a:hover,
#stacks_in_1450 .paragraph a:active {
	color: rgba(64, 103, 138, 1.00);
}








	
	#stacks_in_1450 p,
	#stacks_in_1450 {
		font-size: 12px;
	}
	

	



#stacks_in_1450 p,
#stacks_in_1450 {
	margin-bottom: 0;
}


@media (max-width: 47.9375em) {
  #stacks_in_1452 .button_group_layout_trigger {
    display: block;
  }
}

@media (min-width: 48em) {
	#stacks_in_1452 .button_group_layout_trigger {
    display: inline-block;
  }
}

#stacks_in_1452 .btn-group .btn {
	margin-bottom: 0;
}




@media (max-width: 47.9375em) {
	/* Mobile */
	#stacks_in_1452 .btn-group:not([class*="dropdown"]):not([class*="open"]),
	#stacks_in_1452 .btn-group-vertical:not([class*="dropdown"]):not([class*="open"]) {
		
	}
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* Tablet */
	#stacks_in_1452 .btn-group:not([class*="dropdown"]):not([class*="open"]),
	#stacks_in_1452 .btn-group-vertical:not([class*="dropdown"]):not([class*="open"]) {
		
	}
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_1452 .btn-group:not([class*="dropdown"]):not([class*="open"]),
	#stacks_in_1452 .btn-group-vertical:not([class*="dropdown"]):not([class*="open"]) {
		
	}
}



#stacks_in_1452 .btn-group-vertical {
	margin-bottom: 21px;
}

#stacks_in_1452 .btn-group-vertical .btn {
	margin-top: -2px;
}





	.stacks_in_1455_group_button.btn {
		background: rgba(190, 177, 216, 1.00);
		background: -moz-linear-gradient(top, rgba(190, 177, 216, 1.00) 1%, rgba(134, 0, 255, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(190, 177, 216, 1.00) 1%,rgba(134, 0, 255, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(190, 177, 216, 1.00) 1%,rgba(134, 0, 255, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(190, 177, 216, 1.00);
		border-bottom-color: rgba(134, 0, 255, 1.00);
	}
	
	.stacks_in_1455_group_button.btn:hover {
		background: rgba(190, 177, 216, 1.00);
		background: -moz-linear-gradient(top, rgba(127, 167, 120, 1.00) 1%, rgba(65, 170, 32, 1.00) 100%);
		background: -webkit-linear-gradient(top, rgba(127, 167, 120, 1.00) 1%,rgba(65, 170, 32, 1.00) 100%);
		background: linear-gradient(to bottom, rgba(127, 167, 120, 1.00) 1%,rgba(65, 170, 32, 1.00) 100%);
		color: rgba(255, 255, 255, 1.00);
		border-top-color: rgba(127, 167, 120, 1.00);
		border-bottom-color: rgba(65, 170, 32, 1.00);
	}
	




#stacks_in_1459 ul.social_badges_container {
	list-style: none;
	font-size: 0;
	padding: 0;
	margin: 0;
}

#stacks_in_1459 ul.social_badges_container li {
	display: inline-block;
	overflow: hidden;
	margin-left: 2.50px;
	margin-right: 2.50px;
}

#stacks_in_1459 ul.social_badges_container li,
#stacks_in_1459 ul.social_badges_container li a,
#stacks_in_1459 ul.social_badges_container li a i {
	width: 44px;
	height: 44px;
	line-height: 44px;
}

#stacks_in_1459 ul.social_badges_container li a {
	text-align: center;
	display: block;
	font-size: 20px;
}


	#stacks_in_1459 ul.social_badges_container li a {
		
	}




	li.stacks_in_1461_individual_badge a,
	li.stacks_in_1461_individual_badge a:visited {
		background-color: rgba(155, 116, 217, 1.00);
		color: rgba(255, 255, 255, 1.00);
	}

	li.stacks_in_1461_individual_badge a:hover,
	li.stacks_in_1461_individual_badge a:active {
		background-color: rgba(187, 78, 80, 1.00);
		color: rgba(255, 255, 255, 1.00);
	}






	li.stacks_in_1462_individual_badge a,
	li.stacks_in_1462_individual_badge a:visited {
		background-color: rgba(136, 90, 208, 1.00);
		color: rgba(255, 255, 255, 1.00);
	}

	li.stacks_in_1462_individual_badge a:hover,
	li.stacks_in_1462_individual_badge a:active {
		background-color: rgba(6, 102, 189, 1.00);
		color: rgba(255, 255, 255, 1.00);
	}






	#stacks_in_796 .the-images {
		display: none;
	}

	@media (max-width: 47.9em) {
		/*Mobile*/
		

		

	}

	@media (min-width: 48em) and (max-width: 61.9em) {
		/*Tablet*/
		
			#stacks_in_796 .foundry-background {
				height: 400px !important;
			}
		

		
	}

	@media (min-width: 62em) {
		/*Desktop*/
		
			#stacks_in_796 .foundry-background {
				height: 400px !important;
			}
		

		
	}



#stacks_in_796 .foundry-background {
	position: relative;
	overflow: hidden;
	width: 100%;
}


	#stacks_in_796 .bkg_inner {
		display: table;
		height: 100%;
		margin-right: auto;
		margin-left: auto;
		z-index: 10;
		width: 100%;
	}

	#stacks_in_796 .bkg_content {
		display: table-cell;
		vertical-align: middle;
	}




#stacks_in_796 .vegas-timer-progress {
	background: rgba(3, 117, 216, 1.00);
	background: -moz-linear-gradient(left,  rgba(3, 117, 216, 1.00) 0%, rgba(3, 117, 216, 1.00) 100%);
	background: -webkit-linear-gradient(left,  rgba(3, 117, 216, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
	background: linear-gradient(to right,  rgba(3, 117, 216, 1.00) 0%,rgba(3, 117, 216, 1.00) 100%);
}

#stacks_in_796 .vegas-timer {
	height: 2px;
}
             #stacks_in_1178 h3,#stacks_in_1178 div{color:rgba(252, 255, 255, 1.00)}#stacks_in_1178 h3 a,#stacks_in_1178 div a{color:rgba(252, 255, 255, 1.00)}#stacks_in_1178 h3 a:hover,#stacks_in_1178 div a:hover{color:rgba(189, 191, 191, 1.00)}#stacks_in_1178 small,#stacks_in_1178 small div{color:rgba(111, 111, 111, 1.00)}      #stacks_in_1178 .hTxt:not(.vault-font){font-family:'Anton',Sans-Serif;font-weight:400;font-style:normal}            
#shadyStackstacks_in_304 {
	-webkit-box-shadow:  -3px 3px 9px 3px rgba(153, 153, 153, 1.00);
	box-shadow:  -3px 3px 9px 3px rgba(153, 153, 153, 1.00);
	border-radius: 0px;
}




#shadyStackstacks_in_304 {
	margin: 15px;
}


@media print {
	#shadyStackstacks_in_304 {
		margin: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0px;
	}
}
#stacks_out_304 {
	width: 94%;
}



#stacks_in_306 &gt; .positioner_wrapper &gt; .positioner {
	position: absolute;
	
	top: 0;
	margin-top: -16px;
	

	

	
	
	
	left: 50%;
	margin-left: -16px;
	
	
	z-index: 90;
	/*margin-right: px;*/
}

#stacks_in_306 &gt; .positioner_wrapper &gt; .positioner &gt; a,
#stacks_in_306 &gt; .positioner_wrapper &gt; .positioner &gt; a:visited,
#stacks_in_306 &gt; .positioner_wrapper &gt; .positioner &gt; span {
	
	background: rgba(2, 116, 216, 1.00);
	color: rgba(255, 255, 255, 1.00);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 1.00);
	

	

	font-size: 16px;
	display: block;
	padding: 0px;
	line-height: 32px;
	height: 32px;
	width: 32px;
	border-radius: 50%;
	text-align: center;
}

#stacks_in_306 &gt; .positioner_wrapper &gt; .positioner &gt; a:hover,
#stacks_in_306 &gt; .positioner_wrapper &gt; .positioner &gt; a:active,
#stacks_in_306 &gt; .positioner_wrapper &gt; .positioner &gt; span:hover {
	
	background: rgba(2, 116, 216, 1.00);
	

	
}

#stacks_in_306 &gt; .positioner_wrapper &gt; .positioner &gt; a &gt; i,
#stacks_in_306 &gt; .positioner_wrapper &gt; .positioner &gt; span &gt; i {
	line-height: 32px;
}


/* Option for removing base margin */

	#stacks_in_306 &gt; .positioner_wrapper {
		margin-bottom: 0;
	}

#stacks_in_306 {
	background-color: rgba(252, 255, 255, 1.00);
}
#stacks_in_267&gt;.s3_row {
	margin: 0 -0px;
}

#stacks_in_267&gt;.s3_row&gt;.s3_column {
	padding: 0 0px;
}








  


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






}



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




	#stacks_in_267&gt;.s3_row  {
		margin: -0px -0px;
	}
	#stacks_in_267&gt;.s3_row&gt;.s3_column {
		padding: 0px 0px;
		width:50%;
	}



}




  
/* StickyThing by RapidWeaver Central  */

#stickyThingstacks_in_723 {
	overflow: hidden;
	display: block;
	position: relative;
}

#stacks_in_723 .stickything {
	height: auto;
	width: auto;
	border: 0px solid #3E3E3E;
	margin: 25px;
	position: relative;
	 
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
			transform: rotate(0deg);
}

#stacks_in_723 .stickything:before {
	content: "";
	height: 15px;
	width: 45px;
	background: rgba(255, 255, 255, 0.4);
	position: absolute;
	top: -5px;
	left: 50px;
	z-index: 1;
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
	   -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
			box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
	-webkit-transform: rotate(10deg);
	   -moz-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
			transform: rotate(10deg);
}

/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_359 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_359  a:link,
#cardlinkstacks_in_359  a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_359 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_359 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_359 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}

/* StickyThing by RapidWeaver Central  */

#stickyThingstacks_in_725 {
	overflow: hidden;
	display: block;
	position: relative;
}

#stacks_in_725 .stickything {
	height: auto;
	width: auto;
	border: 0px solid #ECECEC;
	margin: 25px;
	position: relative;
	 
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
			transform: rotate(0deg);
}

#stacks_in_725 .stickything:before {
	content: "";
	height: 14px;
	width: 45px;
	background: rgba(255, 255, 255, 0.4);
	position: absolute;
	top: -1px;
	left: 42px;
	z-index: 1;
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
	   -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
			box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
	-webkit-transform: rotate(-3deg);
	   -moz-transform: rotate(-3deg);
		-ms-transform: rotate(-3deg);
			transform: rotate(-3deg);
}

/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_361 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_361  a:link,
#cardlinkstacks_in_361  a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_361 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_361 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_361 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}

/* StickyThing by RapidWeaver Central  */

#stickyThingstacks_in_727 {
	overflow: hidden;
	display: block;
	position: relative;
}

#stacks_in_727 .stickything {
	height: auto;
	width: auto;
	border: 0px solid #ECECEC;
	margin: 25px;
	position: relative;
	 
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
			transform: rotate(0deg);
}

#stacks_in_727 .stickything:before {
	content: "";
	height: 14px;
	width: 54px;
	background: rgba(255, 255, 255, 0.4);
	position: absolute;
	top: -1px;
	left: 39px;
	z-index: 1;
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
	   -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
			box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
	-webkit-transform: rotate(3deg);
	   -moz-transform: rotate(3deg);
		-ms-transform: rotate(3deg);
			transform: rotate(3deg);
}

/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_363 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_363  a:link,
#cardlinkstacks_in_363  a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_363 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_363 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_363 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}

/* StickyThing by RapidWeaver Central  */

#stickyThingstacks_in_733 {
	overflow: hidden;
	display: block;
	position: relative;
}

#stacks_in_733 .stickything {
	height: auto;
	width: auto;
	border: 0px solid #ECECEC;
	margin: 25px;
	position: relative;
	 
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
			transform: rotate(0deg);
}

#stacks_in_733 .stickything:before {
	content: "";
	height: 14px;
	width: 54px;
	background: rgba(255, 255, 255, 0.4);
	position: absolute;
	top: -1px;
	left: 39px;
	z-index: 1;
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
	   -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
			box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
	-webkit-transform: rotate(-6deg);
	   -moz-transform: rotate(-6deg);
		-ms-transform: rotate(-6deg);
			transform: rotate(-6deg);
}

/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_365 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_365  a:link,
#cardlinkstacks_in_365  a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200;	
}


#stacks_in_365 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_365 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_365 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}

.svg-metamorph .svgm-content {
  position: relative;
  z-index: 1;
}
.svg-metamorph &gt; .svgm-wrap {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
}
/**/
#stacks_in_1699 {
  
  background: rgba(231, 162, 139, 1.00);
  background-image: -moz-radial-gradient(top, ellipse cover, rgba(231, 162, 139, 1.00)0%, rgba(46, 0, 223, 1.00) 100%);
  background-image: -webkit-gradient(radial, top center, 0px, top center, 0%, color-stop(0%,rgba(231, 162, 139, 1.00)), color-stop(100%,rgba(46, 0, 223, 1.00)));
  background-image: -webkit-radial-gradient(top, ellipse cover, rgba(231, 162, 139, 1.00)0%,rgba(46, 0, 223, 1.00) 100%);
  background-image: -o-radial-gradient(top, ellipse cover, rgba(231, 162, 139, 1.00)0%,rgba(46, 0, 223, 1.00) 100%);
  background-image: -ms-radial-gradient(top, ellipse cover, rgba(231, 162, 139, 1.00)0%,rgba(46, 0, 223, 1.00) 100%);
  background-image: radial-gradient(ellipse at top, rgba(231, 162, 139, 1.00)0%,rgba(46, 0, 223, 1.00) 100%);
}
/**/
.svg-metamorph.svgm_stacks_in_1699 &gt; .svgm-wrap {
  overflow: visible;
  height: 90px;
  left:50%;
  
  -webkit-transform: translateX(-50%)  ;
  transform: translateX(-50%)  ;
  
}
.svg-metamorph.svgm_stacks_in_1699 &gt; .svgm-wrap &gt; svg {
  fill: #FFFFFF;
  stroke: #FFFFFF;
  width: 100%;
  height: 90px;
  overflow: visible;
  
}
.svg-metamorph.svgm_stacks_in_1699 {
  padding-bottom: 90px;
  
}
@media all and (min-width: 1920px) {
  .svg-metamorph.svgm_stacks_in_1699 {
    padding-bottom: 135.000000px;
    
  }
  .svg-metamorph.svgm_stacks_in_1699 &gt; .svgm-wrap,
  .svg-metamorph.svgm_stacks_in_1699 &gt; .svgm-wrap &gt; svg {
    height: 135.000000px;
  }
}
@media all and (max-width: 767px) {
  .svg-metamorph.svgm_stacks_in_1699 {
    padding-bottom: 45.000000px;
    
  }
  .svg-metamorph.svgm_stacks_in_1699 &gt; .svgm-wrap,
  .svg-metamorph.svgm_stacks_in_1699 &gt; .svgm-wrap &gt; svg {
    height: 45.000000px;
  }
  .svg-metamorph.svgm_stacks_in_1699 &gt; .svgm-wrap &gt; svg {
    width: 960px;
  }
}

/* */
#stacks_in_1699 {
	background-color: rgba(104, 0, 204, 1.00);
}
.svg-metamorph .svgm-content {
  position: relative;
  z-index: 1;
}
.svg-metamorph &gt; .svgm-wrap {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
}
/**/
.svg-metamorph.svgm_stacks_in_1701 &gt; .svgm-wrap {
  overflow: visible;
  height: 90px;
  left:50%;
  
  -webkit-transform: translateX(-50%) rotateX(180deg) rotateY(180deg);
  transform: translateX(-50%) rotateX(180deg) rotateY(180deg);
  
  bottom: auto; top: 0;
  
}
.svg-metamorph.svgm_stacks_in_1701 &gt; .svgm-wrap &gt; svg {
  fill: #FFFFFF;
  stroke: #FFFFFF;
  width: 100%;
  height: 90px;
  overflow: visible;
  
}
.svg-metamorph.svgm_stacks_in_1701 {
  padding-bottom: 90px;
  padding-bottom: 0px;padding-top: 90px;
}
@media all and (min-width: 1920px) {
  .svg-metamorph.svgm_stacks_in_1701 {
    padding-bottom: 135.000000px;
    padding-bottom: 0px;padding-top: 135.000000px;
  }
  .svg-metamorph.svgm_stacks_in_1701 &gt; .svgm-wrap,
  .svg-metamorph.svgm_stacks_in_1701 &gt; .svgm-wrap &gt; svg {
    height: 135.000000px;
  }
}
@media all and (max-width: 767px) {
  .svg-metamorph.svgm_stacks_in_1701 {
    padding-bottom: 45.000000px;
    padding-bottom: 0px;padding-top: 45.000000px;
  }
  .svg-metamorph.svgm_stacks_in_1701 &gt; .svgm-wrap,
  .svg-metamorph.svgm_stacks_in_1701 &gt; .svgm-wrap &gt; svg {
    height: 45.000000px;
  }
  .svg-metamorph.svgm_stacks_in_1701 &gt; .svgm-wrap &gt; svg {
    width: 960px;
  }
}

/* */
#stacks_in_1701 {
	padding: 60px 0px 60px 0px;
}
  #stacks_in_788 h1,#stacks_in_788 h2,#stacks_in_788 h3,#stacks_in_788 h4,#stacks_in_788 h5,#stacks_in_788 h6,#stacks_in_788 p{font-family:Righteous,Sans-Serif;font-weight:400;font-style:normal}    #stacks_in_788 h1,#stacks_in_788 h2,#stacks_in_788 h3,#stacks_in_788 h4,#stacks_in_788 h5,#stacks_in_788 h6,#stacks_in_788 p,#stacks_in_788 div,#stacks_in_788 ul,#stacks_in_788 ol,#stacks_in_788 dl,#stacks_in_788 a{word-wrap:break-word}#stacks_in_788 .text-center{text-align:center}#stacks_in_788 .text-right{text-align:right} #stacks_in_788 .mez,#stacks_in_788 p,#stacks_in_788 div,#stacks_in_788 h1,#stacks_in_788 h2,#stacks_in_788 h3,#stacks_in_788 h4,#stacks_in_788 h5,#stacks_in_788 h6{margin:0!important}  #stacks_in_788 .typer-text,#stacks_in_788 div{font-size:1.00rem!important}#stacks_in_788 .ani-text{color:rgba(31, 10, 253, 1.00)}#stacks_in_788 .lead-in{color:rgba(133, 0, 255, 1.00)}#stacks_in_788 .following{color:rgba(33, 179, 7, 1.00)}@media screen and (min-width:40.063em) and (max-width:64em){#stacks_in_788 .typer-text,#stacks_in_788 div{font-size:1.00rem!important}}@media screen and (min-width:64.063em) and (max-width:90em){#stacks_in_788 .typer-text,#stacks_in_788 div{font-size:2.00rem!important}}@media screen and (min-width:90.063em){#stacks_in_788 .typer-text,#stacks_in_788 div{font-size:2.00rem!important}} 

#stacks_out_788 {
	width: 93%;
}
#shadyStackstacks_in_772 {
	-webkit-box-shadow:  -4px 4px 12px 3px rgba(153, 153, 153, 1.00);
	box-shadow:  -4px 4px 12px 3px rgba(153, 153, 153, 1.00);
	border-radius: 0px;
}




#shadyStackstacks_in_772 {
	margin: 15px;
}


@media print {
	#shadyStackstacks_in_772 {
		margin: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0px;
	}
}
#stacks_in_772 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

#stacks_out_772 {
	width: 92%;
}
/*  */
#exp-grid-stacks_in_738 {
  margin: 0 auto;
  max-width: 800px; }
  #exp-grid-stacks_in_738 .exp-grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    box-sizing: border-box;
    padding: 1px; }
    #exp-grid-stacks_in_738 .exp-grid .exp-grid-item {
      display: -ms-flexbox;
      display: flex;
      padding: 0 1px;
      -ms-flex-direction: column;
          flex-direction: column;
      box-sizing: border-box;
      transition: opacity 0.3s; }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20 {
        width: calc(100% / 20); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+18) .exp-grid-item-content {
          margin-left: calc((17 * -100%) - (1px * (2 * (18 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+19) .exp-grid-item-content {
          margin-left: calc((18 * -100%) - (1px * (2 * (19 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20:nth-child(20n+20) .exp-grid-item-content {
          margin-left: calc((19 * -100%) - (1px * (2 * (20 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-20 .exp-grid-item-content {
          width: calc((100% * 20) + (1px  * (2 * (20 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19 {
        width: calc(100% / 19); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+18) .exp-grid-item-content {
          margin-left: calc((17 * -100%) - (1px * (2 * (18 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19:nth-child(19n+19) .exp-grid-item-content {
          margin-left: calc((18 * -100%) - (1px * (2 * (19 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-19 .exp-grid-item-content {
          width: calc((100% * 19) + (1px  * (2 * (19 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18 {
        width: calc(100% / 18); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18:nth-child(18n+18) .exp-grid-item-content {
          margin-left: calc((17 * -100%) - (1px * (2 * (18 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-18 .exp-grid-item-content {
          width: calc((100% * 18) + (1px  * (2 * (18 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17 {
        width: calc(100% / 17); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17:nth-child(17n+17) .exp-grid-item-content {
          margin-left: calc((16 * -100%) - (1px * (2 * (17 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-17 .exp-grid-item-content {
          width: calc((100% * 17) + (1px  * (2 * (17 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16 {
        width: calc(100% / 16); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16:nth-child(16n+16) .exp-grid-item-content {
          margin-left: calc((15 * -100%) - (1px * (2 * (16 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-16 .exp-grid-item-content {
          width: calc((100% * 16) + (1px  * (2 * (16 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15 {
        width: calc(100% / 15); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15:nth-child(15n+15) .exp-grid-item-content {
          margin-left: calc((14 * -100%) - (1px * (2 * (15 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-15 .exp-grid-item-content {
          width: calc((100% * 15) + (1px  * (2 * (15 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14 {
        width: calc(100% / 14); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14:nth-child(14n+14) .exp-grid-item-content {
          margin-left: calc((13 * -100%) - (1px * (2 * (14 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-14 .exp-grid-item-content {
          width: calc((100% * 14) + (1px  * (2 * (14 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13 {
        width: calc(100% / 13); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13:nth-child(13n+13) .exp-grid-item-content {
          margin-left: calc((12 * -100%) - (1px * (2 * (13 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-13 .exp-grid-item-content {
          width: calc((100% * 13) + (1px  * (2 * (13 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12 {
        width: calc(100% / 12); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12:nth-child(12n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12:nth-child(12n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12:nth-child(12n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12:nth-child(12n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12:nth-child(12n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12:nth-child(12n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12:nth-child(12n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12:nth-child(12n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12:nth-child(12n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12:nth-child(12n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12:nth-child(12n+12) .exp-grid-item-content {
          margin-left: calc((11 * -100%) - (1px * (2 * (12 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-12 .exp-grid-item-content {
          width: calc((100% * 12) + (1px  * (2 * (12 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11 {
        width: calc(100% / 11); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11:nth-child(11n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11:nth-child(11n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11:nth-child(11n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11:nth-child(11n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11:nth-child(11n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11:nth-child(11n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11:nth-child(11n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11:nth-child(11n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11:nth-child(11n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11:nth-child(11n+11) .exp-grid-item-content {
          margin-left: calc((10 * -100%) - (1px * (2 * (11 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-11 .exp-grid-item-content {
          width: calc((100% * 11) + (1px  * (2 * (11 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-10 {
        width: calc(100% / 10); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-10:nth-child(10n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-10:nth-child(10n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-10:nth-child(10n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-10:nth-child(10n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-10:nth-child(10n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-10:nth-child(10n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-10:nth-child(10n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-10:nth-child(10n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-10:nth-child(10n+10) .exp-grid-item-content {
          margin-left: calc((9 * -100%) - (1px * (2 * (10 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-10 .exp-grid-item-content {
          width: calc((100% * 10) + (1px  * (2 * (10 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-9 {
        width: calc(100% / 9); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-9:nth-child(9n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-9:nth-child(9n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-9:nth-child(9n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-9:nth-child(9n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-9:nth-child(9n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-9:nth-child(9n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-9:nth-child(9n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-9:nth-child(9n+9) .exp-grid-item-content {
          margin-left: calc((8 * -100%) - (1px * (2 * (9 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-9 .exp-grid-item-content {
          width: calc((100% * 9) + (1px  * (2 * (9 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-8 {
        width: calc(100% / 8); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-8:nth-child(8n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-8:nth-child(8n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-8:nth-child(8n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-8:nth-child(8n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-8:nth-child(8n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-8:nth-child(8n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-8:nth-child(8n+8) .exp-grid-item-content {
          margin-left: calc((7 * -100%) - (1px * (2 * (8 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-8 .exp-grid-item-content {
          width: calc((100% * 8) + (1px  * (2 * (8 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-7 {
        width: calc(100% / 7); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-7:nth-child(7n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-7:nth-child(7n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-7:nth-child(7n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-7:nth-child(7n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-7:nth-child(7n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-7:nth-child(7n+7) .exp-grid-item-content {
          margin-left: calc((6 * -100%) - (1px * (2 * (7 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-7 .exp-grid-item-content {
          width: calc((100% * 7) + (1px  * (2 * (7 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-6 {
        width: calc(100% / 6); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-6:nth-child(6n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-6:nth-child(6n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-6:nth-child(6n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-6:nth-child(6n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-6:nth-child(6n+6) .exp-grid-item-content {
          margin-left: calc((5 * -100%) - (1px * (2 * (6 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-6 .exp-grid-item-content {
          width: calc((100% * 6) + (1px  * (2 * (6 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-5 {
        width: calc(100% / 5); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-5:nth-child(5n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-5:nth-child(5n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-5:nth-child(5n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-5:nth-child(5n+5) .exp-grid-item-content {
          margin-left: calc((4 * -100%) - (1px * (2 * (5 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-5 .exp-grid-item-content {
          width: calc((100% * 5) + (1px  * (2 * (5 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-4 {
        width: calc(100% / 4); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-4:nth-child(4n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-4:nth-child(4n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-4:nth-child(4n+4) .exp-grid-item-content {
          margin-left: calc((3 * -100%) - (1px * (2 * (4 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-4 .exp-grid-item-content {
          width: calc((100% * 4) + (1px  * (2 * (4 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-3 {
        width: calc(100% / 3); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-3:nth-child(3n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-3:nth-child(3n+3) .exp-grid-item-content {
          margin-left: calc((2 * -100%) - (1px * (2 * (3 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-3 .exp-grid-item-content {
          width: calc((100% * 3) + (1px  * (2 * (3 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-2 {
        width: calc(100% / 2); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-2:nth-child(2n+2) .exp-grid-item-content {
          margin-left: calc((1 * -100%) - (1px * (2 * (2 - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-2 .exp-grid-item-content {
          width: calc((100% * 2) + (1px  * (2 * (2 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-1 {
        width: calc(100% / 1); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item.cols-1 .exp-grid-item-content {
          width: calc((100% * 1) + (1px  * (2 * (1 - 1)))); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-header {
        /*  */
        font-family: "Maven Pro";
        /*  */
        /*  */
        background: rgba(49, 44, 50, 1.00);
        /*  */
        /*  */
        /*  */
        margin: 1px 0;
        padding: 15px 15px;
        border-radius: 2px;
        min-height: 150px;
        opacity: 0;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
        overflow: hidden;
        position: relative;
        -ms-flex-direction: column;
            flex-direction: column;
        box-sizing: border-box;
        transition: all 0.3s ease;
        animation: item-in 0.3s 0.3s;
        animation-fill-mode: forwards; }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-header::before {
          /*  */ }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-header:hover {
          z-index: 3;
          transform: translateY(0px) scale(1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-header::before {
          content: '';
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 1;
          display: none;
          position: absolute;
          background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-header .header-icon {
          z-index: 2;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: center;
              align-items: center;
          -ms-flex-pack: center;
              justify-content: center;
          color: rgba(255, 255, 255, 1.00);
          width: 50px;
          height: 50px;
          font-size: 45px;
          background: rgba(255, 255, 255, 0.00);
          border-radius: 25px;
          margin-bottom: 10px; }
          #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-header .header-icon i {
            line-height: 0;
            font-size: inherit; }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-header .header-title {
          z-index: 2;
          color: rgba(255, 255, 255, 1.00);
          font-size: 18px;
          font-weight: normal;
          line-height: calc(18px * 1.4); }
      #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-content {
        /*  */
        font-family: "Maven Pro";
        /*  */
        background: rgba(70, 66, 71, 1.00);
        height: 0;
        box-sizing: border-box;
        overflow: hidden !important;
        transition: all 0.3s, width 0s;
        border-radius: 2px;
        width: calc((100% * 1px) + (1px  * (2 * (1px - 1)))); }
        #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner {
          margin: 0 auto;
          box-sizing: border-box;
          padding: 15px 15px;
          max-width: 2000px;
          color: rgba(255, 255, 255, 0.60); }
          #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h1, #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h2, #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h3, #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h4, #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h5, #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner h6 {
            color: rgba(255, 255, 255, 1.00); }
          #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner a, #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-content .content-inner a:visited {
            color: rgba(255, 255, 255, 1.00); }

#exp-grid-stacks_in_738.active-item .exp-grid .exp-grid-item {
  opacity: 0.1;
  pointer-events: none; }
  #exp-grid-stacks_in_738.active-item .exp-grid .exp-grid-item.active {
    opacity: 1;
    pointer-events: auto; }
    #exp-grid-stacks_in_738.active-item .exp-grid .exp-grid-item.active .exp-grid-item-header:hover {
      transform: none; }
    #exp-grid-stacks_in_738.active-item .exp-grid .exp-grid-item.active .exp-grid-item-content {
      margin-top: 1px;
      margin-bottom: 1px; }

#exp-grid-stacks_in_738.items-v-top .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-stacks_in_738.items-v-center .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-stacks_in_738.items-v-bottom .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-stacks_in_738.items-h-left .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-stacks_in_738.items-h-center .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-stacks_in_738.items-h-right .exp-grid .exp-grid-item .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }

#exp-grid-stacks_in_738.hide-icons .exp-grid .exp-grid-item .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-stacks_in_738.hide-titles .exp-grid .exp-grid-item .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-stacks_in_738.hide-titles .exp-grid .exp-grid-item .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-stacks_in_738.items-inner-shadow .exp-grid .exp-grid-item .exp-grid-item-header {
  box-shadow: inset 0 -50px 30px rgba(0, 0, 0, 0.6); }

#exp-grid-stacks_in_738.force-overflow .exp-grid .exp-grid-item .exp-grid-item-content .stacks_in, #exp-grid-stacks_in_738.force-overflow .exp-grid .exp-grid-item .exp-grid-item-content .stacks_out {
  /*  */
  overflow: visible !important;
  /*  */ }

@media (min-width: 401px) and (max-width: 700px) {
  #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-header {
    min-height: 150px; } }

@media (min-width: 701px) {
  #exp-grid-stacks_in_738 .exp-grid .exp-grid-item .exp-grid-item-header {
    min-height: 200px; } }

@keyframes item-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes item-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0.1; } }

#stacks_in_738 {
	background-color: rgba(135, 114, 165, 1.00);
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}
/*  */
#exp-grid-item-stacks_in_740.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_740.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_740.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_740.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_740.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(254, 251, 255, 1.00); }

#exp-grid-item-stacks_in_740.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(254, 255, 246, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_740.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(53, 72, 54, 1.00); }
  #exp-grid-item-stacks_in_740.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_740.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_740.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_740.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_740.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_740.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_740.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_740.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_740.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  /*  */
  /*  */
  background: url(../files/main_bg_image_choice-740.png) no-repeat center center;
  background-size: cover;
  overflow-y: hidden;
  /*  */ }
  #exp-grid-item-stacks_in_740.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */
    display: block !important;
    /*  */ }
  #exp-grid-item-stacks_in_740.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(116, 183, 114, 0.82), rgba(23, 81, 20, 0.74)) !important; }

#exp-grid-item-stacks_in_740.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_740.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_740.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_740.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_740.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_740.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_740.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }


@media screen and (max-width: 5000px) {
	#quickColumnsstacks_in_770 {
		-moz-column-count: 3;
		-moz-column-gap: 50px;
		-webkit-column-count: 3;
		-webkit-column-gap: 50px;
		column-count: 3;
		column-gap: 50px;
	}
}

@media screen and (max-width: 768px) {
	#quickColumnsstacks_in_770 {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
		column-gap: 30px;
	}
}

@media screen and (max-width: 568px) {
	#quickColumnsstacks_in_770 {
		-moz-column-count: 1;
		-moz-column-gap: 25px;
		-webkit-column-count: 1;
		-webkit-column-gap: 25px;
		column-count: 1;
		column-gap: 25px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_770 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_770 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media print {
	#quickColumnsstacks_in_770 {
		-moz-column-count: 0;
		-moz-column-gap: 0;
		-webkit-column-count: 0;
		-webkit-column-gap: 0;
		column-count: 0;
		column-gap: 0;
	}
}



/*  */
#exp-grid-item-stacks_in_751.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_751.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_751.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_751.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_751.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(254, 194, 202, 1.00); }

#exp-grid-item-stacks_in_751.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(254, 222, 227, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_751.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(125, 75, 99, 1.00); }
  #exp-grid-item-stacks_in_751.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_751.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_751.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_751.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_751.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_751.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_751.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_751.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_751.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  background: rgba(140, 110, 134, 1.00);
  /*  */
  /*  */
  /*  */ }
  #exp-grid-item-stacks_in_751.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */ }
  #exp-grid-item-stacks_in_751.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)) !important; }

#exp-grid-item-stacks_in_751.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_751.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_751.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_751.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_751.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_751.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_751.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }


@media screen and (max-width: 5000px) {
	#quickColumnsstacks_in_778 {
		-moz-column-count: 3;
		-moz-column-gap: 50px;
		-webkit-column-count: 3;
		-webkit-column-gap: 50px;
		column-count: 3;
		column-gap: 50px;
	}
}

@media screen and (max-width: 768px) {
	#quickColumnsstacks_in_778 {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
		column-gap: 30px;
	}
}

@media screen and (max-width: 568px) {
	#quickColumnsstacks_in_778 {
		-moz-column-count: 1;
		-moz-column-gap: 25px;
		-webkit-column-count: 1;
		-webkit-column-gap: 25px;
		column-count: 1;
		column-gap: 25px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_778 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_778 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media print {
	#quickColumnsstacks_in_778 {
		-moz-column-count: 0;
		-moz-column-gap: 0;
		-webkit-column-count: 0;
		-webkit-column-gap: 0;
		column-count: 0;
		column-gap: 0;
	}
}



/*  */
#exp-grid-item-stacks_in_754.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_754.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_754.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_754.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_754.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(178, 255, 173, 1.00); }

#exp-grid-item-stacks_in_754.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(159, 255, 190, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_754.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(32, 72, 48, 1.00); }
  #exp-grid-item-stacks_in_754.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_754.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_754.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_754.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_754.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_754.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_754.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_754.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_754.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  /*  */
  background: #6B916F;
  background: linear-gradient(to bottom, #6B916F, #141E30);
  /*  */
  /*  */ }
  #exp-grid-item-stacks_in_754.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */ }
  #exp-grid-item-stacks_in_754.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)) !important; }

#exp-grid-item-stacks_in_754.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_754.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_754.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_754.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_754.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_754.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_754.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }


@media screen and (max-width: 5000px) {
	#quickColumnsstacks_in_780 {
		-moz-column-count: 3;
		-moz-column-gap: 50px;
		-webkit-column-count: 3;
		-webkit-column-gap: 50px;
		column-count: 3;
		column-gap: 50px;
	}
}

@media screen and (max-width: 768px) {
	#quickColumnsstacks_in_780 {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
		column-gap: 30px;
	}
}

@media screen and (max-width: 568px) {
	#quickColumnsstacks_in_780 {
		-moz-column-count: 1;
		-moz-column-gap: 25px;
		-webkit-column-count: 1;
		-webkit-column-gap: 25px;
		column-count: 1;
		column-gap: 25px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_780 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_780 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media print {
	#quickColumnsstacks_in_780 {
		-moz-column-count: 0;
		-moz-column-gap: 0;
		-webkit-column-count: 0;
		-webkit-column-gap: 0;
		column-count: 0;
		column-gap: 0;
	}
}



/*  */
#exp-grid-item-stacks_in_757.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_757.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_757.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_757.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_757.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(239, 255, 170, 1.00); }

#exp-grid-item-stacks_in_757.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(252, 255, 121, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_757.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(71, 70, 26, 1.00); }
  #exp-grid-item-stacks_in_757.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_757.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_757.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_757.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_757.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_757.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_757.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_757.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_757.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  background: rgba(155, 154, 109, 1.00);
  /*  */
  /*  */
  /*  */ }
  #exp-grid-item-stacks_in_757.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */ }
  #exp-grid-item-stacks_in_757.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)) !important; }

#exp-grid-item-stacks_in_757.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_757.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_757.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_757.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_757.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_757.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_757.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }


@media screen and (max-width: 5000px) {
	#quickColumnsstacks_in_782 {
		-moz-column-count: 3;
		-moz-column-gap: 50px;
		-webkit-column-count: 3;
		-webkit-column-gap: 50px;
		column-count: 3;
		column-gap: 50px;
	}
}

@media screen and (max-width: 768px) {
	#quickColumnsstacks_in_782 {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
		column-gap: 30px;
	}
}

@media screen and (max-width: 568px) {
	#quickColumnsstacks_in_782 {
		-moz-column-count: 1;
		-moz-column-gap: 25px;
		-webkit-column-count: 1;
		-webkit-column-gap: 25px;
		column-count: 1;
		column-gap: 25px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_782 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_782 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media print {
	#quickColumnsstacks_in_782 {
		-moz-column-count: 0;
		-moz-column-gap: 0;
		-webkit-column-count: 0;
		-webkit-column-gap: 0;
		column-count: 0;
		column-gap: 0;
	}
}



/*  */
#exp-grid-item-stacks_in_762.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_762.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_762.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_762.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_762.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(156, 255, 237, 1.00); }

#exp-grid-item-stacks_in_762.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(155, 255, 219, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_762.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(41, 66, 71, 1.00); }
  #exp-grid-item-stacks_in_762.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_762.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_762.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_762.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_762.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_762.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_762.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_762.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_762.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  /*  */
  background: #2A6E71;
  background: linear-gradient(to bottom, #2A6E71, #141E30);
  /*  */
  /*  */ }
  #exp-grid-item-stacks_in_762.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */ }
  #exp-grid-item-stacks_in_762.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.00), rgba(255, 255, 255, 0.00)) !important; }

#exp-grid-item-stacks_in_762.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_762.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_762.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_762.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_762.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_762.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_762.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }


@media screen and (max-width: 5000px) {
	#quickColumnsstacks_in_784 {
		-moz-column-count: 3;
		-moz-column-gap: 50px;
		-webkit-column-count: 3;
		-webkit-column-gap: 50px;
		column-count: 3;
		column-gap: 50px;
	}
}

@media screen and (max-width: 768px) {
	#quickColumnsstacks_in_784 {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
		column-gap: 30px;
	}
}

@media screen and (max-width: 568px) {
	#quickColumnsstacks_in_784 {
		-moz-column-count: 1;
		-moz-column-gap: 25px;
		-webkit-column-count: 1;
		-webkit-column-gap: 25px;
		column-count: 1;
		column-gap: 25px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_784 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_784 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media print {
	#quickColumnsstacks_in_784 {
		-moz-column-count: 0;
		-moz-column-gap: 0;
		-webkit-column-count: 0;
		-webkit-column-gap: 0;
		column-count: 0;
		column-gap: 0;
	}
}



/*  */
#exp-grid-item-stacks_in_765.exp-grid-item.inner-shadow .exp-grid-item-header::after {
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 15%, transparent); }

#exp-grid-item-stacks_in_765.exp-grid-item.hide-icon .exp-grid-item-header .header-icon {
  display: none; }

#exp-grid-item-stacks_in_765.exp-grid-item.hide-title .exp-grid-item-header .header-title {
  display: none; }

#exp-grid-item-stacks_in_765.exp-grid-item.hide-title .exp-grid-item-header .header-icon {
  margin-bottom: 0; }

#exp-grid-item-stacks_in_765.exp-grid-item.custom-title .exp-grid-item-header .header-title {
  color: rgba(249, 254, 255, 1.00); }

#exp-grid-item-stacks_in_765.exp-grid-item.custom-icon .exp-grid-item-header .header-icon {
  color: rgba(150, 255, 142, 1.00);
  background: rgba(255, 255, 255, 0.00); }

#exp-grid-item-stacks_in_765.exp-grid-item.custom-content .exp-grid-item-content {
  color: rgba(255, 255, 255, 0.60);
  background: rgba(70, 43, 51, 1.00); }
  #exp-grid-item-stacks_in_765.exp-grid-item.custom-content .exp-grid-item-content h1, #exp-grid-item-stacks_in_765.exp-grid-item.custom-content .exp-grid-item-content h2, #exp-grid-item-stacks_in_765.exp-grid-item.custom-content .exp-grid-item-content h3, #exp-grid-item-stacks_in_765.exp-grid-item.custom-content .exp-grid-item-content h4, #exp-grid-item-stacks_in_765.exp-grid-item.custom-content .exp-grid-item-content h5, #exp-grid-item-stacks_in_765.exp-grid-item.custom-content .exp-grid-item-content h6 {
    color: rgba(255, 255, 255, 1.00); }
  #exp-grid-item-stacks_in_765.exp-grid-item.custom-content .exp-grid-item-content a, #exp-grid-item-stacks_in_765.exp-grid-item.custom-content .exp-grid-item-content a:visited {
    color: rgba(255, 255, 255, 1.00); }

#exp-grid-item-stacks_in_765.exp-grid-item.custom-bg .exp-grid-item-header {
  /*  */
  /*  */
  /*  */
  background: url(../files/main_bg_image_choice-765.jpg) no-repeat center center;
  background-size: cover;
  overflow-y: hidden;
  /*  */ }
  #exp-grid-item-stacks_in_765.exp-grid-item.custom-bg .exp-grid-item-header::before {
    /*  */
    display: block !important;
    /*  */ }
  #exp-grid-item-stacks_in_765.exp-grid-item.custom-bg .exp-grid-item-header::before {
    display: none !important;
    background: linear-gradient(to bottom right, rgba(84, 135, 124, 1.00), rgba(162, 183, 175, 0.66)) !important; }

#exp-grid-item-stacks_in_765.exp-grid-item.custom-bg.custom-bg-img .exp-grid-item-header::before {
  display: block !important; }

#exp-grid-item-stacks_in_765.exp-grid-item.custom-alignment.content-v-top .exp-grid-item-header {
  -ms-flex-pack: start;
      justify-content: flex-start; }

#exp-grid-item-stacks_in_765.exp-grid-item.custom-alignment.content-v-center .exp-grid-item-header {
  -ms-flex-pack: center;
      justify-content: center; }

#exp-grid-item-stacks_in_765.exp-grid-item.custom-alignment.content-v-bottom .exp-grid-item-header {
  -ms-flex-pack: end;
      justify-content: flex-end; }

#exp-grid-item-stacks_in_765.exp-grid-item.custom-alignment.content-h-left .exp-grid-item-header {
  -ms-flex-align: start;
      align-items: flex-start;
  text-align: left; }

#exp-grid-item-stacks_in_765.exp-grid-item.custom-alignment.content-h-center .exp-grid-item-header {
  -ms-flex-align: center;
      align-items: center;
  text-align: center; }

#exp-grid-item-stacks_in_765.exp-grid-item.custom-alignment.content-h-right .exp-grid-item-header {
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: right; }


@media screen and (max-width: 5000px) {
	#quickColumnsstacks_in_786 {
		-moz-column-count: 3;
		-moz-column-gap: 50px;
		-webkit-column-count: 3;
		-webkit-column-gap: 50px;
		column-count: 3;
		column-gap: 50px;
	}
}

@media screen and (max-width: 768px) {
	#quickColumnsstacks_in_786 {
		-moz-column-count: 2;
		-moz-column-gap: 30px;
		-webkit-column-count: 2;
		-webkit-column-gap: 30px;
		column-count: 2;
		column-gap: 30px;
	}
}

@media screen and (max-width: 568px) {
	#quickColumnsstacks_in_786 {
		-moz-column-count: 1;
		-moz-column-gap: 25px;
		-webkit-column-count: 1;
		-webkit-column-gap: 25px;
		column-count: 1;
		column-gap: 25px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_786 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media screen and (max-width: 0px) {
	#quickColumnsstacks_in_786 {
		-moz-column-count: 0;
		-moz-column-gap: 0px;
		-webkit-column-count: 0;
		-webkit-column-gap: 0px;
		column-count: 0;
		column-gap: 0px;
	}
}

@media print {
	#quickColumnsstacks_in_786 {
		-moz-column-count: 0;
		-moz-column-gap: 0;
		-webkit-column-count: 0;
		-webkit-column-gap: 0;
		column-count: 0;
		column-gap: 0;
	}
}



/*  */
#floating-youtube-video-stacks_in_737 {
  /*  */
  opacity: 0;
  visibility: hidden;
  /*  */
  width: 500px;
  height: 295px;
  max-width: 100%;
  position: fixed;
  box-sizing: border-box;
  z-index: 1000000000000000000;
  padding: 10px;
  transition: all 0.3s ease; }
  #floating-youtube-video-stacks_in_737 .floating-video-frame {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }
  #floating-youtube-video-stacks_in_737.shrink {
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%); }
    #floating-youtube-video-stacks_in_737.shrink .floating-video-frame {
      opacity: 0; }
    #floating-youtube-video-stacks_in_737.shrink .floating-video-close-btn {
      width: 110px;
      height: 110px;
      transition: all 1s ease;
      -webkit-animation-iteration-count: 1;
              animation-iteration-count: 1;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
      -webkit-animation-duration: 0.5s;
              animation-duration: 0.5s;
      -webkit-animation-delay: 1s;
              animation-delay: 1s; }
      #floating-youtube-video-stacks_in_737.shrink .floating-video-close-btn::before, #floating-youtube-video-stacks_in_737.shrink .floating-video-close-btn::after {
        opacity: 0.2; }
      #floating-youtube-video-stacks_in_737.shrink .floating-video-close-btn:hover::before {
        width: calc(100% + 24px);
        height: calc(100% + 24px);
        -webkit-transform: translate(-12px, -12px);
                transform: translate(-12px, -12px); }
      #floating-youtube-video-stacks_in_737.shrink .floating-video-close-btn:hover::after {
        width: calc(100% + 48px);
        height: calc(100% + 48px);
        -webkit-transform: translate(-23px, -23px);
                transform: translate(-23px, -23px); }
      #floating-youtube-video-stacks_in_737.shrink .floating-video-close-btn i.icon-play {
        display: block;
        opacity: 0;
        position: absolute;
        -webkit-animation-name: play-icon-show;
                animation-name: play-icon-show;
        -webkit-animation-iteration-count: 1;
                animation-iteration-count: 1;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-duration: 0.5s;
                animation-duration: 0.5s;
        -webkit-animation-delay: 1s;
                animation-delay: 1s; }
      #floating-youtube-video-stacks_in_737.shrink .floating-video-close-btn i.icon-shrink {
        display: none; }
      #floating-youtube-video-stacks_in_737.shrink .floating-video-close-btn i.icon-play {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg); }
  #floating-youtube-video-stacks_in_737 .floating-video-close-btn {
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    color: rgba(255, 255, 255, 1.00);
    border-radius: 50%;
    cursor: pointer;
    background: rgba(237, 20, 61, 1.00);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    box-shadow: 0 0 10px rgba(rgba(237, 20, 61, 1.00), 0.9);
    transition-delay: 1s;
    transition: all 0.3s ease; }
    #floating-youtube-video-stacks_in_737 .floating-video-close-btn i.icon-play {
      display: none; }
    #floating-youtube-video-stacks_in_737 .floating-video-close-btn i.icon-shrink {
      display: block; }
    #floating-youtube-video-stacks_in_737 .floating-video-close-btn i {
      line-height: 1;
      font-size: 24px;
      transition: all 0.3s ease; }
    #floating-youtube-video-stacks_in_737 .floating-video-close-btn::before, #floating-youtube-video-stacks_in_737 .floating-video-close-btn::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      opacity: 0;
      border-radius: inherit;
      width: calc(100% + 12px);
      height: calc(100% + 12px);
      -webkit-transform: translate(-6px, -6px);
              transform: translate(-6px, -6px);
      background: rgba(237, 20, 61, 1.00);
      transition: all 0.5s ease-out; }
    #floating-youtube-video-stacks_in_737 .floating-video-close-btn::after {
      width: calc(100% + 24px);
      height: calc(100% + 24px);
      -webkit-transform: translate(-12px, -12px);
              transform: translate(-12px, -12px);
      transition-delay: 0.1s; }
    #floating-youtube-video-stacks_in_737 .floating-video-close-btn:hover::before, #floating-youtube-video-stacks_in_737 .floating-video-close-btn:hover::after {
      opacity: 0.2;
      transition-delay: 0.1s; }

#floating-youtube-video-stacks_in_737.video-bottom-right {
  right: 0;
  bottom: 0; }
  #floating-youtube-video-stacks_in_737.video-bottom-right.shrink {
    right: 0;
    bottom: 0;
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%); }
    #floating-youtube-video-stacks_in_737.video-bottom-right.shrink .floating-video-close-btn {
      -webkit-transform: translate(0%, 0%);
              transform: translate(0%, 0%);
      -webkit-animation-name: close-btn-shrink-bottom-left;
              animation-name: close-btn-shrink-bottom-left; }
      #floating-youtube-video-stacks_in_737.video-bottom-right.shrink .floating-video-close-btn i.icon-play {
        top: 23px;
        left: 23px; }
  #floating-youtube-video-stacks_in_737.video-bottom-right .floating-video-close-btn {
    top: 0;
    left: 0; }
    #floating-youtube-video-stacks_in_737.video-bottom-right .floating-video-close-btn i {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }

#floating-youtube-video-stacks_in_737.video-bottom-left {
  left: 0;
  bottom: 0; }
  #floating-youtube-video-stacks_in_737.video-bottom-left.shrink {
    left: 0;
    bottom: 0;
    -webkit-transform: translate(-100%, 100%);
            transform: translate(-100%, 100%); }
    #floating-youtube-video-stacks_in_737.video-bottom-left.shrink .floating-video-close-btn {
      -webkit-transform: translate(0%, 0%);
              transform: translate(0%, 0%);
      -webkit-animation-name: close-btn-shrink-bottom-right;
              animation-name: close-btn-shrink-bottom-right; }
      #floating-youtube-video-stacks_in_737.video-bottom-left.shrink .floating-video-close-btn i.icon-play {
        top: 23px;
        right: 23px; }
  #floating-youtube-video-stacks_in_737.video-bottom-left .floating-video-close-btn {
    top: 0;
    right: 0; }
    #floating-youtube-video-stacks_in_737.video-bottom-left .floating-video-close-btn i.icon-shrink {
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg); }

#floating-youtube-video-stacks_in_737.video-top-left {
  top: 0;
  left: 0; }
  #floating-youtube-video-stacks_in_737.video-top-left.shrink {
    top: 0;
    left: 0;
    -webkit-transform: translate(-100%, -100%);
            transform: translate(-100%, -100%); }
    #floating-youtube-video-stacks_in_737.video-top-left.shrink .floating-video-close-btn {
      -webkit-transform: translate(0%, 0%);
              transform: translate(0%, 0%);
      -webkit-animation-name: close-btn-shrink-top-left;
              animation-name: close-btn-shrink-top-left; }
      #floating-youtube-video-stacks_in_737.video-top-left.shrink .floating-video-close-btn i.icon-play {
        right: 23px;
        bottom: 23px; }
  #floating-youtube-video-stacks_in_737.video-top-left .floating-video-close-btn {
    bottom: 0;
    right: 0; }
    #floating-youtube-video-stacks_in_737.video-top-left .floating-video-close-btn i.icon-shrink {
      -webkit-transform: rotate(-135deg);
              transform: rotate(-135deg); }

#floating-youtube-video-stacks_in_737.video-top-right {
  top: 0;
  right: 0; }
  #floating-youtube-video-stacks_in_737.video-top-right.shrink {
    top: 0;
    right: 0;
    -webkit-transform: translate(100%, -100%);
            transform: translate(100%, -100%); }
    #floating-youtube-video-stacks_in_737.video-top-right.shrink .floating-video-close-btn {
      -webkit-transform: translate(0%, 0%);
              transform: translate(0%, 0%);
      -webkit-animation-name: close-btn-shrink-top-right;
              animation-name: close-btn-shrink-top-right; }
      #floating-youtube-video-stacks_in_737.video-top-right.shrink .floating-video-close-btn i.icon-play {
        left: 23px;
        bottom: 23px; }
  #floating-youtube-video-stacks_in_737.video-top-right .floating-video-close-btn {
    bottom: 0;
    left: 0; }
    #floating-youtube-video-stacks_in_737.video-top-right .floating-video-close-btn i.icon-shrink {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }

@media (max-width: 768px) {
  #floating-youtube-video-stacks_in_737 {
    width: 380px;
    height: 220px; } }

@media (max-width: 480px) {
  #floating-youtube-video-stacks_in_737 {
    width: 300px;
    height: 180px; } }

@-webkit-keyframes close-btn-shrink-top-left {
  0% {
    opacity: 0;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  100% {
    opacity: 1;
    -webkit-transform: translate(52%, 52%);
            transform: translate(52%, 52%); } }

@keyframes close-btn-shrink-top-left {
  0% {
    opacity: 0;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  100% {
    opacity: 1;
    -webkit-transform: translate(52%, 52%);
            transform: translate(52%, 52%); } }

@-webkit-keyframes close-btn-shrink-top-right {
  0% {
    opacity: 0;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  100% {
    opacity: 1;
    -webkit-transform: translate(-52%, 52%);
            transform: translate(-52%, 52%); } }

@keyframes close-btn-shrink-top-right {
  0% {
    opacity: 0;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  100% {
    opacity: 1;
    -webkit-transform: translate(-52%, 52%);
            transform: translate(-52%, 52%); } }

@-webkit-keyframes close-btn-shrink-bottom-left {
  0% {
    opacity: 0;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  100% {
    opacity: 1;
    -webkit-transform: translate(-52%, -52%);
            transform: translate(-52%, -52%); } }

@keyframes close-btn-shrink-bottom-left {
  0% {
    opacity: 0;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  100% {
    opacity: 1;
    -webkit-transform: translate(-52%, -52%);
            transform: translate(-52%, -52%); } }

@-webkit-keyframes close-btn-shrink-bottom-right {
  0% {
    opacity: 0;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  100% {
    opacity: 1;
    -webkit-transform: translate(52%, -52%);
            transform: translate(52%, -52%); } }

@keyframes close-btn-shrink-bottom-right {
  0% {
    opacity: 0;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%); }
  100% {
    opacity: 1;
    -webkit-transform: translate(52%, -52%);
            transform: translate(52%, -52%); } }

@-webkit-keyframes play-icon-show {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes play-icon-show {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@media (min-width: 480px) and (max-width: 768px) {
  /*  */
  /*  */ }

@media (min-width: 0px) and (max-width: 480px) {
  /*  */
  /*  */ }
    #stacks_in_1649&gt;.s-pro.no-vault-z&gt;.shear-wrapper&gt;.shear-inner.o-bg-vault&gt;.inner-content{z-index:1}  #stacks_in_1649&gt;.s-pro&gt;.sections-layer{display:none}      #stacks_in_1649&gt;.s-pro&gt;.shear-wrapper&gt;.shear-inner::after,#stacks_in_1649&gt;.s-pro&gt;.shear-wrapper&gt;.shear-inner::before{margin-top:0.00%} #stacks_in_1649&gt;.s-pro:not(.vault-margin).top-margin-custom{margin-top:0.00%!important}@media screen and (min-width:640px){#stacks_in_1649&gt;.s-pro:not(.vault-margin).top-margin-custom{margin-top:7.00%!important}}       

#stacks_in_1649 {
	padding:  20px;
}


#stacks_in_1651 h1 {
	font-weight: 400;
	font-style: normal;

	margin-bottom: 0;
	text-transform: none;

	
}

#stacks_in_1651 h1 small {
	font-weight: 400;
}

#stacks_in_1651 a,
#stacks_in_1651 a:visited,
#stacks_in_1651 a:hover,
#stacks_in_1651 a:active {
	text-decoration: none;
}
















/* Elegant Drop Shadow */
#stacks_in_1651 h1 {
	text-shadow:
    0 6px 8px rgba(0,0,0,.4),
    0 9px 10px rgba(0,0,0,.15),
    0 30px 10px rgba(0,0,0,.18),
    0 15px 10px rgba(0,0,0,.21);
}






#stacks_in_1651 h1 {
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(91, 56, 89, 1.00);
}



	#stacks_in_1651 h1,
	#stacks_in_1651 a,
	#stacks_in_1651 a:visited  {
		color: rgba(152, 92, 168, 1.00);
	}







@media (max-width: 47.9em) {
	/* iPhone */
	#stacks_in_1651 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1651 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1651 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1651 .inline_badge_right {
		top: -10px;
	}

	
		#stacks_in_1651 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* iPad */
	#stacks_in_1651 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1651 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1651 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1651 .inline_badge_right {
		top: -20px;
	}

	
		#stacks_in_1651 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_1651 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1651 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1651 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1651 .inline_badge_right {
		top: -25px;
	}

	
		#stacks_in_1651 .inline_badge_right {
			padding-left: 0px;
		}
	
}


#stacks_in_1651 .inline_badge_right {
	position: relative;
}


#stacks_in_1651 small,
#stacks_in_1651 h1 small {
	
}

#stacks_in_1651 {
	padding:  20px;
}


#stacks_in_1653 h1 {
	font-weight: 400;
	font-style: normal;

	
	text-transform: none;

	
}

#stacks_in_1653 h1 small {
	font-weight: 400;
}

#stacks_in_1653 a,
#stacks_in_1653 a:visited,
#stacks_in_1653 a:hover,
#stacks_in_1653 a:active {
	text-decoration: none;
}
















/* Elegant Drop Shadow */
#stacks_in_1653 h1 {
	text-shadow:
    0 6px 8px rgba(0,0,0,.4),
    0 9px 10px rgba(0,0,0,.15),
    0 30px 10px rgba(0,0,0,.18),
    0 15px 10px rgba(0,0,0,.21);
}






#stacks_in_1653 h1 {
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(91, 56, 89, 1.00);
}



	#stacks_in_1653 h1,
	#stacks_in_1653 a,
	#stacks_in_1653 a:visited  {
		color: rgba(249, 156, 255, 0.87);
	}







@media (max-width: 47.9em) {
	/* iPhone */
	#stacks_in_1653 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1653 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1653 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1653 .inline_badge_right {
		top: -10px;
	}

	
		#stacks_in_1653 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* iPad */
	#stacks_in_1653 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1653 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1653 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1653 .inline_badge_right {
		top: -20px;
	}

	
		#stacks_in_1653 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_1653 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1653 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1653 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1653 .inline_badge_right {
		top: -25px;
	}

	
		#stacks_in_1653 .inline_badge_right {
			padding-left: 0px;
		}
	
}


#stacks_in_1653 .inline_badge_right {
	position: relative;
}


#stacks_in_1653 small,
#stacks_in_1653 h1 small {
	
}

#stacks_in_1653 {
	padding:  20px;
}



	#stacks_in_1655 .jelly-button-wrapper {
		margin-bottom: 21px;
	}



#stacks_in_1655 .jelly-button-wrapper {
	position: relative;
	z-index: 10;
}

#stacks_in_1655 {
}

#stacks_in_1655 a.jelly-btn {
	-webkit-font-smoothing: antialiased;
	text-shadow: 0 0 2px rgba(0, 0, 0, 1.00);
	font-weight: 700;
	text-decoration: none;
  /* -webkit-box-shadow: inset 0 0 1px 2px rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 0 1px 2px rgba(255, 255, 255, 0.4); */
  position: relative;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 20px;
  display: inline-block;
  color: rgba(255, 255, 255, 1.00);
	background: rgba(89, 26, 167, 1.00);
	background: -moz-linear-gradient(0deg, rgba(89, 26, 167, 1.00) 0%, rgba(195, 168, 242, 1.00) 100%);
	background: -webkit-linear-gradient(0deg, rgba(89, 26, 167, 1.00) 0%,rgba(195, 168, 242, 1.00) 100%);
	background: linear-gradient(0deg, rgba(89, 26, 167, 1.00) 0%,rgba(195, 168, 242, 1.00) 100%);
	vertical-align: middle;
	
}


#stacks_in_1655 .jelly-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -10px;
  left: 5%;
  height: 110%;
  width: 90%;
  opacity: 0.7;
  border-radius: 50px;
	
	
  background: rgba(19, 19, 19, 1.00);
	
  -webkit-filter: blur(6px);
  -moz-filter: blur(6px);
  -o-filter: blur(6px);
  -ms-filter: blur(6px);
  filter: blur(6px);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
	transform: translateZ(0);
}

#stacks_in_1655 .jelly-btn:hover::after {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
  width: 100%;
  bottom: -5px;
  left: 0;
	transform: translateZ(0);
}

#stacks_in_1655 .jelly-btn:hover:active::after {
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
	transform: translateZ(0);
}





#stacks_in_1655 a.jelly-btn {
	padding-left: 10px;
	padding-right: 20px;
}

#stacks_in_1655 i.button-icon {
	background: rgba(255, 255, 255, 0.00);
	border-radius: 50%;
	color: rgba(230, 246, 240, 1.00);
	text-shadow: none;
	margin-right: 5px;
}








	#stacks_in_1655 a.jelly-btn {
		height: 60px;
		line-height: 60px;
	  border-radius: 60px;
	}

	#stacks_in_1655 i.button-icon {
		height: 40px;
		width: 40px;
		line-height: 40px;
	}





#stacks_in_1655 .animated {
	-webkit-animation-duration: 2s;
  animation-duration: 2s;
}
 .style-pro-stacks_in_1649::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}     .style-pro-stacks_in_1649:not(.bg-vault):not(.bg-featured)::before{      background-image:radial-gradient(ellipse at 50% 50%,rgba(227, 176, 254, 1.00) 0%,rgba(129, 96, 159, 1.00) 50%,rgba(46, 38, 52, 1.00) 79%);}    
/*stake-nomin*/

    #stacks_in_1607&gt;.s-pro.no-vault-z&gt;.shear-wrapper&gt;.shear-inner.o-bg-vault&gt;.inner-content{z-index:1}  #stacks_in_1607&gt;.s-pro&gt;.sections-layer{display:none}      #stacks_in_1607&gt;.s-pro&gt;.shear-wrapper&gt;.shear-inner::after,#stacks_in_1607&gt;.s-pro&gt;.shear-wrapper&gt;.shear-inner::before{margin-top:0.00%} #stacks_in_1607&gt;.s-pro:not(.vault-margin).top-margin-custom{margin-top:0.00%!important}@media screen and (min-width:640px){#stacks_in_1607&gt;.s-pro:not(.vault-margin).top-margin-custom{margin-top:7.00%!important}}       

#stacks_in_1607 {
	padding:  20px;
}


#stacks_in_1638 h1 {
	font-weight: 400;
	font-style: normal;

	margin-bottom: 0;
	text-transform: none;

	
}

#stacks_in_1638 h1 small {
	font-weight: 400;
}

#stacks_in_1638 a,
#stacks_in_1638 a:visited,
#stacks_in_1638 a:hover,
#stacks_in_1638 a:active {
	text-decoration: none;
}
















/* Elegant Drop Shadow */
#stacks_in_1638 h1 {
	text-shadow:
    0 6px 8px rgba(0,0,0,.4),
    0 9px 10px rgba(0,0,0,.15),
    0 30px 10px rgba(0,0,0,.18),
    0 15px 10px rgba(0,0,0,.21);
}






#stacks_in_1638 h1 {
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(91, 56, 89, 1.00);
}



	#stacks_in_1638 h1,
	#stacks_in_1638 a,
	#stacks_in_1638 a:visited  {
		color: rgba(231, 182, 250, 1.00);
	}







@media (max-width: 47.9em) {
	/* iPhone */
	#stacks_in_1638 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1638 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1638 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1638 .inline_badge_right {
		top: -10px;
	}

	
		#stacks_in_1638 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* iPad */
	#stacks_in_1638 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1638 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1638 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1638 .inline_badge_right {
		top: -20px;
	}

	
		#stacks_in_1638 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_1638 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1638 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1638 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1638 .inline_badge_right {
		top: -25px;
	}

	
		#stacks_in_1638 .inline_badge_right {
			padding-left: 0px;
		}
	
}


#stacks_in_1638 .inline_badge_right {
	position: relative;
}


#stacks_in_1638 small,
#stacks_in_1638 h1 small {
	
}

#stacks_in_1638 {
	padding:  20px;
}


#stacks_in_1640 h1 {
	font-weight: 400;
	font-style: normal;

	
	text-transform: none;

	
}

#stacks_in_1640 h1 small {
	font-weight: 400;
}

#stacks_in_1640 a,
#stacks_in_1640 a:visited,
#stacks_in_1640 a:hover,
#stacks_in_1640 a:active {
	text-decoration: none;
}
















/* Elegant Drop Shadow */
#stacks_in_1640 h1 {
	text-shadow:
    0 6px 8px rgba(0,0,0,.4),
    0 9px 10px rgba(0,0,0,.15),
    0 30px 10px rgba(0,0,0,.18),
    0 15px 10px rgba(0,0,0,.21);
}






#stacks_in_1640 h1 {
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(91, 56, 89, 1.00);
}



	#stacks_in_1640 h1,
	#stacks_in_1640 a,
	#stacks_in_1640 a:visited  {
		color: rgba(239, 215, 255, 1.00);
	}







@media (max-width: 47.9em) {
	/* iPhone */
	#stacks_in_1640 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1640 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1640 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1640 .inline_badge_right {
		top: -10px;
	}

	
		#stacks_in_1640 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* iPad */
	#stacks_in_1640 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1640 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1640 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1640 .inline_badge_right {
		top: -20px;
	}

	
		#stacks_in_1640 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_1640 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1640 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1640 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1640 .inline_badge_right {
		top: -25px;
	}

	
		#stacks_in_1640 .inline_badge_right {
			padding-left: 0px;
		}
	
}


#stacks_in_1640 .inline_badge_right {
	position: relative;
}


#stacks_in_1640 small,
#stacks_in_1640 h1 small {
	
}

#stacks_in_1640 {
	padding:  20px;
}



	#stacks_in_1642 .jelly-button-wrapper {
		margin-bottom: 21px;
	}



#stacks_in_1642 .jelly-button-wrapper {
	position: relative;
	z-index: 10;
}

#stacks_in_1642 {
}

#stacks_in_1642 a.jelly-btn {
	-webkit-font-smoothing: antialiased;
	text-shadow: 0 0 2px rgba(0, 0, 0, 1.00);
	font-weight: 700;
	text-decoration: none;
  /* -webkit-box-shadow: inset 0 0 1px 2px rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 0 1px 2px rgba(255, 255, 255, 0.4); */
  position: relative;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 20px;
  display: inline-block;
  color: rgba(255, 255, 255, 1.00);
	background: rgba(89, 26, 165, 1.00);
	background: -moz-linear-gradient(0deg, rgba(89, 26, 165, 1.00) 0%, rgba(195, 168, 242, 1.00) 100%);
	background: -webkit-linear-gradient(0deg, rgba(89, 26, 165, 1.00) 0%,rgba(195, 168, 242, 1.00) 100%);
	background: linear-gradient(0deg, rgba(89, 26, 165, 1.00) 0%,rgba(195, 168, 242, 1.00) 100%);
	vertical-align: middle;
	
}


#stacks_in_1642 .jelly-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -10px;
  left: 5%;
  height: 110%;
  width: 90%;
  opacity: 0.7;
  border-radius: 50px;
	
	
  background: rgba(19, 19, 19, 1.00);
	
  -webkit-filter: blur(6px);
  -moz-filter: blur(6px);
  -o-filter: blur(6px);
  -ms-filter: blur(6px);
  filter: blur(6px);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
	transform: translateZ(0);
}

#stacks_in_1642 .jelly-btn:hover::after {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
  width: 100%;
  bottom: -5px;
  left: 0;
	transform: translateZ(0);
}

#stacks_in_1642 .jelly-btn:hover:active::after {
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
	transform: translateZ(0);
}





#stacks_in_1642 a.jelly-btn {
	padding-left: 10px;
	padding-right: 20px;
}

#stacks_in_1642 i.button-icon {
	background: rgba(255, 255, 255, 0.00);
	border-radius: 50%;
	color: rgba(230, 246, 240, 1.00);
	text-shadow: none;
	margin-right: 5px;
}








	#stacks_in_1642 a.jelly-btn {
		height: 60px;
		line-height: 60px;
	  border-radius: 60px;
	}

	#stacks_in_1642 i.button-icon {
		height: 40px;
		width: 40px;
		line-height: 40px;
	}





#stacks_in_1642 .animated {
	-webkit-animation-duration: 2s;
  animation-duration: 2s;
}
 .style-pro-stacks_in_1607::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}     .style-pro-stacks_in_1607:not(.bg-vault):not(.bg-featured)::before{      background-image:radial-gradient(ellipse at 50% 50%,rgba(227, 176, 254, 1.00) 0%,rgba(129, 96, 159, 1.00) 50%,rgba(46, 38, 52, 1.00) 79%);}    
/*stake-nomin*/

    #stacks_in_1664&gt;.s-pro.no-vault-z&gt;.shear-wrapper&gt;.shear-inner.o-bg-vault&gt;.inner-content{z-index:1}  #stacks_in_1664&gt;.s-pro&gt;.sections-layer{display:none}      #stacks_in_1664&gt;.s-pro&gt;.shear-wrapper&gt;.shear-inner::after,#stacks_in_1664&gt;.s-pro&gt;.shear-wrapper&gt;.shear-inner::before{margin-top:0.00%} #stacks_in_1664&gt;.s-pro:not(.vault-margin).top-margin-custom{margin-top:0.00%!important}@media screen and (min-width:640px){#stacks_in_1664&gt;.s-pro:not(.vault-margin).top-margin-custom{margin-top:7.00%!important}}       

#stacks_in_1664 {
	padding:  20px;
}


#stacks_in_1666 h1 {
	font-weight: 400;
	font-style: normal;

	margin-bottom: 0;
	text-transform: none;

	
}

#stacks_in_1666 h1 small {
	font-weight: 400;
}

#stacks_in_1666 a,
#stacks_in_1666 a:visited,
#stacks_in_1666 a:hover,
#stacks_in_1666 a:active {
	text-decoration: none;
}
















/* Elegant Drop Shadow */
#stacks_in_1666 h1 {
	text-shadow:
    0 6px 8px rgba(0,0,0,.4),
    0 9px 10px rgba(0,0,0,.15),
    0 30px 10px rgba(0,0,0,.18),
    0 15px 10px rgba(0,0,0,.21);
}






#stacks_in_1666 h1 {
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(91, 56, 89, 1.00);
}



	#stacks_in_1666 h1,
	#stacks_in_1666 a,
	#stacks_in_1666 a:visited  {
		color: rgba(127, 252, 248, 1.00);
	}







@media (max-width: 47.9em) {
	/* iPhone */
	#stacks_in_1666 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1666 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1666 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1666 .inline_badge_right {
		top: -10px;
	}

	
		#stacks_in_1666 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* iPad */
	#stacks_in_1666 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1666 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1666 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1666 .inline_badge_right {
		top: -20px;
	}

	
		#stacks_in_1666 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_1666 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1666 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1666 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1666 .inline_badge_right {
		top: -25px;
	}

	
		#stacks_in_1666 .inline_badge_right {
			padding-left: 0px;
		}
	
}


#stacks_in_1666 .inline_badge_right {
	position: relative;
}


#stacks_in_1666 small,
#stacks_in_1666 h1 small {
	
}

#stacks_in_1666 {
	padding:  20px;
}


#stacks_in_1668 h1 {
	font-weight: 400;
	font-style: normal;

	
	text-transform: none;

	
}

#stacks_in_1668 h1 small {
	font-weight: 400;
}

#stacks_in_1668 a,
#stacks_in_1668 a:visited,
#stacks_in_1668 a:hover,
#stacks_in_1668 a:active {
	text-decoration: none;
}
















/* Elegant Drop Shadow */
#stacks_in_1668 h1 {
	text-shadow:
    0 6px 8px rgba(0,0,0,.4),
    0 9px 10px rgba(0,0,0,.15),
    0 30px 10px rgba(0,0,0,.18),
    0 15px 10px rgba(0,0,0,.21);
}






#stacks_in_1668 h1 {
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(91, 56, 89, 1.00);
}



	#stacks_in_1668 h1,
	#stacks_in_1668 a,
	#stacks_in_1668 a:visited  {
		color: rgba(173, 255, 231, 1.00);
	}







@media (max-width: 47.9em) {
	/* iPhone */
	#stacks_in_1668 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1668 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1668 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1668 .inline_badge_right {
		top: -10px;
	}

	
		#stacks_in_1668 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* iPad */
	#stacks_in_1668 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1668 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1668 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1668 .inline_badge_right {
		top: -20px;
	}

	
		#stacks_in_1668 .inline_badge_right {
			padding-left: 0px;
		}
	
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_1668 .inline_badge_right img {
		width: auto;
		height: 32px;
	}

	#stacks_in_1668 h1 {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1668 h1 small {
		letter-spacing: 0px;
		word-spacing: 0px;
	}

	#stacks_in_1668 .inline_badge_right {
		top: -25px;
	}

	
		#stacks_in_1668 .inline_badge_right {
			padding-left: 0px;
		}
	
}


#stacks_in_1668 .inline_badge_right {
	position: relative;
}


#stacks_in_1668 small,
#stacks_in_1668 h1 small {
	
}

#stacks_in_1668 {
	padding:  20px;
}



	#stacks_in_1670 .jelly-button-wrapper {
		margin-bottom: 21px;
	}



#stacks_in_1670 .jelly-button-wrapper {
	position: relative;
	z-index: 10;
}

#stacks_in_1670 {
}

#stacks_in_1670 a.jelly-btn {
	-webkit-font-smoothing: antialiased;
	text-shadow: 0 0 2px rgba(0, 0, 0, 1.00);
	font-weight: 700;
	text-decoration: none;
  /* -webkit-box-shadow: inset 0 0 1px 2px rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 0 1px 2px rgba(255, 255, 255, 0.4); */
  position: relative;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 20px;
  display: inline-block;
  color: rgba(255, 255, 255, 1.00);
	background: rgba(87, 26, 162, 1.00);
	background: -moz-linear-gradient(0deg, rgba(87, 26, 162, 1.00) 0%, rgba(195, 168, 242, 1.00) 100%);
	background: -webkit-linear-gradient(0deg, rgba(87, 26, 162, 1.00) 0%,rgba(195, 168, 242, 1.00) 100%);
	background: linear-gradient(0deg, rgba(87, 26, 162, 1.00) 0%,rgba(195, 168, 242, 1.00) 100%);
	vertical-align: middle;
	
}


#stacks_in_1670 .jelly-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -10px;
  left: 5%;
  height: 110%;
  width: 90%;
  opacity: 0.7;
  border-radius: 50px;
	
	
  background: rgba(19, 19, 19, 1.00);
	
  -webkit-filter: blur(6px);
  -moz-filter: blur(6px);
  -o-filter: blur(6px);
  -ms-filter: blur(6px);
  filter: blur(6px);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
	transform: translateZ(0);
}

#stacks_in_1670 .jelly-btn:hover::after {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
  width: 100%;
  bottom: -5px;
  left: 0;
	transform: translateZ(0);
}

#stacks_in_1670 .jelly-btn:hover:active::after {
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
	transform: translateZ(0);
}





#stacks_in_1670 a.jelly-btn {
	padding-left: 10px;
	padding-right: 20px;
}

#stacks_in_1670 i.button-icon {
	background: rgba(255, 255, 255, 0.00);
	border-radius: 50%;
	color: rgba(230, 246, 240, 1.00);
	text-shadow: none;
	margin-right: 5px;
}








	#stacks_in_1670 a.jelly-btn {
		height: 60px;
		line-height: 60px;
	  border-radius: 60px;
	}

	#stacks_in_1670 i.button-icon {
		height: 40px;
		width: 40px;
		line-height: 40px;
	}





#stacks_in_1670 .animated {
	-webkit-animation-duration: 2s;
  animation-duration: 2s;
}
 .style-pro-stacks_in_1664::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}     .style-pro-stacks_in_1664:not(.bg-vault):not(.bg-featured)::before{      background-image:radial-gradient(ellipse at 50% 50%,rgba(227, 176, 254, 1.00) 0%,rgba(129, 96, 159, 1.00) 50%,rgba(46, 38, 52, 1.00) 79%);}    
/*stake-nomin*/

#box {
  width: 100%;
  height: 400px;
  background: crimson; }

/*  */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

body {
  margin: 0; }

#slidetastic-stacks_in_828 {
  max-width: 1500px;
  padding: 0px 0;
  margin: 0 auto;
  position: relative; }
  #slidetastic-stacks_in_828.no-dots .slidetastic-dots {
    display: none; }
  #slidetastic-stacks_in_828.no-arrows .slidetastic-nav {
    display: none; }

#slidetastic-stacks_in_828 .slidetastic-dots {
  z-index: 10;
  width: 100%;
  position: absolute; }
  #slidetastic-stacks_in_828 .slidetastic-dots.dots-top {
    top: 100px; }
  #slidetastic-stacks_in_828 .slidetastic-dots.dots-bottom {
    bottom: 100px; }
  #slidetastic-stacks_in_828 .slidetastic-dots ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    #slidetastic-stacks_in_828 .slidetastic-dots ul li.slick-active button {
      background: rgba(0, 0, 0, 1.00); }
    #slidetastic-stacks_in_828 .slidetastic-dots ul li button {
      width: 10px;
      height: 10px;
      margin: 5px;
      background: rgba(0, 0, 0, 0.50);
      border-radius: 5px;
      padding: 0;
      font-size: 0;
      border: none;
      outline: none;
      display: block;
      line-height: 0; }

#slidetastic-stacks_in_828 .slidetastic-nav {
  z-index: 10;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  pointer-events: none;
  box-sizing: border-box; }
  #slidetastic-stacks_in_828 .slidetastic-nav .slidetastic-nav-btn {
    width: 50px;
    height: 50px;
    margin: 5px 5px;
    color: rgba(255, 255, 255, 1.00);
    background: rgba(0, 0, 0, 1.00);
    border-radius: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    pointer-events: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    #slidetastic-stacks_in_828 .slidetastic-nav .slidetastic-nav-btn:hover {
      color: rgba(255, 255, 255, 1.00);
      background: rgba(86, 54, 111, 1.00); }
    #slidetastic-stacks_in_828 .slidetastic-nav .slidetastic-nav-btn:hover a, #slidetastic-stacks_in_828 .slidetastic-nav .slidetastic-nav-btn:hover i {
      color: rgba(255, 255, 255, 1.00); }
    #slidetastic-stacks_in_828 .slidetastic-nav .slidetastic-nav-btn a, #slidetastic-stacks_in_828 .slidetastic-nav .slidetastic-nav-btn i {
      color: inherit; }
    #slidetastic-stacks_in_828 .slidetastic-nav .slidetastic-nav-btn i {
      font-size: 24px; }
  #slidetastic-stacks_in_828 .slidetastic-nav.arrows-stacked-left.arrows-h-left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    #slidetastic-stacks_in_828 .slidetastic-nav.arrows-stacked-left.arrows-h-left .slidetastic-nav-btn {
      margin-right: 0; }
  #slidetastic-stacks_in_828 .slidetastic-nav.arrows-stacked-center.arrows-h-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    #slidetastic-stacks_in_828 .slidetastic-nav.arrows-stacked-center.arrows-h-center .slidetastic-nav-btn {
      margin-left: 0;
      margin-right: 0; }
  #slidetastic-stacks_in_828 .slidetastic-nav.arrows-stacked-right.arrows-h-right {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    #slidetastic-stacks_in_828 .slidetastic-nav.arrows-stacked-right.arrows-h-right .slidetastic-nav-btn {
      margin-left: 0; }
  #slidetastic-stacks_in_828 .slidetastic-nav.arrows-h-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  #slidetastic-stacks_in_828 .slidetastic-nav.arrows-h-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #slidetastic-stacks_in_828 .slidetastic-nav.arrows-h-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  #slidetastic-stacks_in_828 .slidetastic-nav.arrows-h-separate {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    #slidetastic-stacks_in_828 .slidetastic-nav.arrows-h-separate .slidetastic-nav-btn-prev {
      margin-right: 0; }
    #slidetastic-stacks_in_828 .slidetastic-nav.arrows-h-separate .slidetastic-nav-btn-next {
      margin-left: 0; }
  #slidetastic-stacks_in_828 .slidetastic-nav.arrows-v-top {
    top: 0; }
  #slidetastic-stacks_in_828 .slidetastic-nav.arrows-v-bottom {
    bottom: 0; }
  #slidetastic-stacks_in_828 .slidetastic-nav.arrows-v-center {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  #slidetastic-stacks_in_828 .slidetastic-nav.arrows-v-full {
    top: 0px;
    bottom: 0px; }
    #slidetastic-stacks_in_828 .slidetastic-nav.arrows-v-full .slidetastic-nav-btn {
      height: calc(100%	- 10px); }

#slidetastic-stacks_in_828 .slidetastic-slider {
  box-sizing: border-box;
  /*  */
  opacity: 0;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  padding: 0px;
  /*  */ }
  #slidetastic-stacks_in_828 .slidetastic-slider.slider-centered .slidetastic-slide .slidetastic-slide-inner {
    /*  */
    opacity: 0.2;
    /*  */ }
  #slidetastic-stacks_in_828 .slidetastic-slider .slidetastic-slide {
    padding: 0 10px;
    box-sizing: border-box; }
    #slidetastic-stacks_in_828 .slidetastic-slider .slidetastic-slide-inner {
      border-radius: 2px;
      /*  */
      min-height: 0px;
      background: rgba(0, 0, 0, 1.00);
      /*  */
      width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      transition: opacity 0.3s ease; }
    #slidetastic-stacks_in_828 .slidetastic-slider .slidetastic-slide.slick-current .slidetastic-slide-inner, #slidetastic-stacks_in_828 .slidetastic-slider .slidetastic-slide.slick-active .slidetastic-slide-inner {
      opacity: 1; }

#slidetastic-stacks_in_828.caption-always .slidetastic-image .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_828.caption-hover .slidetastic-image:hover .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_828.caption-active .slidetastic-slide.slick-active .slidetastic-image-caption, #slidetastic-stacks_in_828.caption-active .slidetastic-slide.slick-current .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_828.caption-active-hover .slidetastic-image:hover .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_828.caption-active-hover .slidetastic-slide.slick-active .slidetastic-image-caption, #slidetastic-stacks_in_828.caption-active-hover .slidetastic-slide.slick-current .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_828.caption-active-hover .slidetastic-image:hover .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_828.no-caption-titles .slidetastic-image .slidetastic-image-caption .slidetastic-image-title {
  display: none; }

#slidetastic-stacks_in_828.no-caption-descriptions .slidetastic-image .slidetastic-image-caption .slidetastic-image-description {
  display: none; }

#slidetastic-stacks_in_828.caption-top .slidetastic-image .slidetastic-image-caption {
  top: 0; }

#slidetastic-stacks_in_828.caption-bottom .slidetastic-image .slidetastic-image-caption {
  bottom: 0; }

#slidetastic-stacks_in_828.caption-outside.caption-top .slidetastic-image {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

#slidetastic-stacks_in_828.caption-outside.caption-bottom .slidetastic-image {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

#slidetastic-stacks_in_828.caption-outside .slidetastic-image .slidetastic-image-caption {
  position: relative; }

#slidetastic-stacks_in_828 .slidetastic-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: relative; }
  #slidetastic-stacks_in_828 .slidetastic-image * {
    box-sizing: border-box; }
  #slidetastic-stacks_in_828 .slidetastic-image img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }
  #slidetastic-stacks_in_828 .slidetastic-image .slidetastic-image-caption {
    /*  */
    opacity: 0;
    transition: all 0.3s ease;
    /*  */
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    position: absolute;
    padding: 20px 20px;
    background: rgba(0, 0, 0, 0.70);
    text-align: left; }
    #slidetastic-stacks_in_828 .slidetastic-image .slidetastic-image-caption .slidetastic-image-title {
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      font-weight: bold;
      font-family: Rubik;
      padding-bottom: 5px;
      line-height: 45.304001px; }
    #slidetastic-stacks_in_828 .slidetastic-image .slidetastic-image-caption .slidetastic-image-description {
      color: rgba(255, 255, 255, 1.00);
      font-family: Rubik;
      font-size: 16px;
      line-height: 25.888000px; }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@media (min-width: 768px) {
  /*  */
  /*  */ }

@media (min-width: 480px) and (max-width: 768px) {
  /*  */
  #slidetastic-stacks_in_828 .slidetastic-slider .slidetastic-slide {
    padding: 0 10px; }
  #slidetastic-stacks_in_828 .slidetastic-nav .slidetastic-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 20px; }
    #slidetastic-stacks_in_828 .slidetastic-nav .slidetastic-nav-btn i {
      font-size: 20px; }
  #slidetastic-stacks_in_828 .slidetastic-image .slidetastic-image-caption .slidetastic-image-title {
    font-size: 20px;
    padding-bottom: 5px;
    line-height: 32.360001px; }
  #slidetastic-stacks_in_828 .slidetastic-image .slidetastic-image-caption .slidetastic-image-description {
    font-size: 14px;
    line-height: 22.652000px; }
  /*  */ }

@media (min-width: 0px) and (max-width: 480px) {
  /*  */
  #slidetastic-stacks_in_828 .slidetastic-slider .slidetastic-slide {
    padding: 0 10px; }
  #slidetastic-stacks_in_828 .slidetastic-nav .slidetastic-nav-btn {
    width: 35px;
    height: 35px;
    border-radius: 20px; }
    #slidetastic-stacks_in_828 .slidetastic-nav .slidetastic-nav-btn i {
      font-size: 18px; }
  #slidetastic-stacks_in_828 .slidetastic-image .slidetastic-image-caption .slidetastic-image-title {
    font-size: 18px;
    padding-bottom: 5px;
    line-height: 29.124001px; }
  #slidetastic-stacks_in_828 .slidetastic-image .slidetastic-image-caption .slidetastic-image-description {
    font-size: 13px;
    line-height: 21.034000px; }
  /*  */ }



#stacks_in_1328 .blur-up {
		-webkit-filter: blur(5px);
		filter: blur(5px);
		transition: filter 400ms, -webkit-filter 400ms;
}

#stacks_in_1328 .blur-up.lazyloaded {
		-webkit-filter: blur(0);
		filter: blur(0);
}

#stacks_in_1328 .lazyload {
    opacity: 0;
}

#stacks_in_1328 .lazyloading {
    opacity: 1;
    transition-duration: 400ms;
		transition-property: opacity;
}

#stacks_in_1328 img {
	
	
	display: inline-block;
	margin-bottom: 0px;
}



#stacks_in_1329 .blur-up {
		-webkit-filter: blur(5px);
		filter: blur(5px);
		transition: filter 400ms, -webkit-filter 400ms;
}

#stacks_in_1329 .blur-up.lazyloaded {
		-webkit-filter: blur(0);
		filter: blur(0);
}

#stacks_in_1329 .lazyload {
    opacity: 0;
}

#stacks_in_1329 .lazyloading {
    opacity: 1;
    transition-duration: 400ms;
		transition-property: opacity;
}

#stacks_in_1329 img {
	
	
	display: inline-block;
	margin-bottom: 0px;
}



#stacks_in_1330 .blur-up {
		-webkit-filter: blur(5px);
		filter: blur(5px);
		transition: filter 400ms, -webkit-filter 400ms;
}

#stacks_in_1330 .blur-up.lazyloaded {
		-webkit-filter: blur(0);
		filter: blur(0);
}

#stacks_in_1330 .lazyload {
    opacity: 0;
}

#stacks_in_1330 .lazyloading {
    opacity: 1;
    transition-duration: 400ms;
		transition-property: opacity;
}

#stacks_in_1330 img {
	
	
	display: inline-block;
	margin-bottom: 0px;
}



#stacks_in_1331 .blur-up {
		-webkit-filter: blur(5px);
		filter: blur(5px);
		transition: filter 400ms, -webkit-filter 400ms;
}

#stacks_in_1331 .blur-up.lazyloaded {
		-webkit-filter: blur(0);
		filter: blur(0);
}

#stacks_in_1331 .lazyload {
    opacity: 0;
}

#stacks_in_1331 .lazyloading {
    opacity: 1;
    transition-duration: 400ms;
		transition-property: opacity;
}

#stacks_in_1331 img {
	
	
	display: inline-block;
	margin-bottom: 0px;
}



#stacks_in_1332 .blur-up {
		-webkit-filter: blur(5px);
		filter: blur(5px);
		transition: filter 400ms, -webkit-filter 400ms;
}

#stacks_in_1332 .blur-up.lazyloaded {
		-webkit-filter: blur(0);
		filter: blur(0);
}

#stacks_in_1332 .lazyload {
    opacity: 0;
}

#stacks_in_1332 .lazyloading {
    opacity: 1;
    transition-duration: 400ms;
		transition-property: opacity;
}

#stacks_in_1332 img {
	
	
	display: inline-block;
	margin-bottom: 0px;
}



#stacks_in_1333 .blur-up {
		-webkit-filter: blur(5px);
		filter: blur(5px);
		transition: filter 400ms, -webkit-filter 400ms;
}

#stacks_in_1333 .blur-up.lazyloaded {
		-webkit-filter: blur(0);
		filter: blur(0);
}

#stacks_in_1333 .lazyload {
    opacity: 0;
}

#stacks_in_1333 .lazyloading {
    opacity: 1;
    transition-duration: 400ms;
		transition-property: opacity;
}

#stacks_in_1333 img {
	
	
	display: inline-block;
	margin-bottom: 0px;
}



#stacks_in_1334 .blur-up {
		-webkit-filter: blur(5px);
		filter: blur(5px);
		transition: filter 400ms, -webkit-filter 400ms;
}

#stacks_in_1334 .blur-up.lazyloaded {
		-webkit-filter: blur(0);
		filter: blur(0);
}

#stacks_in_1334 .lazyload {
    opacity: 0;
}

#stacks_in_1334 .lazyloading {
    opacity: 1;
    transition-duration: 400ms;
		transition-property: opacity;
}

#stacks_in_1334 img {
	
	
	display: inline-block;
	margin-bottom: 0px;
}



#stacks_in_1335 .blur-up {
		-webkit-filter: blur(5px);
		filter: blur(5px);
		transition: filter 400ms, -webkit-filter 400ms;
}

#stacks_in_1335 .blur-up.lazyloaded {
		-webkit-filter: blur(0);
		filter: blur(0);
}

#stacks_in_1335 .lazyload {
    opacity: 0;
}

#stacks_in_1335 .lazyloading {
    opacity: 1;
    transition-duration: 400ms;
		transition-property: opacity;
}

#stacks_in_1335 img {
	
	
	display: inline-block;
	margin-bottom: 0px;
}
/* Fix for running fullscreen in Safari */
iframe#jp_video__video_0_youtube {
min-width: 100%!important;
min-height: 100%!important;
height: 100%!important;
width: 100%!important;
}

.mdtc-clnplrv-main-player * {
  background-color: transparent;
  border: 0 none;
  color: inherit;
  direction: ltr;
  float: none;
  font-family: 'PT Sans', Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-stretch: inherit;
  font-variant: inherit;
  line-height: 1em;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
  vertical-align: baseline;
  outline: none !important;
  box-sizing: content-box !important;
}
.mdtc-clnplrv-main-player a {
  border: none !important;
}
@font-face {
  font-family: 'icons';
  src: url(data:font/truetype;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SAuAAAAC8AAAAYGNtYXAaVsyOAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZsRb5loAAAF4AAACLGhlYWQHZCGtAAADpAAAADZoaGVhB6kEpgAAA9wAAAAkaG10eCUjAo8AAAQAAAAAMGxvY2EDJAKWAAAEMAAAABptYXhwABEAIQAABEwAAAAgbmFtZZlKCfsAAARsAAABhnBvc3QAAwAAAAAF9AAAACAAAwOvAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmBwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg5gf//f//AAAAAAAg5gD//f//AAH/4xoEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAADAPIAiAPnAvgABwAKAA8AAAEVITUjESERJRc3JTMVIzUDYv4VhQL1/a/f3v7OqqoBt6ur/tEBL3Hf39DQ0AAABACQALQDdQLHAAYADgAWAB4AABMjFSE1IzUnMzUzNSEVIwUjFSE1IxUzAxUzFTM1ITX5aQEHnml5k/75BQJnkwEHeQWOk3n+9AGL0nlZal500sh50lkBmnlf0gYAAAAAAgBAAIoDIQL2AAcADwAAExEhNRcHNSEFESEVJzcVIUACMLGx/iYCi/3RsrIB2gGTAQBjoJBXMP8AY6CQVwAAAAIAJf/AAukDwAAEAAkAAAEhESERASERIREB2wEO/vL+SgEN/vMDwPwABAD8AAQA/AAAAAABACX/wANJA8AAAwAAExEJASUDJPzcA8D8AAIAAgAAAAIAJQDFA1cCuwADAAcAABMRLQEhES0BJQGJ/ncBqQGJ/ncCu/4K+/v+Cvv7AAAAAAMAOQB+AxQDDwAKABQAGwAAJSM1MxMzNRcHNSMXFSMnBxczFTcnASMVMxc3JwEQ16jvkrKyZ2dnLT0/krKy/q7XqDFAQt56AVZhoZBXhldAXlthoZABAHpGYGAAAgAlAMUDVwK7AAMABwAAAQURBSEFEQUBzgGJ/nf+VwGJ/ncBwPsB9vv7Afb7AAAAAQAAAAEAAMFIOmVfDzz1AAsEAAAAAADSLu6YAAAAANIu7pgAAP/AA+cDwAAAAAgAAgAAAAAAAAABAAADwP/AAAAE2QAAAAAD5wABAAAAAAAAAAAAAAAAAAAADAQAAAAAAAAAAAAAAAIAAAAE2QDyBAAAkAO3AEADtwAlA7cAJQO3ACUDtwA5A7cAJQAAAAAACgAUAB4APgBuAI4AqAC4ANAA/gEWAAAAAQAAAAwAHwAEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGljb21vb24AaQBjAG8AbQBvAG8AblZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGljb21vb24AaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AblJlZ3VsYXIAUgBlAGcAdQBsAGEAcmljb21vb24AaQBjAG8AbQBvAG8AbkZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('truetype'), url(data:font/woff;charset=utf-8;base64,d09GRgABAAAAAAZgAAsAAAAABhQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIC4GNtYXAAAAFoAAAAVAAAAFQaVsyOZ2FzcAAAAbwAAAAIAAAACAAAABBnbHlmAAABxAAAAiwAAAIsxFvmWmhlYWQAAAPwAAAANgAAADYHZCGtaGhlYQAABCgAAAAkAAAAJAepBKZobXR4AAAETAAAADAAAAAwJSMCj2xvY2EAAAR8AAAAGgAAABoDJAKWbWF4cAAABJgAAAAgAAAAIAARACFuYW1lAAAEuAAAAYYAAAGGmUoJ+3Bvc3QAAAZAAAAAIAAAACAAAwAAAAMDrwGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gcDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADgAAAAKAAgAAgACAAEAIOYH//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAwDyAIgD5wL4AAcACgAPAAABFSE1IxEhESUXNyUzFSM1A2L+FYUC9f2v397+zqqqAberq/7RAS9x39/Q0NAAAAQAkAC0A3UCxwAGAA4AFgAeAAATIxUhNSM1JzM1MzUhFSMFIxUhNSMVMwMVMxUzNSE1+WkBB55peZP++QUCZ5MBB3kFjpN5/vQBi9J5WWpedNLIedJZAZp5X9IGAAAAAAIAQACKAyEC9gAHAA8AABMRITUXBzUhBREhFSc3FSFAAjCxsf4mAov90bKyAdoBkwEAY6CQVzD/AGOgkFcAAAACACX/wALpA8AABAAJAAABIREhEQEhESERAdsBDv7y/koBDf7zA8D8AAQA/AAEAPwAAAAAAQAl/8ADSQPAAAMAABMRCQElAyT83APA/AACAAIAAAACACUAxQNXArsAAwAHAAATES0BIREtASUBif53AakBif53Arv+Cvv7/gr7+wAAAAADADkAfgMUAw8ACgAUABsAACUjNTMTMzUXBzUjFxUjJwcXMxU3JwEjFTMXNycBENeo75KysmdnZy09P5Kysv6u16gxQELeegFWYaGQV4ZXQF5bYaGQAQB6RmBgAAIAJQDFA1cCuwADAAcAAAEFEQUhBREFAc4Bif53/lcBif53AcD7Afb7+wH2+wAAAAEAAAABAADBSDplXw889QALBAAAAAAA0i7umAAAAADSLu6YAAD/wAPnA8AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABNkAAAAAA+cAAQAAAAAAAAAAAAAAAAAAAAwEAAAAAAAAAAAAAAACAAAABNkA8gQAAJADtwBAA7cAJQO3ACUDtwAlA7cAOQO3ACUAAAAAAAoAFAAeAD4AbgCOAKgAuADQAP4BFgAAAAEAAAAMAB8ABAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAHAAAAAQAAAAAAAgAHAGAAAQAAAAAAAwAHADYAAQAAAAAABAAHAHUAAQAAAAAABQALABUAAQAAAAAABgAHAEsAAQAAAAAACgAaAIoAAwABBAkAAQAOAAcAAwABBAkAAgAOAGcAAwABBAkAAwAOAD0AAwABBAkABAAOAHwAAwABBAkABQAWACAAAwABBAkABgAOAFIAAwABBAkACgA0AKRpY29tb29uAGkAYwBvAG0AbwBvAG5WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBpY29tb29uAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG5SZWd1bGFyAFIAZQBnAHUAbABhAHJpY29tb29uAGkAYwBvAG0AbwBvAG5Gb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');
  font-weight: normal;
  font-style: normal;
}
[class^="mdtc-clnplrv-icon-"],
[class*=" mdtc-clnplrv-icon-"] {
  font-family: 'icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mdtc-clnplrv-icon-repeat:before {
  content: "\e602";
}
.mdtc-clnplrv-icon-pause:before {
  content: "\e603";
}
.mdtc-clnplrv-icon-play:before {
  content: "\e604";
}
.mdtc-clnplrv-icon-next:before {
  content: "\e605";
}
.mdtc-clnplrv-icon-shuffle:before {
  content: "\e606";
}
.mdtc-clnplrv-icon-prev:before {
  content: "\e607";
}
.mdtc-clnplrv-icon-download:before {
  content: "\e600";
}
.mdtc-clnplrv-icon-fullscreen:before {
  content: "\e601";
}
.mdtc-clnplrv-main-player {
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  color: #222222;
}
.mdtc-clnplrv-main-player .youtube-player:after {
  display: none !important;
}
.mdtc-clnplrv-main-player * {
  outline: none !important;
}
.mdtc-clnplrv-main-player ul {
  margin: 0px;
}
.mdtc-clnplrv-main-player ul li {
  display: block;
  list-style: none;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-type-playlist {
  background: #ffffff;
  border-radius: 0px 0px 3px 3px;
  overflow: hidden;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-video-container {
  background-color: #f3f5f7;
  border-radius: 3px 3px 0px 0px;
  display: block !important;
  position: relative;
  overflow: hidden;
  background-image: url('data:image/gif;base64,R0lGODlhKwALAPEAAP///4yMjMbGxoyMjCH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAKwALAAACMoSOCMuW2diD88UKG95W88uF4DaGWFmhZid93pq+pwxnLUnXh8ou+sSz+T64oCAyTBUAACH5BAkKAAAALAAAAAArAAsAAAI9xI4IyyAPYWOxmoTHrHzzmGHe94xkmJifyqFKQ0pwLLgHa82xrekkDrIBZRQab1jyfY7KTtPimixiUsevAAAh+QQJCgAAACwAAAAAKwALAAACPYSOCMswD2FjqZpqW9xv4g8KE7d54XmMpNSgqLoOpgvC60xjNonnyc7p+VKamKw1zDCMR8rp8pksYlKorgAAIfkECQoAAAAsAAAAACsACwAAAkCEjgjLltnYmJS6Bxt+sfq5ZUyoNJ9HHlEqdCfFrqn7DrE2m7Wdj/2y45FkQ13t5itKdshFExC8YCLOEBX6AhQAADsAAAAAAAAAAAA=');
  background-position: center 53%;
  background-repeat: no-repeat;
  height: 0px !important;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-video-container video {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-video-container img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  z-index: 2;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-video-container:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 35px;
  border-color: transparent transparent transparent #f3f5f7;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px 0px 0px -12px;
  cursor: pointer;
  transition: opacity 0.1s;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-video-container:hover:after {
  opacity: 0.7;
  transition: opacity 0.1s ;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-state-playing .mdtc-clnplrv-jplayer:after {
  display: none;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist ul {
  padding: 0px;
  margin: 0px !important;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist ul li {
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  color: #222222;
  margin: 0px !important;
  cursor: pointer;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist ul li.mdtc-clnplrv-playlist-current {
  background: #5687e1 !important;
  color: #ffffff;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist ul li:nth-child(even) {
  background: #f3f5f7;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist ul li:hover {
  background: #d1d1d1;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist ul li .mdtc-clnplrv-playlist-item {
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  padding: 9px 19px 8px;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist ul li:last-child {
  margin-bottom: 3px !important;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist ul li .mdtc-clnplrv-free-media {
  float: right;
  opacity: 0.4;
  margin: 8px 20px 0px 0px;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist ul li .mdtc-clnplrv-free-media:hover {
  opacity: 0.6;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist ul li .mdtc-clnplrv-free-media a {
  padding: 0px !important;
  text-decoration: none;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist ul li .mdtc-clnplrv-free-media a:hover {
  text-decoration: underline;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-playlist .mdtc-clnplrv-artist {
  opacity: .6;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface {
  min-height: 68px;
  background: #f3f5f7;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: stretch;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface li a {
  display: inline-block;
  text-decoration: none;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-controls {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  height: 44px;
  padding: 24px 20px 0px 18px;
  white-space: nowrap !important;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-controls li {
  display: inline-block;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-controls .mdtc-clnplrv-previous {
  width: 18px;
  height: 23px;
  display: inline-block;
  opacity: 0.4;
  font-size: 21px;
  color: #919191;
  position: relative;
  top: -2px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-controls .mdtc-clnplrv-next {
  width: 18px;
  height: 23px;
  display: inline-block;
  opacity: 0.4;
  font-size: 21px;
  color: #919191;
  position: relative;
  top: -2px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-controls .mdtc-clnplrv-play {
  width: 19px;
  height: 23px;
  display: inline-block;
  margin: 0px 16px 0px 18px;
  opacity: 0.9;
  font-size: 23px;
  color: #919191;
  position: relative;
  top: -1px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-controls .mdtc-clnplrv-pause {
  width: 19px;
  height: 23px;
  display: inline-block;
  margin: 0px 16px 0px 18px;
  opacity: 0.9;
  font-size: 23px;
  color: #919191;
  position: relative;
  top: -1px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container {
  -webkit-flex-grow: 1000;
  flex-grow: 1000;
  padding: 20px 0px 0px 0px;
  overflow: hidden;
  position: relative;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-seek-container-inner {
  position: absolute;
  left: 0px;
  right: 25px;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-seek-container-inner .mdtc-clnplrv-song-title {
  margin-right: 40px;
  height: 16px;
  overflow: hidden;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-seek-container-inner .mdtc-clnplrv-song-title .mdtc-clnplrv-song-title-inner {
  white-space: nowrap;
  display: inline-block;
  color: #222222;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-seek-container-inner .mdtc-clnplrv-song-title .mdtc-clnplrv-song-title-inner &gt; strong {
  padding-right: 10px;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-seek-container-inner .mdtc-clnplrv-time {
  float: right;
  color: #919191;
  cursor: pointer;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-seek-container-inner .mdtc-clnplrv-progress {
  width: 100%;
  height: 4px;
  background: #d1d1d1;
  display: block;
  border-radius: 2px;
  margin-top: 8px;
  cursor: pointer;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-seek-container-inner .mdtc-clnplrv-progress .mdtc-clnplrv-seek-bar {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: #c2c2c2;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-seek-container-inner .mdtc-clnplrv-progress .mdtc-clnplrv-seek-bar .mdtc-clnplrv-play-bar {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: #919191;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-volume-bar {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  height: 9px;
  min-width: 70px;
  max-width: 70px;
  background: #c2c2c2;
  border-radius: 9px;
  display: inline-block;
  position: relative;
  margin: 32px 22px 0px 0px;
  float: right;
  cursor: pointer;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-volume-bar .mdtc-clnplrv-volume-bar-value {
  display: inline-block;
  height: 7px;
  border-radius: 9px;
  background: #f3f5f7;
  border: 1px solid #d1d1d1;
  position: absolute;
  top: 0px;
  left: 0px;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-volume-bar .mdtc-clnplrv-volume-bar-value i {
  display: inline-block;
  float: right;
  width: 13px;
  height: 13px;
  border-radius: 15px;
  background: #f3f5f7;
  border: 1px solid #c2c2c2;
  margin: -4px -8px 0px 0px;
  box-shadow: 0px 1px 1px #d4d4d4;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-toggles {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  padding: 30px 0px 0px;
  white-space: nowrap;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li {
  display: inline-block;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li.mdtc-clnplrv-fullscreen-li {
  display: inline-block !important;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li .mdtc-clnplrv-fullscreen-btn {
  display: inline-block;
  width: 17px;
  height: 14px;
  opacity: 0.4;
  margin-right: 20px;
  margin-left: -2px;
  font-size: 20px;
  color: #919191;
  position: relative;
  top: -3px;
  left: 0px;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li .mdtc-clnplrv-shuffle {
  display: inline-block;
  width: 17px;
  height: 14px;
  opacity: 0.4;
  margin-right: 10px;
  font-size: 20px;
  color: #919191;
  position: relative;
  top: -3px;
  left: 0px;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li .mdtc-clnplrv-shuffle-off {
  display: inline-block;
  width: 17px;
  height: 14px;
  opacity: 1;
  margin-right: 10px;
  font-size: 20px;
  color: #919191;
  position: relative;
  top: -3px;
  left: 0px;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li .mdtc-clnplrv-repeat {
  display: inline-block;
  width: 17px;
  height: 14px;
  opacity: 0.4;
  margin-right: 10px;
  font-size: 21px;
  color: #919191;
  position: relative;
  top: -3px;
  left: 0px;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li .mdtc-clnplrv-repeat-off {
  display: inline-block;
  width: 17px;
  height: 14px;
  opacity: 1;
  margin-right: 10px;
  font-size: 21px;
  color: #919191;
  position: relative;
  top: -3px;
  left: 0px;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li .mdtc-clnplrv-download-one {
  opacity: 0.4;
  width: 17px;
  height: 14px;
  margin-right: 35px;
  margin-left: -20px;
  font-size: 21px;
  color: #919191;
  position: relative;
  top: -3px;
  left: 0px;
}
.mdtc-clnplrv-main-player .mdtc-clnplrv-previous:hover,
.mdtc-clnplrv-main-player .mdtc-clnplrv-next:hover,
.mdtc-clnplrv-main-player .mdtc-clnplrv-play:hover,
.mdtc-clnplrv-main-player .mdtc-clnplrv-pause:hover,
.mdtc-clnplrv-main-player .mdtc-clnplrv-volume-bar:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mdtc-clnplrv-no-solution {
  display: block;
  padding: 15px;
}
.mdtc-clnplrv-no-solution span {
  display: block;
  font-weight: bold;
}
.mdtc-clnplrv-disabled-controls.mdtc-clnplrv-main-player .mdtc-clnplrv-previous,
.mdtc-clnplrv-disabled-controls.mdtc-clnplrv-main-player .mdtc-clnplrv-next,
.mdtc-clnplrv-disabled-controls.mdtc-clnplrv-main-player .mdtc-clnplrv-toggles li .mdtc-clnplrv-shuffle,
.mdtc-clnplrv-disabled-controls.mdtc-clnplrv-main-player .mdtc-clnplrv-toggles li .mdtc-clnplrv-repeat {
  display: none !important;
}
.mdtc-clnplrv-disabled-controls .mdtc-clnplrv-fullscreen-btn {
  margin-right: 30px !important;
}
.mdtc-clnplrv-responsive:not(.mdtc-clnplrv-solo-player) .mdtc-clnplrv-interface {
  position: relative;
  min-height: 108px;
}
.mdtc-clnplrv-responsive:not(.mdtc-clnplrv-solo-player) .mdtc-clnplrv-interface .mdtc-clnplrv-controls {
  -webkit-flex-grow: 100;
  flex-grow: 100;
}
.mdtc-clnplrv-responsive:not(.mdtc-clnplrv-solo-player) .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container {
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0px;
  right: 0px;
  height: 30px;
  padding: 0px 0px 15px 0px;
}
.mdtc-clnplrv-responsive:not(.mdtc-clnplrv-solo-player) .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-seek-container-inner {
  right: 20px;
  left: 20px;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme {
  color: #dddddd;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-type-playlist {
  background: #3f3f3f;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-video-container {
  background-color: #373737;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-playlist ul li {
  color: #dddddd;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-playlist ul li.mdtc-clnplrv-playlist-current {
  background: #80b05d !important;
  color: #dddddd;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-playlist ul li:nth-child(even) {
  background: #373737;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-playlist ul li:hover {
  background: #606060;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface {
  background: #373737;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-previous {
  color: #888888;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-next {
  color: #888888;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-play {
  color: #888888;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-pause {
  color: #888888;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-volume-bar {
  background: #606060;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-volume-bar .mdtc-clnplrv-volume-bar-value {
  background: #373737;
  border: 1px solid #606060;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-volume-bar .mdtc-clnplrv-volume-bar-value i {
  background: #373737;
  border: 1px solid #606060;
  box-shadow: 0px 1px 1px #1e1e1e;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-song-title .mdtc-clnplrv-song-title-inner {
  color: #dddddd;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-time {
  color: #888888;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-progress {
  background: #888888;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-progress .mdtc-clnplrv-seek-bar {
  background: #606060;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-seek-container .mdtc-clnplrv-progress .mdtc-clnplrv-seek-bar .mdtc-clnplrv-play-bar {
  background: #888888;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li .mdtc-clnplrv-shuffle {
  color: #888888;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li .mdtc-clnplrv-shuffle-off {
  color: #888888;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li .mdtc-clnplrv-repeat {
  color: #888888;
}
.mdtc-clnplrv-main-player.mdtc-clnplrv-dark-theme .mdtc-clnplrv-interface .mdtc-clnplrv-toggles li .mdtc-clnplrv-repeat-off {
  color: #888888;
}
.mdtc-clnplrv-state-full-screen {
  width: 100%;
  height: 100%;
}
.mdtc-clnplrv-state-full-screen .mdtc-clnplrv-gui {
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0px;
}
.mdtc-clnplrv-state-full-screen .mdtc-clnplrv-fullscreen-btn {
  opacity: 1 !important;
}
.mediatec-cleanvideoplayer &gt; ul {
  display: none;
}
.mdtc-clnplrv-solo-download .mdtc-clnplrv-download-one {
  display: inline-block !important;
}

#stacks_in_389 {
	background-color: rgba(0, 0, 0, 1.00);
	padding:  20px;
}
    #stacks_in_1342&gt;.s-pro.no-vault-z&gt;.shear-wrapper&gt;.shear-inner.o-bg-vault&gt;.inner-content{z-index:1}  #stacks_in_1342&gt;.s-pro&gt;.sections-layer{display:none}      #stacks_in_1342&gt;.s-pro&gt;.shear-wrapper&gt;.shear-inner::after,#stacks_in_1342&gt;.s-pro&gt;.shear-wrapper&gt;.shear-inner::before{margin-top:0.00%} #stacks_in_1342&gt;.s-pro:not(.vault-margin).top-margin-custom{margin-top:0.00%!important}@media screen and (min-width:640px){#stacks_in_1342&gt;.s-pro:not(.vault-margin).top-margin-custom{margin-top:7.00%!important}}       

#stacks_in_1342 {
	padding:  20px;
}






	#stacks_in_48 &gt; .container {
		max-width: 1140px;
	}










	#stacks_in_48 &gt; .container {
		border-radius: 0px;
	}

	




@media (max-width: 47.9375em) {
	/* iPhone */
	#stacks_in_184 .foundry_column {
		margin-bottom: 20px;
	}
}

@media (min-width: 48em) and (max-width: 61.9em) {
	/* iPad */
	#stacks_in_184 .foundry_column {
		margin-bottom: 40px;
	}
}

@media (min-width: 62em) {
	/* Desktop */
	#stacks_in_184 .foundry_column {
		margin-bottom: 40px;
	}
}


/* CSS for removing gutters if option is enabled. */
#stacks_in_184 .row.no-gutters {
	margin-right: 0;
	margin-left: 0;
  }
  
  #stacks_in_184 .row.no-gutters &gt; [class^="col-"],
  #stacks_in_184 .row.no-gutters &gt; [class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
  }
  










             #stacks_in_439 h3,#stacks_in_439 div{color:rgba(254, 255, 252, 1.00)}#stacks_in_439 h3 a,#stacks_in_439 div a{color:rgba(254, 255, 252, 1.00)}#stacks_in_439 h3 a:hover,#stacks_in_439 div a:hover{color:rgba(190, 191, 189, 1.00)}#stacks_in_439 small,#stacks_in_439 small div{color:rgba(111, 111, 111, 1.00)}      #stacks_in_439 .hTxt:not(.vault-font){font-family:'Anton',Sans-Serif;font-weight:700;font-style:normal}          #stacks_in_439 .hTxt{text-shadow:0 1px 0 rgba(102, 102, 102, 0.30),0 2px 0 rgba(117, 117, 117, 0.30),0 3px 0 rgba(132, 132, 132, 0.30),0 4px 0 rgba(147, 147, 147, 0.30),0 5px 0 rgba(162, 162, 162, 0.30),0 6px 5px rgba(102, 102, 102, 0.30),0 6px 1px rgba(192, 192, 192, 0.35),0 0 5px rgba(192, 192, 192, 0.35),0 1px 3px rgba(172, 172, 172, 0.35),0 3px 5px rgba(182, 182, 182, 0.35),0 5px 3px rgba(177, 177, 177, 0.35),0 10px 3px rgba(182, 182, 182, 0.35),0 15px 5px rgba(187, 187, 187, 0.35)}          




/* Color picker style settings */







	
	#stacks_in_177 p,
	#stacks_in_177 {
		font-size: 18px;
	}
	

	



#stacks_in_177 p,
#stacks_in_177 {
	
}
/* NoteThing by RapidWeaver Central  â€” Inspired by Mrs RapidWeaver Central but based on a snippet by Thibaut Courouble */

/*
 * Copyright (c) 2012 Thibaut Courouble
 * http://www.webinterfacelab.com
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 */

#stacks_in_498 .notepad, .notepad:before, .notepad:after {
	background-color: white;
	background-image: -webkit-linear-gradient(#f6abca 1px, transparent 1px), -webkit-linear-gradient(#f6abca 1px, transparent 1px), -webkit-linear-gradient(#e8e8e8 1px, transparent 1px);
	background-image: -moz-linear-gradient(#f6abca 1px, transparent 1px), -moz-linear-gradient(#f6abca 1px, transparent 1px), -moz-linear-gradient(#e8e8e8 1px, transparent 1px);
	background-image: -o-linear-gradient(#f6abca 1px, transparent 1px), -o-linear-gradient(#f6abca 1px, transparent 1px), -o-linear-gradient(#e8e8e8 1px, transparent 1px);
	background-image: linear-gradient(#f6abca 1px, transparent 1px), linear-gradient(#f6abca 1px, transparent 1px), linear-gradient(#e8e8e8 1px, transparent 1px);
	background-size: 1px 1px, 1px 1px, 23px 23px;
	background-repeat: repeat-y, repeat-y, repeat;
	background-position: 22px 0, 24px 0, 0 50px;
	-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.5);
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		 -moz-border-radius-topleft: 3px;
	     -moz-border-radius-topright:3px;
				  border-top-radius: 3px;
}

#stacks_in_498 .notepad {
	position: relative;
	margin: 15px auto;
	padding: 0 23px 14px 35px;
	width: 372px;
	line-height: 23px;
	font-size: 11px;
	color: #666;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		 -moz-border-radius-topleft: 3px;
	     -moz-border-radius-topright:3px;
				  border-top-radius: 3px;
}

#stacks_in_498 .notepad p {
	margin-bottom: 23px;
}

#stacks_in_498 .notepad :last-child {
	margin-bottom: 0;
}

#stacks_in_498 .notepad:before, .notepad:after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 100%;
	left: 3px;
	right: 3px;
	margin-top: -2px;
	height: 4px;
	background-size: 1px 1px, 1px 1px, 0 0;
}

#stacks_in_498 .notepad:before {
	z-index: -2;
	left: 6px;
	right: 6px;
	height: 6px;
	background-color: #eee;
}

/* Heading */

#stacks_in_498 .notepad-heading {
	position: relative;
	margin: 0 -23px 14px -35px;
	height: auto;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		 -moz-border-radius-topleft: 3px;
	     -moz-border-radius-topright:3px;
				  border-top-radius: 3px;
}

#stacks_in_498 .notepad-heading  {
	line-height: auto;
	padding: 6px;
	font-size: 16px;
	color: #B5C111;		
	text-align: center;
}

#stacks_in_498 .notepad-heading:before, .notepad-heading:after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 1px;
	right: 1px;
	height: 0;
	border-top:  1px dashed;
	border-color: #000000;
}

#stacks_in_498 .notepad-heading:after {
	bottom: 3px;
	border-color: #071c2c;
	border-color: rgba(0, 0, 0, 0.5);
}

/* Background */

.static-bg0stacks_in_498 {
	background: transparent;
}

.static-bg1stacks_in_498 {
	background: #4A8239;
}

.static-bg2stacks_in_498 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

.static-bg3stacks_in_498 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(top, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);
}

.static-bg4stacks_in_498 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_498 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}




/* Color picker style settings */







	
	#stacks_in_179 p,
	#stacks_in_179 {
		font-size: 16px;
	}
	

	



#stacks_in_179 p,
#stacks_in_179 {
	margin-bottom: 0;
}



	#stacks_in_1336 .jelly-button-wrapper {
		margin-bottom: 21px;
	}



#stacks_in_1336 .jelly-button-wrapper {
	position: relative;
	z-index: 10;
}

#stacks_in_1336 {
}

#stacks_in_1336 a.jelly-btn {
	-webkit-font-smoothing: antialiased;
	text-shadow: 0 0 2px rgba(0, 0, 0, 1.00);
	font-weight: 700;
	text-decoration: none;
  /* -webkit-box-shadow: inset 0 0 1px 2px rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 0 1px 2px rgba(255, 255, 255, 0.4); */
  position: relative;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 20px;
  display: inline-block;
  color: rgba(255, 255, 255, 1.00);
	background: rgba(131, 36, 245, 1.00);
	background: -moz-linear-gradient(0deg, rgba(131, 36, 245, 1.00) 0%, rgba(195, 168, 242, 1.00) 100%);
	background: -webkit-linear-gradient(0deg, rgba(131, 36, 245, 1.00) 0%,rgba(195, 168, 242, 1.00) 100%);
	background: linear-gradient(0deg, rgba(131, 36, 245, 1.00) 0%,rgba(195, 168, 242, 1.00) 100%);
	vertical-align: middle;
	
}


#stacks_in_1336 .jelly-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -10px;
  left: 5%;
  height: 110%;
  width: 90%;
  opacity: 0.7;
  border-radius: 50px;
	
	
  background: rgba(19, 19, 19, 1.00);
	
  -webkit-filter: blur(6px);
  -moz-filter: blur(6px);
  -o-filter: blur(6px);
  -ms-filter: blur(6px);
  filter: blur(6px);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
	transform: translateZ(0);
}

#stacks_in_1336 .jelly-btn:hover::after {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
  width: 100%;
  bottom: -5px;
  left: 0;
	transform: translateZ(0);
}

#stacks_in_1336 .jelly-btn:hover:active::after {
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
	transform: translateZ(0);
}





#stacks_in_1336 a.jelly-btn {
	padding-left: 10px;
	padding-right: 20px;
}

#stacks_in_1336 i.button-icon {
	background: rgba(255, 255, 255, 0.00);
	border-radius: 50%;
	color: rgba(230, 246, 240, 1.00);
	text-shadow: none;
	margin-right: 5px;
}








	#stacks_in_1336 a.jelly-btn {
		height: 60px;
		line-height: 60px;
	  border-radius: 60px;
	}

	#stacks_in_1336 i.button-icon {
		height: 40px;
		width: 40px;
		line-height: 40px;
	}





#stacks_in_1336 .animated {
	-webkit-animation-duration: 2s;
  animation-duration: 2s;
}
             #stacks_in_447 h1,#stacks_in_447 div{color:rgba(254, 255, 131, 1.00)}#stacks_in_447 h1 a,#stacks_in_447 div a{color:rgba(254, 255, 131, 1.00)}#stacks_in_447 h1 a:hover,#stacks_in_447 div a:hover{color:rgba(190, 191, 98, 1.00)}#stacks_in_447 small,#stacks_in_447 small div{color:rgba(111, 111, 111, 1.00)}      #stacks_in_447 .hTxt:not(.vault-font){font-family:'Anton',Sans-Serif;font-weight:700;font-style:normal}          #stacks_in_447 .hTxt{text-shadow:0 1px 0 rgba(102, 102, 102, 0.30),0 2px 0 rgba(117, 117, 117, 0.30),0 3px 0 rgba(132, 132, 132, 0.30),0 4px 0 rgba(147, 147, 147, 0.30),0 5px 0 rgba(162, 162, 162, 0.30),0 6px 5px rgba(102, 102, 102, 0.30),0 6px 1px rgba(192, 192, 192, 0.35),0 0 5px rgba(192, 192, 192, 0.35),0 1px 3px rgba(172, 172, 172, 0.35),0 3px 5px rgba(182, 182, 182, 0.35),0 5px 3px rgba(177, 177, 177, 0.35),0 10px 3px rgba(182, 182, 182, 0.35),0 15px 5px rgba(187, 187, 187, 0.35)}          

/* NoteThing by RapidWeaver Central  â€” Inspired by Mrs RapidWeaver Central but based on a snippet by Thibaut Courouble */

/*
 * Copyright (c) 2012 Thibaut Courouble
 * http://www.webinterfacelab.com
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 */

#stacks_in_496 .notepad, .notepad:before, .notepad:after {
	background-color: white;
	background-image: -webkit-linear-gradient(#f6abca 1px, transparent 1px), -webkit-linear-gradient(#f6abca 1px, transparent 1px), -webkit-linear-gradient(#e8e8e8 1px, transparent 1px);
	background-image: -moz-linear-gradient(#f6abca 1px, transparent 1px), -moz-linear-gradient(#f6abca 1px, transparent 1px), -moz-linear-gradient(#e8e8e8 1px, transparent 1px);
	background-image: -o-linear-gradient(#f6abca 1px, transparent 1px), -o-linear-gradient(#f6abca 1px, transparent 1px), -o-linear-gradient(#e8e8e8 1px, transparent 1px);
	background-image: linear-gradient(#f6abca 1px, transparent 1px), linear-gradient(#f6abca 1px, transparent 1px), linear-gradient(#e8e8e8 1px, transparent 1px);
	background-size: 1px 1px, 1px 1px, 23px 23px;
	background-repeat: repeat-y, repeat-y, repeat;
	background-position: 22px 0, 24px 0, 0 50px;
	-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.5);
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		 -moz-border-radius-topleft: 3px;
	     -moz-border-radius-topright:3px;
				  border-top-radius: 3px;
}

#stacks_in_496 .notepad {
	position: relative;
	margin: 15px auto;
	padding: 0 23px 14px 35px;
	width: 386px;
	line-height: 23px;
	font-size: 11px;
	color: #666;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		 -moz-border-radius-topleft: 3px;
	     -moz-border-radius-topright:3px;
				  border-top-radius: 3px;
}

#stacks_in_496 .notepad p {
	margin-bottom: 23px;
}

#stacks_in_496 .notepad :last-child {
	margin-bottom: 0;
}

#stacks_in_496 .notepad:before, .notepad:after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 100%;
	left: 3px;
	right: 3px;
	margin-top: -2px;
	height: 4px;
	background-size: 1px 1px, 1px 1px, 0 0;
}

#stacks_in_496 .notepad:before {
	z-index: -2;
	left: 6px;
	right: 6px;
	height: 6px;
	background-color: #eee;
}

/* Heading */

#stacks_in_496 .notepad-heading {
	position: relative;
	margin: 0 -23px 14px -35px;
	height: auto;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		 -moz-border-radius-topleft: 3px;
	     -moz-border-radius-topright:3px;
				  border-top-radius: 3px;
}

#stacks_in_496 .notepad-heading  {
	line-height: auto;
	padding: 6px;
	font-size: 16px;
	color: #BB0000;		
	text-align: center;
}

#stacks_in_496 .notepad-heading:before, .notepad-heading:after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 1px;
	right: 1px;
	height: 0;
	border-top:  1px dashed;
	border-color: #000000;
}

#stacks_in_496 .notepad-heading:after {
	bottom: 3px;
	border-color: #071c2c;
	border-color: rgba(0, 0, 0, 0.5);
}

/* Background */

.static-bg0stacks_in_496 {
	background: transparent;
}

.static-bg1stacks_in_496 {
	background: #D2CB12;
}

.static-bg2stacks_in_496 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

.static-bg3stacks_in_496 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(top, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);
}

.static-bg4stacks_in_496 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_496 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}




/* Color picker style settings */







	
	#stacks_in_197 p,
	#stacks_in_197 {
		font-size: 16px;
	}
	

	



#stacks_in_197 p,
#stacks_in_197 {
	margin-bottom: 0;
}



	#stacks_in_1337 .jelly-button-wrapper {
		margin-bottom: 21px;
	}



#stacks_in_1337 .jelly-button-wrapper {
	position: relative;
	z-index: 10;
}

#stacks_in_1337 {
}

#stacks_in_1337 a.jelly-btn {
	-webkit-font-smoothing: antialiased;
	text-shadow: 0 0 2px rgba(0, 0, 0, 1.00);
	font-weight: 700;
	text-decoration: none;
  /* -webkit-box-shadow: inset 0 0 1px 2px rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 0 1px 2px rgba(255, 255, 255, 0.4); */
  position: relative;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 20px;
  display: inline-block;
  color: rgba(255, 255, 255, 1.00);
	background: rgba(131, 36, 245, 1.00);
	background: -moz-linear-gradient(0deg, rgba(131, 36, 245, 1.00) 0%, rgba(195, 168, 242, 1.00) 100%);
	background: -webkit-linear-gradient(0deg, rgba(131, 36, 245, 1.00) 0%,rgba(195, 168, 242, 1.00) 100%);
	background: linear-gradient(0deg, rgba(131, 36, 245, 1.00) 0%,rgba(195, 168, 242, 1.00) 100%);
	vertical-align: middle;
	
}


#stacks_in_1337 .jelly-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -10px;
  left: 5%;
  height: 110%;
  width: 90%;
  opacity: 0.7;
  border-radius: 50px;
	
	
  background: rgba(19, 19, 19, 1.00);
	
  -webkit-filter: blur(6px);
  -moz-filter: blur(6px);
  -o-filter: blur(6px);
  -ms-filter: blur(6px);
  filter: blur(6px);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
	transform: translateZ(0);
}

#stacks_in_1337 .jelly-btn:hover::after {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
  width: 100%;
  bottom: -5px;
  left: 0;
	transform: translateZ(0);
}

#stacks_in_1337 .jelly-btn:hover:active::after {
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
	transform: translateZ(0);
}





#stacks_in_1337 a.jelly-btn {
	padding-left: 10px;
	padding-right: 20px;
}

#stacks_in_1337 i.button-icon {
	background: rgba(255, 255, 255, 0.00);
	border-radius: 50%;
	color: rgba(230, 246, 240, 1.00);
	text-shadow: none;
	margin-right: 5px;
}








	#stacks_in_1337 a.jelly-btn {
		height: 60px;
		line-height: 60px;
	  border-radius: 60px;
	}

	#stacks_in_1337 i.button-icon {
		height: 40px;
		width: 40px;
		line-height: 40px;
	}





#stacks_in_1337 .animated {
	-webkit-animation-duration: 2s;
  animation-duration: 2s;
}
 .style-pro-stacks_in_1342::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}     .style-pro-stacks_in_1342:not(.bg-vault):not(.bg-featured)::before{      background-image:radial-gradient(ellipse at 50% 50%,rgba(227, 176, 254, 1.00) 0%,rgba(129, 96, 159, 1.00) 50%,rgba(46, 38, 52, 1.00) 79%);}    
/*stake-nomin*/

.hp_stacks_in_1903 .hp-bg-layer {
  
  background-color : rgba(255, 255, 255, 0.00);
  background-image : url(../files/backgroundImage-1903.png);
  
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}
.hp_stacks_in_1903 .hp-fg-layer {
  
}
.hp_stacks_in_1903 .hp-fg-layer .hp-section {
  
}



.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack,
.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-4 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack {
  min-height: 120px;
}
.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-2,
.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-4 {
  z-index: 4;
  overflow: visible;
  position: relative;
}
.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-3 {
  z-index: 1;
  position: relative;
  padding: 120px 0px;
}
.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-2 &gt; div,
.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-4 &gt; div {
  overflow: visible;
}
.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after,
.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-4 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after {
  content: "";
  background: inherit;
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 1;
}
.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-2 .hp-section,
.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-4 .hp-section {
  z-index: 2;
  position: relative;
}
.hp_stacks_in_1903 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after {
  top: auto;
  bottom: 0;
}
.hp_stacks_in_1903 .hp-fg-layer .svgm-wrap:after,
.hp_stacks_in_1903 .hp-fg-layer .hp-extend:after {
  content: "";
  position: absolute;
  top:100%;
  left: -150vw;
  right: -150vw;
  height: 500vh;
}
.hp_stacks_in_1903 .hp-fg-layer .hp-svg-wrap svg {
  position: absolute;
  top: -120px;
}






.hp_stacks_in_1903 .hp-fg-layer .hp-svg-wrap &gt; .hp-extend,
.hp_stacks_in_1903 .hp-fg-layer .hp-layer-2 .hp-svg-wrap .hp-jagged-1,
.hp_stacks_in_1903 .hp-fg-layer .hp-layer-3 .hp-svg-wrap .hp-jagged-2,
.hp_stacks_in_1903 .hp-fg-layer .hp-layer-4 .hp-svg-wrap .hp-jagged-3 {
  display: block;
}
.hp_stacks_in_1903 .hp-fg-layer .hp-layer-3 .hp-svg-wrap .hp-jagged-2 {
  -webkit-transform: translateX(-50%) rotateY(180deg);
  transform: translateX(-50%) rotateY(180deg);
  left: 50%;
  position: relative;
}
@media all and (min-width:1920px){
  .hp_stacks_in_1903 .hp-svg-wrap svg{
    height:240px
  }
  .hp_stacks_in_1903  .hp-fg-layer .hp-horizon-content{
    padding-bottom:240px
  }
  .hp_stacks_in_1903  .hp-fg-layer .hp-svg-wrap svg{
    position:absolute;
    top:-240px
  }
}

#stacks_in_1925 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1925 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1925 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1927 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1927 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1927 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1929 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1929 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1929 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1905 .hp-extend {
  background: rgba(111, 77, 171, 0.51);
  height: 120px;
}
#stacks_in_1905 svg {
  fill: rgba(111, 77, 171, 0.51);
}
#stacks_in_1905 .hp-extend:after {
  background: rgba(111, 77, 171, 0.51);
}         @media only screen and (max-width:414px){#stacks_in_1909 h2,#stacks_in_1909 div{text-align:left!important}#stacks_out_1909{display:block!important}}  @media only screen and (min-width:0px){#stacks_in_1909 h2,#stacks_in_1909 div{line-height:1.60}}       #stacks_in_1909 .h-pro{padding:0px} #stacks_in_1909 .h-pro{border-radius: 0px }#stacks_in_1909 .h-pro{border-width: 0px ;border-color:rgba(102, 102, 102, 1.00) rgba(51, 51, 51, 0.00) rgba(102, 102, 102, 1.00) rgba(51, 51, 51, 0.00);border-style:solid}  #stacks_in_1909 .h-pro{background:rgba(0, 0, 0, 0.50)}    #stacks_in_1909 .hTxt:not(.vault-font){font-family:'Righteous',Sans-Serif;font-weight:400;font-style:normal}           #stacks_in_1909 .hTxt{text-shadow:2px 2px 2px rgba(255, 255, 255, 1.00),0px -2px 6px rgba(255, 255, 255, 1.00),0px 2px 6px rgba(255, 255, 255, 1.00)}         

#stacks_out_1909 {
	width: 88%;
}
#stacks_in_1913 .hp-extend {
  background: rgba(126, 67, 171, 0.58);
  height: 120px;
}
#stacks_in_1913 svg {
  fill: rgba(126, 67, 171, 0.58);
}
#stacks_in_1913 .hp-extend:after {
  background: rgba(126, 67, 171, 0.58);
}/* GlowThing by RapidWeaver Central  â€” based on a snippet by Kayla Rose */
 
#stacks_in_379 .rain {
	padding: 10px 12px 12px 10px;
	margin: 0;
	-webkit-box-shadow: 8px 8px 8px #333333 inset, -9px -9px 8px #333333 inset;
	   -moz-box-shadow: 10px 10px 10px #333333 inset, -9px -9px 8px #333333 inset;
			box-shadow: 8px 8px 8px #333333 inset, -9px -9px 8px #333333 inset;
}

#stacks_in_379 .fringe {
	padding: 1px;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_379 .fringe, .rain, .fringe.start, .rain.start {
	background-repeat: repeat-x, repeat-x, repeat-x, repeat-x;
	background-position: 0 0, 0 0, 0 0, 0 0;
	background-image: -moz-linear-gradient(left, #09BA5E 0%, #00C7CE 15%, #3472CF 26%, #00C7CE 48%, #0CCF91 91%, #09BA5E 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(1%,rgba(0,0,0,.3)), color-stop(23%,rgba(0,0,0,.1)), color-stop(40%,rgba(255,231,87,.1)), color-stop(61%,rgba(255,231,87,.2)), color-stop(70%,rgba(255,231,87,.1)), color-stop(80%,rgba(0,0,0,.1)), color-stop(100%,rgba(0,0,0,.25)));
	background-color: #39f;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00BA1B', endColorstr='#00BA1B',GradientType=1 );
}

#stacks_in_379 .fringe.end, .rain.end {
	background-position: -5400px 0, -4600px 0, -3800px 0, -3000px 0;
	-webkit-transition-property: background-position;
	-webkit-transition-duration: 30s;
	-webkit-transition-timing-function: linear;
	   -moz-transition-property: background-position;
	   -moz-transition-duration: 30s;
	   -moz-transition-timing-function: linear;
			transition-property: background-position;
			transition-duration: 30s;
			transition-timing-function: linear;
}

@-webkit-keyframes colors {
	0% {background-color: #39f;
}

15% {
	background-color: #F246C9;
}

30% {
	background-color: #4453F2;
}

45% {
	background-color: #44F262;
}

60% {
	background-color: #F257D4;
}

75% {
	background-color: #EDF255;
}

90% {
	background-color: #F20006;
}

100% {
	background-color: #39f;
}

}

#stacks_in_379 .fringe,.rain {
	-webkit-animation-direction: normal;
	-webkit-animation-duration: 20s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-name: colors;
	-webkit-animation-timing-function: ease;
}

#stacks_in_379 .fringe.unfocus {
	background: #333 !important;
	-webkit-box-shadow: 0px 0px 15px rgba(255,255,255,.2);
	   -moz-box-shadow: 0px 0px 15px rgba(255,255,255,.2);
			box-shadow: 0px 0px 15px rgba(255,255,255,.2);
	-webkit-animation-name: none;
}

#stacks_in_379 .rain.unfocus {
	background: #000 !important;
	-webkit-animation-name: none;
}
#stacks_out_379 {
	width: 450px;
}
/* NoteThing by RapidWeaver Central  â€” Inspired by Mrs RapidWeaver Central but based on a snippet by Thibaut Courouble */

/*
 * Copyright (c) 2012 Thibaut Courouble
 * http://www.webinterfacelab.com
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 */

#stacks_in_375 .notepad, .notepad:before, .notepad:after {
	background-color: white;
	background-image: -webkit-linear-gradient(#f6abca 1px, transparent 1px), -webkit-linear-gradient(#f6abca 1px, transparent 1px), -webkit-linear-gradient(#e8e8e8 1px, transparent 1px);
	background-image: -moz-linear-gradient(#f6abca 1px, transparent 1px), -moz-linear-gradient(#f6abca 1px, transparent 1px), -moz-linear-gradient(#e8e8e8 1px, transparent 1px);
	background-image: -o-linear-gradient(#f6abca 1px, transparent 1px), -o-linear-gradient(#f6abca 1px, transparent 1px), -o-linear-gradient(#e8e8e8 1px, transparent 1px);
	background-image: linear-gradient(#f6abca 1px, transparent 1px), linear-gradient(#f6abca 1px, transparent 1px), linear-gradient(#e8e8e8 1px, transparent 1px);
	background-size: 1px 1px, 1px 1px, 23px 23px;
	background-repeat: repeat-y, repeat-y, repeat;
	background-position: 22px 0, 24px 0, 0 50px;
	-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 4px rgba(0, 0, 0, 0.5);
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		 -moz-border-radius-topleft: 3px;
	     -moz-border-radius-topright:3px;
				  border-top-radius: 3px;
}

#stacks_in_375 .notepad {
	position: relative;
	margin: 15px auto;
	padding: 0 23px 14px 35px;
	width: 353px;
	line-height: 23px;
	font-size: 11px;
	color: #666;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		 -moz-border-radius-topleft: 3px;
	     -moz-border-radius-topright:3px;
				  border-top-radius: 3px;
}

#stacks_in_375 .notepad p {
	margin-bottom: 23px;
}

#stacks_in_375 .notepad :last-child {
	margin-bottom: 0;
}

#stacks_in_375 .notepad:before, .notepad:after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 100%;
	left: 3px;
	right: 3px;
	margin-top: -2px;
	height: 4px;
	background-size: 1px 1px, 1px 1px, 0 0;
}

#stacks_in_375 .notepad:before {
	z-index: -2;
	left: 6px;
	right: 6px;
	height: 6px;
	background-color: #eee;
}

/* Heading */

#stacks_in_375 .notepad-heading {
	position: relative;
	margin: 0 -23px 14px -35px;
	height: auto;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
		 -moz-border-radius-topleft: 3px;
	     -moz-border-radius-topright:3px;
				  border-top-radius: 3px;
}

#stacks_in_375 .notepad-heading  {
	line-height: auto;
	padding: 6px;
	font-size: 18px;
	color: #5256FD;		
	text-align: center;
}

#stacks_in_375 .notepad-heading:before, .notepad-heading:after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 1px;
	right: 1px;
	height: 0;
	border-top:  1px dashed;
	border-color: #000000;
}

#stacks_in_375 .notepad-heading:after {
	bottom: 3px;
	border-color: #071c2c;
	border-color: rgba(0, 0, 0, 0.5);
}

/* Background */

.static-bg0stacks_in_375 {
	background: transparent;
}

.static-bg1stacks_in_375 {
	background: #FFF763;
}

.static-bg2stacks_in_375 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);
}

.static-bg3stacks_in_375 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));
	background-image: -moz-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: -ms-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));
	background-image: -webkit-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: -o-linear-gradient(top, #FFFFFF, #FFFFFF);
	background-image: linear-gradient(top, #FFFFFF, #FFFFFF);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);
}

.static-bg4stacks_in_375 {
	background: url();
	background-position: center center;
	background-repeat: repeat;
}

.static-bg5stacks_in_375 {
	background: url();
	background-position: Center Center;
	background-repeat: Center Center;
}


#stacks_in_375 {
	margin:  19px;
}



/* Color picker style settings */







	
	#stacks_in_377 p,
	#stacks_in_377 {
		font-size: 16px;
	}
	

	



#stacks_in_377 p,
#stacks_in_377 {
	
}
.hp_stacks_in_1705 .hp-bg-layer {
  
  background-color : rgba(255, 255, 255, 0.00);
  background-image : url(../files/backgroundImage-1705.png);
  
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}
.hp_stacks_in_1705 .hp-fg-layer {
  
}
.hp_stacks_in_1705 .hp-fg-layer .hp-section {
  
}



.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack,
.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-4 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack {
  min-height: 120px;
}
.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-2,
.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-4 {
  z-index: 4;
  overflow: visible;
  position: relative;
}
.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-3 {
  z-index: 1;
  position: relative;
  padding: 120px 0px;
}
.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-2 &gt; div,
.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-4 &gt; div {
  overflow: visible;
}
.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after,
.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-4 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after {
  content: "";
  background: inherit;
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 1;
}
.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-2 .hp-section,
.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-4 .hp-section {
  z-index: 2;
  position: relative;
}
.hp_stacks_in_1705 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after {
  top: auto;
  bottom: 0;
}
.hp_stacks_in_1705 .hp-fg-layer .svgm-wrap:after,
.hp_stacks_in_1705 .hp-fg-layer .hp-extend:after {
  content: "";
  position: absolute;
  top:100%;
  left: -150vw;
  right: -150vw;
  height: 500vh;
}
.hp_stacks_in_1705 .hp-fg-layer .hp-svg-wrap svg {
  position: absolute;
  top: -120px;
}






.hp_stacks_in_1705 .hp-fg-layer .hp-svg-wrap &gt; .hp-extend,
.hp_stacks_in_1705 .hp-fg-layer .hp-layer-2 .hp-svg-wrap .hp-jagged-1,
.hp_stacks_in_1705 .hp-fg-layer .hp-layer-3 .hp-svg-wrap .hp-jagged-2,
.hp_stacks_in_1705 .hp-fg-layer .hp-layer-4 .hp-svg-wrap .hp-jagged-3 {
  display: block;
}
.hp_stacks_in_1705 .hp-fg-layer .hp-layer-3 .hp-svg-wrap .hp-jagged-2 {
  -webkit-transform: translateX(-50%) rotateY(180deg);
  transform: translateX(-50%) rotateY(180deg);
  left: 50%;
  position: relative;
}
@media all and (min-width:1920px){
  .hp_stacks_in_1705 .hp-svg-wrap svg{
    height:240px
  }
  .hp_stacks_in_1705  .hp-fg-layer .hp-horizon-content{
    padding-bottom:240px
  }
  .hp_stacks_in_1705  .hp-fg-layer .hp-svg-wrap svg{
    position:absolute;
    top:-240px
  }
}

#stacks_in_1724 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1724 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1724 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1726 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1726 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1726 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1728 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1728 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1728 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1716 .hp-extend {
  background: rgba(111, 77, 171, 0.51);
  height: 120px;
}
#stacks_in_1716 svg {
  fill: rgba(111, 77, 171, 0.51);
}
#stacks_in_1716 .hp-extend:after {
  background: rgba(111, 77, 171, 0.51);
}         @media only screen and (max-width:414px){#stacks_in_1797 h1,#stacks_in_1797 div{text-align:left!important}#stacks_out_1797{display:block!important}}        #stacks_in_1797 .h-pro{padding:0px} #stacks_in_1797 .h-pro{border-radius: 0px }#stacks_in_1797 .h-pro{border-width: 0px ;border-color:rgba(102, 102, 102, 1.00) rgba(51, 51, 51, 0.00) rgba(102, 102, 102, 1.00) rgba(51, 51, 51, 0.00);border-style:solid}  #stacks_in_1797 .h-pro{background:rgba(0, 0, 0, 0.50)}    #stacks_in_1797 .hTxt:not(.vault-font){font-family:'Righteous',Sans-Serif;font-weight:400;font-style:normal}           #stacks_in_1797 .hTxt{text-shadow:2px 2px 2px rgba(255, 255, 255, 1.00),0px -2px 6px rgba(255, 255, 255, 1.00),0px 2px 6px rgba(255, 255, 255, 1.00)}         
#stacks_in_1721 .hp-extend {
  background: rgba(126, 67, 171, 0.58);
  height: 120px;
}
#stacks_in_1721 svg {
  fill: rgba(126, 67, 171, 0.58);
}
#stacks_in_1721 .hp-extend:after {
  background: rgba(126, 67, 171, 0.58);
}


	

	#stacks_in_455 hr.foundry-divider-simple {
		border-top-style: solid;
		border-top-width: 1px;
	}






	#stacks_in_455 .foundry-label {
		width: 100%;
	}

	#stacks_in_455 hr.foundry-divider-simple {
		width: 100%;
	}

.hp_stacks_in_1731 .hp-bg-layer {
  
  background-color : rgba(255, 255, 255, 0.00);
  background-image : url(../files/backgroundImage-1731.png);
  
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}
.hp_stacks_in_1731 .hp-fg-layer {
  
}
.hp_stacks_in_1731 .hp-fg-layer .hp-section {
  
}



.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack,
.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-4 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack {
  min-height: 120px;
}
.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-2,
.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-4 {
  z-index: 4;
  overflow: visible;
  position: relative;
}
.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-3 {
  z-index: 1;
  position: relative;
  padding: 120px 0px;
}
.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-2 &gt; div,
.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-4 &gt; div {
  overflow: visible;
}
.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after,
.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-4 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after {
  content: "";
  background: inherit;
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 1;
}
.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-2 .hp-section,
.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-4 .hp-section {
  z-index: 2;
  position: relative;
}
.hp_stacks_in_1731 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after {
  top: auto;
  bottom: 0;
}
.hp_stacks_in_1731 .hp-fg-layer .svgm-wrap:after,
.hp_stacks_in_1731 .hp-fg-layer .hp-extend:after {
  content: "";
  position: absolute;
  top:100%;
  left: -150vw;
  right: -150vw;
  height: 500vh;
}
.hp_stacks_in_1731 .hp-fg-layer .hp-svg-wrap svg {
  position: absolute;
  top: -120px;
}






.hp_stacks_in_1731 .hp-fg-layer .hp-svg-wrap &gt; .hp-extend,
.hp_stacks_in_1731 .hp-fg-layer .hp-layer-2 .hp-svg-wrap .hp-jagged-1,
.hp_stacks_in_1731 .hp-fg-layer .hp-layer-3 .hp-svg-wrap .hp-jagged-2,
.hp_stacks_in_1731 .hp-fg-layer .hp-layer-4 .hp-svg-wrap .hp-jagged-3 {
  display: block;
}
.hp_stacks_in_1731 .hp-fg-layer .hp-layer-3 .hp-svg-wrap .hp-jagged-2 {
  -webkit-transform: translateX(-50%) rotateY(180deg);
  transform: translateX(-50%) rotateY(180deg);
  left: 50%;
  position: relative;
}
@media all and (min-width:1920px){
  .hp_stacks_in_1731 .hp-svg-wrap svg{
    height:240px
  }
  .hp_stacks_in_1731  .hp-fg-layer .hp-horizon-content{
    padding-bottom:240px
  }
  .hp_stacks_in_1731  .hp-fg-layer .hp-svg-wrap svg{
    position:absolute;
    top:-240px
  }
}

#stacks_in_1750 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1750 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1750 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1752 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1752 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1752 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1754 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1754 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1754 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1733 .hp-extend {
  background: rgba(111, 77, 171, 0.51);
  height: 120px;
}
#stacks_in_1733 svg {
  fill: rgba(111, 77, 171, 0.51);
}
#stacks_in_1733 .hp-extend:after {
  background: rgba(111, 77, 171, 0.51);
}         @media only screen and (max-width:414px){#stacks_in_464 h1,#stacks_in_464 div{text-align:left!important}#stacks_out_464{display:block!important}}        #stacks_in_464 .h-pro{padding:0px} #stacks_in_464 .h-pro{border-radius: 0px }#stacks_in_464 .h-pro{border-width: 0px ;border-color:rgba(102, 102, 102, 1.00) rgba(51, 51, 51, 0.00) rgba(102, 102, 102, 1.00) rgba(51, 51, 51, 0.00);border-style:solid}  #stacks_in_464 .h-pro{background:rgba(0, 0, 0, 0.50)}    #stacks_in_464 .hTxt:not(.vault-font){font-family:'Righteous',Sans-Serif;font-weight:400;font-style:normal}           #stacks_in_464 .hTxt{text-shadow:2px 2px 2px rgba(255, 255, 255, 1.00),0px -2px 6px rgba(255, 255, 255, 1.00),0px 2px 6px rgba(255, 255, 255, 1.00)}         
#stacks_in_1738 .hp-extend {
  background: rgba(126, 67, 171, 0.58);
  height: 120px;
}
#stacks_in_1738 svg {
  fill: rgba(126, 67, 171, 0.58);
}
#stacks_in_1738 .hp-extend:after {
  background: rgba(126, 67, 171, 0.58);
}


/* Color picker style settings */


#stacks_in_457 p {
	color: rgba(54, 0, 107, 1.00);
}

#stacks_in_457 p a,
#stacks_in_457 p a:visited {
	color: rgba(55, 129, 187, 1.00);
}

#stacks_in_457 p a:hover,
#stacks_in_457 p a:active {
	color: rgba(64, 103, 138, 1.00);
}

/* Edit mode custom colors. */
#stacks_in_457 .paragraph {
	color: rgba(54, 0, 107, 1.00);
}

#stacks_in_457 .paragraph a,
#stacks_in_457 .paragraph a:visited {
	color: rgba(55, 129, 187, 1.00);
}

#stacks_in_457 .paragraph a:hover,
#stacks_in_457 .paragraph a:active {
	color: rgba(64, 103, 138, 1.00);
}








	
	#stacks_in_457 p,
	#stacks_in_457 {
		font-size: 18px;
	}
	

	



#stacks_in_457 p,
#stacks_in_457 {
	
}

#stacks_out_457 {
	width: 64%;
}



	

	#stacks_in_458 hr.foundry-divider-simple {
		border-top-style: solid;
		border-top-width: 1px;
	}






	#stacks_in_458 .foundry-label {
		width: 100%;
	}

	#stacks_in_458 hr.foundry-divider-simple {
		width: 100%;
	}

.hp_stacks_in_1757 .hp-bg-layer {
  
  background-color : rgba(255, 255, 255, 0.00);
  background-image : url(../files/backgroundImage-1757.png);
  
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}
.hp_stacks_in_1757 .hp-fg-layer {
  
}
.hp_stacks_in_1757 .hp-fg-layer .hp-section {
  
}



.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack,
.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-4 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack {
  min-height: 120px;
}
.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-2,
.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-4 {
  z-index: 4;
  overflow: visible;
  position: relative;
}
.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-3 {
  z-index: 1;
  position: relative;
  padding: 120px 0px;
}
.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-2 &gt; div,
.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-4 &gt; div {
  overflow: visible;
}
.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after,
.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-4 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after {
  content: "";
  background: inherit;
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 1;
}
.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-2 .hp-section,
.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-4 .hp-section {
  z-index: 2;
  position: relative;
}
.hp_stacks_in_1757 .hp-fg-layer &gt; .hp-layer-2 .com_onelittledesigner_stacks_Horizon_Parallax_Section_stack:after {
  top: auto;
  bottom: 0;
}
.hp_stacks_in_1757 .hp-fg-layer .svgm-wrap:after,
.hp_stacks_in_1757 .hp-fg-layer .hp-extend:after {
  content: "";
  position: absolute;
  top:100%;
  left: -150vw;
  right: -150vw;
  height: 500vh;
}
.hp_stacks_in_1757 .hp-fg-layer .hp-svg-wrap svg {
  position: absolute;
  top: -120px;
}






.hp_stacks_in_1757 .hp-fg-layer .hp-svg-wrap &gt; .hp-extend,
.hp_stacks_in_1757 .hp-fg-layer .hp-layer-2 .hp-svg-wrap .hp-jagged-1,
.hp_stacks_in_1757 .hp-fg-layer .hp-layer-3 .hp-svg-wrap .hp-jagged-2,
.hp_stacks_in_1757 .hp-fg-layer .hp-layer-4 .hp-svg-wrap .hp-jagged-3 {
  display: block;
}
.hp_stacks_in_1757 .hp-fg-layer .hp-layer-3 .hp-svg-wrap .hp-jagged-2 {
  -webkit-transform: translateX(-50%) rotateY(180deg);
  transform: translateX(-50%) rotateY(180deg);
  left: 50%;
  position: relative;
}
@media all and (min-width:1920px){
  .hp_stacks_in_1757 .hp-svg-wrap svg{
    height:240px
  }
  .hp_stacks_in_1757  .hp-fg-layer .hp-horizon-content{
    padding-bottom:240px
  }
  .hp_stacks_in_1757  .hp-fg-layer .hp-svg-wrap svg{
    position:absolute;
    top:-240px
  }
}

#stacks_in_1779 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1779 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1779 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1781 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1781 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1781 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1783 .hp-extend {
  background: rgba(0, 0, 0, 1.00);
  height: 120px;
}
#stacks_in_1783 svg {
  fill: rgba(0, 0, 0, 1.00);
}
#stacks_in_1783 .hp-extend:after {
  background: rgba(0, 0, 0, 1.00);
}#stacks_in_1759 .hp-extend {
  background: rgba(111, 77, 171, 0.51);
  height: 120px;
}
#stacks_in_1759 svg {
  fill: rgba(111, 77, 171, 0.51);
}
#stacks_in_1759 .hp-extend:after {
  background: rgba(111, 77, 171, 0.51);
}         @media only screen and (max-width:414px){#stacks_in_1790 h1,#stacks_in_1790 div{text-align:left!important}#stacks_out_1790{display:block!important}}        #stacks_in_1790 .h-pro{padding:0px} #stacks_in_1790 .h-pro{border-radius: 0px }#stacks_in_1790 .h-pro{border-width: 0px ;border-color:rgba(102, 102, 102, 1.00) rgba(51, 51, 51, 0.00) rgba(102, 102, 102, 1.00) rgba(51, 51, 51, 0.00);border-style:solid}  #stacks_in_1790 .h-pro{background:rgba(0, 0, 0, 0.50)}    #stacks_in_1790 .hTxt:not(.vault-font){font-family:'Righteous',Sans-Serif;font-weight:400;font-style:normal}           #stacks_in_1790 .hTxt{text-shadow:2px 2px 2px rgba(255, 255, 255, 1.00),0px -2px 6px rgba(255, 255, 255, 1.00),0px 2px 6px rgba(255, 255, 255, 1.00)}         
#stacks_in_1767 .hp-extend {
  background: rgba(126, 67, 171, 0.58);
  height: 120px;
}
#stacks_in_1767 svg {
  fill: rgba(126, 67, 171, 0.58);
}
#stacks_in_1767 .hp-extend:after {
  background: rgba(126, 67, 171, 0.58);
}


/* Color picker style settings */


#stacks_in_460 p {
	color: rgba(66, 15, 108, 1.00);
}

#stacks_in_460 p a,
#stacks_in_460 p a:visited {
	color: rgba(55, 129, 187, 1.00);
}

#stacks_in_460 p a:hover,
#stacks_in_460 p a:active {
	color: rgba(64, 103, 138, 1.00);
}

/* Edit mode custom colors. */
#stacks_in_460 .paragraph {
	color: rgba(66, 15, 108, 1.00);
}

#stacks_in_460 .paragraph a,
#stacks_in_460 .paragraph a:visited {
	color: rgba(55, 129, 187, 1.00);
}

#stacks_in_460 .paragraph a:hover,
#stacks_in_460 .paragraph a:active {
	color: rgba(64, 103, 138, 1.00);
}








	
	#stacks_in_460 p,
	#stacks_in_460 {
		font-size: 18px;
	}
	

	



#stacks_in_460 p,
#stacks_in_460 {
	
}

#stacks_out_460 {
	width: 64%;
}



	

	#stacks_in_461 hr.foundry-divider-simple {
		border-top-style: solid;
		border-top-width: 1px;
	}






	#stacks_in_461 .foundry-label {
		width: 100%;
	}

	#stacks_in_461 hr.foundry-divider-simple {
		width: 100%;
	}




	

	#stacks_in_890 hr.foundry-divider-simple {
		border-top-style: solid;
		border-top-width: 1px;
	}






	#stacks_in_890 .foundry-label {
		width: 100%;
	}

	#stacks_in_890 hr.foundry-divider-simple {
		width: 100%;
	}

/* @group Page */

/* Stop the background page scrolling when the modal is open */
body.sociableOpen {
	overflow: hidden !important;
}

/* @end */

/* @group Share Button */

#socialPopupTriggerButtonstacks_in_320_3 *,
#socialPopupTriggerButtonstacks_in_320_3 *::after,
#socialPopupTriggerButtonstacks_in_320_3 *::before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


#socialPopupTriggerButtonstacks_in_320_3 {
	position: fixed;
	bottom: 10.00%;
	right: 2.00%;
	cursor: pointer;
	z-index: 999;
}






#socialPopupTriggerButtonstacks_in_320_3 a {
	background: none;
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	outline: none;
}

#socialPopupTriggerButtonstacks_in_320_3 a:focus {
	outline: none;
	border: none;
}

#socialPopupTriggerButtonstacks_in_320_3 #socialPopupTriggerButtonBorderstacks_in_320_3 {
	border: 2px solid #EEDDFE;
	background: #9E7CCC;
	border-radius: 27px;
	-webkit-border-radius: 27px;
	-moz-border-radius: 27px;
	height: 50px;
	overflow: hidden;
	z-index: 5;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

#socialPopupTriggerButtonstacks_in_320_3:hover #socialPopupTriggerButtonBorderstacks_in_320_3 {
	border: 2px solid #EBDDFE;
	background: #A049FF;
}


#socialPopupTriggerButtonstacks_in_320_3:hover #socialPopupTriggerButtonBorderstacks_in_320_3 {
	padding-right: 15px;
}




#socialPopupTriggerButtonstacks_in_320_3 #socialPopupTriggerButtonIconstacks_in_320_3 [class^="fa fa-"] {
	color: #FCFFFF;
	font-size: 24px;
	line-height: 50px;
	width: 50px;
	text-align: center;
	display: block;
	float: left;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

#socialPopupTriggerButtonstacks_in_320_3:hover #socialPopupTriggerButtonBorderstacks_in_320_3 [class^="fa fa-"] {
	color: #F5FFF0;
}

#socialPopupTriggerButtonstacks_in_320_3 #socialPopupTriggerButtonTextstacks_in_320_3 {
	color: #FCFFFF;
	font: 14px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	float: right;
	max-width: 0px;
	overflow: hidden;
	line-height: 50px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}




#socialPopupTriggerButtonstacks_in_320_3:hover #socialPopupTriggerButtonTextstacks_in_320_3 {
	max-width: 300px;
	color: #FCFFFF;
}


/* @end */

/* @group Content Block (top of modal) */

#sociableContentBlock {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

#adBlockMessage {
	display: none;
}

#adBlockMessage.adBlockTrue {
	display: block;
	color: #ffffff;
	text-align: center;
	font-size: 16px;
}

/* @end */

/* @group Modal Window */

/* General styles for the modal */

/* 
Styles for the html/body for special modal where we want 3d effects
Note that we need a container wrapping all content on the page for the 
perspective effects (not including the modals and the overlay).
*/

.socialPopupModalPerspective,
.socialPopupModalPerspective body {
	height: 100%;
	overflow: hidden;
}

.socialPopupModalPerspective body  {
	background: #222;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
	perspective: 600px;
}

.socialPopupModal-1 {
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	overflow: auto;
	height: 100%;
	z-index: 19991;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.socialPopupModalShow {
	visibility: visible;
}

.socialPopupModalOverlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1999;
	opacity: 0;
	background: #52336D;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow ~ .socialPopupModalOverlay {
	opacity: 0.90;
	visibility: visible;
}

/* Content styles */
#socialPopupModalContentstacks_in_320_3 {
	position: relative;
	border-radius: 3px;
	margin: 0 auto;
}

/* Individual modal styles with animations/transitions */

/*  */

/* @group Effect 1 */

/* Effect 1: Fade in and scale up */
.socialPopupModalEffect-1 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-1 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* @end */

/* @group Effect 2 */

/* Effect 2: Slide from the right */
.socialPopupModalEffect-2 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: translateX(20%);
	-moz-transform: translateX(20%);
	-ms-transform: translateX(20%);
	transform: translateX(20%);
	opacity: 0;
	-webkit-transition: all 1000ms cubic-bezier(0.25, 0.5, 0.5, 0.9);
	-moz-transition: all 1000ms cubic-bezier(0.25, 0.5, 0.5, 0.9);
	transition: all 1000ms cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.socialPopupModalShow.socialPopupModalEffect-2 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}

/* @end */

/* @group Effect 3 */

/* Effect 3: Slide from the bottom */
.socialPopupModalEffect-3 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-3 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* @end */

/* @group Effect 4 */

/* Effect 4: Newspaper */
.socialPopupModalEffect-4 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: scale(0) rotate(720deg);
	-moz-transform: scale(0) rotate(720deg);
	-ms-transform: scale(0) rotate(720deg);
	transform: scale(0) rotate(720deg);
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-4 ~ .socialPopupModalOverlay,
.socialPopupModalEffect-4 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-4 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: scale(1) rotate(0deg);
	-moz-transform: scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 5 */

/* Effect 5: fall */
.socialPopupModalEffect-5.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-5 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(600px) rotateX(20deg); 
	-moz-transform: translateZ(600px) rotateX(20deg); 
	-ms-transform: translateZ(600px) rotateX(20deg); 
	transform: translateZ(600px) rotateX(20deg); 
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-5 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transition: all 1000ms ease-in;
	-moz-transition: all 1000ms ease-in;
	transition: all 1000ms ease-in;
	-webkit-transform: translateZ(0px) rotateX(0deg);
	-moz-transform: translateZ(0px) rotateX(0deg);
	-ms-transform: translateZ(0px) rotateX(0deg);
	transform: translateZ(0px) rotateX(0deg); 
	opacity: 1;
}

/* @end */

/* @group Effect 6 */

/* Effect 6: side fall */
.socialPopupModalEffect-6.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-6 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translate(30%) translateZ(600px) rotate(10deg); 
	-moz-transform: translate(30%) translateZ(600px) rotate(10deg);
	-ms-transform: translate(30%) translateZ(600px) rotate(10deg);
	transform: translate(30%) translateZ(600px) rotate(10deg); 
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-6 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transition: all 1000ms ease-in;
	-moz-transition: all 1000ms ease-in;
	transition: all 1000ms ease-in;
	-webkit-transform: translate(0%) translateZ(0) rotate(0deg);
	-moz-transform: translate(0%) translateZ(0) rotate(0deg);
	-ms-transform: translate(0%) translateZ(0) rotate(0deg);
	transform: translate(0%) translateZ(0) rotate(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 7 */

/* Effect 7:  slide and stick to top */
.socialPopupModalEffect-7{
	top: 0;
	-webkit-transform: translateX(-0%);
	-moz-transform: translateX(-0%);
	-ms-transform: translateX(-0%);
	transform: translateX(-0%);
}

.socialPopupModalEffect-7 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-7 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	border-radius: 0 0 3px 3px;
	opacity: 1;
}

/* @end */

/* @group Effect 8 */

/* Effect 8: 3D flip horizontal */
.socialPopupModalEffect-8.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-8 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(-70deg);
	-moz-transform: rotateY(-70deg);
	-ms-transform: rotateY(-70deg);
	transform: rotateY(-70deg);
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-8 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 9 */

/* Effect 9: 3D flip vertical */
.socialPopupModalEffect-9.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-9 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-70deg);
	-moz-transform: rotateX(-70deg);
	-ms-transform: rotateX(-70deg);
	transform: rotateX(-70deg);
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-9 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 10 */

/* Effect 10: 3D sign */
.socialPopupModalEffect-10.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-10 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-60deg);
	-moz-transform: rotateX(-60deg);
	-ms-transform: rotateX(-60deg);
	transform: rotateX(-60deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-10 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 11 */

/* Effect 11: Super scaled */
.socialPopupModalEffect-11 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-11 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* @end */

/* @group Effect 12 */

/* Effect 12:  Just me */
.socialPopupModalEffect-12 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-12 ~ .socialPopupModalOverlay {
	background: #000000;
} 

.socialPopupModalEffect-12 #socialPopupModalContentstacks_in_320_3 h3,
.socialPopupModalEffect-12 #socialPopupModalContentstacks_in_320_3 {
	background: transparent;
}

.socialPopupModalShow.socialPopupModalEffect-12 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* @end */

/* @group Effect 13 */

/* Effect 13: 3D slit */
.socialPopupModalEffect-13.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-13 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(-3000px) rotateY(90deg);
	-moz-transform: translateZ(-3000px) rotateY(90deg);
	-ms-transform: translateZ(-3000px) rotateY(90deg);
	transform: translateZ(-3000px) rotateY(90deg);
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-13 #socialPopupModalContentstacks_in_320_3 {
	-webkit-animation: slit .7s forwards ease-out;
	-moz-animation: slit .7s forwards ease-out;
	animation: slit .7s forwards ease-out;
}

@-webkit-keyframes slit {
	50% { -webkit-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -webkit-animation-timing-function: ease-out;}
	100% { -webkit-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@-moz-keyframes slit {
	50% { -moz-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -moz-animation-timing-function: ease-out;}
	100% { -moz-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@keyframes slit {
	50% { transform: translateZ(-250px) rotateY(89deg); opacity: 1; animation-timing-function: ease-in;}
	100% { transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

/* @end */

/* @group Effect 14 */

/* Effect 14:  3D Rotate from bottom */
.socialPopupModalEffect-14.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-14 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateY(100%) rotateX(90deg);
	-moz-transform: translateY(100%) rotateX(90deg);
	-ms-transform: translateY(100%) rotateX(90deg);
	transform: translateY(100%) rotateX(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 1000ms ease-out;
	-moz-transition: all 1000ms ease-out;
	transition: all 1000ms ease-out;
}

.socialPopupModalShow.socialPopupModalEffect-14 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: translateY(0%) rotateX(0deg);
	-moz-transform: translateY(0%) rotateX(0deg);
	-ms-transform: translateY(0%) rotateX(0deg);
	transform: translateY(0%) rotateX(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 15 */

/* Effect 15:  3D Rotate in from left */
.socialPopupModalEffect-15.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-15 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-moz-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-ms-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-15 #socialPopupModalContentstacks_in_320_3 {
	-webkit-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-moz-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-ms-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	transform: translateZ(0px) translateX(0%) rotateY(0deg);
	opacity: 1;
}

/* @end */

/*  */

/* @end */

/* @group Close button */

#sociableCloseButtonstacks_in_320_3 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	margin: 0;
	color: #FFFFFF;
	font-size: 40px;
	line-height: 80px;
	width: 80px;
	text-align: center;
	text-decoration: none;
	background: none;
	border: none;
	outline: none;
	transition: all ease-in-out 300ms;
}

#sociableCloseButtonstacks_in_320_3 [class^="fa fa-"] {
	color: #FFFFFF;
	transition: all ease-in-out 300ms;
}

#sociableCloseButtonstacks_in_320_3:hover,
#sociableCloseButtonstacks_in_320_3:hover [class^="fa fa-"] {
	color: #CDCDCD;
}

/* @end */

/* @group Radioactive Scroll Indicator */

@-webkit-keyframes radioactiveGlow {
	from { -webkit-box-shadow: 0 0 50px #FFFFFF; }
 	50% { -webkit-box-shadow: 0 0 0px #000000; }
 	to { -webkit-box-shadow: 0 0 50px #FFFFFF; }
}

@-moz-keyframes radioactiveGlow {
	from { -moz-box-shadow: 0 0 50px #FFFFFF; }
 	50% { -moz-box-shadow: 0 0 0px #000000; }
 	to { -moz-box-shadow: 0 0 50px #FFFFFF; }
}

@-ms-keyframes radioactiveGlow {
	from { -ms-box-shadow: 0 0 50px #FFFFFF; }
 	50% { -ms-box-shadow: 0 0 0px #000000; }
 	to { -ms-box-shadow: 0 0 50px #FFFFFF; }
}

@keyframes radioactiveGlow {
	from { box-shadow: 0 0 50px #FFFFFF; }
 	50% { box-shadow: 0 0 0px #000000; }
 	to { box-shadow: 0 0 50px #FFFFFF; }
}

#radioactiveScrollIndicatorstacks_in_320_3 {
	-webkit-animation-name: radioactiveGlow;
 	-webkit-animation-duration: 2s;
 	-webkit-animation-iteration-count: infinite;
 	-moz-animation-name: radioactiveGlow;
 	-moz-animation-duration: 2s;
 	-moz-animation-iteration-count: infinite;
 	-ms-animation-name: radioactiveGlow;
 	-ms-animation-duration: 2s;
 	-ms-animation-iteration-count: infinite;
 	animation-name: radioactiveGlow;
 	animation-duration: 2s;
 	animation-iteration-count: infinite;
 	position: fixed;
 	bottom: -50px;
 	left: 0px;
 	width: 100%;
 	height: 50px;
 	background: #ffffff;
 	display: none;
}

.socialPopupScrollable #radioactiveScrollIndicatorstacks_in_320_3 {
	display: block;
}

.modalScrolled #radioactiveScrollIndicatorstacks_in_320_3 {
	display: none;
}

/* @end */

/* @group Social Icon List */

#sociableIconWrapper *,
#sociableIconWrapper *::after,
#sociableIconWrapper *::before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


#sociableIconWrapper {
	max-width: 1200px;
	margin: 60px auto;
	z-index: 1999;
	position: relative;
}

.socialIconArray {
	display: block;
	text-align: center;
}

.socialIconArray div {
	display: inline-block;
	width: auto;
	height: auto;
	line-height: 100px;
	text-align: center;
	position: relative;
	margin-bottom: 15px;
	text-align: center;
	line-height: 1.50em;
	font-size: 14px;
	z-index: 5;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	color: #FFFFFF;
}

.socialIconArray div:hover {
	color: #FFFFFF;
}

.socialIconArray div a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}

.socialIconArray div [class^="fa fa-"] {
	font-size: 60px;
	height: 100px;
	width: 100px;
	line-height: 100px;
	border-radius: 50px;
	position: relative;
	z-index: 5;
	border: 2px solid #FFFFFF;
	transition: all 300ms ease-in-out;
	overflow: hidden;
	display: block;
	margin: 15px;
}

.socialIconArray div:hover [class^="fa fa-"] {
	-webkit-box-shadow: 0px 0px 30px #FFFFFF;
	-moz-box-shadow: 0px 0px 30px #FFFFFF;
	box-shadow: 0px 0px 30px #FFFFFF;
	border: 2px solid #FFFFFF;
}

/* Sub headings */

.socialIconArray .subheading {
	margin-top: 15px;
	padding-top: 15px;
	font-size: 14px;
	display: block;
	float: none;
	color: #FFFFFF;
}

.socialIconArray .subheading a,
.socialIconArray .subheading a:visited {
	color: #FFFFFF;
	text-decoration: underline;
	position: relative;
	top: auto;
	left: auto;
	width: auto;
	height: auto;
	display: inline;
}

.socialIconArray .subheading a:hover,
.socialIconArray .subheading a:active {
	color: #FFFFFF;
	text-decoration: underline;
}


/* Utility icons */

#sociableUtilityIcons *,
#sociableUtilityIcons *::after,
#sociableUtilityIcons *::before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

#sociableUtilityIcons {
	border-top: 1px solid #CDCDCD;
	margin-top: 20px;
	padding-top: 30px;
	display: block;
}

/* @end */

/* @group Print Styling */

@media print {
	#socialPopupstacks_in_320_3,
	#socialPopupModalOverlaystacks_in_320_3,
	#socialPopupTriggerButtonstacks_in_320_3 {
		display: none !important;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end */</pre></body></html>