#fullScreenWrapper-Showtime2mov {
    width: 100%;
}

#playerWrapper-Showtime2mov {
	display: block;
	position: relative;
}

#playerWrapper-Showtime2mov *,
#playerWrapper-Showtime2mov *:before,
#playerWrapper-Showtime2mov *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-Showtime2mov {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(11, 14, 11, 1.00);
}




#mediaFrame-Showtime2mov {
	padding-bottom: 56.25%;
}






#playerWrapper-Showtime2mov #media-Showtime2mov {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-Showtime2mov .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-Showtime2mov .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-Showtime2mov .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-Showtime2mov .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Showtime2mov .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-Showtime2mov .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Showtime2mov .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-Showtime2mov .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Showtime2mov .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-Showtime2mov,
#playerSplashButtonstacks_in_38_page28 {
	display: none !important;
}


#media-controls-wrapper-Showtime2mov {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-Showtime2mov button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-Showtime2mov {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-Showtime2mov {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-Showtime2mov:hover #toolbar-Showtime2mov {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-Showtime2mov.playerInFullScreenMode:hover #toolbar-Showtime2mov,
#playerWrapper-Showtime2mov.playerInFullScreenMode #toolbar-Showtime2mov {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Showtime2mov.playerInFullScreenMode #toolbar-Showtime2mov.toolbarHovered,
.playerTouchDevice #playerWrapper-Showtime2mov.playerInFullScreenMode #toolbar-Showtime2mov {
    opacity: 1.00;
}
 */

#playerWrapper-Showtime2mov.playerInFullScreenMode #fullscreenHoverRegionstacks_in_38_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-Showtime2mov .media-button,
#toolbar-Showtime2mov .timingContent {
    line-height: 45px;
}

#toolbar-Showtime2mov .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-Showtime2mov span.time,
#media-controls-Showtime2mov span.player-extra-element,
#media-controls-Showtime2mov span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}

















#toolbar-Showtime2mov [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-Showtime2mov [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-Showtime2mov .media-button a,
#toolbar-Showtime2mov .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-Showtime2mov span.media-button a:hover,
#media-controls-Showtime2mov span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-Showtime2mov .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-Showtime2mov .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_38_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-Showtime2mov .duration,
#toolbar-Showtime2mov .scrubberWrapper,
#toolbar-Showtime2mov .time {
    /* display: table-cell; */
}

#toolbar-Showtime2mov .time,
#toolbar-Showtime2mov .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-Showtime2mov .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-Showtime2mov .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-Showtime2mov .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-Showtime2mov .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_38_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_38_page28 {
  display: none !important;
}

#volumestacks_in_38_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_38_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_38_page28:hover #volumeMasterControllerstacks_in_38_page28 {
	display: none;
}

#volumeMinstacks_in_38_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_38_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_38_page28[type=range],
#volumeMinstacks_in_38_page28,
#volumeMaxstacks_in_38_page28 {
	display: none;
}

#volumeMinstacks_in_38_page28,
#volumeMaxstacks_in_38_page28 {
	cursor: pointer;
}

#volumestacks_in_38_page28:hover #volumeMinstacks_in_38_page28,
#volumestacks_in_38_page28:hover #volumeMaxstacks_in_38_page28,
#volumestacks_in_38_page28:hover #volume-barstacks_in_38_page28 {
	display: inline;
}

#volume-barstacks_in_38_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_38_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_38_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_38_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_38_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_38_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_38_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_38_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_38_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_38_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_38_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_38_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_38_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-Showtime2mov.playerInFullScreenMode,
#fullScreenWrapper-Showtime2mov.playerInFullScreenMode #playerWrapper-Showtime2mov  {
    height: 100%;
}

#fullScreenWrapper-Showtime2mov.playerInFullScreenMode #mediaFrame-Showtime2mov {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-Showtime2mov.playerInFullScreenMode Showtime2mov {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-Showtime2mov.playerInFullScreenMode #toolbar-Showtime2mov {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-Showtime2mov.playerInFullScreenMode #toolbar-Showtime2mov.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-Showtime2mov.playerInFullScreenMode #PlayerCaptionsBarShowtime2mov {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-Showtime2mov.playerInFullScreenMode #PlayerCaptionsBarShowtime2mov.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-Showtime2mov #fullscreenHoverRegion-Showtime2mov {
	display: none;
}

#fullScreenWrapper-Showtime2mov.playerInFullScreenMode #fullscreenHoverRegion-Showtime2mov {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_38_page28 {
	margin:  20px;
	padding:  20px;
}
#fullScreenWrapper-movie6361 {
    width: 100%;
}

#playerWrapper-movie6361 {
	display: block;
	position: relative;
}

#playerWrapper-movie6361 *,
#playerWrapper-movie6361 *:before,
#playerWrapper-movie6361 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-movie6361 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(29, 19, 19, 1.00);
}




#mediaFrame-movie6361 {
	padding-bottom: 56.25%;
}






#playerWrapper-movie6361 #media-movie6361 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-movie6361 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-movie6361 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-movie6361 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-movie6361 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6361 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-movie6361 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6361 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-movie6361 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6361 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-movie6361,
#playerSplashButtonstacks_in_32_page28 {
	display: none !important;
}


#media-controls-wrapper-movie6361 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-movie6361 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-movie6361 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-movie6361 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-movie6361:hover #toolbar-movie6361 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-movie6361.playerInFullScreenMode:hover #toolbar-movie6361,
#playerWrapper-movie6361.playerInFullScreenMode #toolbar-movie6361 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6361.playerInFullScreenMode #toolbar-movie6361.toolbarHovered,
.playerTouchDevice #playerWrapper-movie6361.playerInFullScreenMode #toolbar-movie6361 {
    opacity: 1.00;
}
 */

#playerWrapper-movie6361.playerInFullScreenMode #fullscreenHoverRegionstacks_in_32_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-movie6361 .media-button,
#toolbar-movie6361 .timingContent {
    line-height: 45px;
}

#toolbar-movie6361 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-movie6361 span.time,
#media-controls-movie6361 span.player-extra-element,
#media-controls-movie6361 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}

















#toolbar-movie6361 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-movie6361 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-movie6361 .media-button a,
#toolbar-movie6361 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-movie6361 span.media-button a:hover,
#media-controls-movie6361 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-movie6361 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-movie6361 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_32_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-movie6361 .duration,
#toolbar-movie6361 .scrubberWrapper,
#toolbar-movie6361 .time {
    /* display: table-cell; */
}

#toolbar-movie6361 .time,
#toolbar-movie6361 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-movie6361 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-movie6361 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-movie6361 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-movie6361 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_32_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_32_page28 {
  display: none !important;
}

#volumestacks_in_32_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_32_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_32_page28:hover #volumeMasterControllerstacks_in_32_page28 {
	display: none;
}

#volumeMinstacks_in_32_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_32_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_32_page28[type=range],
#volumeMinstacks_in_32_page28,
#volumeMaxstacks_in_32_page28 {
	display: none;
}

#volumeMinstacks_in_32_page28,
#volumeMaxstacks_in_32_page28 {
	cursor: pointer;
}

#volumestacks_in_32_page28:hover #volumeMinstacks_in_32_page28,
#volumestacks_in_32_page28:hover #volumeMaxstacks_in_32_page28,
#volumestacks_in_32_page28:hover #volume-barstacks_in_32_page28 {
	display: inline;
}

#volume-barstacks_in_32_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_32_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_32_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_32_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_32_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_32_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_32_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_32_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_32_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_32_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_32_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_32_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_32_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-movie6361.playerInFullScreenMode,
#fullScreenWrapper-movie6361.playerInFullScreenMode #playerWrapper-movie6361  {
    height: 100%;
}

#fullScreenWrapper-movie6361.playerInFullScreenMode #mediaFrame-movie6361 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-movie6361.playerInFullScreenMode movie6361 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-movie6361.playerInFullScreenMode #toolbar-movie6361 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-movie6361.playerInFullScreenMode #toolbar-movie6361.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-movie6361.playerInFullScreenMode #PlayerCaptionsBarmovie6361 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-movie6361.playerInFullScreenMode #PlayerCaptionsBarmovie6361.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-movie6361 #fullscreenHoverRegion-movie6361 {
	display: none;
}

#fullScreenWrapper-movie6361.playerInFullScreenMode #fullscreenHoverRegion-movie6361 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_32_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_34_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_34_page28 a:link, #stacks_in_34_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_34_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_34_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#fullScreenWrapper-movie6368 {
    width: 100%;
}

#playerWrapper-movie6368 {
	display: block;
	position: relative;
}

#playerWrapper-movie6368 *,
#playerWrapper-movie6368 *:before,
#playerWrapper-movie6368 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-movie6368 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(29, 19, 19, 1.00);
}




#mediaFrame-movie6368 {
	padding-bottom: 56.25%;
}






#playerWrapper-movie6368 #media-movie6368 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-movie6368 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-movie6368 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-movie6368 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-movie6368 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6368 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-movie6368 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6368 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-movie6368 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6368 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-movie6368,
#playerSplashButtonstacks_in_33_page28 {
	display: none !important;
}


#media-controls-wrapper-movie6368 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-movie6368 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-movie6368 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-movie6368 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-movie6368:hover #toolbar-movie6368 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-movie6368.playerInFullScreenMode:hover #toolbar-movie6368,
#playerWrapper-movie6368.playerInFullScreenMode #toolbar-movie6368 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6368.playerInFullScreenMode #toolbar-movie6368.toolbarHovered,
.playerTouchDevice #playerWrapper-movie6368.playerInFullScreenMode #toolbar-movie6368 {
    opacity: 1.00;
}
 */

#playerWrapper-movie6368.playerInFullScreenMode #fullscreenHoverRegionstacks_in_33_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-movie6368 .media-button,
#toolbar-movie6368 .timingContent {
    line-height: 45px;
}

#toolbar-movie6368 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-movie6368 span.time,
#media-controls-movie6368 span.player-extra-element,
#media-controls-movie6368 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}

















#toolbar-movie6368 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-movie6368 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-movie6368 .media-button a,
#toolbar-movie6368 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-movie6368 span.media-button a:hover,
#media-controls-movie6368 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-movie6368 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-movie6368 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_33_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-movie6368 .duration,
#toolbar-movie6368 .scrubberWrapper,
#toolbar-movie6368 .time {
    /* display: table-cell; */
}

#toolbar-movie6368 .time,
#toolbar-movie6368 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-movie6368 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-movie6368 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-movie6368 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-movie6368 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_33_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_33_page28 {
  display: none !important;
}

#volumestacks_in_33_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_33_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_33_page28:hover #volumeMasterControllerstacks_in_33_page28 {
	display: none;
}

#volumeMinstacks_in_33_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_33_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_33_page28[type=range],
#volumeMinstacks_in_33_page28,
#volumeMaxstacks_in_33_page28 {
	display: none;
}

#volumeMinstacks_in_33_page28,
#volumeMaxstacks_in_33_page28 {
	cursor: pointer;
}

#volumestacks_in_33_page28:hover #volumeMinstacks_in_33_page28,
#volumestacks_in_33_page28:hover #volumeMaxstacks_in_33_page28,
#volumestacks_in_33_page28:hover #volume-barstacks_in_33_page28 {
	display: inline;
}

#volume-barstacks_in_33_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_33_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_33_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_33_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_33_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_33_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_33_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_33_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_33_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_33_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_33_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_33_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_33_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-movie6368.playerInFullScreenMode,
#fullScreenWrapper-movie6368.playerInFullScreenMode #playerWrapper-movie6368  {
    height: 100%;
}

#fullScreenWrapper-movie6368.playerInFullScreenMode #mediaFrame-movie6368 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-movie6368.playerInFullScreenMode movie6368 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-movie6368.playerInFullScreenMode #toolbar-movie6368 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-movie6368.playerInFullScreenMode #toolbar-movie6368.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-movie6368.playerInFullScreenMode #PlayerCaptionsBarmovie6368 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-movie6368.playerInFullScreenMode #PlayerCaptionsBarmovie6368.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-movie6368 #fullscreenHoverRegion-movie6368 {
	display: none;
}

#fullScreenWrapper-movie6368.playerInFullScreenMode #fullscreenHoverRegion-movie6368 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_33_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_36_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_36_page28 a:link, #stacks_in_36_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_36_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_36_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#fullScreenWrapper-movie6216 {
    width: 100%;
}

#playerWrapper-movie6216 {
	display: block;
	position: relative;
}

#playerWrapper-movie6216 *,
#playerWrapper-movie6216 *:before,
#playerWrapper-movie6216 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-movie6216 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(29, 19, 19, 1.00);
}




#mediaFrame-movie6216 {
	padding-bottom: 56.25%;
}






#playerWrapper-movie6216 #media-movie6216 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-movie6216 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-movie6216 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-movie6216 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-movie6216 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6216 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-movie6216 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6216 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-movie6216 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6216 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-movie6216,
#playerSplashButtonstacks_in_11_page28 {
	display: none !important;
}


#media-controls-wrapper-movie6216 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-movie6216 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-movie6216 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-movie6216 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-movie6216:hover #toolbar-movie6216 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-movie6216.playerInFullScreenMode:hover #toolbar-movie6216,
#playerWrapper-movie6216.playerInFullScreenMode #toolbar-movie6216 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6216.playerInFullScreenMode #toolbar-movie6216.toolbarHovered,
.playerTouchDevice #playerWrapper-movie6216.playerInFullScreenMode #toolbar-movie6216 {
    opacity: 1.00;
}
 */

#playerWrapper-movie6216.playerInFullScreenMode #fullscreenHoverRegionstacks_in_11_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-movie6216 .media-button,
#toolbar-movie6216 .timingContent {
    line-height: 45px;
}

#toolbar-movie6216 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-movie6216 span.time,
#media-controls-movie6216 span.player-extra-element,
#media-controls-movie6216 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}

















#toolbar-movie6216 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-movie6216 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-movie6216 .media-button a,
#toolbar-movie6216 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-movie6216 span.media-button a:hover,
#media-controls-movie6216 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-movie6216 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-movie6216 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_11_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-movie6216 .duration,
#toolbar-movie6216 .scrubberWrapper,
#toolbar-movie6216 .time {
    /* display: table-cell; */
}

#toolbar-movie6216 .time,
#toolbar-movie6216 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-movie6216 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-movie6216 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-movie6216 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-movie6216 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_11_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_11_page28 {
  display: none !important;
}

#volumestacks_in_11_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_11_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_11_page28:hover #volumeMasterControllerstacks_in_11_page28 {
	display: none;
}

#volumeMinstacks_in_11_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_11_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_11_page28[type=range],
#volumeMinstacks_in_11_page28,
#volumeMaxstacks_in_11_page28 {
	display: none;
}

#volumeMinstacks_in_11_page28,
#volumeMaxstacks_in_11_page28 {
	cursor: pointer;
}

#volumestacks_in_11_page28:hover #volumeMinstacks_in_11_page28,
#volumestacks_in_11_page28:hover #volumeMaxstacks_in_11_page28,
#volumestacks_in_11_page28:hover #volume-barstacks_in_11_page28 {
	display: inline;
}

#volume-barstacks_in_11_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_11_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_11_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_11_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_11_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_11_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_11_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_11_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_11_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_11_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_11_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_11_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_11_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-movie6216.playerInFullScreenMode,
#fullScreenWrapper-movie6216.playerInFullScreenMode #playerWrapper-movie6216  {
    height: 100%;
}

#fullScreenWrapper-movie6216.playerInFullScreenMode #mediaFrame-movie6216 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-movie6216.playerInFullScreenMode movie6216 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-movie6216.playerInFullScreenMode #toolbar-movie6216 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-movie6216.playerInFullScreenMode #toolbar-movie6216.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-movie6216.playerInFullScreenMode #PlayerCaptionsBarmovie6216 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-movie6216.playerInFullScreenMode #PlayerCaptionsBarmovie6216.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-movie6216 #fullscreenHoverRegion-movie6216 {
	display: none;
}

#fullScreenWrapper-movie6216.playerInFullScreenMode #fullscreenHoverRegion-movie6216 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_11_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_12_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_12_page28 a:link, #stacks_in_12_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_12_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_12_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#fullScreenWrapper-movie6165 {
    width: 100%;
}

#playerWrapper-movie6165 {
	display: block;
	position: relative;
}

#playerWrapper-movie6165 *,
#playerWrapper-movie6165 *:before,
#playerWrapper-movie6165 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-movie6165 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(12, 11, 11, 1.00);
}




#mediaFrame-movie6165 {
	padding-bottom: 56.25%;
}






#playerWrapper-movie6165 #media-movie6165 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-movie6165 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-movie6165 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-movie6165 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-movie6165 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6165 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-movie6165 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6165 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-movie6165 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6165 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-movie6165,
#playerSplashButtonstacks_in_2_page28 {
	display: none !important;
}


#media-controls-wrapper-movie6165 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-movie6165 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-movie6165 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-movie6165 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-movie6165:hover #toolbar-movie6165 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-movie6165.playerInFullScreenMode:hover #toolbar-movie6165,
#playerWrapper-movie6165.playerInFullScreenMode #toolbar-movie6165 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-movie6165.playerInFullScreenMode #toolbar-movie6165.toolbarHovered,
.playerTouchDevice #playerWrapper-movie6165.playerInFullScreenMode #toolbar-movie6165 {
    opacity: 1.00;
}
 */

#playerWrapper-movie6165.playerInFullScreenMode #fullscreenHoverRegionstacks_in_2_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-movie6165 .media-button,
#toolbar-movie6165 .timingContent {
    line-height: 45px;
}

#toolbar-movie6165 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-movie6165 span.time,
#media-controls-movie6165 span.player-extra-element,
#media-controls-movie6165 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}

















#toolbar-movie6165 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-movie6165 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-movie6165 .media-button a,
#toolbar-movie6165 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-movie6165 span.media-button a:hover,
#media-controls-movie6165 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-movie6165 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-movie6165 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_2_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-movie6165 .duration,
#toolbar-movie6165 .scrubberWrapper,
#toolbar-movie6165 .time {
    /* display: table-cell; */
}

#toolbar-movie6165 .time,
#toolbar-movie6165 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-movie6165 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-movie6165 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-movie6165 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-movie6165 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_2_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_2_page28 {
  display: none !important;
}

#volumestacks_in_2_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_2_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_2_page28:hover #volumeMasterControllerstacks_in_2_page28 {
	display: none;
}

#volumeMinstacks_in_2_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_2_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_2_page28[type=range],
#volumeMinstacks_in_2_page28,
#volumeMaxstacks_in_2_page28 {
	display: none;
}

#volumeMinstacks_in_2_page28,
#volumeMaxstacks_in_2_page28 {
	cursor: pointer;
}

#volumestacks_in_2_page28:hover #volumeMinstacks_in_2_page28,
#volumestacks_in_2_page28:hover #volumeMaxstacks_in_2_page28,
#volumestacks_in_2_page28:hover #volume-barstacks_in_2_page28 {
	display: inline;
}

#volume-barstacks_in_2_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_2_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_2_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_2_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_2_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_2_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_2_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_2_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_2_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_2_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-movie6165.playerInFullScreenMode,
#fullScreenWrapper-movie6165.playerInFullScreenMode #playerWrapper-movie6165  {
    height: 100%;
}

#fullScreenWrapper-movie6165.playerInFullScreenMode #mediaFrame-movie6165 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-movie6165.playerInFullScreenMode movie6165 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-movie6165.playerInFullScreenMode #toolbar-movie6165 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-movie6165.playerInFullScreenMode #toolbar-movie6165.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-movie6165.playerInFullScreenMode #PlayerCaptionsBarmovie6165 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-movie6165.playerInFullScreenMode #PlayerCaptionsBarmovie6165.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-movie6165 #fullscreenHoverRegion-movie6165 {
	display: none;
}

#fullScreenWrapper-movie6165.playerInFullScreenMode #fullscreenHoverRegion-movie6165 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_2_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_14_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_14_page28 a:link, #stacks_in_14_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_14_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_14_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#fullScreenWrapper-Movie6166 {
    width: 100%;
}

#playerWrapper-Movie6166 {
	display: block;
	position: relative;
}

#playerWrapper-Movie6166 *,
#playerWrapper-Movie6166 *:before,
#playerWrapper-Movie6166 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-Movie6166 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(24, 24, 26, 1.00);
}




#mediaFrame-Movie6166 {
	padding-bottom: 56.25%;
}






#playerWrapper-Movie6166 #media-Movie6166 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-Movie6166 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-Movie6166 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-Movie6166 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6166 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6166 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-Movie6166 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6166 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6166 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6166 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-Movie6166,
#playerSplashButtonstacks_in_3_page28 {
	display: none !important;
}


#media-controls-wrapper-Movie6166 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-Movie6166 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-Movie6166 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-Movie6166 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-Movie6166:hover #toolbar-Movie6166 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-Movie6166.playerInFullScreenMode:hover #toolbar-Movie6166,
#playerWrapper-Movie6166.playerInFullScreenMode #toolbar-Movie6166 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6166.playerInFullScreenMode #toolbar-Movie6166.toolbarHovered,
.playerTouchDevice #playerWrapper-Movie6166.playerInFullScreenMode #toolbar-Movie6166 {
    opacity: 1.00;
}
 */

#playerWrapper-Movie6166.playerInFullScreenMode #fullscreenHoverRegionstacks_in_3_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-Movie6166 .media-button,
#toolbar-Movie6166 .timingContent {
    line-height: 45px;
}

#toolbar-Movie6166 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-Movie6166 span.time,
#media-controls-Movie6166 span.player-extra-element,
#media-controls-Movie6166 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}




#playstacks_in_3_page28 {
    order: 3;
    display: block;
}

#pausestacks_in_3_page28 {
    order: 3;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #playstacks_in_3_page28,
    #pausestacks_in_3_page28{
        display: none !important;
    }
}












#expandToFullScreenstacks_in_3_page28 {
    order: 8;
}

#contractFromFullScreenstacks_in_3_page28 {
    order: 8;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #expandToFullScreenstacks_in_3_page28,
    #contractFromFullScreenstacks_in_3_page28 {
        display: none !important;
    }
}





#toolbar-Movie6166 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-Movie6166 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-Movie6166 .media-button a,
#toolbar-Movie6166 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-Movie6166 span.media-button a:hover,
#media-controls-Movie6166 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-Movie6166 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-Movie6166 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_3_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-Movie6166 .duration,
#toolbar-Movie6166 .scrubberWrapper,
#toolbar-Movie6166 .time {
    /* display: table-cell; */
}

#toolbar-Movie6166 .time,
#toolbar-Movie6166 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-Movie6166 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-Movie6166 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-Movie6166 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-Movie6166 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_3_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_3_page28 {
  display: none !important;
}

#volumestacks_in_3_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_3_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_3_page28:hover #volumeMasterControllerstacks_in_3_page28 {
	display: none;
}

#volumeMinstacks_in_3_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_3_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_3_page28[type=range],
#volumeMinstacks_in_3_page28,
#volumeMaxstacks_in_3_page28 {
	display: none;
}

#volumeMinstacks_in_3_page28,
#volumeMaxstacks_in_3_page28 {
	cursor: pointer;
}

#volumestacks_in_3_page28:hover #volumeMinstacks_in_3_page28,
#volumestacks_in_3_page28:hover #volumeMaxstacks_in_3_page28,
#volumestacks_in_3_page28:hover #volume-barstacks_in_3_page28 {
	display: inline;
}

#volume-barstacks_in_3_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_3_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_3_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_3_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_3_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_3_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_3_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_3_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_3_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_3_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_3_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_3_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_3_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-Movie6166.playerInFullScreenMode,
#fullScreenWrapper-Movie6166.playerInFullScreenMode #playerWrapper-Movie6166  {
    height: 100%;
}

#fullScreenWrapper-Movie6166.playerInFullScreenMode #mediaFrame-Movie6166 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-Movie6166.playerInFullScreenMode Movie6166 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-Movie6166.playerInFullScreenMode #toolbar-Movie6166 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-Movie6166.playerInFullScreenMode #toolbar-Movie6166.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-Movie6166.playerInFullScreenMode #PlayerCaptionsBarMovie6166 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-Movie6166.playerInFullScreenMode #PlayerCaptionsBarMovie6166.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-Movie6166 #fullscreenHoverRegion-Movie6166 {
	display: none;
}

#fullScreenWrapper-Movie6166.playerInFullScreenMode #fullscreenHoverRegion-Movie6166 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_3_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_16_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_16_page28 a:link, #stacks_in_16_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_16_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_16_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#fullScreenWrapper-Movie6171 {
    width: 100%;
}

#playerWrapper-Movie6171 {
	display: block;
	position: relative;
}

#playerWrapper-Movie6171 *,
#playerWrapper-Movie6171 *:before,
#playerWrapper-Movie6171 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-Movie6171 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(19, 12, 13, 1.00);
}




#mediaFrame-Movie6171 {
	padding-bottom: 56.25%;
}






#playerWrapper-Movie6171 #media-Movie6171 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-Movie6171 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-Movie6171 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-Movie6171 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6171 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6171 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-Movie6171 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6171 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6171 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6171 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-Movie6171,
#playerSplashButtonstacks_in_4_page28 {
	display: none !important;
}


#media-controls-wrapper-Movie6171 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-Movie6171 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-Movie6171 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-Movie6171 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-Movie6171:hover #toolbar-Movie6171 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-Movie6171.playerInFullScreenMode:hover #toolbar-Movie6171,
#playerWrapper-Movie6171.playerInFullScreenMode #toolbar-Movie6171 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6171.playerInFullScreenMode #toolbar-Movie6171.toolbarHovered,
.playerTouchDevice #playerWrapper-Movie6171.playerInFullScreenMode #toolbar-Movie6171 {
    opacity: 1.00;
}
 */

#playerWrapper-Movie6171.playerInFullScreenMode #fullscreenHoverRegionstacks_in_4_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-Movie6171 .media-button,
#toolbar-Movie6171 .timingContent {
    line-height: 45px;
}

#toolbar-Movie6171 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-Movie6171 span.time,
#media-controls-Movie6171 span.player-extra-element,
#media-controls-Movie6171 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}




#playstacks_in_4_page28 {
    order: 3;
    display: block;
}

#pausestacks_in_4_page28 {
    order: 3;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #playstacks_in_4_page28,
    #pausestacks_in_4_page28{
        display: none !important;
    }
}












#expandToFullScreenstacks_in_4_page28 {
    order: 8;
}

#contractFromFullScreenstacks_in_4_page28 {
    order: 8;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #expandToFullScreenstacks_in_4_page28,
    #contractFromFullScreenstacks_in_4_page28 {
        display: none !important;
    }
}





#toolbar-Movie6171 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-Movie6171 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-Movie6171 .media-button a,
#toolbar-Movie6171 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-Movie6171 span.media-button a:hover,
#media-controls-Movie6171 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-Movie6171 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-Movie6171 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_4_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-Movie6171 .duration,
#toolbar-Movie6171 .scrubberWrapper,
#toolbar-Movie6171 .time {
    /* display: table-cell; */
}

#toolbar-Movie6171 .time,
#toolbar-Movie6171 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-Movie6171 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-Movie6171 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-Movie6171 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-Movie6171 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_4_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_4_page28 {
  display: none !important;
}

#volumestacks_in_4_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_4_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_4_page28:hover #volumeMasterControllerstacks_in_4_page28 {
	display: none;
}

#volumeMinstacks_in_4_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_4_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_4_page28[type=range],
#volumeMinstacks_in_4_page28,
#volumeMaxstacks_in_4_page28 {
	display: none;
}

#volumeMinstacks_in_4_page28,
#volumeMaxstacks_in_4_page28 {
	cursor: pointer;
}

#volumestacks_in_4_page28:hover #volumeMinstacks_in_4_page28,
#volumestacks_in_4_page28:hover #volumeMaxstacks_in_4_page28,
#volumestacks_in_4_page28:hover #volume-barstacks_in_4_page28 {
	display: inline;
}

#volume-barstacks_in_4_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_4_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_4_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_4_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_4_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_4_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_4_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_4_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_4_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_4_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_4_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_4_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_4_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-Movie6171.playerInFullScreenMode,
#fullScreenWrapper-Movie6171.playerInFullScreenMode #playerWrapper-Movie6171  {
    height: 100%;
}

#fullScreenWrapper-Movie6171.playerInFullScreenMode #mediaFrame-Movie6171 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-Movie6171.playerInFullScreenMode Movie6171 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-Movie6171.playerInFullScreenMode #toolbar-Movie6171 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-Movie6171.playerInFullScreenMode #toolbar-Movie6171.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-Movie6171.playerInFullScreenMode #PlayerCaptionsBarMovie6171 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-Movie6171.playerInFullScreenMode #PlayerCaptionsBarMovie6171.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-Movie6171 #fullscreenHoverRegion-Movie6171 {
	display: none;
}

#fullScreenWrapper-Movie6171.playerInFullScreenMode #fullscreenHoverRegion-Movie6171 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_4_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_18_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_18_page28 a:link, #stacks_in_18_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_18_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_18_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#fullScreenWrapper-Movie6172 {
    width: 100%;
}

#playerWrapper-Movie6172 {
	display: block;
	position: relative;
}

#playerWrapper-Movie6172 *,
#playerWrapper-Movie6172 *:before,
#playerWrapper-Movie6172 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-Movie6172 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(20, 20, 20, 1.00);
}




#mediaFrame-Movie6172 {
	padding-bottom: 56.25%;
}






#playerWrapper-Movie6172 #media-Movie6172 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-Movie6172 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-Movie6172 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-Movie6172 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6172 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6172 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-Movie6172 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6172 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6172 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6172 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-Movie6172,
#playerSplashButtonstacks_in_5_page28 {
	display: none !important;
}


#media-controls-wrapper-Movie6172 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-Movie6172 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-Movie6172 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-Movie6172 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-Movie6172:hover #toolbar-Movie6172 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-Movie6172.playerInFullScreenMode:hover #toolbar-Movie6172,
#playerWrapper-Movie6172.playerInFullScreenMode #toolbar-Movie6172 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6172.playerInFullScreenMode #toolbar-Movie6172.toolbarHovered,
.playerTouchDevice #playerWrapper-Movie6172.playerInFullScreenMode #toolbar-Movie6172 {
    opacity: 1.00;
}
 */

#playerWrapper-Movie6172.playerInFullScreenMode #fullscreenHoverRegionstacks_in_5_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-Movie6172 .media-button,
#toolbar-Movie6172 .timingContent {
    line-height: 45px;
}

#toolbar-Movie6172 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-Movie6172 span.time,
#media-controls-Movie6172 span.player-extra-element,
#media-controls-Movie6172 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}




#playstacks_in_5_page28 {
    order: 3;
    display: block;
}

#pausestacks_in_5_page28 {
    order: 3;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #playstacks_in_5_page28,
    #pausestacks_in_5_page28{
        display: none !important;
    }
}












#expandToFullScreenstacks_in_5_page28 {
    order: 8;
}

#contractFromFullScreenstacks_in_5_page28 {
    order: 8;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #expandToFullScreenstacks_in_5_page28,
    #contractFromFullScreenstacks_in_5_page28 {
        display: none !important;
    }
}





#toolbar-Movie6172 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-Movie6172 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-Movie6172 .media-button a,
#toolbar-Movie6172 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-Movie6172 span.media-button a:hover,
#media-controls-Movie6172 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-Movie6172 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-Movie6172 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_5_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-Movie6172 .duration,
#toolbar-Movie6172 .scrubberWrapper,
#toolbar-Movie6172 .time {
    /* display: table-cell; */
}

#toolbar-Movie6172 .time,
#toolbar-Movie6172 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-Movie6172 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-Movie6172 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-Movie6172 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-Movie6172 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_5_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_5_page28 {
  display: none !important;
}

#volumestacks_in_5_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_5_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_5_page28:hover #volumeMasterControllerstacks_in_5_page28 {
	display: none;
}

#volumeMinstacks_in_5_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_5_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_5_page28[type=range],
#volumeMinstacks_in_5_page28,
#volumeMaxstacks_in_5_page28 {
	display: none;
}

#volumeMinstacks_in_5_page28,
#volumeMaxstacks_in_5_page28 {
	cursor: pointer;
}

#volumestacks_in_5_page28:hover #volumeMinstacks_in_5_page28,
#volumestacks_in_5_page28:hover #volumeMaxstacks_in_5_page28,
#volumestacks_in_5_page28:hover #volume-barstacks_in_5_page28 {
	display: inline;
}

#volume-barstacks_in_5_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_5_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_5_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_5_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_5_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_5_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_5_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_5_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_5_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_5_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_5_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_5_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_5_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-Movie6172.playerInFullScreenMode,
#fullScreenWrapper-Movie6172.playerInFullScreenMode #playerWrapper-Movie6172  {
    height: 100%;
}

#fullScreenWrapper-Movie6172.playerInFullScreenMode #mediaFrame-Movie6172 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-Movie6172.playerInFullScreenMode Movie6172 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-Movie6172.playerInFullScreenMode #toolbar-Movie6172 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-Movie6172.playerInFullScreenMode #toolbar-Movie6172.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-Movie6172.playerInFullScreenMode #PlayerCaptionsBarMovie6172 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-Movie6172.playerInFullScreenMode #PlayerCaptionsBarMovie6172.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-Movie6172 #fullscreenHoverRegion-Movie6172 {
	display: none;
}

#fullScreenWrapper-Movie6172.playerInFullScreenMode #fullscreenHoverRegion-Movie6172 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_5_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_20_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_20_page28 a:link, #stacks_in_20_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_20_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_20_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#fullScreenWrapper-Movie6173 {
    width: 100%;
}

#playerWrapper-Movie6173 {
	display: block;
	position: relative;
}

#playerWrapper-Movie6173 *,
#playerWrapper-Movie6173 *:before,
#playerWrapper-Movie6173 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-Movie6173 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(21, 26, 31, 1.00);
}




#mediaFrame-Movie6173 {
	padding-bottom: 56.25%;
}






#playerWrapper-Movie6173 #media-Movie6173 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-Movie6173 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-Movie6173 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-Movie6173 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6173 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6173 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-Movie6173 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6173 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6173 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6173 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-Movie6173,
#playerSplashButtonstacks_in_6_page28 {
	display: none !important;
}


#media-controls-wrapper-Movie6173 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-Movie6173 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-Movie6173 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-Movie6173 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-Movie6173:hover #toolbar-Movie6173 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-Movie6173.playerInFullScreenMode:hover #toolbar-Movie6173,
#playerWrapper-Movie6173.playerInFullScreenMode #toolbar-Movie6173 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6173.playerInFullScreenMode #toolbar-Movie6173.toolbarHovered,
.playerTouchDevice #playerWrapper-Movie6173.playerInFullScreenMode #toolbar-Movie6173 {
    opacity: 1.00;
}
 */

#playerWrapper-Movie6173.playerInFullScreenMode #fullscreenHoverRegionstacks_in_6_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-Movie6173 .media-button,
#toolbar-Movie6173 .timingContent {
    line-height: 45px;
}

#toolbar-Movie6173 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-Movie6173 span.time,
#media-controls-Movie6173 span.player-extra-element,
#media-controls-Movie6173 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}




#playstacks_in_6_page28 {
    order: 3;
    display: block;
}

#pausestacks_in_6_page28 {
    order: 3;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #playstacks_in_6_page28,
    #pausestacks_in_6_page28{
        display: none !important;
    }
}












#expandToFullScreenstacks_in_6_page28 {
    order: 8;
}

#contractFromFullScreenstacks_in_6_page28 {
    order: 8;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #expandToFullScreenstacks_in_6_page28,
    #contractFromFullScreenstacks_in_6_page28 {
        display: none !important;
    }
}





#toolbar-Movie6173 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-Movie6173 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-Movie6173 .media-button a,
#toolbar-Movie6173 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-Movie6173 span.media-button a:hover,
#media-controls-Movie6173 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-Movie6173 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-Movie6173 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_6_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-Movie6173 .duration,
#toolbar-Movie6173 .scrubberWrapper,
#toolbar-Movie6173 .time {
    /* display: table-cell; */
}

#toolbar-Movie6173 .time,
#toolbar-Movie6173 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-Movie6173 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-Movie6173 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-Movie6173 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-Movie6173 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_6_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_6_page28 {
  display: none !important;
}

#volumestacks_in_6_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_6_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_6_page28:hover #volumeMasterControllerstacks_in_6_page28 {
	display: none;
}

#volumeMinstacks_in_6_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_6_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_6_page28[type=range],
#volumeMinstacks_in_6_page28,
#volumeMaxstacks_in_6_page28 {
	display: none;
}

#volumeMinstacks_in_6_page28,
#volumeMaxstacks_in_6_page28 {
	cursor: pointer;
}

#volumestacks_in_6_page28:hover #volumeMinstacks_in_6_page28,
#volumestacks_in_6_page28:hover #volumeMaxstacks_in_6_page28,
#volumestacks_in_6_page28:hover #volume-barstacks_in_6_page28 {
	display: inline;
}

#volume-barstacks_in_6_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_6_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_6_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_6_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_6_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_6_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_6_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_6_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_6_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_6_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_6_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_6_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_6_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-Movie6173.playerInFullScreenMode,
#fullScreenWrapper-Movie6173.playerInFullScreenMode #playerWrapper-Movie6173  {
    height: 100%;
}

#fullScreenWrapper-Movie6173.playerInFullScreenMode #mediaFrame-Movie6173 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-Movie6173.playerInFullScreenMode Movie6173 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-Movie6173.playerInFullScreenMode #toolbar-Movie6173 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-Movie6173.playerInFullScreenMode #toolbar-Movie6173.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-Movie6173.playerInFullScreenMode #PlayerCaptionsBarMovie6173 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-Movie6173.playerInFullScreenMode #PlayerCaptionsBarMovie6173.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-Movie6173 #fullscreenHoverRegion-Movie6173 {
	display: none;
}

#fullScreenWrapper-Movie6173.playerInFullScreenMode #fullscreenHoverRegion-Movie6173 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_6_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_22_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_22_page28 a:link, #stacks_in_22_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_22_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_22_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#fullScreenWrapper-Movie6176 {
    width: 100%;
}

#playerWrapper-Movie6176 {
	display: block;
	position: relative;
}

#playerWrapper-Movie6176 *,
#playerWrapper-Movie6176 *:before,
#playerWrapper-Movie6176 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-Movie6176 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(22, 26, 32, 1.00);
}




#mediaFrame-Movie6176 {
	padding-bottom: 56.25%;
}






#playerWrapper-Movie6176 #media-Movie6176 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-Movie6176 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-Movie6176 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-Movie6176 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6176 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6176 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-Movie6176 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6176 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6176 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6176 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-Movie6176,
#playerSplashButtonstacks_in_7_page28 {
	display: none !important;
}


#media-controls-wrapper-Movie6176 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-Movie6176 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-Movie6176 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-Movie6176 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-Movie6176:hover #toolbar-Movie6176 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-Movie6176.playerInFullScreenMode:hover #toolbar-Movie6176,
#playerWrapper-Movie6176.playerInFullScreenMode #toolbar-Movie6176 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6176.playerInFullScreenMode #toolbar-Movie6176.toolbarHovered,
.playerTouchDevice #playerWrapper-Movie6176.playerInFullScreenMode #toolbar-Movie6176 {
    opacity: 1.00;
}
 */

#playerWrapper-Movie6176.playerInFullScreenMode #fullscreenHoverRegionstacks_in_7_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-Movie6176 .media-button,
#toolbar-Movie6176 .timingContent {
    line-height: 45px;
}

#toolbar-Movie6176 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-Movie6176 span.time,
#media-controls-Movie6176 span.player-extra-element,
#media-controls-Movie6176 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}




#playstacks_in_7_page28 {
    order: 3;
    display: block;
}

#pausestacks_in_7_page28 {
    order: 3;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #playstacks_in_7_page28,
    #pausestacks_in_7_page28{
        display: none !important;
    }
}












#expandToFullScreenstacks_in_7_page28 {
    order: 8;
}

#contractFromFullScreenstacks_in_7_page28 {
    order: 8;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #expandToFullScreenstacks_in_7_page28,
    #contractFromFullScreenstacks_in_7_page28 {
        display: none !important;
    }
}





#toolbar-Movie6176 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-Movie6176 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-Movie6176 .media-button a,
#toolbar-Movie6176 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-Movie6176 span.media-button a:hover,
#media-controls-Movie6176 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-Movie6176 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-Movie6176 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_7_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-Movie6176 .duration,
#toolbar-Movie6176 .scrubberWrapper,
#toolbar-Movie6176 .time {
    /* display: table-cell; */
}

#toolbar-Movie6176 .time,
#toolbar-Movie6176 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-Movie6176 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-Movie6176 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-Movie6176 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-Movie6176 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_7_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_7_page28 {
  display: none !important;
}

#volumestacks_in_7_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_7_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_7_page28:hover #volumeMasterControllerstacks_in_7_page28 {
	display: none;
}

#volumeMinstacks_in_7_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_7_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_7_page28[type=range],
#volumeMinstacks_in_7_page28,
#volumeMaxstacks_in_7_page28 {
	display: none;
}

#volumeMinstacks_in_7_page28,
#volumeMaxstacks_in_7_page28 {
	cursor: pointer;
}

#volumestacks_in_7_page28:hover #volumeMinstacks_in_7_page28,
#volumestacks_in_7_page28:hover #volumeMaxstacks_in_7_page28,
#volumestacks_in_7_page28:hover #volume-barstacks_in_7_page28 {
	display: inline;
}

#volume-barstacks_in_7_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_7_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_7_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_7_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_7_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_7_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_7_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_7_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_7_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_7_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_7_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_7_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_7_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-Movie6176.playerInFullScreenMode,
#fullScreenWrapper-Movie6176.playerInFullScreenMode #playerWrapper-Movie6176  {
    height: 100%;
}

#fullScreenWrapper-Movie6176.playerInFullScreenMode #mediaFrame-Movie6176 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-Movie6176.playerInFullScreenMode Movie6176 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-Movie6176.playerInFullScreenMode #toolbar-Movie6176 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-Movie6176.playerInFullScreenMode #toolbar-Movie6176.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-Movie6176.playerInFullScreenMode #PlayerCaptionsBarMovie6176 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-Movie6176.playerInFullScreenMode #PlayerCaptionsBarMovie6176.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-Movie6176 #fullscreenHoverRegion-Movie6176 {
	display: none;
}

#fullScreenWrapper-Movie6176.playerInFullScreenMode #fullscreenHoverRegion-Movie6176 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_7_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_24_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_24_page28 a:link, #stacks_in_24_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_24_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_24_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#fullScreenWrapper-Movie6177 {
    width: 100%;
}

#playerWrapper-Movie6177 {
	display: block;
	position: relative;
}

#playerWrapper-Movie6177 *,
#playerWrapper-Movie6177 *:before,
#playerWrapper-Movie6177 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-Movie6177 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(22, 22, 22, 1.00);
}




#mediaFrame-Movie6177 {
	padding-bottom: 56.25%;
}






#playerWrapper-Movie6177 #media-Movie6177 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-Movie6177 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-Movie6177 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-Movie6177 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6177 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6177 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-Movie6177 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6177 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6177 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6177 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-Movie6177,
#playerSplashButtonstacks_in_8_page28 {
	display: none !important;
}


#media-controls-wrapper-Movie6177 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-Movie6177 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-Movie6177 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-Movie6177 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-Movie6177:hover #toolbar-Movie6177 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-Movie6177.playerInFullScreenMode:hover #toolbar-Movie6177,
#playerWrapper-Movie6177.playerInFullScreenMode #toolbar-Movie6177 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6177.playerInFullScreenMode #toolbar-Movie6177.toolbarHovered,
.playerTouchDevice #playerWrapper-Movie6177.playerInFullScreenMode #toolbar-Movie6177 {
    opacity: 1.00;
}
 */

#playerWrapper-Movie6177.playerInFullScreenMode #fullscreenHoverRegionstacks_in_8_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-Movie6177 .media-button,
#toolbar-Movie6177 .timingContent {
    line-height: 45px;
}

#toolbar-Movie6177 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-Movie6177 span.time,
#media-controls-Movie6177 span.player-extra-element,
#media-controls-Movie6177 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}




#playstacks_in_8_page28 {
    order: 3;
    display: block;
}

#pausestacks_in_8_page28 {
    order: 3;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #playstacks_in_8_page28,
    #pausestacks_in_8_page28{
        display: none !important;
    }
}












#expandToFullScreenstacks_in_8_page28 {
    order: 8;
}

#contractFromFullScreenstacks_in_8_page28 {
    order: 8;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #expandToFullScreenstacks_in_8_page28,
    #contractFromFullScreenstacks_in_8_page28 {
        display: none !important;
    }
}





#toolbar-Movie6177 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-Movie6177 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-Movie6177 .media-button a,
#toolbar-Movie6177 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-Movie6177 span.media-button a:hover,
#media-controls-Movie6177 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-Movie6177 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-Movie6177 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_8_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-Movie6177 .duration,
#toolbar-Movie6177 .scrubberWrapper,
#toolbar-Movie6177 .time {
    /* display: table-cell; */
}

#toolbar-Movie6177 .time,
#toolbar-Movie6177 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-Movie6177 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-Movie6177 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-Movie6177 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-Movie6177 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_8_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_8_page28 {
  display: none !important;
}

#volumestacks_in_8_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_8_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_8_page28:hover #volumeMasterControllerstacks_in_8_page28 {
	display: none;
}

#volumeMinstacks_in_8_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_8_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_8_page28[type=range],
#volumeMinstacks_in_8_page28,
#volumeMaxstacks_in_8_page28 {
	display: none;
}

#volumeMinstacks_in_8_page28,
#volumeMaxstacks_in_8_page28 {
	cursor: pointer;
}

#volumestacks_in_8_page28:hover #volumeMinstacks_in_8_page28,
#volumestacks_in_8_page28:hover #volumeMaxstacks_in_8_page28,
#volumestacks_in_8_page28:hover #volume-barstacks_in_8_page28 {
	display: inline;
}

#volume-barstacks_in_8_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_8_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_8_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_8_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_8_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_8_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_8_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_8_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_8_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_8_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_8_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_8_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_8_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-Movie6177.playerInFullScreenMode,
#fullScreenWrapper-Movie6177.playerInFullScreenMode #playerWrapper-Movie6177  {
    height: 100%;
}

#fullScreenWrapper-Movie6177.playerInFullScreenMode #mediaFrame-Movie6177 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-Movie6177.playerInFullScreenMode Movie6177 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-Movie6177.playerInFullScreenMode #toolbar-Movie6177 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-Movie6177.playerInFullScreenMode #toolbar-Movie6177.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-Movie6177.playerInFullScreenMode #PlayerCaptionsBarMovie6177 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-Movie6177.playerInFullScreenMode #PlayerCaptionsBarMovie6177.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-Movie6177 #fullscreenHoverRegion-Movie6177 {
	display: none;
}

#fullScreenWrapper-Movie6177.playerInFullScreenMode #fullscreenHoverRegion-Movie6177 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_8_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_26_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_26_page28 a:link, #stacks_in_26_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_26_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_26_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#fullScreenWrapper-Movie6181 {
    width: 100%;
}

#playerWrapper-Movie6181 {
	display: block;
	position: relative;
}

#playerWrapper-Movie6181 *,
#playerWrapper-Movie6181 *:before,
#playerWrapper-Movie6181 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-Movie6181 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(21, 18, 14, 1.00);
}




#mediaFrame-Movie6181 {
	padding-bottom: 56.25%;
}






#playerWrapper-Movie6181 #media-Movie6181 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-Movie6181 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-Movie6181 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-Movie6181 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6181 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6181 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-Movie6181 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6181 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6181 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6181 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-Movie6181,
#playerSplashButtonstacks_in_9_page28 {
	display: none !important;
}


#media-controls-wrapper-Movie6181 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-Movie6181 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-Movie6181 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-Movie6181 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-Movie6181:hover #toolbar-Movie6181 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-Movie6181.playerInFullScreenMode:hover #toolbar-Movie6181,
#playerWrapper-Movie6181.playerInFullScreenMode #toolbar-Movie6181 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6181.playerInFullScreenMode #toolbar-Movie6181.toolbarHovered,
.playerTouchDevice #playerWrapper-Movie6181.playerInFullScreenMode #toolbar-Movie6181 {
    opacity: 1.00;
}
 */

#playerWrapper-Movie6181.playerInFullScreenMode #fullscreenHoverRegionstacks_in_9_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-Movie6181 .media-button,
#toolbar-Movie6181 .timingContent {
    line-height: 45px;
}

#toolbar-Movie6181 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-Movie6181 span.time,
#media-controls-Movie6181 span.player-extra-element,
#media-controls-Movie6181 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}




#playstacks_in_9_page28 {
    order: 3;
    display: block;
}

#pausestacks_in_9_page28 {
    order: 3;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #playstacks_in_9_page28,
    #pausestacks_in_9_page28{
        display: none !important;
    }
}












#expandToFullScreenstacks_in_9_page28 {
    order: 8;
}

#contractFromFullScreenstacks_in_9_page28 {
    order: 8;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #expandToFullScreenstacks_in_9_page28,
    #contractFromFullScreenstacks_in_9_page28 {
        display: none !important;
    }
}





#toolbar-Movie6181 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-Movie6181 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-Movie6181 .media-button a,
#toolbar-Movie6181 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-Movie6181 span.media-button a:hover,
#media-controls-Movie6181 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-Movie6181 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-Movie6181 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_9_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-Movie6181 .duration,
#toolbar-Movie6181 .scrubberWrapper,
#toolbar-Movie6181 .time {
    /* display: table-cell; */
}

#toolbar-Movie6181 .time,
#toolbar-Movie6181 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-Movie6181 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-Movie6181 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-Movie6181 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-Movie6181 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_9_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_9_page28 {
  display: none !important;
}

#volumestacks_in_9_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_9_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_9_page28:hover #volumeMasterControllerstacks_in_9_page28 {
	display: none;
}

#volumeMinstacks_in_9_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_9_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_9_page28[type=range],
#volumeMinstacks_in_9_page28,
#volumeMaxstacks_in_9_page28 {
	display: none;
}

#volumeMinstacks_in_9_page28,
#volumeMaxstacks_in_9_page28 {
	cursor: pointer;
}

#volumestacks_in_9_page28:hover #volumeMinstacks_in_9_page28,
#volumestacks_in_9_page28:hover #volumeMaxstacks_in_9_page28,
#volumestacks_in_9_page28:hover #volume-barstacks_in_9_page28 {
	display: inline;
}

#volume-barstacks_in_9_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_9_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_9_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_9_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_9_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_9_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_9_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_9_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_9_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_9_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_9_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_9_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_9_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-Movie6181.playerInFullScreenMode,
#fullScreenWrapper-Movie6181.playerInFullScreenMode #playerWrapper-Movie6181  {
    height: 100%;
}

#fullScreenWrapper-Movie6181.playerInFullScreenMode #mediaFrame-Movie6181 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-Movie6181.playerInFullScreenMode Movie6181 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-Movie6181.playerInFullScreenMode #toolbar-Movie6181 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-Movie6181.playerInFullScreenMode #toolbar-Movie6181.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-Movie6181.playerInFullScreenMode #PlayerCaptionsBarMovie6181 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-Movie6181.playerInFullScreenMode #PlayerCaptionsBarMovie6181.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-Movie6181 #fullscreenHoverRegion-Movie6181 {
	display: none;
}

#fullScreenWrapper-Movie6181.playerInFullScreenMode #fullscreenHoverRegion-Movie6181 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_9_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_28_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_28_page28 a:link, #stacks_in_28_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_28_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_28_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#fullScreenWrapper-Movie6185 {
    width: 100%;
}

#playerWrapper-Movie6185 {
	display: block;
	position: relative;
}

#playerWrapper-Movie6185 *,
#playerWrapper-Movie6185 *:before,
#playerWrapper-Movie6185 *:after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

#mediaFrame-Movie6185 {
	position: relative;
	width: 100%;
	height: 0;
	background: rgba(43, 40, 41, 1.00);
}




#mediaFrame-Movie6185 {
	padding-bottom: 56.25%;
}






#playerWrapper-Movie6185 #media-Movie6185 {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}



/* @group Splash Play Button */

#playerWrapper-Movie6185 .playerSplashButton {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	z-index: 10;
}

#playerWrapper-Movie6185 .splash-button {
	position: relative;
	display: inline-block;
	z-index: 11;
	cursor: pointer;
	padding: 20px;
	border: 3px solid rgba(76, 76, 76, 1.00);
	border-radius: 10px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-webkit-font-smoothing: antialiased
}

#playerWrapper-Movie6185 .splash-button:hover {
	border: 3px solid rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6185 .splash-button .splash-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 15;
	background: rgba(225, 225, 225, 0.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6185 .splash-button:hover .splash-fill {
	background: rgba(225, 225, 225, 0.00);
}

#playerWrapper-Movie6185 .splash-button-inner {
	display: inline;
	z-index: 25;
	color: rgba(76, 76, 76, 1.00);
	font: 36px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	line-height: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6185 .splash-button:hover .splash-button-inner {
	color: rgba(0, 0, 0, 1.00);
}

#playerWrapper-Movie6185 .splash-button-inner [class^="fa fa-"] {
	color: rgba(76, 76, 76, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6185 .splash-button-inner:hover [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
}

/* @end */

/* @group Control Bar */


/* If Player custom controls are disabled */
#toolbar-Movie6185,
#playerSplashButtonstacks_in_10_page28 {
	display: none !important;
}


#media-controls-wrapper-Movie6185 {
	position: relative;
	z-index: 4;
	width: 100%;
}

#toolbar-Movie6185 button {
	-webkit-appearance: none;
	border: none;
	outline: none;
	background: none;
	padding: 0;
	margin: 0;
}

/* @end */

/* Buttons, titles and time */
#toolbar-Movie6185 {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: calc(100% - 0px - 0px);
    height: auto;
    flex-wrap: wrap;
    vertical-align: middle;
    margin: 0px 0px;
    border-radius: 0px;
    opacity: 1.00;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;

    background: rgba(70, 69, 81, 1.00); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%, rgba(36, 39, 46, 1.00) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70, 69, 81, 1.00)), color-stop(100%,rgba(36, 39, 46, 1.00))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(70, 69, 81, 1.00) 0%,rgba(36, 39, 46, 1.00) 100%); /* W3C */
}

@media screen and (min-width: 568px) {
    /* A fixed height and no wrapping of controls on wider screends greater than 568px wide */
    #toolbar-Movie6185 {
        height: 45px;
        flex-wrap: nowrap;
    }
}

#playerWrapper-Movie6185:hover #toolbar-Movie6185 {
    opacity: 1.00;
}

/* Styling for toolbars in fullscreen mode */
/*
#playerWrapper-Movie6185.playerInFullScreenMode:hover #toolbar-Movie6185,
#playerWrapper-Movie6185.playerInFullScreenMode #toolbar-Movie6185 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0px;
    z-index: 99999;
    opacity: 0;
    transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#playerWrapper-Movie6185.playerInFullScreenMode #toolbar-Movie6185.toolbarHovered,
.playerTouchDevice #playerWrapper-Movie6185.playerInFullScreenMode #toolbar-Movie6185 {
    opacity: 1.00;
}
 */

#playerWrapper-Movie6185.playerInFullScreenMode #fullscreenHoverRegionstacks_in_10_page28 {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
    width: 100%;
    z-index: 99998;
}



#toolbar-Movie6185 .media-button,
#toolbar-Movie6185 .timingContent {
    line-height: 45px;
}

#toolbar-Movie6185 .media-button {
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
}

#media-controls-Movie6185 span.time,
#media-controls-Movie6185 span.player-extra-element,
#media-controls-Movie6185 span.duration {
	text-align: center;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	line-height: 1;
	height: px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}




#playstacks_in_10_page28 {
    order: 3;
    display: block;
}

#pausestacks_in_10_page28 {
    order: 3;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #playstacks_in_10_page28,
    #pausestacks_in_10_page28{
        display: none !important;
    }
}












#expandToFullScreenstacks_in_10_page28 {
    order: 8;
}

#contractFromFullScreenstacks_in_10_page28 {
    order: 8;
    display: none /* Start hidden */
}


@media screen and (max-width: 567px) {
    #expandToFullScreenstacks_in_10_page28,
    #contractFromFullScreenstacks_in_10_page28 {
        display: none !important;
    }
}





#toolbar-Movie6185 [class^="fa fa-"] {
	display: block;
	line-height: 45px;
	height: 45px;
	width: 45px;
	text-align: center;
	overflow: hidden;
	float: none;
	margin: auto;
	color: rgba(255, 255, 255, 1.00);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    text-shadow: rgba(0, 0, 0, 1.00) 1px 1px 1px;
    font-size: 20px;
}

#toolbar-Movie6185 [class^="fa fa-"]:hover {
	color: rgba(205, 205, 205, 1.00);
}

#toolbar-Movie6185 .media-button a,
#toolbar-Movie6185 .media-button {
	font-size: 22px;
	color: rgba(255, 255, 255, 1.00);
	padding: 0;
	margin: 0;
	text-decoration: none;
	background: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
    cursor: pointer;
}

#media-controls-Movie6185 span.media-button a:hover,
#media-controls-Movie6185 span.media-button button:hover {
	color: rgba(205, 205, 205, 1.00);
	text-decoration: none;
}

/* Timing content */
#toolbar-Movie6185 .timingContent {
    display: block;
    width: 100%;
}

@media screen and (min-width: 568px) {
    #toolbar-Movie6185 .timingContent {
        flex-grow: 2;
        flex-shrink: 2;
        display: inline-flex
    }
}

#timingContentWrapperstacks_in_10_page28 {
    display: flex;
    flex: 1;
    align-items: center;
}

#toolbar-Movie6185 .duration,
#toolbar-Movie6185 .scrubberWrapper,
#toolbar-Movie6185 .time {
    /* display: table-cell; */
}

#toolbar-Movie6185 .time,
#toolbar-Movie6185 .duration {
	font-size: 15px;
	line-height: 45px;
	color: rgba(255, 255, 255, 1.00);
	height: 45px;
	min-width: 50px;
    text-align: center;
	padding: 0 0px;
	margin: 0;
}

#toolbar-Movie6185 .scrubberWrapper {
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
    height: 20px;
    vertical-align: middle;
}

#toolbar-Movie6185 .scrubber {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 20px;
	margin: 0;
	border: none;
	padding: 0;
    display: block;
	border-radius: 14px;
	background: rgba(76, 76, 76, 1.00);
	outline: none; /* no focus outline */
	overflow: hidden;
	/*
position: absolute;
    left: 0;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
 */
	z-index: 2;
}

#toolbar-Movie6185 .progress {
	-webkit-appearance: none;
	width: 0px;
	height: 20px;
	border: none;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	z-index: 10;
	position: relative;
}








#toolbar-Movie6185 .progress {
    background-color: rgba(82, 157, 225, 1.00);
}




/* @group Volume */

#volumestacks_in_10_page28 {
	order: 6;
  position: relative;
}

/* Hide on mobile */
body.playerTouchDevice #volumestacks_in_10_page28 {
  display: none !important;
}

#volumestacks_in_10_page28:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 25px;
}

#volumeMasterControllerstacks_in_10_page28 {
	display: inline-block;
	height: 45px;
    line-height: 45px;
	width: 45px;
}

#volumestacks_in_10_page28:hover #volumeMasterControllerstacks_in_10_page28 {
	display: none;
}

#volumeMinstacks_in_10_page28 {
	position: absolute;
	left: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volumeMaxstacks_in_10_page28 {
	position: absolute;
	right: 0px;
	top: 0;
	width: 45px;
    line-height: 45px;
}

#volume-barstacks_in_10_page28[type=range],
#volumeMinstacks_in_10_page28,
#volumeMaxstacks_in_10_page28 {
	display: none;
}

#volumeMinstacks_in_10_page28,
#volumeMaxstacks_in_10_page28 {
	cursor: pointer;
}

#volumestacks_in_10_page28:hover #volumeMinstacks_in_10_page28,
#volumestacks_in_10_page28:hover #volumeMaxstacks_in_10_page28,
#volumestacks_in_10_page28:hover #volume-barstacks_in_10_page28 {
	display: inline;
}

#volume-barstacks_in_10_page28[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 45px;
	height: 45px;
}

#volume-barstacks_in_10_page28[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_10_page28[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
	margin-top: -5px;
}

#volume-barstacks_in_10_page28[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_10_page28[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_10_page28[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_10_page28[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_10_page28[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: rgba(179, 179, 179, 1.00);
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_10_page28[type=range]::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_10_page28[type=range]::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
	border-radius: 10px;
}

#volume-barstacks_in_10_page28[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_10_page28[type=range]:focus::-ms-fill-lower {
	background: rgba(179, 179, 179, 1.00);
}

#volume-barstacks_in_10_page28[type=range]:focus::-ms-fill-upper {
	background: rgba(179, 179, 179, 1.00);
}

/* @end */

/* @group Captions */



/* @end */

/* Style changes for the Player in full screen mode */
#fullScreenWrapper-Movie6185.playerInFullScreenMode,
#fullScreenWrapper-Movie6185.playerInFullScreenMode #playerWrapper-Movie6185  {
    height: 100%;
}

#fullScreenWrapper-Movie6185.playerInFullScreenMode #mediaFrame-Movie6185 {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

#fullScreenWrapper-Movie6185.playerInFullScreenMode Movie6185 {
    position: relative;
    left: auto;
    top: auto;
    height: 100%;
    width: auto;
    display: block;
    margin: auto;
    object-fit: cover;
}

#fullScreenWrapper-Movie6185.playerInFullScreenMode #toolbar-Movie6185 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: none;
}

#fullScreenWrapper-Movie6185.playerInFullScreenMode #toolbar-Movie6185.toolbarVisible {
	display: flex;
}

#fullScreenWrapper-Movie6185.playerInFullScreenMode #PlayerCaptionsBarMovie6185 {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 1001;
    display: none !important;
}

#fullScreenWrapper-Movie6185.playerInFullScreenMode #PlayerCaptionsBarMovie6185.toolbarVisible.textTracksActive {
	display: block !important;
}

#fullScreenWrapper-Movie6185 #fullscreenHoverRegion-Movie6185 {
	display: none;
}

#fullScreenWrapper-Movie6185.playerInFullScreenMode #fullscreenHoverRegion-Movie6185 {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 25%;
	width: 100%;
	z-index: 999;
}





















#stacks_in_10_page28 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_30_page28_button {
	display:block;
	position: relative;
	text-align: center;
}


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







#stacks_in_30_page28 a:link, #stacks_in_30_page28 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	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_30_page28 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_30_page28 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



