#mc_stack_stacks_in_25_2 *,
#mc_stack_stacks_in_25_2 *::before,
#mc_stack_stacks_in_25_2 *::after {
	box-sizing: border-box;
}




/* CSS code for getting consent for cookies, custom popup message box */
#mc_wrapper_stacks_in_25_2 {
	display: inline-block;
	background: rgba(255, 255, 255, 1.00);
	border-radius: 0.5rem;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.20);
	margin: 2rem;
	padding: 1rem;
	max-height: 90vh;
	max-width: 50rem;
	overflow: auto;	
	
	
	
	
	
	
	position: fixed;
	bottom: 0;
	left: 0;
	margin-left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	
	
	
	
	
	
	
	
	
	font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  
  
  
  
	z-index: 99999;
}







#mc_multi_select_buttons_stacks_in_25_2 {
	display: flex;
}






#mc_multi_select_buttons_stacks_in_25_2 {
	justify-content: flex-end;
	margin: 0 -1rem;
	overflow: hidden;
}

#mc_multi_select_buttons_stacks_in_25_2 #mc_button_accept_all_stacks_in_25_2,
#mc_multi_select_buttons_stacks_in_25_2 #mc_button_disallow_all_stacks_in_25_2,
#mc_multi_select_buttons_stacks_in_25_2 #mc_button_stacks_in_25_2 {
	margin-left: 0;
	margin-right: 1rem;
}














@media screen and (max-width: 568px) {
	#mc_wrapper_stacks_in_25_2 {
		width: 100%;
		margin: 0;
		border-radius: 0;
		margin-left: 0;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	#mc_multi_select_buttons_stacks_in_25_2 {
		flex-direction: column;
	}

	#mc_multi_select_buttons_stacks_in_25_2 #mc_button_accept_all_stacks_in_25_2,
	#mc_multi_select_buttons_stacks_in_25_2 #mc_button_disallow_all_stacks_in_25_2,
	#mc_multi_select_buttons_stacks_in_25_2 #mc_button_stacks_in_25_2 {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

#mc_wrapper_stacks_in_25_2.dismissed {
	display: none;
}

#mc_content_stacks_in_25_2,
#mc_button_accept_all_stacks_in_25_2,
#mc_button_disallow_all_stacks_in_25_2,
#mc_button_stacks_in_25_2 {
	font-size: 1.125rem;
	line-height: 1.5em;
	letter-spacing: 0px;
	margin: 0;
}

#mc_content_stacks_in_25_2 {
	color: rgba(66, 66, 66, 1.00);
	margin-bottom: 20px;
}

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


@media screen and (min-width: 568px) {
	#mc_multi_select_form_stacks_in_25_2 {
		flex-direction: row;
		
		
		margin-left: -10px;
		margin-right: -10px;
		overflow: hidden;
	}

	.select_item {
		padding-left: 10px;
		padding-right: 10px;
		flex-grow: 1;
		flex-basis: 0;
	}
}



#mc_multi_select_form_stacks_in_25_2 .select_label {
	position: relative;
	font-weight: normal;
	color: rgba(66, 66, 66, 1.00);
	font-size: 1rem;
	display: block;
	margin-bottom: 20px;
	padding-left: 35px;
}

#mc_multi_select_form_stacks_in_25_2 .select_title {
	display: block;
	font-size: 1.125rem;
	font-weight: bold;
	font-style: normal;
	text-transform: none;
	text-decoration: none;
	color: rgba(66, 66, 66, 1.00);
	font-weight: bold;
  
  
  
}

#mc_multi_select_form_stacks_in_25_2 .select_description {
	display: block;
	font-weight: normal;
	color: rgba(66, 66, 66, 1.00);
}

/* Hide the browser's default checkbox */
#mc_multi_select_form_stacks_in_25_2 .select_checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
#mc_multi_select_form_stacks_in_25_2 .checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: rgba(204, 204, 204, 1.00);
	border-radius: 0.25rem;
}

/* On mouse-over, add a grey background color */
#mc_multi_select_form_stacks_in_25_2 .select_label:hover input ~ .checkmark {
  background-color: rgba(169, 169, 169, 1.00);
}

/* On tab-focus, add a grey background color and dotted outline */
#mc_multi_select_form_stacks_in_25_2 .select_label input:focus ~ .checkmark {
  background-color: rgba(169, 169, 169, 1.00);
	outline: 2px dotted rgba(0, 150, 255, 1.00);
}

/* When the checkbox is checked, add a blue background */
#mc_multi_select_form_stacks_in_25_2 .select_label input:checked ~ .checkmark {
  background-color: rgba(0, 150, 255, 1.00);
}

/* When the checkbox is disabled, reduce its opacity */
#mc_multi_select_form_stacks_in_25_2 .select_label input:disabled ~ .checkmark {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Create the checkmark/indicator (hidden when not checked) */
#mc_multi_select_form_stacks_in_25_2 .select_label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
#mc_multi_select_form_stacks_in_25_2 .select_label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
#mc_multi_select_form_stacks_in_25_2 .select_label .checkmark:after {
  left: 9px;
  top: 4px;
  width: 8px;
  height: 15px;
  border: solid rgba(255, 255, 255, 1.00);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#mc_content_stacks_in_25_2 a,
#mc_content_stacks_in_25_2 a:visited {
	font-weight: 600;
	color: rgba(41, 145, 204, 1.00);
	background: none;
	border: none;
	transition: all 100ms ease-in-out;
	font-weight: normal;
	font-style: normal;
	text-transform: none;
	text-decoration: none;
	font-weight: bold;
	
	
	
}

#mc_content_stacks_in_25_2 a:hover {
	color: rgba(82, 124, 154, 1.00);
	text-decoration: none;
	background: none;
	border: none;
}

#mc_content_stacks_in_25_2 a:active {
	color: rgba(82, 124, 154, 1.00);
	text-decoration: none;
	background: none;
	border: none;
	opacity: 0.50;
}

#mc_content_stacks_in_25_2 a:focus {
	outline: 1px dotted rgba(82, 124, 154, 1.00);
}




/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_25_2,
#mc_button_accept_all_stacks_in_25_2,
#mc_button_disallow_all_stacks_in_25_2,
.mc_button_stacks_in_25_2 {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: rgba(41, 145, 204, 0.20);
	border: 1px hidden rgba(41, 145, 204, 0.20);
	border-radius: 0.25rem;
	color: rgba(41, 145, 204, 1.00);
	cursor: pointer;
	margin-left: 1rem;
	display: inline-block;
	font-family: inherit;
	font-size: 1.125rem;
	font-weight: 600;
	padding: 8px 16px;
	text-align: center;
	transition: all 100ms ease-in-out;
	white-space: nowrap;
	font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  font-weight: bold;
  
  
  
	margin-bottom: 5px;
	
	
}

#mc_button_stacks_in_25_2:hover,
.mc_button_stacks_in_25_2:hover,
#mc_button_accept_all_stacks_in_25_2:hover,
#mc_button_disallow_all_stacks_in_25_2:hover {
	color: rgba(82, 124, 154, 1.00);
	background-color: rgba(41, 145, 204, 0.40);
	border: 1px hidden rgba(41, 145, 204, 0.40);
}


#mc_button_stacks_in_25_2:active,
.mc_button_stacks_in_25_2:active,
#mc_button_accept_all_stacks_in_25_2:active,
#mc_button_disallow_all_stacks_in_25_2:active {
	color: rgba(82, 124, 154, 1.00);
	background-color: rgba(41, 145, 204, 0.40);
	border: 1px hidden rgba(41, 145, 204, 0.40);
	opacity: 0.50;
}

#mc_button_stacks_in_25_2:focus,
#mc_button_accept_all_stacks_in_25_2:focus,
#mc_button_disallow_all_stacks_in_25_2:focus,
.mc_button_stacks_in_25_2:focus {
	outline: 2px dotted rgba(82, 124, 154, 1.00);
}







#dialog_title_stacks_in_25_2,
#dialog_desc_stacks_in_25_2 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_25_2,
	#mc_window_shade_stacks_in_25_2,
	#mc_wrapper_stacks_in_25_2 {
		display: none;
	}
}




#stacks_in_24 {
	font-weight: lighter;
}

#stacks_in_7 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_7 .pullquote:before, #stacks_in_7 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_7 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_7 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_7 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_7 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_7 {
	margin:  2px;
	padding:  20px;
}

#stacks_out_7 {
	width: 350px;
}
#stacks_in_10_6>.s3_row {
	margin: 0 -10px;
}

#stacks_in_10_6>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_10_6>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_10_6>.s3_row>.s3_column_right {
	width: 33.33%;
}

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








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



}



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


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


}




#stacks_in_10_6 {
	background-color: rgba(51, 51, 51, 0.15);
	margin: 30px 0px 0px 0px;
	padding:  5px;
}

#stacks_in_10_20 {
	margin: 10px 0px 0px 35px;
}
