﻿@charset "utf-8";

html, body {
	min-height:100%;
	height:100%;
	font-family: 'Lato', sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}
sup {
	bottom: .5em;
	font-size:.6em;
	margin-left:.1em;
}
.preload {
	display:none;
}
a, a:visited {
	color:#e44597;
	-webkit-transition: .2s; /* Safari */
	transition: .2s;
	cursor: pointer;
	text-decoration: none;
}
a:hover, a:active {
	color: #b13575;
	text-decoration: underline;
}
a.btn-info {
	color:#fff;
}
a.btn-default {
	color:#666;
}
.fancybox-default, .fancybox-iframe, .fancybox-inner {
	-moz-box-sizing: content-box !important;
	-webkit-box-sizing: content-box !important; 
	box-sizing: content-box !important;
}
.back-to-top {
	position:fixed;
	bottom:25px;
	right:2.5%;
	z-index:1100;
	height:40px;
	cursor:pointer;
	-webkit-filter: drop-shadow(0px 1px 1px rgba(0,0,0,1));
	display:none;
}
.back-to-top:hover {
	margin-bottom:6px;
	-webkit-transition: .2s; /* Safari */
    transition: .2s;
}


/* ------------------------------
H1,2,3,p, form elements
------------------------------ */
h1,h2,h3 {
	margin:.5em 0em;
	padding:0px;
	letter-spacing:-.035em;
}
h1 {
	font-size:32px;
	color:#f66ab2;
	font-weight:normal;
	margin:.5em 0em;
	line-height:1em;
	
}
h2 {
	font-size:30px;
	color:#d8c358;
	margin:.5em 0em;
	line-height:1.3em;
}
p {
	font-size: 22px;
	color: #747272;
	letter-spacing: -.035em;
	line-height: 1.4em;
}
ol {
	font-size: 22px;
	color: #747272;
	letter-spacing: -.035em;
	line-height: 1.4em;
	text-align:left;
	display:inline-block;
}

/* ------------------------------
HEADER
------------------------------ */
img.logo {
	width:175px;
	position: absolute;
	top:10px;
	left:2%;
	z-index: 11000;
}

header {
	position: absolute;
	top:0px;
	right:0px;
	z-index: 10000;
	background:url(../images/header-divider.png) no-repeat left bottom;
	padding:0px 15px;padding-bottom:17px;padding-right:2.5%;
}
header ul.main-nav {
	margin:0px;padding:0px;
	font-size:0px;
	display: inline-block;
	vertical-align: middle;
}
header ul.main-nav > li {
	margin:0px;
	padding:15px 0px;
	display:inline-block;
	list-style-type: none;
}
header ul.main-nav > li:hover {
	background-color:#f66ab2;
}
header ul.main-nav > li > a {
	display:inline-block;
	font-size:16px;
	color:#525152;
	font-weight: bold;
	letter-spacing: -.015em;
	padding:10px 15px;
}
header ul.main-nav > li:hover > a {
	text-decoration: none;
	color:#fff;
}
/* SJR: Geoff used ".active" for the current menu item of the page we're on, while WP uses current-menu-item. */
/* header ul.main-nav > li.active:not(:hover) > a { */
header ul.main-nav > li.current-menu-item:not(:hover) > a {
	color:#e54497;
}
header a.donate {
	color:#fff;
	background-color:#e54497;
	display:inline-block;
	vertical-align: middle;
	padding:3px 15px;
	margin:0px 15px;
	border-radius: 15px;
	font-weight: bold;
}
header a.donate:hover {
	text-decoration: none;
	background-color: #ed77b4;
}
header #searchButton {
	vertical-align: middle;
	font-size:24px;
	color:#525152;
	margin:0px 15px;margin-top:-5px;
}
header #searchButton:hover {
	color:#e54497;
}
header div.search-bar {
	position:absolute;
	background-color:#333;
	padding:15px 0px;
	right:0px;
	white-space: nowrap;
	bottom:-43px;
	width:0px;
	max-width: 400px;
	text-align: left;
	-webkit-transition: .5s; /* Safari */
    transition: .5s;
	overflow:hidden;
}
header div.search-bar.active {
	width:100%;
	padding:15px;
}
/* SJR: We're search type=search, not text. */
header div.search-bar input[type="search"] {
	border:none;
	background-color:#555;
	color:#ccc;
	padding:3px 10px;
	height:30px;
	line-height: 30px;
	margin:0px;
	vertical-align: middle;
	width:calc(100% - 31px);
}
header div.search-bar button {
	border:none;
	border-radius: 0px;
	background-color:#999;
	line-height: 30px;
	margin:0px;
	padding:0px 10px;padding-left:12px;
	font-size:24px;
	vertical-align: middle;
	text-align: center;
}
header a.doc-cart {
	font-size:0px;
	display: inline-block;
	position: relative;
	z-index: 0;
	vertical-align: middle;
	width:34px;
	height:34px;
	margin-left:5px;margin-top:-10px;
	background-image: url(../images/doc-cart.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size:contain;
	-webkit-transition: .2s; /* Safari */
    transition: .2s;
}
header a.doc-cart:hover {
	background-image: url(../images/doc-cart-over.svg);
}

#mobileMenu {
	display:none;
}

/* ------------------------------
MEGA-MENU
------------------------------ */
header ul.main-nav > li:hover .mega-menu {
	height:auto;
	padding:10px 5px;
	overflow: auto;
	z-index: 1000;
}

/*
:hover by default is triggered with a touch device is used to click.
Use the media query to force the device to actually be able to hover.
IE11 does not understand the hover media query.
*/
@media (hover: none) {
    header ul.main-nav > li:hover .mega-menu {
        height: 0;
        padding: 0;
    }
}

.mega-menu {
	position: absolute;
	top:72px;
	height:0px;
	padding:0px;
	overflow: hidden;
	box-shadow: 0px 10px 15px rgba(0,0,0,.25);
	text-align: center;
	background-color:#f66ab2;
	
	-webkit-transition: .1s; /* Safari */
    transition: .1s;
}
.mega-menu > ul {
	margin:0px;
	padding:0px;
}
.mega-menu > ul > li {
	list-style-type: none;
	font-size:0px;
	padding:7px 0px;
	margin:0px 10px;
	vertical-align: top;
	text-align: left;
	border-top:solid 1px rgba(255,255,255,.3);
	border-bottom:solid 1px rgba(0,0,0,.15);
}
.mega-menu > ul > li:first-child {
	border-top:none;
	padding-top:0px;
}
.mega-menu > ul > li:last-child {
	border-bottom:none;
}
.mega-menu > ul > li > a {
	color:#fff;
	font-size:16px;
	font-weight: normal;
}
.mega-menu > ul > li > ul {
	margin:0px;padding:0px;
	border-top:solid 1px rgba(255,255,255,.3);
	margin-top:5px;
	padding-top:5px;
	display:none;
}
.mega-menu > ul > li > ul > li {
	margin:0px;padding:0px;
	padding:4px 0px;
}
.mega-menu > ul > li > ul > li > a {
	font-size:14px;
	color:#000;
}
.mega-menu > ul > li > a:hover {
	text-decoration: none;
	text-shadow: 0px 0px 10px #fff;
	margin-left:5px;margin-right:-5px;
}
.mega-menu > ul > li > ul > li > a:hover {
	color:#fff;
	text-decoration: none;
	margin-left:5px;margin-right:-5px;
}


/* ------------------------------
SIDEBAR
------------------------------ */
.sidebar {
	position: absolute;
	top:350px;
	right:2%;
	min-width:375px;
	box-shadow: 0px 0px 20px rgba(0,0,0,.5);
	border:solid 1px #fff;
	border-radius: 20px 20px 0px 0px;
    
    background-color:#efb8d2;
    border-radius: 19px 19px 0px 0px;
    background: rgb(249,192,218);
    background: -moz-linear-gradient(top, rgba(249,192,218,1) 0%, rgba(239,184,210,1) 55%, rgba(214,164,184,1) 100%);
    background: -webkit-linear-gradient(top, rgba(249,192,218,1) 0%,rgba(239,184,210,1) 55%,rgba(214,164,184,1) 100%);
    background: linear-gradient(to bottom, rgba(249,192,218,1) 0%,rgba(239,184,210,1) 55%,rgba(214,164,184,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9c0da', endColorstr='#d6a4b8',GradientType=0 );
}
.sidebar ul.subnav {
	padding:10px 25px;
	margin:0px;
	width:100%;
}
.sidebar ul.subnav > li {
	padding:0px;
	margin:0px;
	list-style-type: none;
	border-top:solid 1px rgba(255,255,255,.5);
	border-bottom:solid 1px rgba(0,0,0,.1);
}
.sidebar ul.subnav > li:first-child {
	border-top:none;
}
.sidebar ul.subnav > li:last-child {
	border-bottom:none;
}
.sidebar ul.subnav > li > a {
	color:#fff;
	font-size:18px;
	font-weight: bold;
	display:inline-block;
	width:100%;
	padding:10px 1px;
	text-shadow: 0px 1px 1px rgba(0,0,0,.25);
}
/* SJR: Geoff used ".active" for the current menu item of the page we're on, while WP uses current-menu-item. */
/* .sidebar ul.subnav > li.active > a { */
.sidebar ul.subnav > li.current-menu-item > a {
	color:#e54497;
	text-shadow:none;
	font-weight: 900;
}
.sidebar ul.subnav a:hover {
	color:#e54497;
	text-shadow:none;
}

.sidebar ul.subnav > li > ul {
	list-style-type: none;
	margin:0px;margin-top:-8px;margin-left:10px;margin-bottom:15px;
	padding:0px;
}
.sidebar ul.subnav > li > ul > li {
	margin:0px;margin-bottom:3px;
	padding:0px;
}
.sidebar ul.subnav > li > ul > li > a {
	color:#000000;
	font-size:15px;
}
.sidebar ul.subnav > li > ul > li.current-menu-item > a {
	font-weight:900;
	color:#e54497;
	background: url(../images/pink-arrow-bullet.png) no-repeat 0px 4.5px;
	background-size:6px;
	padding-left:10px;
	margin-left:-10px;
}
.sidebar ul.subnav > li > ul > li > ul {
	margin:5px 0px;margin-bottom:8px;
}
.sidebar ul.subnav > li > ul > li > ul > li > a {
	color:#000;
}
.sidebar ul.video-carousel li {
	width:100%;
}
.sidebar ul.subnav a:hover {
	text-decoration: none;
}


/* ------------------------------
SWIPER
------------------------------ */
.swiper-container {
	width:100%;
	height:100%;
	min-height: 500px !important;
}
.swiper-slide {
	background-size:cover;
	background-position:center;
	background-repeat: no-repeat;
	position: relative;
	opacity: .2;
	-webkit-transition: 2s; /* Safari */
    transition: 2s;
}
.swiper-slide-active {
	opacity: 100;
}
.swiper-pagination-bullet {
	width:14px;
	height:14px;
	background:#fff;
	opacity: .51;
	-webkit-transition: .2s; /* Safari */
    transition: .2s;
}
.swiper-pagination-bullet:hover {
	transform: scale(1.2);
}
.swiper-pagination-bullet-active {
	background:#fff;
	opacity: 1;
}
.swiper-button-prev, .swiper-button-next {
	opacity: .75;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
	opacity: 1;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom:25px;
}
.shadow-top {
	position: absolute;
	top:0px;
	left:0px;
	width:100%;
	height:33%;
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6ffffff', endColorstr='#00ffffff',GradientType=0 );
}
.shadow-bottom {
	position: absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:75%;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
.grid-lines {
	position: absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background: url(../images/grid-lines.png) repeat center;
	opacity: .05;
}
.slide-content {
	position: absolute;
	left:0px;bottom:10%;
	width:100%;
}
.slide-content > div {
	width:75%;
	max-width: 1200px;
	text-align: left;
	margin:0 auto;
}
.slide-content h1 {
	color:#f66ab2;
	font-size:60px;
	text-shadow: 0px 2px 4px rgba(0,0,0,.4);
	margin-bottom:20px;
}
.slide-content p {
	color:#fff;
	font-size:20px;
	letter-spacing: -.025em;
}
.slide-content p a {
	color:#e44597;
	z-index:9999999;
}
.slide-content a.button {
	display:inline-block;
	border:solid 1px #fff;
	border-radius: 25px;
	font-family: 'Montserrat', sans-serif;
	font-size:18px;
	color:#fff;
	background-color:rgba(0,0,0,.25);
	padding:6px 28px;
	text-align:center;
	letter-spacing: -.025em;
	margin-top:15px;
}
.slide-content a.button:hover {
	text-decoration: none;
	background-color:rgba(0,0,0,.75);
	transform: scale(1.05);
}


/* ------------------------------
INTERIOR MASTHEAD
------------------------------ */
.masthead {
	width:100%;
	height:500px;
	position: relative;
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	padding:4%;
	display: flex;
}
.masthead div.content {
	align-self: flex-end;
	width:calc(100% - 450px);
	z-index: 100;
}
.masthead h1 {
	font-size:60px;
	margin-bottom:20px;
	text-shadow: 0px 2px 4px rgba(0,0,0,.4);
}
.masthead p {
	color:#fff;
	font-size:24px;
	line-height: 1.3em;
}
.masthead .shadow-top {
	height:60%;
}
.masthead .shadow-bottom {
	height:100%;
}

/* ------------------------------
INTERIOR CONTENT
------------------------------ */
section.interior-content {
	padding:2.5% 4%;padding-top:1.5%;
	width:calc(100% - 450px);
}
section.interior-content h1 {
	font-size:36px;
}
section.interior-content h2 {
	font-size:28px;
	font-weight: bold;
	color:#3d3c3c;
	border-bottom: solid 1px #d4d4d4;
	padding-bottom:5px;
	padding-left:15px;
	margin-left:-15px;
	margin-right:-15px;
	margin-bottom:20px;
}

/* I moved these styles out of the p because it's confusing in the editor why
suddenly the font doesn't look right, until you press enter (wrappig your content in a p) */
section.interior-content {
	/* A couple other styles we're missing from gobal p styles */
	color: #747272;
	letter-spacing: -.035em;

	line-height: 1.5em;
	font-size:20px;
}

section.interior-content p {
	margin-bottom:25px;
	line-height: 1.4em;
	font-size:20px;
}
/* They don't want the underline */
/* section.interior-content a {
	text-decoration: underline;
} */
section.interior-content ul:not(.breadcrumb) {
	list-style-type: none;
	margin:25px 0px;margin-left:10px;
	padding:0px;
}
section.interior-content ul:not(.breadcrumb) > li {
	font-size:18px;
	/* Why do we want this to be a different color than the rest of the text? */
	/* color:#3d3c3c; */
	margin-bottom:10px;
	padding-left:30px;
	background:url(../images/pink-arrow-bullet.png) no-repeat 0px 5px;
	background-size:10px;
}

/* Unable to have this in Custom.scss because of the relative paths. */
body .lightbox ul:not(.breadcrumb) {
    list-style-type: none;
    margin: 25px 0px;
    margin-left: 10px;
    padding: 0px;
}

    body .lightbox ul:not(.breadcrumb) > li {
        font-size: 18px;
        color: #3d3c3c;
        margin-bottom: 10px;
        padding-left: 30px;
        background: url(../images/pink-arrow-bullet.svg) no-repeat 0px 5px;
        background-size: 10px;
    }

section.interior-content p img {
	/* SJR: I think it's important that padding is used instead of marign because then box-sizing: border-box will work. */
	padding: 15px;
	/* These bad styles have been commented-out 
	because the resize the width and not the height
	and size needs to be managed by WordPress. */
	/*
	float:right;
	width:30%;
	min-width: 250px; 
	margin-left:25px;margin-bottom:25px;
	*/
}
ul.breadcrumb {
	margin-bottom:0px;
	padding-left:4%;
	width:calc(100% - 375px);
}

/* SJR: I don't want FAQ to be a special page, so these styles have been moved-to and modified in Custom.scss */
.faq > h3 {
	border:solid 1px #f66ab2;
	color:#f66ab2;
	background-color: rgba(246, 106, 178, 0.2);
}
/* .faqs h3 {
	border:solid 1px #f66ab2;
	background-color:rgba(246,106,178,.2);
	padding:8px 18px;
	color:#f66ab2;
	margin-top:35px;margin-bottom:20px;
	line-height: 1.4em;
}
.faqs p {
	margin-left:18px;
}
section.interior-content.faqs ul {
	margin-left:22px;
} */


/* ------------------------------
VIDEO CAROUSEL
------------------------------ */
section.static-content {
	padding:2.5% 4%;
	margin:auto;
	max-width:1600px;
}


/* ------------------------------
VIDEO CAROUSEL
------------------------------ */
ul.video-carousel {
	margin:0px;
	padding:0px;
	list-style-type: none;
	font-size:0px;
}
ul.video-carousel li {
	margin:0px;
	padding:0px;
	display:inline-block;
	background-size:cover;
	background-position:center;
	background-repeat: no-repeat;
	width:33.33333%;
	height:300px;
	position: relative;
	-webkit-transition: .6s; /* Safari */
    transition: .6s;
}
ul.video-carousel > a:nth-of-type(2) > li {
	border:solid 1px #fff;
	border-top:none;
	border-bottom:none;
}
ul.video-carousel div.shadow {
	width:100%;
	height:65%;
	position: absolute;
	bottom:0px;
	left:0px;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
	opacity: .75;
	z-index: 1;
	-webkit-transition: .6s; /* Safari */
    transition: .6s;
}
ul.video-carousel div.content {
	position: absolute;
	bottom:0px;
	z-index: 2;
	padding:4% 6%;
}
ul.video-carousel h2 {
	font-size:20px;
	font-weight: bold;
	color:#fcef81;
	text-shadow: 0px 2px 2px rgba(0,0,0,.35);
	vertical-align: middle;
	line-height: 1.1em;
	padding-left:50px;
	position:relative;
}
ul.video-carousel h2 i {
	color:#fff;
	text-shadow: none;
	font-size:38px;
	vertical-align: middle;
	position: absolute;
	left:0px;
	margin-top:-7px;
}
ul.video-carousel p {
	font-size:16px;
	color:#fff;
	letter-spacing: normal;
	display:inline-block;
	overflow:hidden;
	max-height:0px;
	margin-top:0px;
	-webkit-transition: .6s; /* Safari */
    transition: .6s;
}
ul.video-carousel li:hover {
	background-position:top center;
}
ul.video-carousel li:hover div.shadow {
	height:100%;
	opacity: 1;
}
ul.video-carousel li:hover p {
	max-height:150px;
	margin-top:10px;
}


/* ------------------------------
TOPICS
------------------------------ */
ul.topics {
	margin:0px;
	padding:2%;padding-bottom:4%;
	font-size:0px;
	list-style-type: none;
}
ul.topics > li {
	margin:0px;
	padding:2%;
	display:inline-block;
	width:50%;
	vertical-align: top;
	position:relative;
	padding-bottom:55px;
}
ul.topics div.image {
	width:100%;
	height:200px;
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
}
ul.topics h3 {
	color:#e44597;
	font-size:28px;
	border-bottom:dotted 1px #e44597;
	padding-bottom:4px;
}
ul.topics h3 a:hover {
	text-decoration: none;
}
ul.topics p {
	font-size:18px;
}
ul.topics a.button {
	color:#e44597;
	font-weight: normal;
	font-family: 'Montserrat', sans-serif;
	display:inline-block;
	border:solid 1px #e44597;
	padding:4px 15px;
	border-radius:25px;
	margin-top:12px;
	position:absolute;
	bottom:0px;
}
ul.topics a.button:hover {
	background-color:#e44597;
	color:#fff;
	text-decoration: none;
}


/* ------------------------------
SUBSCRIBE FORM
------------------------------ */
section.subscribe {
	text-align: center;
	padding:5%;
	background:url(../images/subscribe-clouds.jpg) center no-repeat;
	background-size:cover;
}
section.subscribe h3 {
	font-size:40px;
	color:#fff;
	font-weight: 900;
	padding:5px 50px;
	margin:0px;margin-bottom:15px;
	display:inline-block;
	border-bottom:solid 1px rgba(255,255,255,.4);
}
section.subscribe p {
	font-size:22px;
	color:#403f3f;
	margin-bottom:30px;
}
section.subscribe input {
	border:solid 1px #fff;
	background-color:rgba(0,0,0,.09);
    box-sizing: content-box;
	height: 50px;
	line-height: 50px;
	border-radius:50px;
	font-size:20px;
	font-family: 'Montserrat', sans-serif;
	width:330px;
	text-align: center;
	white-space: nowrap;
	margin-right:7px;
	color:#fff;
}
section.subscribe input::-webkit-input-placeholder {
	color: #fff !important;
	text-shadow:0px 1px 2px rgba(0,0,0,.2) !important;
}
 
section.subscribe input:-moz-placeholder { /* Firefox 18- */
	color: #fff !important; 
	text-shadow:0px 1px 2px rgba(0,0,0,.2) !important;
}
 
section.subscribe input::-moz-placeholder {  /* Firefox 19+ */
	color: #fff !important;  
	text-shadow:0px 1px 2px rgba(0,0,0,.2) !important;
}
 
section.subscribe input:-ms-input-placeholder {  
	color: #fff !important;
	text-shadow:0px 1px 2px rgba(0,0,0,.2) !important;
}
section.subscribe button {
	border:solid 1px #007bc0;
	background-color:#007bc0;
	padding:0px 25px;
	border-radius:50px;
	font-size:16px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
	color:#fff;
	line-height: 54px;
	-webkit-transition: .2s; /* Safari */
    transition: .2s;
}
section.subscribe button:hover {
	background-color:#0a9aea;
	border:solid 1px #0a9aea;
}



/* ------------------------------
FOOTER
------------------------------ */
footer {
	padding:4% 2.5%;padding-bottom:30px;
	text-align: center;
}
footer ul.social-icons {
	margin:0px;
	padding:0px;
	list-style-type: none;
}
footer ul.social-icons > li {
	display:inline-block;
	font-size:30px;
	padding:0px 15px;
}
footer ul.social-icons > li > a:hover {
	text-decoration: none;
	transform: scale(1.1);
}
footer ul.links {
	margin:20px 0px;
	padding:10px;padding-bottom:15px;
	list-style-type: none;
	border-bottom:solid 1px #ebebeb;
	display:inline-block;
}
footer ul.links > li {
	padding:0px 15px;
	display:inline-block;
	border-right:solid 1px #ccc;
}
footer ul.links > li:last-child {
	border-right:none;
}
footer ul.links > li > a {
	font-size:14px;
	color:#3b3b3b;
}
footer div.copyright {
	text-align: left;
	margin:auto 0px;
	margin-top:30px;
}
footer div.copyright img {
	width:150px;
	display:inline-block;
	vertical-align: middle;
	margin-right:25px;
	margin-top:-27px;
}
footer div.copyright p {
	font-size:12px;
	color:#a19f9f;
	display:inline-block;
	vertical-align: middle;
}
footer div.c-and-s {
	text-align: right;
	margin-top:-10px;
}
footer div.c-and-s p {
	text-align: left;
}
footer div.c-and-s img {
	padding-bottom:10px;
}




/* ------------------------------
MOBILE
------------------------------ */
/* SJR: These are different values than C&S because Geoff accounted for the
width of the menu item names, despite being dynamic  */
@media screen and (max-width: 1300px) {
	header ul.main-nav > li > a {
		font-size:14px;
	}
	img.logo {
		width:130px;
	}
	.mega-menu {
		top:69px;
	}
}
@media screen and (max-width: 1150px) {
	img.logo {
		width:115px;
		top:22px;
	}
	header {
		width:100%;
		text-align: right;
		padding-bottom:30px;
	}
	header ul.main-nav {
		display:block;
		margin-right:-2.5%;
	}
	header ul.main-nav > li > a {
		padding-bottom:0px;
	}
	.mega-menu {
		top:60px;
	}
}
@media screen and (min-width: 941px) and (max-width: 1150px) {
	header ul.main-nav > li:last-child .mega-menu {
		left:auto;
		right:0px;
		white-space: nowrap;
	}
	header ul.main-nav > li:last-child {
		position: relative;
		z-index: 1;
	}
}

@media screen and (max-width: 940px) {
	h1 {
		font-size:35px;
	}
	h2 {
		font-size:20px;
	}
	h3 {
		font-size:20px;
	}
	p {
		font-size:16px;
	}
	
	img.logo {
		top:5px;
		width:100px;
	}
	header {
		padding:15px;padding-right:75px;
		height:75px;
	}
	header a.donate {
		font-size:12px;
		padding:2px 10px;
		margin:0px;margin-right:10px;
	}
	header #searchButton {
		margin:0 8px;margin-top:-2px;
	}
	header a.doc-cart {
		width:30px;
		height:30px;
		margin-top:-4px;
	}
	
	#mobileMenu {
		background-color:#e54497;
		color:#fff;
		font-size:30px;
		display:inline-block;
		padding:10px 15px;
		vertical-align: middle;
		margin:0px;
		position:absolute;
		right:0px;
		top:0px;
		line-height: 38px;
		width:56px;
	}
	
	header > ul.main-nav {
		display:none;
		position:absolute;
		background-color:#e44597;
		left:0px;
		top:58px;
		width:100%;
		padding:2.5%;
		padding-bottom:15px;
	}
	header > ul.main-nav.active {
		display:block;
	}
	header > ul.main-nav > li {
		display:block;
		list-style-type: none;
		text-align:left;
		padding:0px;
	}
	header > ul.main-nav > li > a {
		color:#fff !important;
		font-size:16px;
		border-top:solid 1px rgba(255,255,255,.3);
		border-bottom:solid 1px rgba(0,0,0,.2);
		width:100%;
		padding-bottom:5px;
	}
	
	header > ul.main-nav > li > a:hover {
		color:#fff !important;
		text-shadow:0px 0px 15px rgba(255,255,255,1);
		padding-left:20px;
	}
	header > ul.main-nav > li:first-child > a {
		border-top:none;
	}
	header > ul.main-nav > li:last-child > a {
		border-bottom:none;
	}
	
	header > ul.main-nav > li.current-menu-item {
		background-color:#f66ab2;
	}
	header > ul.main-nav > li.current-menu-item > a {
		color:#fff;
	}
	
	
	header > ul.main-nav > li .mega-menu {
		display:none;
	}
    
	/* These styles have fixes and improvements in Custom.scss */
	header > ul.main-nav > li.current-menu-item .mega-menu,
	header > ul.main-nav > li.current-menu-ancestor .mega-menu	{
		display:block !important;
		position: relative;
		height: auto;
		overflow: auto;
		top:auto;left:auto !important;
		padding:0;
		text-align: left;
		box-shadow: none;
		width:100% !important;
	}
		header > ul.main-nav > li.current-menu-item .mega-menu > ul > li > ul { 
		display:block;
	}
	/* /These styles have fixes and improvements in Custom.scss */
    .mega-menu > ul > li {
        padding-left: 15px;
        border: none;
    }
	.mega-menu > ul > li:first-child {
		padding-top:10px;
	}
	.mega-menu > ul > li > a {
		font-weight: 900;
		font-size:14px;
	}
	
	.slide-content h1 {
		font-size:30px;
	}
	.slide-content p {
		font-size:16px;
	}
	.slide-content a.button {
		font-size:16px;
		padding:5px 20px;
	}
	.shadow-bottom {
		height:100%;
		background: -moz-linear-gradient(top, rgba(0,0,0,.5) 0%, rgba(0,0,0,0.75) 100%);
		background: -webkit-linear-gradient(top, rgba(0,0,0,.5) 0%,rgba(0,0,0,0.75) 100%);
		background: linear-gradient(to bottom, rgba(0,0,0,.5) 0%,rgba(0,0,0,0.75) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
	}
	
	.masthead {
		height:auto;
		padding-top:150px;
	}
	.masthead div.content {
		width:100%;
	}
	.masthead h1 {
		font-size:36px;
	}
	.masthead p {
		font-size:18px;
	}
	
	section.interior-content {
		width:100%;
	}
	section.interior-content h1 {
		font-size:28px;
	}
	section.interior-content h2 {
		font-size:20px;
	}
	section.interior-content p, section.interior-content ul > li {
		font-size:16px;
	}
	section.interior-content p img {
		
	}
	
	ul.breadcrumb {
		width:100%;
	}
	ul.breadcrumb > li {
		font-size:12px !important;
	}
	
	
	.sidebar {
		position: relative;
		width:100%;
		top:auto;
		right:auto;
		margin:0px;
		padding:0px;

		/* SJR: Min-width wasn't being unset. */
		min-width: initial;
	}
	.sidebar ul.subnav {
		display:none;
	}
	
	
	section.static-content {
		padding:2.5% 6%;
	}
	
	section.subscribe h3 {
		font-size:24px;
		padding:4px;
		display:block;
	}
	section.subscribe p {
		font-size:16px;
	}
	section.subscribe input {
		font-size:14px;
		width:225px;
		line-height: 35px;
	}
	section.subscribe button {
		font-size:14px;
		line-height: 35px;
		padding:0px 10px;
	}
	
	footer div.copyright {
		padding:0px 5%;
	}
}

@media screen and (max-width: 800px) {
	section.interior-content p img {
		/* Setting width makes no sense, so he must have meant max-width. */
		max-width:100%;
		height: auto !important;
		float:none;
		margin-left:0px;
	}
	section.interior-content ul:not(.breadcrumb) > li {
		font-size:16px;
	}
	
	ul.video-carousel li {
		display: block;
		width:100%;
		height: 400px;
		border:none !important;
	}
	ul.video-carousel li p {
		display:block;
		max-height: 150px;
		font-size:14px;
	}
	
	ul.topics {
		padding:0px;
	}
	ul.topics > li {
		display:block;
		width:100%;
		padding:6% 0px;
		padding-bottom:0px;
		height:auto !important;
	}
	ul.topics > li:last-child {
		padding-bottom:6%;
	}
	ul.topics div.image {
		height:250px;
	}
	ul.topics > li:nth-child(3) div.image {
		height:150px;
	}
	ul.topics h3 {
		font-size:22px;
		margin-left:6%;margin-right:6%;margin-top:20px;
	}
	ul.topics p {
		font-size:16px;
		padding:0px 6%;
	}
	ul.topics p:last-child {
		text-align:center;
		margin:0px;
	}
	ul.topics a.button {
		position: relative;
	}
}

@media screen and (max-width: 760px) {
	footer div.c-and-s {
		text-align: center;
		margin-top:40px;
	}
	footer div.c-and-s p {
		text-align: center;
	}
}

@media screen and (max-width: 480px) {
	ul.video-carousel li {
		height: 300px;
	}
	ul.topics div.image {
		height:200px;
	}
	ul.topics > li:nth-child(3) div.image {
		height:100px;
	}
}
