

/**
 *
 * slippry v1.4.0 - Responsive content slider for jQuery
 * http://slippry.com
 *
 * Authors: Lukas Jakob Hafner - @saftsaak
 *          Thomas Hurd - @SeenNotHurd
 *
 * Copyright 2016, booncon oy - http://booncon.com
 *
 *
 * Released under the MIT license - http://opensource.org/licenses/MIT
 */
/* kenBurns animations, very basic */
@-webkit-keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }

  100% {
    -webkit-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }
}

@-o-keyframes left-right {
  0% {
    -o-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }

  100% {
    -o-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }
}

@keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
    -o-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }

  100% {
    -webkit-transform: translateY(0%) translateX(10%);
    -o-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }
}

@-webkit-keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }

  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }
}

@-o-keyframes right-left {
  0% {
    -o-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }

  100% {
    -o-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }
}

@keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
    -o-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }

  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
    -o-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }
}

/* added to the original element calling slippry */
.sy-box.sy-loading {
  -webkit-background-size: 32px 32px;
  background-size: 32px;
  min-height: 40px;
}

.sy-box.sy-loading .sy-slides-wrap, .sy-box.sy-loading .sy-pager {
  visibility: hidden;
}

/* element that wraps the slides */
.sy-slides-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}

.sy-slides-wrap:hover .sy-controls {
  display: block;
}

/* element that crops the visible area to the slides */
.sy-slides-crop {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

/* list containing the slides */
.sy-list {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
}

.sy-list.horizontal {
  -webkit-transition: left ease;
  -o-transition: left ease;
  transition: left ease;
}

.sy-list.vertical {
  -webkit-transition: top ease;
  -o-transition: top ease;
  transition: top ease;
}

/* single slide */
.sy-slide {
  position: absolute;
  width: 100%;
  z-index: 2;
}

.sy-slide.kenburns {
  width: 140%;
  left: -20%;
}

.sy-slide.kenburns.useCSS {
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.sy-slide.kenburns.useCSS.sy-ken:nth-child(1n) {
  -webkit-animation-name: left-right;
  -o-animation-name: left-right;
  animation-name: left-right;
  -webkit-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.sy-slide.kenburns.useCSS.sy-ken:nth-child(2n) {
  -webkit-animation-name: right-left;
  -o-animation-name: right-left;
  animation-name: right-left;
  -webkit-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.sy-slide.sy-active {
  z-index: 3;
}

.sy-slide>img {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  border: 0;
}

.sy-slide>a {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}

.sy-slide>a>img {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  border: 0;
}

/* next/ prev buttons, with arrows and clickable area a lot larger than the visible buttons */
.sy-controls {
  display: none;
  list-style: none;
  height: 100%;
  width: 100%;
  position: absolute;
  padding: 0;
  margin: 0;
}

.sy-controls li {
  position: absolute;
  width: 10%;
  min-width: 4.2em;
  height: 100%;
  z-index: 33;
}

.sy-controls li.sy-prev {
  left: 0;
  top: 0;
}

.sy-controls li.sy-prev a:after {
  background-position: -5% 0;
}

.sy-controls li.sy-next {
  right: 0;
  top: 0;
}

.sy-controls li.sy-next a:after {
  background-position: 105% 0;
}

.sy-controls li a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}

.sy-controls li a:link, .sy-controls li a:visited {
  opacity: 0.4;
}

.sy-controls li a:hover, .sy-controls li a:focus {
  opacity: 0.8;
  outline: none;
}

.sy-controls li a:after {
  content: "";
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  text-align: center;
  text-indent: 0;
  line-height: 2.8em;
  color: #111;
  font-weight: 800;
  position: absolute;
  background-color: #fff;
  width: 2.8em;
  height: 2.8em;
  left: 50%;
  top: 50%;
  margin-top: -1.4em;
  margin-left: -1.4em;
  border-radius: 50%;
}

@media only screen and (max-device-width: 600px) {
  .sy-controls {
    display: block;
  }

  .sy-controls li {
    min-width: 2.1em;
  }

  .sy-controls li a:after {
    width: 1.4em;
    height: 1.4em;
    margin-top: -0.7em;
    margin-left: -0.7em;
  }
}

/* captions, styled fo the overlay variant */
.sy-caption-wrap {
  position: absolute;
  bottom: 2em;
  z-index: 12;
  left: 50%;
}

.sy-caption-wrap .sy-caption {
  position: relative;
  left: -50%;
  background-color: rgba(0, 0, 0, 0.54);
  color: #fff;
  padding: 0.4em 1em;
  border-radius: 1.2em;
}

.sy-caption-wrap .sy-caption a:link, .sy-caption-wrap .sy-caption a:visited {
  color: #e24b70;
  font-weight: 600;
  text-decoration: none;
}

.sy-caption-wrap .sy-caption a:hover, .sy-caption-wrap .sy-caption a:focus {
  text-decoration: underline;
}

@media only screen and (max-device-width: 600px), screen and (max-width: 600px) {
  .sy-caption-wrap {
    left: 0;
    bottom: 0.4em;
  }

  .sy-caption-wrap .sy-caption {
    left: 0;
    padding: 0.2em 0.4em;
    font-size: 0.92em;
    border-radius: 0;
  }
}

/* pager bubbles */
.sy-pager {
  clear: both;
  display: block;
  width: 100%;
  margin: 1em 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.sy-pager li {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin: 0 1em 0 0;
  border-radius: 50%;
}

.sy-pager li.sy-active a {
  background-color: #e24b70;
}

.sy-pager li a {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ccc;
  text-indent: -9999px;
  -webkit-background-size: 2em 2em;
  background-size: 2em;
  border-radius: 50%;
}

.sy-pager li a:link, .sy-pager li a:visited {
  opacity: 1.0;
}

.sy-pager li a:hover, .sy-pager li a:focus {
  opacity: 0.6;
}

/* element to "keep/ fill" the space of the content, gets intrinsic height via js */
.sy-filler {
  width: 100%;
}

.sy-filler.ready {
  -webkit-transition: padding 600ms ease;
  -o-transition: padding 600ms ease;
  transition: padding 600ms ease;
}




/* Hide until loaded */
#freeStyleLoaderstacks_in_p15_n3_page2 {
  display: none;
}

#freeStyleWrapperstacks_in_p15_n3_page2 {
  position: relative;
}

.sy-pager {
  padding: 1em 0;
  margin: 0;
  line-height: 1;
  /* display: none; */
  list-style: none;
  background: rgba(255, 255, 255, 0.00);
  
  text-align: center;
  
}

@media screen and (min-width: 768px) {
  .sy-pager {
    display: block;
  }
}

.sy-pager li {
  margin: 0 0.5em;
}



.sy-pager li a {
  color: rgba(0,0,0,0);
  background-color: rgba(255, 255, 255, 0.50);
}

.sy-pager li.sy-active a {
  background-color: rgba(51, 51, 51, 1.00);
}

.freeStyleCaptionsContainer {
  
  text-align: center;
  
  
  background: rgba(25, 25, 25, 1.00);
  color: rgba(255, 255, 255, 0.80);
  padding: 0.5rem 0.5rem;
  
	
	
}

.upperCaptionsContainer,
.lowerCaptionsContainer {
  display: none;
}


.upperCaptionsContainer,
.lowerCaptionsContainer {
  display: none !important;
}







#freeStyleOuterWrapperstacks_in_p15_n3_page2 {
  display: flex;
  flex-direction: column;
}

.lowerCaptionsContainer {
  display: block;
  width: 100%;
  flex-basis: 100%;
  order: 2;
}

#freeStyleWrapperstacks_in_p15_n3_page2 {
  flex: 1;
  order: 1;
}

@media screen and (min-width: 768px) {
  #freeStyleOuterWrapperstacks_in_p15_n3_page2 {
    display: flex;
    flex-direction: row;

  }
  .lowerCaptionsContainer {
    display: block;
    width: 15rem;
    flex-basis: 15rem;
    order: 1;
  }

  .freeStyleCaptionTable {
    display: table;
    width: 100%;
    height: 100%;
  }

  .freeStyleCaptionContent {
    display: table-cell;
    
    
    vertical-align: middle;
    
    
  }

  #freeStyleWrapperstacks_in_p15_n3_page2 {
    flex: 1;
    order: 2;
  }
}




.sy-controls {
  display: none;
}

.sy-controls li.sy-prev a:after,
.sy-controls li.sy-next a:after {
  color: rgba(255, 255, 255, 1.00);
  background: none;
  font-size: 45px;
  font-family: FontAwesome, 'Font Awesome 5 Free';
}
















.sy-controls li.sy-prev a:after {
  content: '\f137';
}

.sy-controls li.sy-next a:after {
  content: '\f138';
}








.freeStyleOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.freeStyleOverlayTableWrapper {
  height: 100%;
  width: calc(100% - 20%);
  display: table;
  margin-left: 10%;
  margin-right: 10%;
}

.freeStyleOverlayInner {
  display: table-cell;
  vertical-align: middle;
}


/* If modifying any of this code, update the template.html file too */

/* CSS code for the Download the free prequel: Before Ai button */

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

.ButtonMakerStackstacks_in_p15_n15_page2 {
	line-height: 40px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* No background */
.ButtonMakerStackstacks_in_p15_n15_page2 {
	background: transparent;
}























.ButtonMakerStackstacks_in_p15_n15_page2 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_p15_n15_page2 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_p15_n15_page2 .Button-Label {
	color: #FF7F00;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_p15_n15_page2:hover .Button-Label {
	color: #000000;
}




/* If button icon is enabled */
.ButtonMakerStackstacks_in_p15_n15_page2 .Button-Icon {
	float: left;
	width: 50px;
	z-index: 15;
	overflow: hidden;
	height: 40px;
	position: relative;
}

.ButtonMakerStackstacks_in_p15_n15_page2 .Button-Icon,
.ButtonMakerStackstacks_in_p15_n15_page2 .Button-Icon [class^="fa fa-"] {
	color: #FF7F00;
	font-size: 28px;
	line-height: 40px;
	text-shadow: 1px 1px 1px #FFFFFF;
	transition: all 300ms ease-in-out;
}

.ButtonMakerStackstacks_in_p15_n15_page2:hover .Button-Icon,
.ButtonMakerStackstacks_in_p15_n15_page2:hover .Button-Icon [class^="fa fa-"] {
	color: #000000;
	text-shadow: 1px 1px 1px #FFFFFF;
}

.ButtonMakerStackstacks_in_p15_n15_page2 .Button-Label {
	margin-left: 50px;
	border-left: 1px solid #FC8C36;
}



@media print {
	.ButtonMakerStackstacks_in_p15_n15_page2 {
		display: none !important;
	}
}

/* End of CSS code for the Download the free prequel: Before Ai button */












#stacks_in_p15_n15_page2 {
	border: solid rgba(255, 127, 0, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 0px 0px 30px 0px;
}

#stacks_out_p15_n15_page2 {
	width: 370px;
}




#stacks_in_p15_n2_page2 .button_label {
	font: 500 16px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}





#stacks_in_p15_n2_page2 .sweet_button_wrapper {
	text-align:center;

	
		height:32px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_p15_n2_page2 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_p15_n2_page2 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_p15_n2_page2 a.sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 14px;
	text-decoration:none;
	text-align:center;
	color:rgba(255, 255, 255, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(0, 0, 0, 1.00);
}
#stacks_in_p15_n2_page2 a.sweet_button:visited {
	color:rgba(255, 255, 255, 1.00);
}

#stacks_in_p15_n2_page2 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}








#stacks_in_p15_n2_page2 .sweet_button:hover {
	color:rgba(255, 255, 255, 1.00);
	background: rgba(20, 20, 20, 1.00);
}
#stacks_in_p15_n2_page2 .sweet_button:active{
	background: rgba(0, 0, 0, 1.00);
}
#stacks_in_p15_n2_page2 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_p15_n2_page2 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_p15_n2_page2 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_p15_n2_page2 {
	margin: 0px 0px 30px 0px;
}

#stacks_in_16_page2 {
	margin: 0px 0px 30px 0px;
}

#stacks_in_2_page2 {
	margin: 0px 0px 30px 0px;
}
/* @group CSS Reset & Box Sizing */

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

#adaptiveGridstacks_in_22_page2 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_22_page2 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_22_page2:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_22_page2 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_22_page2 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_22_page2 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_22_page2 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_22_page2 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_22_page2 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_22_page2 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_22_page2 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_22_page2 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_22_page2 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_22_page2 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_22_page2 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_22_page2 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_22_page2 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_22_page2 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_22_page2 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_22_page2 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_22_page2 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_22_page2 .column1 {
		width: 25.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_22_page2 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_22_page2 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_22_page2 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_22_page2 .column2 {
		width: 25.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_22_page2 .column3 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_22_page2 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_22_page2 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_22_page2 .column3 {
		width: 25.00%;
	}
}



/* If column 4 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_22_page2 .column4 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_22_page2 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_22_page2 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_22_page2 .column4 {
		width: 25.00%;
	}
}


















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_22_page2 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_22_page2 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_22_page2 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_22_page2 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_22_page2 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_22_page2 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_22_page2 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_22_page2 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_22_page2 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_22_page2 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_22_page2 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_22_page2 .column1,
	#adaptiveGridstacks_in_22_page2 .column2,
	#adaptiveGridstacks_in_22_page2 .column3,
	#adaptiveGridstacks_in_22_page2 .column4,
	#adaptiveGridstacks_in_22_page2 .column5,
	#adaptiveGridstacks_in_22_page2 .column6,
	#adaptiveGridstacks_in_22_page2 .column7,
	#adaptiveGridstacks_in_22_page2 .column8,
	#adaptiveGridstacks_in_22_page2 .column9,
	#adaptiveGridstacks_in_22_page2 .column10,
	#adaptiveGridstacks_in_22_page2 .column11,
	#adaptiveGridstacks_in_22_page2 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_22_page2 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_in_22_page2 {
	margin: 0px 0px 60px 0px;
}
/* If modifying any of this code, update the template.html file too */

/* CSS code for the Amazon button */

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

.ButtonMakerStackstacks_in_24_page2 {
	line-height: 30px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* No background */
.ButtonMakerStackstacks_in_24_page2 {
	background: transparent;
}























.ButtonMakerStackstacks_in_24_page2 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_24_page2 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_24_page2 .Button-Label {
	color: #FF7F00;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_24_page2:hover .Button-Label {
	color: #000000;
}






@media print {
	.ButtonMakerStackstacks_in_24_page2 {
		display: none !important;
	}
}

/* End of CSS code for the Amazon button */












#stacks_in_24_page2 {
	border: solid rgba(255, 127, 0, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 0px 10px 30px 10px;
}
/* If modifying any of this code, update the template.html file too */

/* CSS code for the Kobo button */

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

.ButtonMakerStackstacks_in_26_page2 {
	line-height: 30px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* No background */
.ButtonMakerStackstacks_in_26_page2 {
	background: transparent;
}























.ButtonMakerStackstacks_in_26_page2 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_26_page2 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_26_page2 .Button-Label {
	color: #FF7F00;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_26_page2:hover .Button-Label {
	color: #000000;
}






@media print {
	.ButtonMakerStackstacks_in_26_page2 {
		display: none !important;
	}
}

/* End of CSS code for the Kobo button */












#stacks_in_26_page2 {
	border: solid rgba(255, 127, 0, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 0px 10px 30px 10px;
}
/* If modifying any of this code, update the template.html file too */

/* CSS code for the Barnes and Noble button */

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

.ButtonMakerStackstacks_in_28_page2 {
	line-height: 30px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* No background */
.ButtonMakerStackstacks_in_28_page2 {
	background: transparent;
}























.ButtonMakerStackstacks_in_28_page2 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_28_page2 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_28_page2 .Button-Label {
	color: #FF7F00;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_28_page2:hover .Button-Label {
	color: #000000;
}






@media print {
	.ButtonMakerStackstacks_in_28_page2 {
		display: none !important;
	}
}

/* End of CSS code for the Barnes and Noble button */












#stacks_in_28_page2 {
	border: solid rgba(255, 127, 0, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 0px 10px 30px 10px;
}
/* If modifying any of this code, update the template.html file too */

/* CSS code for the Union Ave Books button */

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

.ButtonMakerStackstacks_in_30_page2 {
	line-height: 30px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* No background */
.ButtonMakerStackstacks_in_30_page2 {
	background: transparent;
}























.ButtonMakerStackstacks_in_30_page2 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_30_page2 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_30_page2 .Button-Label {
	color: #FF7F00;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_30_page2:hover .Button-Label {
	color: #000000;
}






@media print {
	.ButtonMakerStackstacks_in_30_page2 {
		display: none !important;
	}
}

/* End of CSS code for the Union Ave Books button */












#stacks_in_30_page2 {
	border: solid rgba(255, 127, 0, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 0px 10px 30px 10px;
}

#stacks_in_20_page2 {
	margin: 90px 0px 30px 0px;
}

#stacks_in_18_page2 {
	margin: 30px 0px 30px 0px;
}
/* @group CSS Reset & Box Sizing */

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

#adaptiveGridstacks_in_31_page2 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_31_page2 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_31_page2:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_31_page2 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_31_page2 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_31_page2 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31_page2 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_31_page2 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_31_page2 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31_page2 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_31_page2 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_31_page2 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31_page2 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_31_page2 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_31_page2 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31_page2 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_31_page2 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_31_page2 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31_page2 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31_page2 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31_page2 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31_page2 .column1 {
		width: 33.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31_page2 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31_page2 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31_page2 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31_page2 .column2 {
		width: 33.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31_page2 .column3 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31_page2 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31_page2 .column3 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31_page2 .column3 {
		width: 33.00%;
	}
}



/* If column 4 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31_page2 .column4 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31_page2 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31_page2 .column4 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31_page2 .column4 {
		width: 33.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31_page2 .column5 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31_page2 .column5 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31_page2 .column5 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31_page2 .column5 {
		width: 33.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31_page2 .column6 {
		width: 100.00%;
	}
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31_page2 .column6 {
		width: 50.00%;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31_page2 .column6 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31_page2 .column6 {
		width: 33.00%;
	}
}














/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_31_page2 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_31_page2 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 769px) {
	#adaptiveGridstacks_in_31_page2 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_31_page2 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 992px) {
	#adaptiveGridstacks_in_31_page2 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_31_page2 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_31_page2 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_31_page2 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_31_page2 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_31_page2 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_31_page2 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_31_page2 .column1,
	#adaptiveGridstacks_in_31_page2 .column2,
	#adaptiveGridstacks_in_31_page2 .column3,
	#adaptiveGridstacks_in_31_page2 .column4,
	#adaptiveGridstacks_in_31_page2 .column5,
	#adaptiveGridstacks_in_31_page2 .column6,
	#adaptiveGridstacks_in_31_page2 .column7,
	#adaptiveGridstacks_in_31_page2 .column8,
	#adaptiveGridstacks_in_31_page2 .column9,
	#adaptiveGridstacks_in_31_page2 .column10,
	#adaptiveGridstacks_in_31_page2 .column11,
	#adaptiveGridstacks_in_31_page2 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_31_page2 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_in_31_page2 {
	margin: 0px 0px 60px 0px;
}
/* If modifying any of this code, update the template.html file too */

/* CSS code for the Amazon button */

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

.ButtonMakerStackstacks_in_33_page2 {
	line-height: 30px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* No background */
.ButtonMakerStackstacks_in_33_page2 {
	background: transparent;
}























.ButtonMakerStackstacks_in_33_page2 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_33_page2 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_33_page2 .Button-Label {
	color: #FF7F00;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_33_page2:hover .Button-Label {
	color: #000000;
}






@media print {
	.ButtonMakerStackstacks_in_33_page2 {
		display: none !important;
	}
}

/* End of CSS code for the Amazon button */












#stacks_in_33_page2 {
	border: solid rgba(255, 127, 0, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 0px 10px 30px 10px;
}
/* If modifying any of this code, update the template.html file too */

/* CSS code for the Kobo button */

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

.ButtonMakerStackstacks_in_35_page2 {
	line-height: 30px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* No background */
.ButtonMakerStackstacks_in_35_page2 {
	background: transparent;
}























.ButtonMakerStackstacks_in_35_page2 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_35_page2 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_35_page2 .Button-Label {
	color: #FF7F00;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_35_page2:hover .Button-Label {
	color: #000000;
}






@media print {
	.ButtonMakerStackstacks_in_35_page2 {
		display: none !important;
	}
}

/* End of CSS code for the Kobo button */












#stacks_in_35_page2 {
	border: solid rgba(255, 127, 0, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 0px 10px 30px 10px;
}
/* If modifying any of this code, update the template.html file too */

/* CSS code for the Barnes and Noble button */

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

.ButtonMakerStackstacks_in_37_page2 {
	line-height: 30px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* No background */
.ButtonMakerStackstacks_in_37_page2 {
	background: transparent;
}























.ButtonMakerStackstacks_in_37_page2 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_37_page2 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_37_page2 .Button-Label {
	color: #FF7F00;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_37_page2:hover .Button-Label {
	color: #000000;
}






@media print {
	.ButtonMakerStackstacks_in_37_page2 {
		display: none !important;
	}
}

/* End of CSS code for the Barnes and Noble button */












#stacks_in_37_page2 {
	border: solid rgba(255, 127, 0, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 0px 10px 30px 10px;
}
/* If modifying any of this code, update the template.html file too */

/* CSS code for the Audible button */

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

.ButtonMakerStackstacks_in_42_page2 {
	line-height: 30px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* No background */
.ButtonMakerStackstacks_in_42_page2 {
	background: transparent;
}























.ButtonMakerStackstacks_in_42_page2 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_42_page2 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_42_page2 .Button-Label {
	color: #FF7F00;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_42_page2:hover .Button-Label {
	color: #000000;
}






@media print {
	.ButtonMakerStackstacks_in_42_page2 {
		display: none !important;
	}
}

/* End of CSS code for the Audible button */












#stacks_in_42_page2 {
	border: solid rgba(255, 127, 0, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 0px 10px 30px 10px;
}
/* If modifying any of this code, update the template.html file too */

/* CSS code for the Kobo Audio button */

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

.ButtonMakerStackstacks_in_43_page2 {
	line-height: 30px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* No background */
.ButtonMakerStackstacks_in_43_page2 {
	background: transparent;
}























.ButtonMakerStackstacks_in_43_page2 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_43_page2 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_43_page2 .Button-Label {
	color: #FF7F00;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_43_page2:hover .Button-Label {
	color: #000000;
}






@media print {
	.ButtonMakerStackstacks_in_43_page2 {
		display: none !important;
	}
}

/* End of CSS code for the Kobo Audio button */












#stacks_in_43_page2 {
	border: solid rgba(255, 127, 0, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 0px 10px 30px 10px;
}
/* If modifying any of this code, update the template.html file too */

/* CSS code for the Union Ave Books button */

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

.ButtonMakerStackstacks_in_39_page2 {
	line-height: 30px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}




/* No background */
.ButtonMakerStackstacks_in_39_page2 {
	background: transparent;
}























.ButtonMakerStackstacks_in_39_page2 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_39_page2 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_39_page2 .Button-Label {
	color: #FF7F00;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_39_page2:hover .Button-Label {
	color: #000000;
}






@media print {
	.ButtonMakerStackstacks_in_39_page2 {
		display: none !important;
	}
}

/* End of CSS code for the Union Ave Books button */












#stacks_in_39_page2 {
	border: solid rgba(255, 127, 0, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	margin: 0px 10px 30px 10px;
}
