body {
	background-color: #FFFFFF;
	background-image: url(../graphics/templates/bg_footer.png), url(../graphics/templates/bg_header.png);
	background-size: 100% 197px, 100% 412px; /* the top height is actually 386 on pages with a one-line intro, but there's no way to predict that, so this acommodates two lines on all pages */
	background-repeat: no-repeat;
	background-position: bottom, top;
}
body.no_top_background {
	background-image: url(../graphics/templates/bg_footer.png), none;
}
body.shorter_top_background {
	background-position: bottom, 0px -136px;
}
body.footer_newsletter_background {
	background-size: 100% 760px, 100% 412px; /* footer height was 620 with our custom form */
}
body.footer_contact_background {
	background-size: 100% 430px, 100% 412px;
}

#page {
	position: relative;
	width: 85%; /* was 1220px; */
	max-width: 1600px;
	min-width: 1100px;
	margin: 0 auto;
}

#header {
	border: 0px solid red;
	margin-top: 44px;
	height: 59px;
}

#header_logo {
	float: left;
	margin-top: -15px;
}

#menu_top_button {
	display: none;
}

#menu_top {
	display: block;
	border: 0px solid orange;
	float: left;
	margin-left: 12%; /* was 152px; */
	margin-top: 12px;
	width: 52%;
}

/* give this a minimum height so the page layout doesn't jump when it loads */
#shopify_product_embed {
	min-height: 630px; /* this is the size of the money savvy pig; other products are smaller or larger */
}

#cart_button {
	float: right;
	margin-top: -15px; /* 6px minus 21px for the cart count */
}
#cart_button_placeholder {
	margin-top: 21px; /* simulate the spacing of the cart count */
}
.shopify-buy__cart-toggle {
	visibility: hidden; /* we'll hide this until the page loads and we can position it */
	width: 24px;
	background: none;
	cursor: pointer;
}
.shopify-buy__cart-toggle:hover {
	background: none;
}
.shopify-buy__cart-toggle__count {
	text-align: center;
	font-family: proxima-nova, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #041417;
	margin-bottom: 4px;
}
.shopify-buy__icon-cart__group {
	color: #041417;
	fill: #041417;
}
.shopify-buy--visually-hidden {
	display: none;
}

#content {
	padding: 76px 0px 120px 0px;
	border: 0px solid blue;
}
.content_width_full {
	width: 100%; /* this doesn't include the #page padding */
}
.content_width_large {
	width: 83%; /* 1014 / 1220 */
	margin: 0 auto;
}
.content_width_medium {
	width: 66%; /* 800 / 1220 */
	margin: 0 auto;
}
.content_width_small {
	width: 50%; /* 600 / 1220 */
	margin: 0 auto;
}
.content_width_tiny {
	width: 35%; /* 425 / 1220 */
	margin: 0 auto;
}

.content_width_full.background_alt {
	/* this didn't work to extend the background color:
	background-image: url(../graphics/templates/bg_footer.png);
	background-size: 10000 100%;
	*/
	/* this works, but if we extend the background color wider than the window, we get a horizontal scrollbar:
	border-left: 1000px solid #E2EDFE;
	border-right: 1000px solid #E2EDFE;
	margin-left: -1000px;
	margin-right: -1000px;
	*/
	/* this works pretty well on desktop browsers, but creates horizontal scrollbars on iOS and Android tablets: */
	margin-left: -8%;
	margin-right: -8%;
	padding-left: 8%;
	padding-right: 8%;
	overflow: visible;
}

.content_width_full.background_alt_curved {
	margin-left: -8%;
	margin-right: -8%;
	padding-left: 8%;
	padding-right: 8%;
	overflow: visible;
}

.big_padding_top { /* this is padding instead of margin to include any background color */
	padding-top: 100px;
}
.big_padding_bottom { /* ditto */
	padding-bottom: 100px;
}

.small_padding_top { /* this is padding instead of margin to include any background color */
	padding-top: 30px;
	margin-top: 60px;
}
.small_padding_bottom { /* ditto */
	padding-bottom: 30px;
	margin-bottom: 30px;
}

div.constant_contact {
	width: 800px;
	margin: 0 auto;
}

.video {
	width: 530px;
	height: 298px;
}

#footer {
	clear: both;
	position: relative;
	height: 82px; /* 198 - padding */
	padding: 58px 0px;
	border: 0px solid green;
}

#footer_newsletter {
	width: 83%; /* same as content_width_large (was the same as content_width_medium with our custom form) */
	height: 480px; /* was 340px with our custom form */
	margin: 55px auto 105px auto; /* top and bottom were 80 with our custom form */
	/* background: #D1E2FC; */
}

#footer_contact {
	width: 66%; /* same as content_width_medium */
	height: 150px;
	margin: 80px auto 80px auto;
	background: #D1E2FC;
}
#footer_contact p {
	text-align: center;
}

#footer_logo {
	float: left;
	margin-top: 24px;
}

#footer_social {
	float: left;
	margin-top: 29px;
	margin-left: 64px;
	width: 169px;
	display: flex;
	justify-content: space-between;
}

#footer_links {
	float: right;
	width: 550px; /* was 50%; was 600px; */
}


/* these work but are not currently used and are commented out in default.html: */

#modal_background {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3000px; /* we'll give this a better setting when we display the div */
	background-image: url(/graphics/site/bg_modal.gif);
	text-align: center;
}

#modal_box_centerer {
	/* thanks: http://www.pmob.co.uk/pob/centred-float.htm */
	float: right;
	position: relative;
	left: -50%;
}

#modal_box {
	position: relative;
	display: block;
	float: left;
	left: 50%;
	margin: 100px auto 0 auto;
	padding: 10px;
	text-align: left;
	border: 2px solid #6F5111;
	background: #FFFFFF;
}

#modal_close {
	text-align: right;
	padding: 5px; /* using padding instead of margin, plus a background color, avoids a clear gap under the button */
	background: #FFFFFF;
}
