/* 
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-html5audio {
	width: 100%;
}

.nivo-lightbox-html5video {
	background: #000;
}

.nivo-lightbox-html5audio,
.nivo-lightbox-html5video {
	position: absolute;
	z-index: 99999;
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	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);
}/* @group Reset */

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

#stacks_in_107 {
	
}

.dataTables_wrapper .dataTables_filter input {
	margin-left: initial !important;
}

#stacks_in_107 #seo-wrapper-stacks_in_107 ul {
	padding: 0 0 0 20px;
	margin: 0;
	list-style: disc;
}

#stacks_in_107 #seo-wrapper-stacks_in_107 li {
	padding-left: 5px;
	margin: 0;
}

#preview-stacks_in_107 {
	position:absolute;
	border:1px solid #ccc;
	background:#333;
	padding:5px;
	display:none;
	color:#fff;
	z-index: 999;
}

h3.seorx {
	margin-top: 50px;
}

/* @end */


/**/

/* Edit mode styling */

/**/

/* @group Indexing status */

#indexingStatus-stacks_in_107 {

}

#indexingStatus-stacks_in_107 .statusDot {
	width: 15px;
	height: 15px;
	display: block;
	float: left;
	margin-right: 10px;
	border-radius: 50%;
	border: 1px solid #000000;
}

#indexingStatus-stacks_in_107 .statusDescription {
	margin-left: 30px;
	display: block;
}

#indexingStatus-stacks_in_107.green .statusDot {
	background: green;
}

#indexingStatus-stacks_in_107.amber .statusDot {
	background: #FFFF66;
}

#indexingStatus-stacks_in_107.red .statusDot {
	background: red;
}

#indexingStatus-stacks_in_107.green p.noGoogle,
#indexingStatus-stacks_in_107.green p.none {
	display: none;
}

#indexingStatus-stacks_in_107.amber p.all,
#indexingStatus-stacks_in_107.amber p.none {
	display: none;
}

#indexingStatus-stacks_in_107.red p.all,
#indexingStatus-stacks_in_107.red p.noGoogle {
	display: none;
}

/* @end */
/* Font style applied when the page has finished loading */

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

/* Start dooHeader X stack CSS code */.stacks_in_326x{	display: block !important;		text-align: justify !important;		color: #FFFFFF !important;		}.stacks_in_326x a,.stacks_in_326x a:visited,.stacks_in_326x a:active{	color: #FFFFFF !important;}.stacks_in_326x a:hover{	color: #FFFFFF !important;}@media (max-width:768px) {	.stacks_in_326x{		text-align: justify !important;	}}@media (max-width:480px) {	.stacks_in_326x{		text-align: justify !important;	}}/* End dooHeader X stack CSS code *//* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_271 #myExtraContent6,
#ExtraContentPlusstacks_in_271 #fs {
	display: none;
}

/* Start dooHeader X stack CSS code */.stacks_in_328x{	display: block !important;		text-align: left !important;		color: #333333 !important;		}.stacks_in_328x a,.stacks_in_328x a:visited,.stacks_in_328x a:active{	color: #333333 !important;}.stacks_in_328x a:hover{	color: #4C4C4C !important;}@media (max-width:768px) {	.stacks_in_328x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_328x{		text-align: left !important;	}}/* End dooHeader X stack CSS code *//* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_308 #myExtraContent7,
#ExtraContentPlusstacks_in_308 #fs {
	display: none;
}

#stacks_in_330 .flexgridwrap
{
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
	/* Custom CSS ; */
}

#stacks_in_330 .flexgridtable a
{
 
}
#stacks_in_330 .flexgridtable a:hover
{
 
}


#stacks_in_330 .flexgridtable
{
	display: table;
	margin-bottom: 0px !important;
	border-collapse: collapse !important;
	border: none;
 
 

 
	background: url() repeat 0px 0px;
 

 


	-moz-box-shadow:  0 0 0px #333333;
	-webkit-box-shadow:  0 0 0px #333333;
	box-shadow:  0 0 0px #333333;



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background s ease-in-out;
-ms-transition: background s ease-in-out;
-o-transition: background s ease-in-out;
transition: background s ease-in-out;

 
}

#stacks_in_330 .flexgridtable:hover
{
 
	-moz-box-shadow:  0 0 0px #333333;
	-webkit-box-shadow:  0 0 0px #333333;
	box-shadow:  0 0 0px #333333;
 
}

#stacks_in_330 .flexgridtr
{
	vertical-align: middle;
	display:  block;
	padding: 0px;
}

#stacks_in_330 .flexgridtable:hover
{
 
/*Nothing happens here*/
 
}

#stacks_in_330 .flexgridtd1:hover
{
 
/*Nothing happens here*/

}
#stacks_in_330 .flexgridtd2:hover
{
 
/*Nothing happens here*/

}
#stacks_in_330 .flexgridtd3:hover
{
 
/*Nothing happens here*/

}
#stacks_in_330 .flexgridtd4:hover
{
 
/*Nothing happens here*/

}
#stacks_in_330 .flexgridtd5:hover
{
 
/*Nothing happens here*/

}
#stacks_in_330 .flexgridtd6:hover
{
 
/*Nothing happens here*/

}
#stacks_in_330 .flexgridtd7:hover
{
 
/*Nothing happens here*/

}
#stacks_in_330 .flexgridtd8:hover
{
 
/*Nothing happens here*/

}
#stacks_in_330 .flexgridtd9:hover
{
 
/*Nothing happens here*/

}
#stacks_in_330 .flexgridtd10:hover
{
 
/*Nothing happens here*/

}

#stacks_in_330 .flexgridtd1
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: middle;


 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_330 .y1 /*defligra stacks*/
{
	display: block;
 
	width: auto;


 	
	padding: 4px;

	
 
	height: auto;
	overflow: visible;
 
}

#stacks_in_330 .flexgridtd2
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: middle;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_330 .y2 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 4px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_330 .flexgridtd3
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: middle;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_330 .y3 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 4px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_330 .flexgridtd4
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: middle;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_330 .y4 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 4px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_330 .flexgridtd5
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: middle;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_330 .y5 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 4px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_330 .flexgridtd6
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: middle;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_330 .y6 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 4px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_330 .flexgridtd7
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: middle;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_330 .y7 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 4px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_330 .flexgridtd8
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: middle;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_330 .y8 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;

 
  	
	padding: 4px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_330 .flexgridtd9
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: middle;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_330 .y9 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;

 
 	
	padding: 4px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_330 .flexgridtd10
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: middle;
 
	background: url() no-repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

 
	border-right:  0px solid #333333;
 



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}
#stacks_in_330 .y10 /*defligra stacks*/
{
	display: block;
 
	width: auto;


 	
	padding: 4px;

 
	height: auto;
	overflow: visible;
 
}


@media screen and (max-width: 800px) {
#stacks_in_330 .flexgridtable {
	overflow: auto !important;
	display:block;
	padding: 4px !mportant;
}

	#stacks_in_330 .flexgridtable::-webkit-scrollbar {
	-webkit-apperance: none !important;
	width: 14px;
	height: 14px;
	background-color: #FFFFFF;
}
	#stacks_in_330 .flexgridtable::-webkit-scrollbar-thumb {
	
	border: 3px solid #FFFFFF;
	background-color: #000000;
}
}










/* Start dooHeader X stack CSS code */.stacks_in_331x{	display: block !important;		text-align: left !important;		color: #333333 !important;		}.stacks_in_331x a,.stacks_in_331x a:visited,.stacks_in_331x a:active{	color: #333333 !important;}.stacks_in_331x a:hover{	color: #4C4C4C !important;}@media (max-width:768px) {	.stacks_in_331x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_331x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

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

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

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 0px;
	border-radius: 0px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 0px;
}




/* No background */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: none;
}


















.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 '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-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.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;
	z-index: 99999999999;
}

.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: rgba(255, 255, 255, 1.00);
	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: rgba(255, 255, 255, 1.00);
	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: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

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






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_334 #topBoxTriggerstacks_in_334 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_334 #topBoxTriggerContentstacks_in_334 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_334 #topBoxTriggerContentstacks_in_334 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_334 {
	color: rgba(66, 66, 66, 1.00);
}

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

#topBoxContentWrapperstacks_in_334 h1,
#topBoxContentWrapperstacks_in_334 h2,
#topBoxContentWrapperstacks_in_334 h3,
#topBoxContentWrapperstacks_in_334 h4,
#topBoxContentWrapperstacks_in_334 h5,
#topBoxContentWrapperstacks_in_334 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_334 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_334 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_334 a:hover,
#topBoxContentWrapperstacks_in_334 a:focus,
#topBoxContentWrapperstacks_in_334 a:active {
	color: rgba(255, 0, 0, 1.00);
}

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

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_334.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_334 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



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


#topBoxContentWrapperstacks_in_334 {
	display: none;
}







/* Start dooHeader X stack CSS code */.stacks_in_335x{	display: block !important;		text-align: left !important;		color: #FF3333 !important;		}.stacks_in_335x a,.stacks_in_335x a:visited,.stacks_in_335x a:active{	color: #FF3333 !important;}.stacks_in_335x a:hover{	color: #FF4C4C !important;}@media (max-width:768px) {	.stacks_in_335x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_335x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */#stacks_in_339{text-align:center;-webkit-overflow-scrolling:touch;overflow-y:scroll}#stacks_in_339 iframe.load{visibility:hidden}#stacks_in_339 iframe[scrolling='no']{overflow:hidden}#stacks_in_339 iframe.responsive{display:block;max-width:100%;width:100%}
