.com_joeworkman_stacks_link_stack a{display:block;text-decoration:none !important;padding:0;margin:0}
/* 
WHW edits
- Remove retina @media block at the bottom
- Remove '.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(icons/loading.gif) no-repeat 50% 50%; }'
- Remove 'background-image: url(icons/next.png);'
- Remove 'background-image: url(icons/prev.png);'
- Remove 'background: url(icons/close.png) no-repeat 5px 5px;'
- Remove default theme
*/


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

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

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

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

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

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

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}/*
-------------------------------------------
File: 'Blueball FreeStacks' fsspacer.css Style Sheet
Created: 21, November, 2010
Last Modified: 23, April, 2012
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2012 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_56443_56446_headerSpacer {
	display: block;
	width:  1px;
	height: 50px;
	background: transparent;
}

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

#stacks_in_53919 {
	margin: 10px 0px 0px 0px;
}
#stacks_in_56702 .simple_columns_column {	display:	block;	position:	relative;	float:		left;	max-width:		202px;	margin:		0 40px;	padding:0;}.simple_columns_wrap_in {	display:	block;	position:	relative;	max-width:		564px;	margin:0 auto;	padding:0;}.simple_columns_wrap_out {	display:	block;	position:	relative;	margin:0;	padding:0;}.simple_clearer {	display: block;	position: relative;	clear:both;}
#stacks_in_56702 {
	margin:  2px;
	padding:  5px;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82470editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82470editInfo i{
	vertical-align: middle;
}

.stacks_in_82470editInfo:before{
content:"#da1";
float: right;
}

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

.stacks_in_82470topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82470topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56708 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56708 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82476editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82476editInfo i{
	vertical-align: middle;
}

.stacks_in_82476editInfo:before{
content:"#da3";
float: right;
}

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

.stacks_in_82476topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82476topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56714 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56714 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82480editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82480editInfo i{
	vertical-align: middle;
}

.stacks_in_82480editInfo:before{
content:"#da5";
float: right;
}

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

.stacks_in_82480topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82480topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56720 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56720 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82484editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82484editInfo i{
	vertical-align: middle;
}

.stacks_in_82484editInfo:before{
content:"#da7";
float: right;
}

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

.stacks_in_82484topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82484topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56726 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56726 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82488editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82488editInfo i{
	vertical-align: middle;
}

.stacks_in_82488editInfo:before{
content:"#da9";
float: right;
}

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

.stacks_in_82488topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82488topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56732 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56732 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82492editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82492editInfo i{
	vertical-align: middle;
}

.stacks_in_82492editInfo:before{
content:"#da11";
float: right;
}

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

.stacks_in_82492topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82492topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56738 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56738 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82496editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82496editInfo i{
	vertical-align: middle;
}

.stacks_in_82496editInfo:before{
content:"#da13";
float: right;
}

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

.stacks_in_82496topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82496topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56744 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56744 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82500editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82500editInfo i{
	vertical-align: middle;
}

.stacks_in_82500editInfo:before{
content:"#da15";
float: right;
}

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

.stacks_in_82500topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82500topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56750 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56750 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82504editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82504editInfo i{
	vertical-align: middle;
}

.stacks_in_82504editInfo:before{
content:"#da17";
float: right;
}

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

.stacks_in_82504topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82504topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56756 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56756 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82508editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82508editInfo i{
	vertical-align: middle;
}

.stacks_in_82508editInfo:before{
content:"#da19";
float: right;
}

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

.stacks_in_82508topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82508topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56762 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56762 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82512editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82512editInfo i{
	vertical-align: middle;
}

.stacks_in_82512editInfo:before{
content:"#da21";
float: right;
}

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

.stacks_in_82512topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82512topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56768 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56768 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82522anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82522editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82522editInfo i{
	vertical-align: middle;
}

.stacks_in_82522editInfo:before{
content:"#da1";
float: right;
}

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

.stacks_in_82522topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82522topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- *//* -- Start Anchor Each css Template -- */



.stacks_in_82516editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82516editInfo i{
	vertical-align: middle;
}

.stacks_in_82516editInfo:before{
content:"#da23";
float: right;
}

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

.stacks_in_82516topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82516topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56774 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56774 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82478editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82478editInfo i{
	vertical-align: middle;
}

.stacks_in_82478editInfo:before{
content:"#da2";
float: right;
}

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

.stacks_in_82478topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82478topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56781 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56781 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82474editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82474editInfo i{
	vertical-align: middle;
}

.stacks_in_82474editInfo:before{
content:"#da4";
float: right;
}

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

.stacks_in_82474topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82474topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56787 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56787 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82482editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82482editInfo i{
	vertical-align: middle;
}

.stacks_in_82482editInfo:before{
content:"#da6";
float: right;
}

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

.stacks_in_82482topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82482topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56793 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56793 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82486editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82486editInfo i{
	vertical-align: middle;
}

.stacks_in_82486editInfo:before{
content:"#da8";
float: right;
}

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

.stacks_in_82486topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82486topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56799 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56799 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82490editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82490editInfo i{
	vertical-align: middle;
}

.stacks_in_82490editInfo:before{
content:"#da10";
float: right;
}

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

.stacks_in_82490topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82490topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56805 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56805 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82494editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82494editInfo i{
	vertical-align: middle;
}

.stacks_in_82494editInfo:before{
content:"#da12";
float: right;
}

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

.stacks_in_82494topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82494topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56811 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56811 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82498editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82498editInfo i{
	vertical-align: middle;
}

.stacks_in_82498editInfo:before{
content:"#da14";
float: right;
}

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

.stacks_in_82498topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82498topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56817 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56817 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82502editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82502editInfo i{
	vertical-align: middle;
}

.stacks_in_82502editInfo:before{
content:"#da16";
float: right;
}

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

.stacks_in_82502topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82502topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56823 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56823 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82506editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82506editInfo i{
	vertical-align: middle;
}

.stacks_in_82506editInfo:before{
content:"#da18";
float: right;
}

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

.stacks_in_82506topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82506topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56829 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56829 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82510editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82510editInfo i{
	vertical-align: middle;
}

.stacks_in_82510editInfo:before{
content:"#da20";
float: right;
}

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

.stacks_in_82510topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82510topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56835 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56835 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82514editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82514editInfo i{
	vertical-align: middle;
}

.stacks_in_82514editInfo:before{
content:"#da22";
float: right;
}

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

.stacks_in_82514topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82514topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56841 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56841 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82518editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82518editInfo i{
	vertical-align: middle;
}

.stacks_in_82518editInfo:before{
content:"#da24";
float: right;
}

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

.stacks_in_82518topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82518topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56847 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56847 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */



.stacks_in_82520editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82520editInfo i{
	vertical-align: middle;
}

.stacks_in_82520editInfo:before{
content:"#da25";
float: right;
}

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

.stacks_in_82520topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82520topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_56853 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56853 {
	margin-left:0;
}

#stacks_in_56856 {
	margin:  2px;
	padding:  5px;
}

#stacks_out_56856 {
	margin-right:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82523anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82523editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82523editInfo i{
	vertical-align: middle;
}

.stacks_in_82523editInfo:before{
content:"#da3";
float: right;
}

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

.stacks_in_82523topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82523topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_53899 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_53899 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82527anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82527editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82527editInfo i{
	vertical-align: middle;
}

.stacks_in_82527editInfo:before{
content:"#da5";
float: right;
}

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

.stacks_in_82527topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82527topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_53931 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_53931 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82528anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82528editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82528editInfo i{
	vertical-align: middle;
}

.stacks_in_82528editInfo:before{
content:"#da7";
float: right;
}

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

.stacks_in_82528topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82528topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_53943 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_53943 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82529anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82529editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82529editInfo i{
	vertical-align: middle;
}

.stacks_in_82529editInfo:before{
content:"#da9";
float: right;
}

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

.stacks_in_82529topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82529topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_53955 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_53955 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82530anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82530editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82530editInfo i{
	vertical-align: middle;
}

.stacks_in_82530editInfo:before{
content:"#da11";
float: right;
}

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

.stacks_in_82530topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82530topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_53967 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_53967 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82531anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82531editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82531editInfo i{
	vertical-align: middle;
}

.stacks_in_82531editInfo:before{
content:"#da13";
float: right;
}

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

.stacks_in_82531topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82531topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_53979 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_53979 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82532anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82532editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82532editInfo i{
	vertical-align: middle;
}

.stacks_in_82532editInfo:before{
content:"#da15";
float: right;
}

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

.stacks_in_82532topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82532topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54143 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54143 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82533anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82533editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82533editInfo i{
	vertical-align: middle;
}

.stacks_in_82533editInfo:before{
content:"#da17";
float: right;
}

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

.stacks_in_82533topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82533topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54147 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54147 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82534anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82534editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82534editInfo i{
	vertical-align: middle;
}

.stacks_in_82534editInfo:before{
content:"#da19";
float: right;
}

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

.stacks_in_82534topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82534topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54151 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54151 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82535anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82535editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82535editInfo i{
	vertical-align: middle;
}

.stacks_in_82535editInfo:before{
content:"#da21";
float: right;
}

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

.stacks_in_82535topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82535topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54155 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54155 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82536anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82536editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82536editInfo i{
	vertical-align: middle;
}

.stacks_in_82536editInfo:before{
content:"#da23";
float: right;
}

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

.stacks_in_82536topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82536topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54159 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54159 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82537anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82537editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82537editInfo i{
	vertical-align: middle;
}

.stacks_in_82537editInfo:before{
content:"#da2";
float: right;
}

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

.stacks_in_82537topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82537topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54163 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54163 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82538anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82538editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82538editInfo i{
	vertical-align: middle;
}

.stacks_in_82538editInfo:before{
content:"#da4";
float: right;
}

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

.stacks_in_82538topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82538topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54167 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54167 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82540anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82540editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82540editInfo i{
	vertical-align: middle;
}

.stacks_in_82540editInfo:before{
content:"#da6";
float: right;
}

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

.stacks_in_82540topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82540topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54171 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54171 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82541anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82541editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82541editInfo i{
	vertical-align: middle;
}

.stacks_in_82541editInfo:before{
content:"#da8";
float: right;
}

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

.stacks_in_82541topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82541topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54175 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54175 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82542anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82542editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82542editInfo i{
	vertical-align: middle;
}

.stacks_in_82542editInfo:before{
content:"#da10";
float: right;
}

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

.stacks_in_82542topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82542topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54179 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54179 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82543anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82543editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82543editInfo i{
	vertical-align: middle;
}

.stacks_in_82543editInfo:before{
content:"#da12";
float: right;
}

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

.stacks_in_82543topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82543topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54183 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54183 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82544anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82544editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82544editInfo i{
	vertical-align: middle;
}

.stacks_in_82544editInfo:before{
content:"#da14";
float: right;
}

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

.stacks_in_82544topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82544topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54187 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54187 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82545anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82545editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82545editInfo i{
	vertical-align: middle;
}

.stacks_in_82545editInfo:before{
content:"#da16";
float: right;
}

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

.stacks_in_82545topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82545topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54191 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54191 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82546anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82546editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82546editInfo i{
	vertical-align: middle;
}

.stacks_in_82546editInfo:before{
content:"#da18";
float: right;
}

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

.stacks_in_82546topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82546topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54195 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54195 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82547anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82547editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82547editInfo i{
	vertical-align: middle;
}

.stacks_in_82547editInfo:before{
content:"#da20";
float: right;
}

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

.stacks_in_82547topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82547topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54199 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54199 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82548anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82548editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82548editInfo i{
	vertical-align: middle;
}

.stacks_in_82548editInfo:before{
content:"#da22";
float: right;
}

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

.stacks_in_82548topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82548topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54203 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54203 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82549anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82549editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82549editInfo i{
	vertical-align: middle;
}

.stacks_in_82549editInfo:before{
content:"#da24";
float: right;
}

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

.stacks_in_82549topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82549topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54207 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54207 {
	margin-left:0;
}
/* -- Start Anchor Each css Template -- */


.stacks_in_82550anchorStack{
	height: 0px !important;
	padding: 0 !important;
	margin: 0 !important;
}


.stacks_in_82550editInfo{
	color: #ffffff;
	background: #16a085;
	padding: 3px 10px 3px 10px;
	border-radius: 2px;
	font-size: 18px;
}

.stacks_in_82550editInfo i{
	vertical-align: middle;
}

.stacks_in_82550editInfo:before{
content:"#da25";
float: right;
}

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

.stacks_in_82550topOffset{
	position: relative;
	height: 50;
	background: #ecf0f1;
	border: 1px solid #bdc3c7;
	border-top-right-radius: 2px;
	border-top-left-radius: 2px;
	margin-bottom: -2px;
}

.stacks_in_82550topOffset:after{
	content: "Top Offset";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #7f8c8d;
}




/* -- End Anchor Each css Template -- */
#stacks_in_54211 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54211 {
	margin-left:0;
}

#stacks_in_54215 {
	padding: 60px 0px 0px 0px;
}

#stacks_out_54215 {
	margin-left:0;
}
#usefulStackWrapperstacks_in_82473_78565 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 600px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

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








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












#stacks_in_82473_78548 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_82473_78548 .jwresp_col{overflow:hidden;margin:0;width:69%; float:left;}#stacks_in_82473_78548 #jwresp_col2_stacks_in_82473_78548{ float:right; width:29%}@media screen and (max-width:500px){#stacks_in_82473_78548 #jwresp_col1_stacks_in_82473_78548,#stacks_in_82473_78548 #jwresp_col2_stacks_in_82473_78548{width:100%;float:none;display:block}#stacks_in_82473_78548 #jwresp_col1_stacks_in_82473_78548{margin-bottom:10px}}

#stacks_in_82473_78521 {
	padding: 20px 0px 10px 0px;
}
#stacks_in_82473_78555_button {
	display:block;
	position: relative;
	text-align: center;
}


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







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




#stacks_in_82473_78555 {
	padding: 10px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_82473_83034_1 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 700px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

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








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













#stacks_in_82473_83034_1 {
	padding: 10px 0px 10px 0px;
}
#stacks_in_82473_83034_27>.s3_row {
	margin: 0 -10px;
}

#stacks_in_82473_83034_27>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_82473_83034_27>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_82473_83034_27>.s3_row>.s3_column {
	padding: 0 10px;
}










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



}



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


	#stacks_in_82473_83034_27>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_82473_83034_27>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_82473_83034_3 {
	padding:  20px;
}

#stacks_in_82473_83034_10 {
	padding:  20px;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay { 
	
	background: rgba(0, 0, 0, .25); 
	
	
	
}

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

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

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

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


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















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






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

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

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

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

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

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

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

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

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

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

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

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

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



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

#topBoxTriggerRegionstacks_in_82473_83017 #topBoxTriggerContentstacks_in_82473_83017 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_82473_83017 #topBoxTriggerContentstacks_in_82473_83017 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_82473_83017 {
	color: #424242;
}

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

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

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

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

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

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

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


#topBoxContentWrapperstacks_in_82473_83017 {
	display: none;
}



#stacks_in_82473_83017 {
	padding:  20px;
}
/*Begin Align Stack by Pressure Designs*/
#stacks_in_82473_83019align{
	
	text-align: center;
	margin-left: auto;
	margin-right: auto; 
	
	
	
	
	
}
/*End Align Stack by Pressure Designs*/
#stacks_in_82473_83020 {
	padding: 0px 0px 20px 0px;
}

#stacks_in_82473_83025 {
	padding: 10px 0px 10px 0px;
}

#stacks_in_82473_83026 {
	font-size: 125%;
}

#stacks_in_82473_83027 {
	padding: 10px 0px 10px 0px;
}

#stacks_in_82473_83028 {
	line-height: 2em;
	font-size: 125%;
}
