#stacks_in_51{visibility:hidden}


.cardslider {
    background: rgba(0, 0, 0, 1.00);
    height: 600px;
    overflow: hidden;
    transition-property: height;
    transition-duration: 500ms;
}

@media (min-width: 960px) {
    .cardslider{
        height: 600px !important;
        transition-duration: 500ms;
    }
}

.cardslider * {
    box-sizing: border-box;
}

.cs-container {
    position: relative;
    height: 100%;
}

.cs-slides-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cs-slide {
    position: absolute;
    -webkit-perspective: 1500px;
    perspective: 1500px;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

.cs-current {
    visibility: visible;
}

.cs-media {
    position: absolute;
    left: 45%;
    width: 50%;
    top: 50%;
}

.cs-css3d .cs-media {
    -webkit-transform: translateY(-50%) rotateX(58deg) rotateZ(31deg);
    -webkit-transform-style: preserve-3d;
    transform: translateY(-50%) rotateX(58deg) rotateZ(31deg);
    transform-style: preserve-3d;
}

.cs-media-item {
    position: relative;
    display: block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    margin: 4% 6%;
    outline: none !important;
	-webkit-transition: none;
	transition: none;
}

.cs-media-wrap {
    display: block;
}

.cs-media-item img {
    width: 100%;
    vertical-align: middle;
    border: none;
}

.cs-shadow {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background: #000;
    -webkit-transform: translateZ(-50px);
    transform: translateZ(-50px);
    box-shadow: 0 0 30px 30px rgba(0, 0, 0, 1);
    opacity: 0.4;
}

.tow-in-row .cs-media-item {
    float: left;
    width: 44%;
    margin: 4% 3%;
}

.cs-card3d .cs-media-wrap {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.cs-card3d .cs-media-wrap:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    background-image: inherit;
    background-size: cover;
    background-position: right center;
    width: 7px;
    left: auto;
    outline: 1px solid transparent;
}

.cs-card3d .cs-media-wrap:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    background-image: inherit;
    background-size: cover;
    background-position: bottom center;
    height: 7px;
    top: auto;
    outline: 1px solid transparent;
}

/*transition*/
.cs-inning .cs-media-item {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 1, 0, 1) 0s;
    transition: transform 1s cubic-bezier(0, 1, 0, 1) 0s;
}

.cs-outing .cs-media-item {
    -webkit-transition: -webkit-transform 1s cubic-bezier(1, 0, 1, 0) 0s;
    transition: transform 1s cubic-bezier(1, 0, 1, 0) 0s;
}

/*position*/
.cs-show .cs-media-item {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

.cs-right .cs-media-item {
    -webkit-transform: translate3d(5000px, 0, 0);
    transform: translate3d(5000px, 0, 0);
}

.cs-left .cs-media-item {
    -webkit-transform: translate3d(-5000px, 0, 0);
    transform: translate3d(-5000px, 0, 0);
}

.cs-top .cs-media-item {
    -webkit-transform: translate3d(0, -5000px, 0);
    transform: translate3d(0, -5000px, 0);
}

.cs-bottom .cs-media-item {
    -webkit-transform: translate3d(0, 5000px, 0);
    transform: translate3d(0, 5000px, 0);
}

.cs-up .cs-media-item {
    -webkit-transform: translate3d(0, 0, 5000px);
    transform: translate3d(0, 0, 5000px);
}

.cs-down .cs-media-item {
    -webkit-transform: translate3d(0, 0, -5000px);
    transform: translate3d(0, 0, -5000px);
}

.cs-complete .cs-media-wrap {
    -webkit-animation-name: cs-wave;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-name: cs-wave;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.cs-shadow-animation .cs-complete .cs-shadow {
    -webkit-animation-name: shadow;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-name: shadow;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

/*nav*/
.cs-nav-prev, .cs-nav-next {
    position: absolute;
    top: 50%;
    height: 30px;
    width: 30px;
    left: 20px;
    margin-top: -24px;
    opacity: 0;
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
    outline: none !important;
    z-index: 2;
    
    background: transparent;
    border-top: 1px solid rgba(127, 127, 127, 1.00);
    border-right:  1px solid rgba(127, 127, 127, 1.00);
    box-shadow: 0 0 0 lightgray;
    transition: all 200ms ease;
}

.cs-nav-prev {
    -webkit-transform: translate3d(0, -50%, 0) rotate(-135deg);
            transform: translate3d(0, -50%, 0) rotate(-135deg);
}

.cs-nav-next {
    background-position: -96px 0;
    right: 20px;
    left: auto;
    -webkit-transform: translate3d(0, -50%, 0) rotate(45deg);
            transform: translate3d(0, -50%, 0) rotate(45deg);
}

.cs-container:hover .cs-nav-prev, .cs-container:hover .cs-nav-next {
    opacity: .7;
}

.cs-nav-prev:hover, .cs-nav-next:hover {
    opacity: 1 !important;
}

/*dots*/
.cs-dots {
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
}

.cs-dots > a {
    display: inline-block;
    outline: none !important;
    z-index: 2;
    background: rgba(0, 0, 0, 0);
}

.cs-dots > a > span {
    display: block;
    width: 11px;
    height: 11px;
    margin: 10px 7px;
    border: 2px solid rgba(51, 51, 51, 1.00);
    border-radius: 50%;
    opacity: 0.8;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    box-shadow: 0 0 3px rgba(0, 0, 0, .4);
}

.cs-dots > a:hover > span {
    background-color: rgba(51, 51, 51, 1.00);
    opacity: .9;
}

.cs-dots > a.cs-dot-active > span {
    background-color: rgba(51, 51, 51, 1.00);
    opacity: 0.9;
}

/*keyframe*/
@keyframes cs-wave {
    0%, 50%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.42, 0.74, 0.64, 1);
        animation-timing-function: cubic-bezier(0.42, 0.74, 0.64, 1);
    }
    25% {
        -webkit-transform: translate3d(0, 0, 10px);
        transform: translate3d(0, 0, 10px);
        -webkit-animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
        animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
    }
    75% {
        -webkit-transform: translate3d(0, 0, -10px);
        transform: translate3d(0, 0, -10px);
        -webkit-animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
        animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
    }
}

@-webkit-keyframes cs-wave {
    0%, 50%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.42, 0.74, 0.64, 1);
        animation-timing-function: cubic-bezier(0.42, 0.74, 0.64, 1);
    }
    25% {
        -webkit-transform: translate3d(0, 0, 10px);
        transform: translate3d(0, 0, 10px);
        -webkit-animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
        animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
    }
    75% {
        -webkit-transform: translate3d(0, 0, -10px);
        transform: translate3d(0, 0, -10px);
        -webkit-animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
        animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
    }
}

@keyframes shadow {
    0%, 50%, 100% {
        opacity: 0.4;
        -webkit-transform: scale(1) translateZ(-50px);
        transform: scale(1) translateZ(-50px);
        -webkit-animation-timing-function: cubic-bezier(0.42, 0.74, 0.64, 1);
        animation-timing-function: cubic-bezier(0.42, 0.74, 0.64, 1);
    }
    25% {
        opacity: 0.25;
        -webkit-transform: scale(1.04) translateZ(-50px);
        transform: scale(1.04) translateZ(-50px);
        -webkit-animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
        animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
    }
    75% {
        opacity: 0.5;
        -webkit-transform: scale(0.97) translateZ(-50px);
        transform: scale(0.97) translateZ(-50px);
        -webkit-animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
        animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
    }
}

@-webkit-keyframes shadow {
    0%, 50%, 100% {
        opacity: 0.4;
        -webkit-transform: scale(1) translateZ(-50px);
        transform: scale(1) translateZ(-50px);
        -webkit-animation-timing-function: cubic-bezier(0.42, 0.74, 0.64, 1);
        animation-timing-function: cubic-bezier(0.42, 0.74, 0.64, 1);
    }
    25% {
        opacity: 0.25;
        -webkit-transform: scale(1.04) translateZ(-50px);
        transform: scale(1.04) translateZ(-50px);
        -webkit-animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
        animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
    }
    75% {
        opacity: 0.5;
        -webkit-transform: scale(0.97) translateZ(-50px);
        transform: scale(0.97) translateZ(-50px);
        -webkit-animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
        animation-timing-function: cubic-bezier(0.36, 0, 0.58, 0.26);
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0!;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/**** description & responsive layout ****/

/*description*/
.cs-description {
    /*padding: 50px;*/
    /*color: #444;*/
    z-index: 1;
    /*font-size: 18px;*/
    position: absolute;
    width: 33%;
    top: 0;
    left: 0;
}

.cs-desc-title {
    /*font-size: 2.5em;*/
    font-weight: 500;
    line-height: 1.2em;
    margin: 0.6em 0;
}

.cs-desc-content {
   /* font-size: 1em;
    line-height: 1.5em;
    color: #444;*/
}

.btn-detail {
    font-size: 13px;
    line-height: 1em;
    padding: 11px 15px;
    border: 1px solid #eee;
    color: #444;
    text-transform: uppercase;
    text-decoration: none !important;
    outline: none !important;
    letter-spacing: 3px;
    margin-top: 1em;
    display: inline-block;
}

.btn-detail:hover, .btn-detail:focus {
    color: #444;
    border: 1px solid #444;
}

.cs-css3d.alternative-3d-style .cs-media, .cs-css3d .alternative-3d-style .cs-media {
    -webkit-transform: translateY(-50%) rotateX(58deg) rotateZ(-26deg);
    transform: translateY(-50%) rotateX(58deg) rotateZ(-26deg);
}

.cs-card3d.alternative-3d-style .cs-media-wrap:before, .cs-card3d .alternative-3d-style .cs-media-wrap:before {
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    background-position: left center;
    right: auto;
}

@media (max-width: 960px) {
    .cs-slide > .cs-description {
        width: 100%;
        height: 100%;
        padding: 50px 60px;
    }

    .lightskin .cs-slide > .cs-description {
    }

    .cs-slide > .cs-media {
        left: 0;
        width: 100%;
        pointer-events: none;
        opacity: 0.4;
    }

    .cs-shadow-animation .cs-complete .cs-shadow {
        -webkit-animation: none;
        animation: none;
    }

}

.cs-current.cs-show .cs-desc-title {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
}

.cs-current.cs-show .cs-desc-content {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: .9s;
    animation-duration: .9s;
}

.cs-current.cs-outing .cs-description {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

.cs-no-css3d .cs-media {
    top: 0;
}

.cs-no-css3d .cs-media-item {
    margin: 4% 3%;
}

/*fix for Parallaxis*/
.tm-wrapper {
    display: block;
}
#stacks_in_306 {
	padding:  20px;
}

#stacks_in_401 {
	margin:  20px;
	padding: 40px 20px 20px 20px;
}

#stacks_in_402 {
	margin:  20px;
	padding: 40px 20px 20px 20px;
}
#stacks_in_18 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_18 .jwresp_col{float:none} #stacks_in_18 #jwresp_col2_stacks_in_18{position:relative;margin:0 auto;width:78%;float:none}#stacks_in_18 #jwresp_col1_stacks_in_18,#stacks_in_18 #jwresp_col3_stacks_in_18{width:9%}#stacks_in_18 #jwresp_col1_stacks_in_18{float:left}#stacks_in_18 #jwresp_col3_stacks_in_18{float:right} @media screen and (max-width:770px){#stacks_in_18 #jwresp_col1_stacks_in_18,#stacks_in_18 #jwresp_col3_stacks_in_18{margin-bottom:20px}#stacks_in_18 #jwresp_col1_stacks_in_18{width:49%}#stacks_in_18 #jwresp_col3_stacks_in_18{width:49%}#stacks_in_18 #jwresp_col2_stacks_in_18{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_18 #jwresp_col1_stacks_in_18,#stacks_in_18 #jwresp_col3_stacks_in_18,#stacks_in_18 #jwresp_col2_stacks_in_18{float:none;width:100%;display:block}#stacks_in_18 #jwresp_col1_stacks_in_18,#stacks_in_18 #jwresp_col3_stacks_in_18{margin-bottom:20px}} 
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_21Calligrapher{			font-size: 111% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_21Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_21Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_21Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_21Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_21Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_21Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_21Calligrapher h6, .stacks_in_21Calligrapher h5, .stacks_in_21Calligrapher h4, .stacks_in_21Calligrapher h3, .stacks_in_21Calligrapher h2, .stacks_in_21Calligrapher h1{			color: #FFFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_21Calligrapher, .stacks_in_21Calligrapher h1, .stacks_in_21Calligrapher h2, .stacks_in_21Calligrapher h3, .stacks_in_21Calligrapher h4, .stacks_in_21Calligrapher h5, .stacks_in_21Calligrapher h6{	font-family: "Quicksand" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_21targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_21Calligrapher a:link{			color: #B6993C !important;			text-decoration: none !important;		}				.stacks_in_21Calligrapher a:visited{			color: #B6993C !important;		}				.stacks_in_21Calligrapher a:active{			color: #B6993C !important;		}				.stacks_in_21Calligrapher a:hover{			color: #7F7F7F !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_22 {
	margin: 0px 20px 20px 20px;
	padding: 0px 20px 20px 20px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_25Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_25Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_25Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_25Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_25Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_25Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_25Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_25Calligrapher h6, .stacks_in_25Calligrapher h5, .stacks_in_25Calligrapher h4, .stacks_in_25Calligrapher h3, .stacks_in_25Calligrapher h2, .stacks_in_25Calligrapher h1{			color: #FFFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_25Calligrapher, .stacks_in_25Calligrapher h1, .stacks_in_25Calligrapher h2, .stacks_in_25Calligrapher h3, .stacks_in_25Calligrapher h4, .stacks_in_25Calligrapher h5, .stacks_in_25Calligrapher h6{	font-family: "Quicksand" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_25targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_25Calligrapher a:link{			color: #B6993C !important;			text-decoration: none !important;		}				.stacks_in_25Calligrapher a:visited{			color: #B6993C !important;		}				.stacks_in_25Calligrapher a:active{			color: #B6993C !important;		}				.stacks_in_25Calligrapher a:hover{			color: #7F7F7F !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_26 {
	margin: 0px 20px 0px 20px;
}

#stacks_in_28 {
	line-height: 2em;
}
  #stacks_in_395{display:none}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_161Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_161Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_161Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_161Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_161Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_161Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_161Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_161Calligrapher h6, .stacks_in_161Calligrapher h5, .stacks_in_161Calligrapher h4, .stacks_in_161Calligrapher h3, .stacks_in_161Calligrapher h2, .stacks_in_161Calligrapher h1{			color: #FFFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_161Calligrapher, .stacks_in_161Calligrapher h1, .stacks_in_161Calligrapher h2, .stacks_in_161Calligrapher h3, .stacks_in_161Calligrapher h4, .stacks_in_161Calligrapher h5, .stacks_in_161Calligrapher h6{	font-family: "Droid Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_161targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_161Calligrapher a:link{			color: #B6993C !important;			text-decoration: none !important;		}				.stacks_in_161Calligrapher a:visited{			color: #B6993C !important;		}				.stacks_in_161Calligrapher a:active{			color: #B6993C !important;		}				.stacks_in_161Calligrapher a:hover{			color: #7F7F7F !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_176 {
	margin: 20px 20px 20px 20px;
}

#stacks_in_177 {
	line-height: 2em;
}
#stacks_in_196 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_196 .jwresp_col{float:none} #stacks_in_196 #jwresp_col2_stacks_in_196{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_196 #jwresp_col1_stacks_in_196,#stacks_in_196 #jwresp_col3_stacks_in_196{width:32%}#stacks_in_196 #jwresp_col1_stacks_in_196{float:left}#stacks_in_196 #jwresp_col3_stacks_in_196{float:right} @media screen and (max-width:770px){#stacks_in_196 #jwresp_col1_stacks_in_196,#stacks_in_196 #jwresp_col3_stacks_in_196{margin-bottom:20px}#stacks_in_196 #jwresp_col1_stacks_in_196{width:49%}#stacks_in_196 #jwresp_col3_stacks_in_196{width:49%}#stacks_in_196 #jwresp_col2_stacks_in_196{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_196 #jwresp_col1_stacks_in_196,#stacks_in_196 #jwresp_col3_stacks_in_196,#stacks_in_196 #jwresp_col2_stacks_in_196{float:none;width:100%;display:block}#stacks_in_196 #jwresp_col1_stacks_in_196,#stacks_in_196 #jwresp_col3_stacks_in_196{margin-bottom:20px}} 

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

#stacks_in_201 {
	line-height: 2em;
}

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

#stacks_in_205 {
	line-height: 2em;
}

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

#stacks_in_203 {
	line-height: 2em;
}
/* Start Responsive Shim stack CSS code */.stacks_in_241shim{	padding-top: 5%;}/* End Responsive Shim stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_216Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_216Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_216Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_216Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_216Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_216Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_216Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_216Calligrapher h6, .stacks_in_216Calligrapher h5, .stacks_in_216Calligrapher h4, .stacks_in_216Calligrapher h3, .stacks_in_216Calligrapher h2, .stacks_in_216Calligrapher h1{			color: #FFFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_216Calligrapher, .stacks_in_216Calligrapher h1, .stacks_in_216Calligrapher h2, .stacks_in_216Calligrapher h3, .stacks_in_216Calligrapher h4, .stacks_in_216Calligrapher h5, .stacks_in_216Calligrapher h6{	font-family: "Quicksand" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_216targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_216Calligrapher a:link{			color: #A4878B !important;			text-decoration: none !important;		}				.stacks_in_216Calligrapher a:visited{			color: #A4878B !important;		}				.stacks_in_216Calligrapher a:active{			color: #A4878B !important;		}				.stacks_in_216Calligrapher a:hover{			color: #7F7F7F !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_216 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
}
/* Start Contact Form stack CSS code */.stacks_in_217formwrap{	margin: 0;}#stacks_in_217comment{display: none;height: 0px;padding: 0px;margin: 0px;}.stacks_in_217mail{padding: 0;}.stacks_in_217fieldset{	border: none;	outline: none;	float : none !important;	text-align: left !important;}.stacks_in_217formail{}.stacks_in_217fieldset{	padding: 0 20px 0 3px;}#stacks_in_217 label{display: block;margin: 10px 0 0 0;padding: 0 0 5px 0;line-height: 1.1em;}#stacks_in_217 label *{display: inline;}#stacks_in_217 .stacks_in_217input{padding: 3px 7px 3px 7px;width: 100%;font-size: 12px;background: #766264 !important;color: #191919 !important;margin: 0;border: 1px solid #645355 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px !important;}#stacks_in_217 textarea{padding: 7px;width: 100%;font-size: 13px;border: 1px solid #645355 !important;background: #766264 !important;color: #191919 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}.stacks_in_217sendmail{margin-top: 20px !important;padding: 4px 7px 4px 7px !important;display: block;text-align: center !important;font-size: 12px;color: #FFFFFF !important;border: 1px solid #645355 !important;background-color: #766264 !important;-moz-border-radius: 3px !important;-webkit-border-radius: 3px !important;border-radius: 3px;cursor: pointer;}#sendmail:hover{cursor: pointer;}.stacks_in_217response{display: none;width: 80%;border: 1px solid #D6392B;background: #FEF4FA;padding: 10px;margin: 20px auto 0 0;color: #444444;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;min-height: 35px;}.stacks_in_217loader{float: left;width: 35px;height: 35px;padding: 0 15px 30px 0;}.stacks_in_217autoreplay{visibility: hidden;height: 0px;display: none;}#stacks_in_217 textarea{	color: #191919 !important;}/* End Contact Form stack CSS code */
#stacks_in_217 {
	padding: 0px 20px 20px 20px;
}
#stacks_in_141{visibility:hidden}

#stacks_in_141 {
	padding: 0px 20px 20px 20px;
}
/* Start dooGrid stack each CSS code */.stacks_in_226gridWrapper > div{	display: inline-block !important;	width: 25%;	-webkit-box-sizing: border-box;    -moz-box-sizing: border-box;    box-sizing: border-box;    vertical-align: top;    margin-top: 50px;    padding-right: 20.000000px;    padding-left: 20.000000px;}.stacks_in_226gridWrapper{	margin-right: -20.000000px;    margin-left: -20.000000px;    margin-top: -50px;}@media all and (max-width: 1024px) {				.stacks_in_226gridWrapper > div{		width: 25%;	}	}@media all and (max-width: 768px) {				.stacks_in_226gridWrapper > div{		width: 50%;	}		}@media all and (max-width: 480px) {				.stacks_in_226gridWrapper > div{		width: 100%;	}	}#stacks_in_226 .dooGridItem{	position: relative;	-webkit-box-sizing: border-box;    -moz-box-sizing: border-box;    box-sizing: border-box;	background: rgba(244, 244, 244, 1.00);	border:1px solid rgba(204, 204, 204, 1.00);	border-radius: 0px;	padding: 10px;}/* End dooGrid stack each CSS code */
#stacks_in_226 {
	margin:  20px;
	padding:  20px;
}
/* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code */  #stacks_in_392{display:none}
/* Start Obscure Email stack CSS code */.stacks_in_165topbar {	background-color: #3D82EA;	-moz-border-radius-topleft: 5px;	-webkit-border-top-left-radius: 5px;	border-top-left-radius: 5px;	-moz-border-radius-topright: 5px;	-webkit-border-top-right-radius: 5px;	border-top-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-bottom: none;	padding: 6px 3px 2px 10px;	min-height: 40px;	font-weight: bold;	font-size: 16px;	color: #ffffff;	}.stacks_in_165mainarea {	background-color: #ffffff;	-moz-border-radius-bottomleft: 5px;	-webkit-border-bottom-left-radius: 5px;	border-bottom-left-radius: 5px;	-moz-border-radius-bottomright: 5px;	-webkit-border-bottom-right-radius: 5px;	border-bottom-right-radius: 5px;	-moz-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	-webkit-box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	box-shadow:inset 0px 0px 0px rgba(0,0,0,1);	border: 3px solid #0861B3;	border-top: none;	padding: 10px;}.stacks_in_165small{font-weight: normal;font-size: 12px;}.stacks_in_165centerbox {	background-color: #ffffff;	border: 1px solid #CDDACF;	-moz-border-radius: 4px;	-webkit-border-radius: 4px;	border-radius: 4px;	padding: 10px;	color: #333;}.stacks_in_165centerbox b {	color: #DA0140;}/* End Obscure Email stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */	 		#titlelogo h1, #tsbanner h1{			font-size: 166% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ #titlelogo h1, #tsbanner h1{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_383targetNote{	display: none;}.stacks_in_383Calligrapher{	display: none;}.stacks_in_383targetNote{	padding: 20px;	margin: 10px;	border: 1px solid #000000;	border-radius: 5px;	color: #ffffff !important;	background: #333333;	display: block;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_383Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_383Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_383Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_383Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */	 		nav{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 1px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: right !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ nav{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_385targetNote{	display: none;}.stacks_in_385Calligrapher{	display: none;}.stacks_in_385targetNote{	padding: 20px;	margin: 10px;	border: 1px solid #000000;	border-radius: 5px;	color: #ffffff !important;	background: #333333;	display: block;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_385Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_385Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_385Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_385Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */	 		#footer{			font-size: 85% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */  #footer{	font-family: "Quicksand" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_387targetNote{	display: none;}.stacks_in_387Calligrapher{	display: none;}.stacks_in_387targetNote{	padding: 20px;	margin: 10px;	border: 1px solid #000000;	border-radius: 5px;	color: #ffffff !important;	background: #333333;	display: block;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_387Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_387Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_387Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_387Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */	 		#rapidweaver_privacy_message{			font-size: 80% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ #rapidweaver_privacy_message{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_389targetNote{	display: none;}.stacks_in_389Calligrapher{	display: none;}.stacks_in_389targetNote{	padding: 20px;	margin: 10px;	border: 1px solid #000000;	border-radius: 5px;	color: #ffffff !important;	background: #333333;	display: block;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_389Calligrapher a:link{			color: #FC6FCF !important;			text-decoration: none !important;		}				.stacks_in_389Calligrapher a:visited{			color: #FC6FCF !important;		}				.stacks_in_389Calligrapher a:active{			color: #FC6FCF !important;		}				.stacks_in_389Calligrapher a:hover{			color: #E6E6E6 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */