/*///////////////////////////////////// GENERAL SETTINGS//////////////////////////// */


* {
	
	font-size: inherit;
	font-weight: 400;
	font-family: "Source Sans Pro", "Trebuchet MS";
	color: inherit;
	position: relative;
	overflow: hidden;
	padding:0;
	margin:0;
	box-sizing: border-box;
	flex-shrink:1;
	flex-grow:1;
	flex-basis: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
}


input[type=text], textarea, select, input[type=submit] {
	-webkit-appearance: none;
}

input:focus, textarea:focus, select:focus {
    outline: none;    
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}


body, html {
	overflow: visible;
	background-color: #0a1016;
	font-size: 20px;
	line-height: 30px;
	height: 100%;
	color: #2c4c70;
}


a {
	text-decoration: none;
	color: #216e9f;
	font-size: inherit;
	font-weight: inherit;
}

a.light {
	color: #99d5ff;
}

a:hover {
	text-decoration: underline;
}








/*///////////////////////////////////// HELPER CLASSES //////////////////////////// */
.invisible {
	opacity: 0;
}

.margins, .mobileNoMargins {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
	overflow: hidden;
}

.hidden {
	display: none;
}

.overflow {
	overflow: visible;
}

.fullWidth {
	width: 100%;
}

.postWidth {
	max-width: 900px;
}

.fullHeight {
	height: 100%;
}

.postMargins {
	max-width: 850px;
	margin: 0 auto;
	padding: 0 50px;

}

.mobileOnly {
	display: none;
}

.mobileHidden {
	display: block;
}




.textCenter {
	text-align: center;
}


.left {
	float:left;
}


.right {
	float:right;
}

.padding {
	padding:20px;
}

.padding.noBottom {
	padding-bottom: 5px;
}

.paddingTop {
	padding-top: 10px;
}

.smallPadding {
	padding: 10px;
}

.paddingY {
	padding-top:20px;
	padding-bottom:20px;
}

.postPadding {
	padding-bottom:50px;
	padding-top: 50px;
}

.itemMarginBottom {
	margin-bottom: 20px;
}

.itemMarginTop {
	margin-top: 20px;
}

.contentMarginTop {
	margin-top: 10px;
}

.page {
	background-color: #f2f4f9;
	z-index: 1;
}

.aspectRatio32 {
	padding-bottom: calc(66.6666666666666666666667% - 1px);
	width:100%;
	background-color: #222;
}


.aspectRatio169 {
	padding-bottom: calc(100% * (9 / 16));
}

.aspectRatio52 {
	padding-bottom: calc(100% * (2 / 5));
}

.aspectFit {
	display: block;
	position: absolute;
	top: -1px;
	left: -1px;
	right: 0;
	bottom: 0;
	margin: auto;
	max-height: calc(100% + 2px);
	max-width: calc(100% + 2px);
}

.aspectFill {
	width: auto;
	max-height: 100%;
	object-fit:cover;
}

.overlay {
	position: absolute;
	background-color: rgba(0,0,0,0);
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	pointer-events: none;
	color:#FFF;
}

.absoluteFullArea {
	position: absolute;
	width: 100%;
	height: 100%;
}

.flexNoGrow {
	flex-grow:0;
}

h2 a:link, h2 a:visited {
	text-decoration: none;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
}

h2 a:hover {
	color: #4d85c3;
}

.cinema {
	background-color: #000;
}

.borderTop {
	border-top: solid 1px #3aa6ea;
}

.borderBottom {
	border-bottom: solid 1px #3aa6ea;
}

.heavier {
	font-weight: 400;
}

p {
	font-weight: 400;
}


















/*///////////////////////////////////// MAIN LAYOUT //////////////////////////// */
.columns {
	width: calc((100% - 40px) * 0.333333333333);
	float: left;
	margin-right: 20px;
	max-width: calc((100% - 24px) * 0.333333333333);
}

.featuredNews {
	width: calc((100% - 40px) * 0.7);
	flex-shrink:0;

}

.postSnippet {
	background-color: #F7F7F7;
	font-size: 18px;
}

.columns:nth-of-type(3n) {
	margin-right: 0px;
}

.columns2 {
	width: calc((100% - 20px) * 0.5);
	float: left;
	margin-right: 20px;
	max-width: calc((100% - 20px) * 0.5);
}

.columns2:nth-of-type(2n) {
	margin-right: 0px;
}

.columns4.noMargin {
	margin-right: 0px;
	width: calc((100%) * 0.25);
}

.flexContainer {
	display:flex;
	flex-direction: row;
	align-items: flex-start;
	/*justify-content: space-between;*/
	flex-wrap: wrap;
	align-items:stretch;
}

.flexContainerReverse {
	display:flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items:stretch;
}

.flexContainerVC {
	display:flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flexContainerCenter {
	display:flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.flexContainerCenterY {
	display:flex;
	flex-direction: row;
	align-items: center;
}

.flexContainerStart {
	display:flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: nowrap;
	align-items:flex-start;
}

.flexContainerColumn {
	display:flex;
	flex-direction: column;
	justify-content: flex-start;
	flex-wrap: nowrap;
	align-items:flex-start;
}

.flexNoWrap {
	flex-wrap:nowrap;
}

.flexColumn {
	flex-direction: column;
}

.bigColumn {
	width: calc((100% - 0px) * 0.66666666);

}

.halfColumn {
	width: calc(50%);
}

.halfColumnGutter {
	width: calc(50% - 10px);
	flex-grow:0;
}

.smallColumn {
	top: 0;
	width: calc(33.333333333% - 5px);
	font-size: 18px;
	line-height: 26px;
	color: #2c4c70;
	flex-grow:0;
}

.smallColumn.marginRight {
		margin-right: 30px;
}

.smallColumn.withGutter {
	width: calc(33.333333333% - 25px);
}

.smallColumn.withCTA {
	padding-bottom:110px;
}

.smallColumn.withViewFull {
	padding-bottom:90px;
}

.viewFullButton {
	width: calc(100% - 40px);
	display: block;
	bottom:20px;
	background-color: #216e9f;
	border-radius: 20px;
	padding: 10px 20px;
	color: #FFF;
	position: absolute;
	cursor: pointer;
}

.viewFullButton:link, .viewFullButton:visited {
	color: #FFF;
}

.viewFullButton:hover {
	text-decoration: none;
	background-color: #317eaf;
}

.buttonRightArrow {
	float:right;
	width:10px;
	margin-top: 6px;
	margin-right: -5px;
}

.greyBackground {
	background-color: #222;
}














/*///////////////////////////////////// CARDS //////////////////////////// */
.card {
	background-color: #FFF;
	box-shadow: 1px 2px 5px rgba(0,0,0,0.1);
}

a.card:link, a.card:visited {
	text-decoration: none;
	color: inherit;
}

a.card:hover {
	text-decoration: none;
	color: inherit;
}

a.card h3 {
	color: #4d85c3;
}

h3.contact {
	margin-bottom: 0px;
	margin-top: 20px;
}









/*////////////////////////////////////////////////////// PHOTO GRID */
.overlayHover {
	cursor: pointer;
}

.overlayTitle {
	position: absolute;
	text-align: right;
	font-size: 24px;
	bottom: 10px;
	right: 10px;
	z-index: 10;
	color: rgba(255,255,255,0.8);
	opacity: 0;
	line-height: 30px;
}











/*////////////////////////////////////////////////////// BUTTONS */

.readMore {
	border-radius: 20px;
	line-height: 50px;
	padding: 5px 20px;
	height: 40px;
	text-align: center;
	font-size: 22px;
	cursor: pointer;
	background-color: #216e9f;
	color: #FFF;
	font-weight: 300;
	display: block;
	line-height: 30px;
	width: fit-content;
	flex-grow:0;

	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;

}

a.button {
	border-radius: 20px;
	line-height: 50px;
	padding: 5px 20px;
	height: 40px;
	text-align: center;
	font-size: 22px;
	cursor: pointer;
	background-color: #216e9f;
	color: #FFF;
	font-weight: 300;
	display: block;
	line-height: 30px;

}

a.button.bigButton {
	padding: 10px 30px;
	height: 50px;
	border-radius: 30px;
}

a.button.small {
	border-radius: 20px;
	line-height: 30px;
	padding: 5px 10px;
	height: 25px;
	font-size: 16px;
	line-height: 15px;
	font-weight: 300;

}

a.button.hollowButton {
	color: #216e9f;
	border: solid 2px #216e9f;
	box-sizing: border-box;
	line-height: 25px;
	background-color: transparent;
	cursor: pointer;
}

a.button.hollowButton * {
	cursor: pointer;
}

a.button.hollowButton.whiteButton {
	border-color: #FFF;
	color: #FFF;
}
a.button:hover {
	background-color: #3aa6ea;
	text-decoration: none;
}


a.button.hollowButton:hover {
	background-color: #3aa6ea;
	color: #FFF;
}

a.button.hollowButton:hover {
	background-color: #c0e0f7;
	color: #FFF;

}

a.button.hollowButton.whiteButton:hover {
	color: #4d85c3;
}


a.button.selected {
	background-color: #3aa6ea;
	font-weight: 400;
}



a.whiteButton {
	background-color: #FFF;	
	color: #4d85c3;
	font-weight: 400;
}

a.whiteButton.hollowButton {
	font-weight: 300;
}

a.whiteButton:hover {
	background-color: #c0e0f7;
	text-decoration: none;
}

a.ctaButton {
	background-color: #4d85c3;
	color: #FFF;
	font-size: 22px;
	text-decoration: none;
}

a.ctaButton:hover {
	background-color: #60b0e7;
}

a.button.marginRight {
	margin-right: 10px;
}


.playButton {
	border-radius: 100px;
	height: 100px;
	width: 100px;
	max-width: 100px;
	text-align: center;
	line-height: 100px;
	font-size: 60px;
	padding-left: 10px;
	padding-top: 2px;
	color: rgba(0,0,0,0.7);
	background-color: rgba(255,255,255,0.5);
	cursor: pointer;
}

.playButton:hover {
	background-color: rgba(255,255,255,0.8);
}

.filterButton {
	margin-right: 5px;
	margin-bottom: 5px;
}

.aboutButtons {
	margin-top: 30px;
}



.bigImage {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}

.bigImageContainer {
	padding-bottom: calc((100% - 15px) * 0.6666666 * 0.666666666);
}
















/*////////////////////////////////////////////////////// Header */
header {
	/*background-color: #FFF;*/
	width: 100%;
	height: 60px;
	border-bottom: solid 1px rgba(153,213,255,1);
	background-color: #000;
}

.subHeader { 
	background-color: #1a85e0;
	border-bottom: solid 1px rgba(153,213,255,1);
}

.subHeaderHeading {
	font-size: 16px;
	color: rgba(153,213,255,1);
}

.image3 {
	flex-shrink:1;
	width:33.33333%;

}

.headerContainer {
	background-color: #000;
	height: 100%;
	width: 100%;
}


nav {
	z-index: 3;
	height: 40px;
	margin-top: 10px;
	overflow: visible;
	width: calc(100% - 130px);
	float: right;
}

nav ul {
	margin:0;
	float:right;
	list-style: none;
	height: 100%;
	overflow: visible;
}

nav li {
	list-style: none;
	float: left;
	margin-right: 10px;
	text-decoration: none;	
	height: 100%;
	line-height:40px;
	border-radius: 25px;
}

nav li:nth-last-child(1) {
	margin-right: -15px;
}


nav ul li a {
	padding: 0px 15px;
	display: block;
}

nav ul li a:link, nav ul li a:visited {
	color: #FFF;
	font-size: 20px;
}


nav ul li a:hover {
	text-decoration: none;
}


nav * .selected {
	background-color: #3aa6ea;
	box-shadow: inset 0px 0px 20px rgba(0,0,0,0.2);
}

nav * .selected a:link, nav * .selected a:visited {
	color: #FFF;
}

nav ul li.search {
	cursor: pointer;
}



a.cartButton {
	position: relative;
	float: right;
	clear: both;
	right: 0px;
	z-index: 99999;
	color: #FFF;
	height: 30px;
	background-color: #3aa6ea;
	padding: 0px 20px;
	border-radius: 20px;
	line-height: 28px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

.cartButton a:link, .cartButton a:visited{

}

.cartButtonContainer {
	position: absolute;
	width: 100%;
}

.cartButtonContainer .margins {
	height: auto;
	width: 100%;
	overflow: visible;
}

a.cartButton:hover {
	text-decoration: none;
	background-color: #5ac6fa;
}

.logoImage {
	float: left;
	width: 120px;
	margin-top: 13px;
	/* margin-bottom: 24px; */
	left: -5px;
}

.aboutText {
	flex-shrink: 20;
}

.aboutLogoContainer {
	box-shadow: 2px 2px 20px rgba(0,0,0,0.3);

}

.aboutLogo {
	width: 100%;
	border: solid 10px #FFF;

}

.searchContainer {
	margin-top: 37px;
	float:right;
	width: 250px;
	overflow:visible;
}

.searchContainer form {
	overflow: visible;
}

.searchContainer input {
	border: solid 1px #abb2b6;
	height: 34px;
	border-radius: 30px;
	padding: 0px;
	padding-left: 33px;
	padding-right: 5px;
	font-size: 20px;
	width: 100%;
	line-height: 24px;
	z-index: 998;
}

.searchContainer input:focus{
    outline: none;
}

.searchIcon {
	height: 40px;
	margin:0 0px;
	margin-top: 0px;
	cursor: pointer;
	padding: 10px;
	float:left;
}

.searchIconWhite {
	position: absolute;
	cursor: pointer;
	left:0;
	top:0px;
	height: 40px;
}

.searchField {
	border: none;
	width: 0;
	margin-top: 00px;
	position: relative;
	display: block;
	height: 40px;
	
	background-color: transparent;
	color: #FFF;
	font-size: 20px;
	line-height: 30px;
	float:left;
}

.searchField.searchPage {
	width: 200px;
}

.menuButton {
	float: right;
	width: 60px;
	padding: 20px;
	padding-right: 15px;
	padding-left: 25px;
	margin-top: 2px;
	margin-right: -15px;
	color: #6b757c;
	cursor: pointer;
}

.menuButton.selected {

}

.autocompleteContainer {
	position: absolute;
	background-color: rgb(220,240,255);
	z-index: 2;
	display: none;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.autocompleteOption {
	border-bottom: solid 1px rgb(200,220,235);
	padding: 5px 10px;
	display: block;
}

.autocompleteOption.selected {
	background-color: rgba(255,255,255,0.5);
}

.autocompleteOption:nth-child(1) {
	padding-top: 25px;
}

.autocompleteOption:nth-last-child(1) {
	border-bottom: none;
}

.autocompleteOption:hover {
	background-color: rgba(255,255,255,0.5);
	text-decoration: none;
}
















/*////////////////////////////////////////////////////// Sections */

section {
	overflow: hidden;
	width: 100%;
	color: #454b4f;
}

.pageSection {
	background-color: #94abbe;
}

.whiteSection {
	background-color: #FFF;
}

.lighterSection {
	background-color: #e7edf5;
}

.darkerSection {
	background-color: #151A20;
}

.blueSection {
	background-color: #216e9f;
	color: #FFF;
	display: block;
}

.lightBlueSection {
		background-color: #7bd0f3;
}

.lighterBlueSection {
	background-color: #c9ebf9;
}

.gallerySection {
	height: calc(100% - 60px);
	margin-top: 0px;
	z-index: 99;
}

.ctaSection {
	background-color: #4d85c3;
	color: #FFF;
	font-size: 24px;
}


.marginSection {
	padding-top: 20px;
}

.bigMarginSection {
	padding-bottom: 40px;
	padding-top: 40px;
}


h2.sectionTitle {
	margin-bottom: 10px;
	font-weight: 300;
	color: #2c4c70;
}

h2.homePageTitle {
	text-align: center;
	font-size: 60px;
	line-height: 80px;
	color: #FFF;
	text-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}

h2.homePageTitle span.underwater {
	font-weight: 300;
	color: #6dc2ff;
}

h2.homePageTitle span.ampersand {
	font-weight: 300;
	font-size: 30px;
	top: -5px;
}

h2.homePageTitle span.wild {
	font-weight: 300;
	font-style: italic;
}

h3.homePageSubtitle {
	font-weight: 400;
	text-align: center;
	font-size: 20px;
	line-height: 30px;
	margin-top: -22px;
	color: #6eaeff;
	text-shadow: 0px 0px 2px rgba(0,0,0,0.4);
}


section .margins {
	overflow: hidden;
}

.sectionSubtitle {
	font-size: 30px;
	color: #83c6f0;
}






























/*////////////////////////////////////////////////////// Heading Tags */
h1 {
	margin-top: 30px;
	margin-bottom: 20px;
	font-size: 50px;
	color: #FFF;
	text-align: left;
	line-height: 60px;
	overflow: visible;
	font-weight: 300;
}

h2 {
	margin:0;
	margin-top: 0px;
	font-size: 45px;
	color: #216e9f;
	overflow: visible;
	font-weight: 300;
	line-height: 45px;
	margin-bottom: 5px;

}

h3 {
	margin-top: 0px;
	margin-bottom: 5px;
	font-size: 30px;
	line-height: 34px;
	color: #454b4f;
	color: #2c4c70;
	overflow: visible;
	font-weight: 300;
}

h3 a:link ,  h3 a:visited {
	font-size: 24px;
	line-height: 30px;
	color: #2c4c70;
	overflow: visible;
}

h4 {
	color: #216e9f;
	font-size: 20px;
	overflow: visible;
}

h4.smallColumnSubtitle {
	margin-bottom: 20px;
	margin-top:5px;
}

.blueSection * h2 {
	color: #FFF;
}

.pageHeading {
	padding: 20px 00px;
}






























/*////////////////////////////////////////////////////// Custom Headings */
.date {
	margin-top: -7px;
	font-size: 16px;
	margin-bottom: 10px;
}

.viewMore {
	margin-top: -52px;
	z-index: 1;
}

.viewMore a:link, .viewMore a:visited {
	font-size: 20px;
	color: #506e88;
}

.viewMore a:hover {
	color: #708ea8;
}

.subheading {
	color: #90a8c2;
	margin-top: -20px;
	margin-bottom: 40px;
	font-size: 20px;
}

.photoTitle {
 	margin-top: 0px;
	margin-bottom: 18px;
	text-align: center;
	line-height: 50px;
	padding-bottom: 5px;
	color: #555;
}

.galleryPhoto {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.galleryPhotoContainer {
	flex-shrink:1;
	height: 100%;
}

.gallery.photoTitle {
	text-align: left;
	font-size: 30px;
	line-height: 35px;
	color: #FFF;
	margin-top: 0px;
	margin-bottom: 5px;
	flex-shrink: 0;
}

.gallery.photoLocation {
	text-align: left;
	margin-top: -15px;
	flex-shrink:0;
	margin-bottom: 0px;
	color: #99d5ff;
}

.gallery.photoDescription {
	margin-bottom: 20px;
	color:#AAA;
	font-size: 18px;
}


.galleryInfo {
	margin-top: 20px;
	flex-wrap: wrap;
	flex-shrink: 0;
	flex-grow: 0;
	background-color: #022e3f;
}

.galleryBuyButton {
	flex-grow:0;
	flex-shrink:0;
	background-color: #216e9f;
	color: #CCC;
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	cursor:pointer;
	display: block;
	margin-left: 15px;
	margin-bottom: 0px;
	margin-top:-50px;
	z-index: 9999;
}

.galleryBuyButton.mobileOnly {
	display: none;
}


.galleryBuyButton:hover {
	text-decoration: none;
	background-color: #317eaf;
}


.galleryArrowContainer {

}

.galleryArrow {
	flex-grow:0;
	width: 60px;
	opacity: 0.5;
	padding: 20px;
	cursor: pointer;
	margin-top: 0px;
}

/*

.galleryBack {
	display: block;
	position: absolute;
	float:left;
	background-color: #000;
	color: #CCC;
	border-radius: 20px;
	height: 40px;
	line-height: 38px;
	padding: 0 15px;
	cursor:pointer;
	border-bottom-left-radius: 0px;
	border-top-left-radius: 0px;
	margin-bottom: 20px;
	overflow: visible;
	border: solid 1px #FFF;
	border-left: none;
	padding-left: 10px;
	z-index: 10;
	margin-left: 25px;
	margin-top: 0px;
	opacity: 0.7;
}*/

.galleryBack {

}

.galleryBack:hover {
	text-decoration: none;
}

.galleryBackTriangle {
	content: '';
	display: block;
	background-color: #000;
	transform: rotate(45deg);
	left: -14px;
	position: absolute;
	width: 28px;
	height: 28px;
	top: 5px;
	border-bottom: solid 1px #FFF;
	border-left: solid 1px #FFF;
	z-index: 2;
}

.galleryBackText {
	z-index: 5;
	margin-left: -6px;
}

.button:hover {
	background-color: #317eaf;
}

.galleryInfo {
	padding: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.galleryBack.mobileOnly {
	display: none;
}





























/*////////////////////////////////////////////////////// Filters */

.filterContainer {
	overflow: hidden;
	/*background-color: #324b65;*/
	width: calc(100% + 40px);
	margin-left: -20px;
	padding: 8px 20px;
	margin-bottom: -10px;
}

.filterContainer2{
	box-shadow: inset 0px 2px 20px rgba(0,0,0,0.5);
}

.filterContainer ul {
	list-style-type: none;
	padding:0;
	margin:0;
	margin-left: -15px;
}

.filterContainer ul li {
	float: left;
	margin-right: 0px;
	padding: 6px 15px;
	line-height: 18px;
}

.filterContainer ul li a {
	color: #d9e2ea;
}

.filterContainer ul .selected {
	background-color: #4d85c3;
	border-radius: 40px;
}

.filterContainer ul .selected a {
	color: #FFF;
}


.filterDropdown {
	color: #FFF;
	width:100%;
	background-color: #4d85c3;
	border-radius: 40px;
	padding: 6px 15px;
	cursor: pointer;
}

.filterArrow {
	float:right;
	font-size: 16px;
	line-height: 24px;
	
}


































/*////////////////////////////////////////////////////// Header */
.breadcrumbContainer {
	padding: 5px 0px;
	font-size: 16px;
	height: 40px;
	overflow: hidden;
	background-color: #324b65;
}

.breadcrumbs {
	list-style-type: none;
	margin: 0;
	padding:0;

}

.breadcrumbs li {
	font-size: 16px;
	color: #b4c4d7;
	height: 30px;
	line-height: 30px;
	float:left;
}

.breadcrumbs li a {
	font-size: 16px;
	color: #b4c4d7;
}

.breadcrumbLink {
		margin: 0;
	/* float: left; */
	position: absolute;
	z-index: 100;
}

.breadcrumbArrow {
	margin-right: 5px;
	margin-left: 7px;
	float:right;
}


























/*////////////////////////////////////////////////////// Footer */



footer {
	width: 100%;
	background-color: #0d141c; /* #04131f;*/
	line-height: 24px;
	padding-top: 30px;
	z-index: 3;
	padding-bottom: 0px;
}

footer .flexContainer {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footerSection {
	margin-right: 20px;
	flex-grow:0;
	margin-bottom: 20px;

}

.footerSection:nth-of-type(5n) {
	margin-right: 0px;
}

footer * h5 {
	margin-top: 0;
	margin-bottom: 10px;
}


footer * h5 a {
	color: #FFF;
	font-size: 28px;
	line-height: 30px;
}


footer * h6 {
	margin:0;
	line-height: 30px;

}

footer * h6 a {
	color: #83c6f0;
	font-size: 20px;
}

.footerContactSection {
	background-color: #0a1016;
	padding: 20px 0;
}

.contactHeader {
	margin-right: 10px;
	margin-bottom: -5px;
	font-size: 22px;
	color: #FFF;
	line-height: 30px;
}





















































/* YouTube */









/*  TUTORIAL  */






/* Home */
.homeFeatureImageContainer {
	position: relative;
	display: block;
	padding:30px 0;
	background-color: #000;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	object-fit: cover;
}

a.homeFeatureImageContainer:link, a.homeFeatureImageContainer:visited {
	text-decoration: none;
}

a.homeFeatureImageContainer:hover {
	text-decoration: none;
}

.featureBackgroundImage {
	opacity: 0.5;
	display: block;
	position: absolute;
	margin: -30px 0;
	object-fit: cover;
	width:100%;
	height: 100%;
}


.featureImageBorder {
	width: 250px;
	border:solid 5px #FFF;
	float: left;
	flex-grow:0;
	flex-shrink:0;
	margin-right: 50px;
}

.featureText {
	flex-shrink:6;
	overflow: visible;
}

.noun {
	color: #CCC;
	font-weight: 300;
	font-size: 20px;
	line-height: 16px;
	margin-left: 5px;
	top: 0px;
	position: relative;
	display: inline-block;
}

.featureText.home {
	padding: 00px 0;
	text-align: center;
	background-color: rgba(0,0,0,0.8);
	display: inline-block;
	padding: 15px 20px;
	margin-bottom: 150px;
	opacity: 0;
}


.featureText.smallLeftMargin {
	margin-left: 20px;
}

.featureTitle {
	font-size: 45px;
	color: #216e9f;
	flex-shrink:6;
	line-height: 50px;
	overflow: visible;
	font-weight: 300;
}

.featureTitle.home {
	text-align: left;
	font-size: 40px;
	line-height: 45px;
	font-weight: 300;
	overflow: visible;
	color: #FFF;
	
}

.featureSubtitle {
	font-size: 30px;
	color: #0e83ce;
	overflow: visible;
	font-weight: 300;
	line-height: 35px;
}

.featureSubtitle.home {
	text-align: left;
	font-size: 30px;
	margin-top: -5px;
	line-height: 33px;
	font-style: italic;
	color: rgba(153,213,255,1);
}

.featureRightArrow {
	width: 28px;
	flex-grow:0;
	flex-shrink:0;
	margin-left: 20px;
}








.secondFeatureItemContainer {
	width:100%;
	background-color: #0d141c;
}

.secondFeatureItemContainer ul {
	
	width: calc(100% + 20px);
	left:-10px;
}

.secondFeatureItem {
	padding: 10px 10px;
	flex-grow:0;
	width: calc(33.333333333%);
	cursor:pointer;
}

.secondFeatureItem:hover {
	background-color: #1d242c;
}

.secondFeatureItem:nth-child(1) {

}

.secondFeatureItem:nth-child(2) {
	border-right: solid 1px #2f3545;
	border-left: solid 1px #2f3545;
}

.secondFeatureImageBorder {
	width: 80px;
	border:solid 3px #FFF;
	float: left;
	flex-grow:0;
	flex-shrink:0;
}

.secondFeatureText {
	margin-left: 15px;
	flex-shrink:6;
}

.secondFeatureTitle {
	font-size: 15px;
	float: left;
	color: #FFF;
	clear: both;
	flex-shrink:6;
	line-height: 18px;
	overflow: visible;
}

.secondFeatureSubtitle {
	font-size: 14px;
	color: #3aa6ea;
	float: left;
	clear: both;
}

.secondFeatureRightArrow {
	width: 10px;
	flex-grow:0;
	flex-shrink:1;
	margin-left: 10px;
	margin-right: 00px;
}

.secondFeatureImageBorder.light {
	width: 60px;
	border: none;
}

.secondFeatureItemContainer.light {
	background-color: #FFF;
}

.secondFeatureTitle.light {
	color: #2c4c70;
}

.secondFeatureSubtitle.light {
	color: #216e9f;
}

.secondFeatureItem.light:hover {
	background-color: #CFE5FF;
}

.secondFeatureItem.light:nth-child(2) {
	border-right: solid 1px #2c4c70;
	border-left: solid 1px #2c4c70;
}

.featureSubtitle.bookContent {
	color: #83c6f0;
}

.bookCover {
	float:left;
	width: 600px;
	margin-right: 40px;
	margin-left: -265px;
}

.bookContent {
	width: calc(100% - 380px);
	color: #FFF;
	float: left;
}

.bookContent p {
	margin-top: 0;
	margin-bottom: 1em;
	overflow: visible;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
}

a.bookReadMore {
	background-color: #FFF;
	margin-top: 0px;
	width: initial;
	position: relative;
	color: #216e9f;
	float: left;
	flex-grow:0;

}

a.bookReadMore:link, a.bookReadMore:visited {
	color: #216e9f;
}

a.bookReadMore:hover {
	background-color: #DDD;
	color: #216e9f;
}

.bookSpread {
	width:300px;
	margin-top: 20px;
}

.comingSoon {
	float:left;
	margin-right: 20px;
	margin-top: -10px;
	font-size: 30px;
	line-height: 35px;
	font-weight: 300;
}

.bookNotifyMe {
	
	width: 100%;
}

.notifyMeInput {
	width: calc(100% - 140px);
	float:left;
	line-height: 30px;
	height: 40px;
	border:none;
	border-radius: 10px;
	margin-top: 20px;
	color: #216e9f;
	padding: 0px 10px;
	font-size: 22px;
	max-width: 400px;
	margin-bottom: -20px;
}


.bookNotifyMe .viewFullButton {
	background-color: #FFF;
	margin:0;
	position: relative;
	width: 120px;
	margin-left: 20px;
	float:left;
	margin-top: 40px;
	height: 40px;
	line-height: 20px;
	color: #216e9f;
	border:none;
	margin-bottom: -20px;
}

.bookNotifyMe .viewFullButton:hover {
	background-color: #DDD;
	color: #216e9f;
}




.toolFeatureItem {
	width:100%;
}

.toolFeatureImage {
	height: 50px;
	width: 50px;
	flex-grow:0;
	flex-shrink:0;
	margin-right: 10px;
}

.toolFeatureRightArrow {
	height: 20px;
	flex-grow:0;
	flex-shrink:0;
}

.toolFeatureTitle {
	font-size: 22px;
	line-height: 24px;
	overflow: visible;
}

.toolFeatureSubtitle {
	color: rgb(94, 125, 143);
}

.toolFeatureItem:hover  {
	text-decoration: none;
}

.quoteAttribution {
	float:right;
	font-style: italic;
	font-size: 20px;
	color: #445661;
	margin-top: -20px;
}



















































.pagination {
	width: 100%;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 10px;
}

.paginationNumbers {
	list-style-type: none;
	position: relative;
	line-height: 38px;
	z-index: 3;
	margin-bottom: 5px;
	color: #216e9f;
}

.paginationNumbers a {
	list-style-type: none;
	margin: 0 5px;
	display: inline-block;
	padding: 5px 10px;
	margin: 0px 2px;
	font-size: 22px;
	color: #216e9f;
	line-height: 25px;
	margin-top: 20px;
	border: solid 1px;
	border-radius: 10px;
}

.paginationNumbers a.disabled {
	pointer-events:none;
	border: solid 1px #81beef;
	color: #81beef;
}

.paginationNumbers a:hover {
	text-decoration: none;
	background-color: #3aa6ea;
	color: #FFF;
}

.paginationNumbers .selected {
	background-color: #3aa6ea;
	color: #FFF;
}








.sidebar {
	background-color: #c8d9e3;
	color: #576a77;
	font-size: 18px;
	line-height: 30px;
	display: flex;
	flex-direction: column;
}

.sidebar * {
	flex-grow:0;
}

a.sidebarButton {
	height: 50px;
	font-size: 22px;
	background-color: #beced9;
	display: block;
	padding: 12px 20px;
	color: #576a77;
	border-bottom: solid 1px #b2c1ca;
	border-top: solid 1px rgba(255,255,255,0.2);
	line-height: 24px;
}

a.sidebarButton.selected {
	background-color: #3aa6ea;
	color: #FFF;
}

a.sidebarButton:hover {
	text-decoration: none;
	background-color: #3aa6ea;
	color: #FFF;
}


.sidebarText.home p {
	margin-top: 0;
	margin-bottom: 1em;
	overflow: visible;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	color: #445661;
}

.sidebarText.home p:nth-last-child(1) {
	margin-bottom: 0;
}

.sidebarTitle {
	font-size: 30px;
	margin-bottom: 10px;
}

.smallColumnTitle {
	margin-bottom: 5px;
}

.sidebarLink {
	clear: both;
	width:100%;
	float: left;
}

.productDescription {
	flex-grow:1;
}

.updatedDate {
	font-size:24px;
	color: #374a57;
	font-weight: 300;
}

.byLine {
	font-weight: 300;
	font-size: 20px;
	color: #374a57;
}

.originalDate {
	font-weight: 400;
	font-size: 16px;
	top: 0px;
}



.newsItem {
	border: solid 1px #3aa6ea;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	margin-top: -1px;
	margin-bottom: 20px;
}

.newsItem:nth-child(1) {
	margin-top: 0px;
}

.newsItemColumn2 {
	margin-top: 0px;
	min-height: 500px;
}



a.newsItem:hover {
	text-decoration: none;
}


.newsItemThumbContainer {
	padding-bottom: 66.6667%;
}

.flexWrap {
	flex-wrap:wrap;
}

.newsThumbContainer {
	width: 250px;
	min-height: 166px;
	flex-grow: 0;
	flex-shrink: 0;
}

.newsThumb {
	width: 250px;
	object-fit: cover;
	float: left;
	flex-grow:0;
	flex-shrink: 0;
	width: 100%;
	min-height: 100%;
	position: absolute;
}

.featuredNewsThumb {
	position: relative;
}

.newsItemColumn {
	margin-top:0px;
}

.newsType {
	font-size: 18px;
	margin-bottom: 0px;
	text-transform: capitalize;
	font-weight: 400;
	float: left;
	color: #5e7d8f;
}

.newsTitle {
	color: #216e9f;
	font-size: 24px;
	line-height: 26px;
	margin-bottom: 0px;
	font-weight: 400;
}

.newsDate {
	color: #5e7d8f;
	font-weight: 400;
	font-size: 18px;
	float: left;
}


.thumbFlexContainer {
	align-items: stretch;
	flex-grow:0;
}














.photoLocation {
	color: #444;
	text-align: center;
	margin-top: -10px;
	margin-bottom: 20px;
}

.buyCTAContainer {
	bottom: 0px;
	left: 0;
	position: absolute;
	width: 100%;
	padding: 0 30px;
	box-sizing: border-box;
	padding-top:0;

	bottom: -20px;
	left: -30px;
	position: relative;
	width: calc(100% + 60px);
	margin-top: 0px;

}

.buyCTAContainer.border {
	border-top: solid 1px #576a77;
	padding-top: 10px;
}

.buyCTA {
	float: left;
	background-color: #3aa6ea;
	height: 80px;
	width: calc(100% + 60px);
	left: -30px;
	text-align: center;
	box-sizing: border-box;
	color: #FFF;
	line-height: 80px;
	font-size: 22px;
	cursor: pointer;
	margin-top: 10px;
	text-decoration: none;
}


.price {
	float: right;
	font-size: 35px;
	width: 100%;
	text-align: right;
	overflow: visible;
	line-height: 40px;
	margin-top: -8px;
}

.priceCurrency {
	display: inline-block;
	margin-left: 5px;
	font-size: 20px;
	top: 12px;
	line-height: 40px;
}

.shipping {
	text-align: right;
	top: -5px;
	width: 100%;

}

.buyCTAContainer a:hover  {
	text-decoration: none;
}

.buyCTA:hover {
	background-color: #60b0e7;
}


.photoBuyArea {
	background-color: #FFF;

	padding: 30px;
	z-index: 1;
	width:100%;
}

.descriptionCTAPadding {
	padding-bottom: 165px;
}

.photoBackground {
	background-color: #EAEAEF;
	box-shadow: inset -1px 0px 1px rgba(0,0,0,0.1);
}
















/* Cart */
.bigImagePreview {
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	flex-shrink: 0;
	flex-grow: 1;
	max-width: 100%;
	max-height: 100%;
}

.bigImagePreviewContainer {
	padding-bottom: 0;
}

.previewThumbContainer {
	width: 100%;
	margin-bottom: 25px;
}

.previewThumb {
	width: calc(25% - 4px);
	margin-right: 5px;
	float: left;
}

.previewThumb:nth-of-type(4n) {
	margin-right: 0px;
}




.previewThumbSize {
	box-sizing: border-box;
	border: solid 1px #CCC;
	text-align: center;
	height: 0px;
	padding-bottom:  calc(25% - 4px);
	width: calc(25% - 4px);
	margin-bottom: 5px; 


}



.previewThumbSizeInner {
	position: absolute;
	height: 52px;
	top:0;
	padding-top: 5px;
	bottom:0;
	right:0;
	left:0;
	margin: auto;
	font-size: 20px;
	text-align: center;
	box-sizing: border-box;
}

.sizeUnit {
	font-size: 14px;
	float: center;
	width: 100%;
	margin-top: -5px;
}

.previewImage {
	position:absolute;
	width: 50%;

	top: 15%;
	left: 26%;
	box-shadow: 1px 3px 5px rgba(0,0,0,0.5);
}


.waterMark {
	position: absolute;
	bottom: 5%;
	right: 5%;
	width: 25%;
}

.productDropdownContainer {
	width: 100%;
	border: solid 2px #576a77;
	background-color: #FFF;
	margin-bottom: 20px;
	border-radius: 10px;
	margin-top: 8px;
}

.productDropdownContainer.focus {
	border: solid 2px #4d85c3;
}

.productDropdown {
	width:100%;
	border: none;
	background-color: transparent;
	padding: 0px 10px;
	font-size: 18px;
	color: #444;
	height: 45px;
	line-height: 30px;
}

.productDropdownContainer::after {
	content: '\25BC\FE0E';
	font-size: 12px;
	transform: scale(1.3,1);
	background-color: transparent;
	color: #444;
	padding: 10px 10px;
	right:0;
	top:0px;
	position: absolute;
	pointer-events:none;
}

.cartItemList {
	margin-top: -20px;
}

.cartProductRow {
	margin-bottom: 0px;
	border-top: solid 1px #CCC;
	padding: 20px 20px;
	display:flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items:center;
	width:calc(100% + 40px);
	padding: 20px 20px;
	left:-20px;
}

.cartProductRow:nth-child(1) {
	border-top:none;
}

.cartProductImage {
	float:left;
	max-width: 150px; 
	margin-right: 30px;
	flex-shrink:0;
}

.cartProductDescription {
	flex-grow: 3;
	margin-right: 30px;
}

a.cartProductTitle {
	font-size: 30px;
	color:#216e9f;

}

.cartProductSubtitle {
	font-size: 24px;
}

.cartProductRHS {
	flex-grow: 0;
	flex-shrink:0;
}

.cartProductUpdate {
	text-align: right;
	margin-right: 10px;
	flex-grow:0;
	float:left;
	line-height: 35px;
}

.cartProductUpdateBox {
	border: solid 1px #abb2b6;
	width:50px;
	height: 34px;
	border-radius: 30px;
	font-size: 20px;
	line-height: 22px;
	text-align: center;
}

.cartProductPrice {
	font-size: 28px;
	text-align: right;
	color: #777;
	flex-grow:0;
	width:100px;
}

.cartTotalLabel {
	font-size: 28px;
	display: inline;
	margin-right: 20px;
}

.cartTotalLabel {
	float: right;

}

.cartTotalLabel.subtotal, .cartTotalLabel.shippingTotal {
	font-size: 20px;
}

.cartTitle {
	margin-bottom: 10px;
	font-size: 35px;
	color:#216e9f;
	margin-top: -5px;
	line-height: 35px;
	padding:0;
	font-weight: 300;
}

.cartSubtitle {
	float: right;
	margin-top: -40px;
}

.checkoutCTA {
	max-width: 300px;
	float:right;
	position: relative;
	margin-top: 20px;
	margin-bottom: -20px;
}

.cartProductRemove {
	color: #dd4d65;
	cursor: pointer;
	float:left;
}

.cartUpdateButton {
	color: #4d85c3;
	cursor: pointer;
	float: right;
	line-height: 35px;
	margin-left: 5px;
	font-size: 16px;
}

.cartUpdateButton:hover {
	text-decoration: underline;
}


.cartProductPrice.total {
	color: #444;
	float:right;
	width: 100px;
}

.cartProductPrice.subtotal {
	color: #444;
	float:right;
	font-size: 20px;
	width: 100px;
}

.cartProductPrice.shippingTotal {
	color: #444;
	float:right;
	font-size: 20px;
	width: 100px;
}

.cartProductRow.total, .cartProductRow.shippingTotal, .cartProductRow.subtotal {
	display: block;
	padding:10px 20px;
}

.cartProductRow.total {
	background-color: #EFF3F6;
	border-bottom: solid 1px #CCC;
	margin-bottom: 20px;
}

.changeCountryDropdownContainer {
	width: calc(100% - 140px);
	border: solid 1px #CCC;
	background-color: #FFF;
	border-radius: 10px;
	margin-top: 0px;
	float: left;
	margin-bottom: 5px;
}

.changeCountryDropdownContainer::after {
	content: '\25BC\FE0E';
	font-size: 12px;
	transform: scale(1.3,1);
	background-color: transparent;
	color: #444;
	padding: 10px 10px;
	right:0;
	top:-7px;
	position: absolute;
	pointer-events:none;
}




.cartProductRemove:hover {
	text-decoration: underline;
}

.smallCart .cartItemList {
	margin-top: 0px;
}

.smallCart .cartProductImage {
	width:50px;
	margin-right: 10px;
	flex-grow: 0;
}

.smallCart .cartItemList .cartProductRow .cartProductDescription .cartProductTitle {
	font-size: 18px;
}

.smallCart .cartItemList .cartProductRow .cartProductDescription .cartProductSubtitle {
	font-size: 14px;
	line-height: 20px;
	margin-top: -5px;
}

.smallCart .cartItemList .cartProductRow .cartProductDescription {
	margin-right: 10px;
}

.smallCart .cartItemList .cartProductRow .cartProductRHS .cartProductPrice {
	font-size: 20px;
	width:initial;
	line-height: 35px;
	color: #576a77;
}

.smallCart .cartItemList .cartProductRow .cartProductPrice.total,
.smallCart .cartItemList .cartProductRow .cartProductPrice.subtotal,
.smallCart .cartItemList .cartProductRow .cartProductPrice.shippingTotal {
	color: #576a77;
}

.smallCart .cartItemList .cartProductRow .cartProductRHS .cartProductUpdate {
	font-size: 14px;
	width:initial;
	line-height: 37px;
	margin-right: 20px;
}

.smallCart .cartTitle {
	font-size: 20px;
	margin-top: -8px;
}

.smallCart .cartSubtitle {
	font-size: 18px;
	margin-top: -39px;
}

.smallCart .cartProductRow {
	border-top: solid 1px #b8c9d3;
	padding: 10px 20px;
}

.smallCart .cartItemList .cartProductRow.total {
	padding-top: 10px;
	margin-bottom: 70px;
	background-color: #b8c9d3;
	border-bottom: solid 1px #b8c9d3;
}

.partialCart {
	max-width: 300px;
	float: right;
	z-index: 99999;
	background-color: #FFF;
	padding: 0px 20px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
	border-top: solid 1px #b8c9d3;
	height: 0;
	border-top: none;
}

.partialCart .smallCart {
	overflow: visible;
}

.partialCart * .cartProductRow {
	padding: 10px 0px;
	width: 100%;
	flex-wrap:wrap;
	left: 0px;
}

.partialCart * .cartProductRow:nth-child(1) {
	border-top: none;
}



.partialCart * .cartProductImage {
	width: 70px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.partialCart * .cartProductDescription {
	font-size: 22px;
	width: calc(100% - 80px);
	margin-right: 0px;
}	

.partialCart * a.cartProductTitle {
	font-size: 18px;
		line-height: 24px;
}	

.partialCart * .cartProductSubtitle {
	font-size: 16px;
	/* margin-top: -10px; */
	line-height: 20px;
}

.partialCart * .cartProductPrice {
	font-size: 20px;
	width: initial;
	float:right;
}

.partialCart * .cartProductPrice.total {
	float:right;
}

.partialCart * .cartProductRHS {
	flex-grow:1;
}

.partialCart * .cartProductUpdate {
	font-size: 16px;
}

.partialCart * .cartTotalLabel {
	font-size: 20px;
	line-height: 20px;
}

.partialCart * .shippingTotal, .partialCart * .subtotal {
	display: none;
}

.partialCart * .cartProductPrice.shippingTotal, .partialCart * .cartProductPrice.subtotal, .partialCart * .cartProductPrice.total  {
	font-size: 18px;
	line-height: 20px;
	float:right;
	width: auto;
}

.partialCart * .cartSubtitle, .smallCart .cartSubtitle {
	float: left;
	margin-top: -10px;
	margin-bottom: 10px;
}

.partialCart * .changeShipping {
	width: 100%;
}

.partialCart * .changeShippingDropdownContainer {
	width: 100%;
	margin-left: 0;
}

.partialCart * .checkoutCTA {
	max-width: initial;
	float: right;
	position: relative;
	margin-top: 40px;
	margin-bottom: -20px;
	float: left;
	width: 100%;
}

.partialCart * .buttonRightArrow {
	margin-top: 6px;
}


.partialCart * .cartProductRow.total {
	margin-left: -20px;
	margin-right: -20px;
	width: calc(100% + 40px);
	padding:10px 20px;
}

a.viewFullCart {
	float: left;
	margin-top: 0px;
	margin-bottom: 20px;
	width: 100%;
	padding: 10px 20px;
	background-color: #216e9f;
	color: #FFF;
	cursor: pointer;
	text-align: left;
	border-radius: 20px;
}

a.viewFullCart:hover {
	background-color: #418ebf;
	text-decoration: none;
}

.showingLastItems {
	font-size: 18px;
	text-align: center;
	display: block;
}











.checkoutLabel {
	float:left;
	clear: both;
	color: #216e9f;
	font-size: 18px;
	margin-right: 10px;
	width: 130px;
	line-height: 30px;
	margin-bottom:2px;
	text-align: right;
}

.checkoutTextInput {
	float:left;
	border: solid 1px #ccc;
	border-radius:7px;
	height: 30px;
	width: calc(100% - 140px);
	padding: 0 7px;
	margin-bottom: 5px;
}

.checkoutTextInput.success {
	border-color: #2C2;
}

.checkoutTextInput.failed {
	border-color: #c34d55;
}

.checkoutSeparator {
	position: relative;
	display: block;
	width: 100%;
	border-bottom: solid 1px #216e9f;
	margin-bottom: 15px;
	padding-bottom: 10px;
}

.checkoutSectionTitle {
	font-size: 14px;
	color: #216e9f;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.checkoutRequired {
	color: #c34d85;
	display: inline-block;
	line-height: 30px;
	float: right;
}

.checkoutNext {
	width: 90px;
	right:0;
	margin-right: 0px;
	height: 35px;
	line-height: 16px;
	bottom: 13px;
	margin-bottom: -10px;
	margin-top: -20px;
}


.checkoutStep {
	padding-bottom: 60px;
}

.checkoutSteps {
	width: calc(100% + 40px);
	position: relative;
	flex-shrink: 0;
	margin-left: -20px;
	margin-top: -20px;
	border-bottom:solid 1px #CCC;
	height: 59px;
}

.checkoutSteps a {
	width: calc(100% * 0.333333333);
	text-align: center;
	border-right:solid 1px #CCC;
	float:left;
	font-size: 16px;
	padding: 5px 0px;
}

.checkoutSteps a:hover {
	text-decoration: none;
	background-color: #cae6fa;
}


.checkoutSteps a.selected {
	background-color: #3aa6ea;
	color: #DDD;
}

.checkoutSteps a:nth-child(3) {
	border-right:none;
}

.checkoutSteps a .stepSubtitle {
	font-size: 22px;
	color: #216e9f;
}

.checkoutSteps a.selected .stepSubtitle {
	color: #FFF;
}

.checkoutComplete {
	float: left;
	background-color: #3aa6ea;
	height: 80px;
	width: calc(100% + 60px);
	left: -30px;
	text-align: center;
	box-sizing: border-box;
	color: #FFF;
	line-height: 80px;
	font-size: 22px;
	cursor: pointer;
	margin-top: 10px;
	text-decoration: none;
	border:none;

}

.checkoutComplete:hover {
	background-color: #60b0e7;
}




.checkoutPaddingTop {
	padding-top: 20px;
}

.bigPaddingTop {
	padding-top: 50px;
}

.checkoutTextExpiry {
	width: 50px;
	float:left;
	margin-right: 5px;
}

.checkoutTextCCV {
	width: 50px;
	float:left;
	margin-right: 10px;
}


.changeShipping {
	float: left;
	margin-top: 5px;
}

.changeShippingLabel {
	float: left;
	margin-top: 3px;
}

.changeShippingDropdownContainer {
	border: solid 1px #576a77;
	background-color: #FFF;
	border-radius: 10px;
	margin-top: 0px;
	float: left;
	margin-left: 10px;
	width: 250px;
}

.changeShippingDropdown, .changeBillingDropdown {
	width:100%;
	border: none;
	background-color: transparent;
	padding: 0px 10px;
	font-size: 18px;
	color: #444;
	height: 30px;
	line-height: 30px;
}

.changeShippingDropdownContainer::after {
	content: '\25BC\FE0E';
	font-size: 12px;
	transform: scale(1.3,1);
	background-color: transparent;
	color: #444;
	padding: 10px 10px;
	right:0;
	top:-7px;
	position: absolute;
	pointer-events:none;
}

.payment-errors {
	background-color: #c34d55;
	color:#FFF;
	border-radius: 5px;
	padding:0px 5px;
}

.couponApplyButton {
	display: block;
	background-color: #216e9f;
	border-radius: 20px;
	padding: 5px 20px;
	color: #FFF;
	position: relative;
	cursor: pointer;
	float: right;
	font-size: 18px;
	height:30px;
	line-height: 18px;
}

.couponApplyButton:hover {
	background-color: #317eaf;
}


















/* Login */
.login {
	max-width: 500px;
}

.formInputContainer {
	width: 100%;
	float:left;
	margin-bottom: 10px;
}

.formInputContainer label {
	width: 100px;
	float:left;
	display: block;
}

.formInputContainer input {
	width: calc(100% - 100px);
	float:left;
	display: block;
}

.submit {
	border-radius: 20px;
	line-height: 50px;
	padding: 0 50px;
	height: 50px;
	text-align: center;
	font-size: 22px;
	cursor: pointer;
	background-color: #4d85c3;	
	color: #FFF;
	border:none;
	float:right;
}

.submit:hover {
	background-color: #60b0e7;
}




.post {
	color: #445661;
	line-height:1.5em;
	font-weight: 400;
}

.post p {
	margin-top: 0;
	margin-bottom: 1em;
	overflow: visible;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	color: #445661;
}

.post p:nth-last-child(1) {
	margin-bottom: 0;
}

.post p.caption {
	margin-top: -2.6em;
	margin-bottom: 2.6em;
	font-size: 14px;
	line-height: 18px;
	color: #445661;
	background-color: #F7f7f7;
	padding: 5px 7px;
	border-bottom: solid 1px #CCC;
	border-left: solid 1px #CCC;
	border-right: solid 1px #CCC;
}

.post p.caption:nth-last-child(1) {
	margin-bottom: 0;
}


/*
.post p img {
	margin-top: -15px;
	margin-bottom: -20px;
}
*/

.post ul {
	margin-bottom: 1em;
	list-style-type: none;
	overflow: visible;
}

.post ul li {
	margin-left: 25px;
	overflow: visible;
	margin-bottom: 15px;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
}

.post ul li:before {
	content: '';
	background-color: #216e9f;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 13px;
	left: -20px;
	border-radius: 20px;
}

.postBackgroundImage 
{
	display: block;
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	top: 0px;
}

.imageTop {
	background-color: #00379f;
	object-position:top;
}

.postBackgroundContainer {
	position: relative;
	background-color: #000;
	width: 100%;
	margin-top: -20px;
}

.home.postBackgroundContainer {
		margin-top: 0px;
	}

.headerBackgroundImage 
{
	opacity: 0.5;
	display: block;
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	top: 0px;
}

.carouselItem {
	float: left;
	width: 100%;
	flex-shrink:0;
}

.downArrowContainer {
	width: 100%;
	bottom: 20px;
	position: absolute;
	/* display: flex; */
	/* justify-content: center; */
	/* align-items: center; */
	/* height: 100px; */
	text-align: center;
	padding: 20px;
}

.downArrow {
		border-left: solid 5px rgba(255,255,255,0.9);
	border-bottom: solid 5px rgba(255,255,255,0.9);
	transform: rotate(-45deg);
	width: 50px;
	height: 50px;
	position: relative;
	/* bottom: 0px; */
	display: inline-block;
	top: 0px;
}


.bigMarginSection .postBackgroundContainer {
	margin-top: -40px;
}

/*
.postBackgroundContainer.home {
	height: calc(100% - 60px);
	margin-top: 0px;
}*/

.noPadding {
	padding: 0px;
	padding-bottom: 0px;
}

.postMarginTop {
	margin-top: -20px;
	z-index: 99;
}

.postMarginTop.home {
	margin-top: -40px;
}

.postTitle {
	color: #216e9f;
	overflow: visible;
}

.postTitleLink:hover {
	text-decoration: none;
}

.postTitleLink:hover h1 {
	text-decoration: none;
	color: #418ebf;
}

h1.postTitle {
	margin:0;
	font-size: 40px;
	margin-top: -5px;
	line-height: 50px;
}

.postSubtitle {
	font-size: 26px;
	color: #0e83ce;
	overflow: visible;
	font-weight: 300;
	line-height: 26px;
}

.post * h2, .post h2 {
	color: #216e9f;
	font-size: 34px;
	margin-bottom: 10px;
}

.post * h3, .post h3 {
	color: #216e9f;
	margin-bottom: 10px;
	font-size: 30px;
}

.postFooter {
	border-top: solid 1px #3aa6ea;
	border-bottom: solid 1px #3aa6ea;
}

.authorImage {
	width: 100px;
	border-radius: 100px;
	flex-grow:0;
	flex-shrink:0;
	margin-right: 20px;
}

.authorText {
	font-size: 18px;
}

.authorTitle {
	font-size: 24px;
	color: #216e9f;
}

.commentHeader {
	font-size: 25px;
	color: #216e9f;
	margin-bottom: 5px;
}

.commentTextAreaContainer {
	border: solid 1px #b7cad7;
	background-color: #c8d9e3;
	padding: 10px;
}

.commentTextArea {
	width: 100%;
	max-width: 100%;
	min-height: 100px;
	border: solid 1px rgba(0,50,60,0.3);
	padding: 5px 7px;
	font-size: 18px;
	border-radius:7px;
	overflow: hidden;
}

.commentTextArea::-webkit-input-placeholder {
	color: #777;
}
.commentTextArea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #777;
   opacity:  1;
}
.commentTextArea::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #777;
   opacity:  1;
}
.commentTextArea:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #777;
}

.commentToolbar {
	width: calc(100% + 20px);
	left:-10px;
	bottom:-10px;
	background-color: #b8c9d3;
	margin-top: 0px;
	flex-wrap:nowrap;
	color: #353b3f;
}

.commentToolbarButton {
	height: 40px;
	background-color: #3b5998;
	padding: 0 10px;
	line-height: 40px;
	font-size: 14px;
	width: calc(100% - 10px);
	flex-grow:0;
	color: #FFF;
	border-radius: 10px;
	cursor:pointer;
	margin-left: 10px;
	text-align: center;
}

.commentToolbarButton:hover {
	background-color: #4b69a8;
}

.commentPostButton {
	height: 50px;
	background-color: #216e9f;
	padding: 0 10px;
	line-height: 50px;
	font-size: 16px;
	width: auto;
	flex-grow:0;
	color: #FFF;
	border-radius: 0px;
	cursor:pointer;
	text-align: center;
	float: right;
}

.commentPostButton:hover {
	background-color: #317eaf;
}


.commentToolbarLabel {
	font-size: 16px;
	line-height: 30px;
	float: left;
	flex-grow:0;
	width:45px;
	margin-right: 5px;
	text-align: right;
	margin-top: 0px;
}

.commentLoginContainer {
	padding: 30px 0px;
	padding-bottom: 20px;
}

.commentLoginContainer .halfColumn:nth-child(1) {
	padding-right: 10px;
	border-right: solid 1px #a8b9c3;
}

.commentInput {
	font-size: 16px;
	line-height: 30px;
	height: 30px;
	float: left;
	padding: 0 7px;
	width: calc(100% - 50px);
	flex-grow:1;
	flex-shrink:0;
	margin-bottom: 10px;
	border:solid 1px #a8b9c3;
	border-radius: 7px;
}

.commentInput:nth-child(4) {
	margin-bottom: 0px;
}

.commentOr {
	line-height: 30px;
	font-size: 14px;
	width: 100%;
	text-align: center;
	margin-top: -10px;
}

.commentPostImage {
	width:30px;
	height:30px;
	float: left;
	margin-right: 10px;
}

.commentPostingAs {
	font-size: 16px;
	float: left;
	margin-right: 10px;
	margin-top: 00px;
	line-height: 30px;
}

.fbLogout {
	font-size: 16px;
	float: left;
	margin-right: 10px;
	margin-top: 00px;
	line-height: 30px;
	display: none;
	cursor: pointer;
}

.commentChange {
	font-size: 14px;
	float: right;
	margin-right: 10px;
	margin-top: 10px;
	line-height: 20px;
	color: #216e9f;
	cursor:pointer;
}

.commentChange:hover {
	color:#317eaf;
	text-decoration: underline;
}

.notifyMeContainer {
	float: right;
	font-size: 14px;
	line-height: 30px;
}

.notifyMeCheckbox {
	float:right;
	margin-right: 10px;
	margin-top: 10px;
	margin-left: 5px;
}

.commentPostLeft {
	padding:10px;
}

.commentPostRight {
	flex-grow:0;
	overflow: visible;
	float: right;
	flex-shrink:0;
}



.commentList {
	margin-top: -21px;
	margin-bottom: 20px;
	border-bottom: solid 1px #3aa6ea;
}

.comment {
	width: 100%;
	margin-bottom: 0px;
	border-top: solid 1px #3aa6ea;
	padding-top: 20px;
	padding-bottom: 20px;
}

.comment:nth-child(1){
	border:none;
}

.commentIcon {
	width: 50px;
	height: 50px;
	float:left;
	margin-right: 15px;
	flex-grow:0;
}

.commentInfoBar {
	padding: 0px 0px;
	top: -5px;
}

.commentName {
	float:left;
	font-size: 20px;
	color: #216e9f;
	margin-right: 10px;
	overflow: visible;
}

.commentDate {
	float:left;
	font-size: 15px;
	line-height: 24px;
	color: #888;
	top: 5px;
	overflow: visible;
}

.commentPost {
	width: 100%;
	float: left;
	margin-top: -5px;
}

.commentPost p {
	margin-top: 0;
	margin-bottom: 1em;
	overflow: visible;
	font-size: 18px;
}

.commentPost p:nth-last-child(1) {
	margin-bottom: 0em;
}

.loadMoreCommentsContainer {
	width: 100%;
	padding: 20px;
	border-top: solid 1px #3aa6ea;
}

.loadMoreComments {
	background-color: #216e9f;
	color: #FFF;
	padding:10px 20px;
	text-align: center;
	flex-grow:0;
	border-radius: 15px;
}

.indentedComment {
	margin-top: 0px;
	flex-shrink:0;
	width: 20px;
	max-width: 20px;
	margin-left: 10px;
	border-left: solid 3px #3aa6ea;
}

.lastCommentIndented {
	border-top: none;
}

.lastCommentIndentedBorder {
	position: relative;
	border-top: solid 1px #3aa6ea;
	margin-left: 30px;
	width: 100%;
	height: 1px;
}

.commentWrapper:nth-last-child(1) {
	margin-bottom: 20px;
}



.commentActions {
	/*background-color: #EEF4FE;*/
	padding: 2px 0px;
	margin-bottom: 0px;
	float:right;
}

.commentAction {

}

.commentAction.reply {
	float: right;
	font-size: 14px;
	color: #216e9f;
	cursor: pointer;
}

.commentAction.reply:hover {
	color: #418ebf;
	text-decoration: underline;
}






.blueButtonHover {
	cursor: pointer;
}

.blueButtonHover:hover {
	background-color: #317eaf;
}







.tutorialSummaryTitle {
	font-size: 24px;
	overflow: visible;
	margin-top: 20px;
	margin-bottom: 0px;
	color: #216e9f;
}

.summaryLink {
	overflow: visible;
	margin-left: 18px;
	float: left;
	clear: both;
	display: block;
	font-size: 18px;
	margin-top: 5px;
	color: #273a47;
}

.summaryLink::before {
	content: '';
	background-color: #576a77;
	width: 5px;
	height: 5px;
	position: absolute;
	top: 9px;
	left: -15px;
	border-radius: 10px;
}



.summaryLink2 {
	margin-top: 5px;

}

.summaryLink3 {
	font-size: 18px;
	margin-left: 40px;
	
}

.summaryLink3::before {
	content: '';
	background-color: #576a77;
	width: 8px;
	height: 2px;
	position: absolute;
	top: 10px;
	left: -20px;
	border-radius: 10px;
}

.image404 {
	display: block;
	object-fit: cover;
	width:100%;
	overflow: hidden;
	height: 100%;
}

.title404 {
	text-align: center;
	position: relative;
	top: 5px;
	padding: 0 20px;
	font-size: 60px;
	color: #FFF;
	z-index: 999;
	font-weight: 300;
	line-height: 98px;

}

.subtitle404 {
	text-align: center;
	position: relative;
	font-weight: 300;
	font-size: 40px;
	color: #3aa6ea;
	margin-bottom: -20px;
	line-height: 44px;
	overflow: visible;
}

.container404 {
	background-color: #0d141c;
	padding:20px 20px;
}

.description404 {
	text-align: center;
	position: relative;
	font-weight: 300;
	font-size: 24px;
	color:#FFF;
	margin-top: 0px;
	line-height: 30px;
}






.toolIconContainer {
	width: calc((100%) * 0.33333333);
	float: left;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	padding:20px;
}

.toolIcon {
	width: 100px;
	max-width: 100px;
}

.toolIconText {
	width: 100%;
	font-size: 24px;
	color: #216e9f;
	text-align: center;
}

.toolIconTitle {
	width: 100%;
	font-size: 24px;
	color: #216e9f;
}


.toolIconContainer:hover {
	text-decoration: none;
	background-color: #CFE5FF;
}



.diagramCanvas {
	width:100%;
	background-color: #FFF;
}

.toolControls {
	width: 100%;
	background-color: #005b7b;
	padding: 20px;
	flex-wrap:wrap;
	font-weight: 400;
}

.controlLabel {
	float:left;
	color: #F8F8F8;
	width: 150px;
	margin-right: 10px;
	font-weight: 400;
}

.controlResult {
	float:left;
	color: #F8F8F8;
	margin-left: 10px;
	font-weight: 400;
}

.controlUnits {
	float:left;
	color: #F8F8F8;
	margin-left: 5px;
	font-weight: 400;
}

input[type=range].toolInput  {
	-webkit-appearance: none;
	margin-top: -13px;
	height: 50px;
	background-color: transparent;
	margin-bottom: -13px;
	float: left;
	overflow: visible;
	width: 250px;
}

input[type=range].toolInput::-webkit-slider-thumb {
  	-webkit-appearance: none;
 	border:none;
 	display: block;
 	box-shadow: none;
 	background-color: #216e9f;
	border-radius: 20px;
	width: 20px;
	height: 20px;
	margin-top: -5px;
	border: solid 1px #FFF;
	cursor: pointer;
	box-shadow: 0px 0px 2px rgba(0,0,0,1);
	overflow: hidden;
}

input[type=range].toolInput::-moz-range-thumb {
  	-webkit-appearance: none;
 	
 	background-color: #216e9f;
	border-radius: 20px;
	width: 20px;
	height: 20px;
	margin-top: -5px;
	border: solid 1px #FFF;
	cursor: pointer;
}


input[type=range].toolInput::-webkit-slider-runnable-track {
  	-webkit-appearance: none;
 	
 	background-color: #CCC;
	border-radius: 20px;
	width: 100%;
	height: 10px;
	cursor: pointer;
}

 input[type=range].toolInput::-moz-range-track {
 	
 	background-color: #CCC;
	border-radius: 20px;
	width: 100%;
	height: 10px;
	cursor: pointer;
 }

input[type=range].toolInput:focus {
	outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

.toolControl {
	margin-bottom: 10px;
}

.toolControlButton {
	margin-top: 15px;
	overflow: visible;
	font-weight: 400;
}


.toolControl:nth-child(4) {
	margin-bottom: 0px;
}

.toolInputButton {
	float: left;
	border:none;
	margin-top: 0px;
	padding: 2px 10px;
	background-color: #CCC;
	cursor:pointer;
	border-radius:0;
	font-weight: 400;
}

.toolInputButton:hover {
	background-color: #EEE;
}

.toolInputButton.selected {
	background-color: #FFF;
}

.toolInputButton:nth-child(2) {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.toolInputButton:nth-child(3) {
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.toolResultTitle {
	font-weight: 400;
}

.toolResult {
	color: #FFF;
	text-align: right;
	font-weight: 400;
}


.toolResultNumber {
	font-size: 34px;
	font-weight: 400;
}

.toolResultDescription {
	font-size: 16px;
	color: #CCC;
	font-weight: 400;
}

.toolResultDescription.infinity {
	margin-top: 10px;
	font-size: 20px;
	color: #FFF;
	font-weight: 400;
}

.storePreviewContainer {
	width: 100%;
	height: 50px;
	overflow: hidden;
	display: flex;
	justify-content:center;
	background-color: #DCEAF3;
	margin-bottom: 15px;
}

.storePreviewThumb {
	width: 40px;
	height: 40px;
	object-fit: cover;
	flex-grow: 0;
	margin: 2.5px;
	margin-top: 5px;
	opacity: 0.5;
	cursor: pointer;
}

.storePreviewThumb:hover {
	opacity: 1;
}

.storePreviewThumb.selected {
	opacity: 1;
}

.toolFeatureText {
	flex-grow: 1;
}

.uploadBarContainer {
	background-color: #CCC;
	border-radius: 10px;
	width: 100%;
	float: left;
	height: 40px;
}

.uploadBar {
	background-color: #216e9f;
	width:0%;
	height: 40px;
}





















@media(max-width: 1600px) {
	
	.image404 {
		height: 500px;
	}
}

@media(max-width: 1000px) {
	.commentToolbar {
		flex-wrap:wrap;

	}

	.commentToolbarButton {
		margin-top: 10px;
	}

	.commentOr {
		margin-top: 10px;
	}

	.commentLoginContainer .halfColumn:nth-child(1) {
		padding-right: 0px;
		border-right: none;
	}

	.commentPostButton {
		width: 100%;
		border-radius: 10px;
		text-align: center;
		margin-top: -10px;
	}

	.commentPostRight {
		padding: 10px;
		width: 100%;
	}

	.notifyMeCheckbox {
		width: 20px;
		height: 20px;
		margin-top: 5px;
		margin-right: 0px;
	}

	.notifyMeContainer {
		width: 100%;
		margin-top: 10px;
	}

	.fbLogout {
		font-size: 16px;
		margin-right: 0px;
	}

	.commentSidebarMobileHidden {
		display: none;
	}
	
}

@media(max-width: 900px) {

	.featuredNews {
		width: calc((100% - 40px) * 0.5);
	}

	.newsItemColumn2 {
		min-height:400px;
	}

	.logoImage {
		width: 100px;
		margin-top: 23px;
		margin-bottom: 15px;
	}

	a.headerButton {
		margin-bottom: 30px;
		margin-top: -20px
	}


	header {
		height: 70px;
	}

	nav {
		height: 30px;
		margin-top: 20px;
	}

	nav ul li {
		margin-right: 5px;
	}

	nav ul li a {
		padding: 5px 10px;
		line-height: 20px;
	}

	nav ul li a:link, nav ul li a:visited {
		font-size: 16px;
	}

	.searchIcon {
		top: -3px;
		height: 36px;
	}

	.searchField {
		height: 30px;
		font-size: 18px;
	}

	.gallerySection {
		height: calc(100% - 70px);
	}

	h2.homePageTitle {
		text-align: center;
		font-size: 40px;
		line-height: 60px;
	}

	h2.homePageTitle span.ampersand {
		font-size: 20px;
		top: -3px;
	}

	
}


@media(max-width: 800px) {


	.bigColumn, .smallColumn {
		width: 100%;
	}

	.halfColumn {
		width: 100%;
	}

	.halfColumnGutter {
		width: 100%;
	}

	

	.aspectFit {
		top: 0px;
		left: 0px;
	}

	.tabletRelative {
		position: relative;
		width: 100%;
	}

	/* Buy */
	.bigImagePreview {
		max-height: initial;
	}

	.buyCTAContainer {
		bottom: -30px;
		left: -30px;
		position: relative;
		width: calc(100% + 60px);
		margin-top: -20px;

		bottom: -30px;
		left: -30px;
		position: relative;
		width: calc(100% + 60px);
		margin-top: -20px;
	}

	.aspectRatio32NoTablet {
		padding-bottom: 0;
	}

	.itemMarginBottomTablet {
		margin-bottom: 30px;
	}

	



	/* Cart */
	.cartProductRow {
		padding: 10px 20px;
	}

	.cartProductImage {
		max-width: 100px;
		margin-right: 20px;
	}

	a.cartProductTitle {
		font-size: 22px;
	}

	.cartProductSubtitle {
		font-size: 18px;
	}

	.cartProductPrice {
		font-size: 20px;
		width: 70px;
		line-height: 34px;
	}

	.cartProductUpdate {
		font-size: 16px;
	}

	.cartProductUpdateBox {
		padding: 0;
		font-size: 16px;
		width:30px;
		border-radius: 10px;
	}

	.cartTotalLabel {
		font-size: 20px;
	}

	.smallColumn.withCTA {
		padding-bottom: 30px;
	}

	.image404 {
		height: 500px;
	}

	.checkoutComplete {
		top: -10px;
	}

	.addToCartButton {
		top: -10px;
	}




	.bookCover {
		width: 400px;
		margin-left: -175px;
	}

	.bookContent {
		width: calc(100% - 275px);
	}

	

	
}



@media(max-width: 700px) {
	
	nav ul li a {
		padding: 5px 5px;
	}

	.columns {
		width: 100%;
		margin-right: 0;
		max-width: 100%;
	}

	.columns2 {
		width: 100%;
		margin-right: 0;
		max-width: 100%;
	}

	.aspectFit {
		width: calc(100% + 2px);
		max-height: initial;
	}

	.featureImageBorder {
		width: 150px;
	}

	.featureTitle {
		font-size: 35px;
		line-height: 38px;
	}

	.featureSubtitle {
		font-size: 25px;
		line-height: 38px;
		overflow: visible;
	}


	.featureTitle.home {
		font-size: 35px;
		line-height: 38px;
	}

	.featureSubtitle.home {
		font-size: 25px;
		line-height: 32px;
	}

	.featureRightArrow {
		width: 20px;
	}

	.secondFeatureImageBorder {
		width: 60px;
		border-width: 2px;
		display: none;
	}

	.secondFeatureText {
		margin-left: 0px;
	}



	

	nav {
		width: calc(100% - 110px);
	}

	.logoImage {
		width: 80px;
		margin-top: 25px;
		margin-bottom: 14px;

	}


	.bookCover {
		width: 120%;
		margin-left: -37%;
		margin-right: 0px;
		flex-grow:0;
	}

	.bookContent {
		width: 100%;
	}
	
	.featureTitle.bookContent {
		font-size: 40px;
		line-height: 46px;
	}

	.featureSubtitle.bookContent {
		font-size: 30px;
		line-height: 34px;
	}


	a.bookReadMore {
		width: 100%;
		text-align: center;
		margin-bottom: -20px;
	}


}





/* Mobile */
@media(max-width: 600px) {

	.featuredNews {
		width: calc((100% - 40px) * 1);
		flex-shrink:0;
		padding-bottom: 66.66666%;
	}

	.newsItemColumn2 {
		min-height: initial;
	}

	.featuredNewsThumb {
		position: absolute;
	}

	.postSnippet {
		font-size: 16px;
		line-height: 26px;
	}
	

	.homeFeatureImageContainer {
		padding:20px 0;
	}

	.featureBackgroundImage {
		margin: -20px 0;
	}
	
	.mobileOnly {
		display: block;
	}

	.mobileHidden {
		display: none;
	}

	.mobileRelative {
		position: relative;
		width: 100%;
	}

	.aspectRatio32NoMobile {
		padding-bottom: 0;
	}

	.margins {
		padding-left: 15px;
		padding-right: 15px;
	}

	.mobileNoMargins {
		width: 100%;
		padding: 0;
	}

	.postMargins {
		padding-right: 30px;
		padding-left: 30px;
	}

	.postPadding {
		padding-bottom:30px;
		padding-top: 30px;
	}

	.marginSection {
		padding-top: 20px;
	}

	.mobileNoMarginSection {
		padding-top: 0;
		margin-top: 0px;
	}

	.mobileNoOverflow {
		overflow: hidden;
	}

	




	/* Layout */
	.bigColumn.aspectRatio32 {
		padding-bottom: calc((100%)  * 2 / 3);
	}

	.aspectRatio32 {
		padding-bottom: calc((100%)  * 2 / 3);
	}

	.aspectRatio32NoMobile {
		padding-bottom: 0;
	}

	.aspectRatio32NoTablet {
		padding-bottom: 0;
	}

	.aspectRatio169 {
		padding-bottom: calc((100%)  * 9 / 16);
	}

	.bigColumn.aspectRatio169 {
		padding-bottom: calc((100%)  * 9 / 16);
	}
	
	.itemMarginBottomMobile {
		margin-bottom: 20px;
	}

	.mobileNoItemMarginBottom {
		margin-bottom: 0;
	}

	.flexWrapMobile {
		flex-wrap: wrap;
	}








	/* */
	header {
		height: 60px;
	}

	.logoImage {
		width: 80px;
		margin-top: 20px;
		margin-bottom: 14px;
		margin-left: 5px;
	}
	

	.searchContainer {
		margin-top: 0px;
		padding:10px 0;
		width: 100%;
		border-bottom: solid 1px rgba(255,255,255,0.2);
	}

	.searchIcon {
		top: 11px;
		left: 40px;
	}

	.searchContainer input {
		border: none;
		height: 35px;
	}





	h1 {
		font-size: 35px;
		line-height: 45px;
	}

	h2 {
		font-size: 32px;
		line-height: 40px;
	}

	h3 {
		font-size: 24px;
		line-height: 30px;
	}



	h2.homePageTitle {
		text-align: center;
		font-size: 30px;
		line-height: 40px;
	}

	h2.homePageTitle span.ampersand {
		font-size: 15px;
		top: -3px;
	}

	h3.homePageSubtitle {
		margin-top: -15px;
	}








	/* Menu */
	nav {
		padding:0;
		height: auto;
		margin-top: 0px;
		background-color: #0d141c;
		width: calc(100% + 40px);
		left: 20px;
	}
	
	nav ul {
		width: 100%;
		padding:0;
		margin:0;
		height:auto;
	}
	nav li {
		width: 100%;
		padding: 0px 0px;
		height:auto;
		border-radius:0;
		border-bottom: solid 1px rgba(255,255,255,0.1);
	}

	nav ul li a {
		line-height: 30px;
	}

	nav ul li a:link, nav ul li a:visited {
		color: #FFF;
		padding: 7px 20px;
		font-size: 20px;
	}

	nav * .selected {
		
		border-radius: 0;
	}

	.menuItem {
		padding: 10px 30;
	}







	.footerSection {
		width: 100%;
		margin-bottom: 30px;
	}

	.footerSection h5 a  {
		font-size: 28px;
		line-height: 35px;
	}

	.footerSection h6 {
		margin-bottom: 10px;
	}

	.footerSection h6 a {
		font-size: 20px;
		line-height: 25px;
	}




	.filterContainer {
		width: 100%;
		left:0;
		margin-left: 0;
		padding: 20px 0px;
	}

	
	.filterContainer ul {
		width: calc(100% - 30px);
		left: 30px;
		background-color: #47a;
	}

	.filterContainer ul li {
		width: 100%;
		border-radius:0;
		height: 40px;
		line-height: 30px;
		padding:0;
		border-top: solid 1px #4060a0;
	}

	.filterContainer ul li a {
		padding: 6px 15px;
		width:100%;
		display: block;
	}

	.filterContainer ul li a:hover {
		text-decoration: none;
	}

	

	.filterContainer ul .selected {
		border-radius:0;
	}

	.filterDropdown.selected {
		background-color: #FFF;
		color: #4d85c3;
	}

	













	

	/* Buy */
	.buyCTAContainer {
		bottom: -30px;
		left: -30px;
		position: relative;
		width: calc(100% + 60px);
		margin-top: -20px;
	}





	/* Cart */
	.cartProductRow {
		padding: 20px 20px;
		flex-wrap:wrap;
	}



	.cartProductImage {
		max-width: initial;
		width: 100%;
		margin:0;
		margin-bottom: 10px;
	}

	a.cartProductTitle {
		font-size: 22px;
	}

	.cartProductSubtitle {
		font-size: 16px;
	}

	.cartProductPrice {
		font-size: 26px;
		width: initial;
		float:right;
	}

	.cartProductPrice.total {
		float:right;
	}

	.cartProductRHS {
		margin-top: 20px;
		margin-bottom: 10px;
		flex-grow:1;
	}

	.cartProductUpdate {
		font-size: 16px;
	}

	.cartTotalLabel {
		font-size: 22px;
	}

	.cartTotalLabel.shippingTotal, .cartTotalLabel.subtotal, .cartTotalLabel.total {
		font-size: 16px;
		float:left;
		line-height: 20px;
	}

	.cartProductPrice.shippingTotal, .cartProductPrice.subtotal, .cartProductPrice.total  {
		font-size: 18px;
		line-height: 20px;
		float:right;
		width: auto;
	}

	.cartSubtitle, .smallCart .cartSubtitle {
		float: left;
		margin-top: -10px;
		margin-bottom: 10px;
	}

	.changeShipping {
		width: 100%;
	}

	.changeShippingDropdownContainer {
		width: 100%;
		margin-left: 0;
	}

	.checkoutCTA {
		max-width: initial;
		float: right;
		position: relative;
		margin-top: 40px;
		margin-bottom: -20px;
		float: left;
		width: 100%;
	}

	.buttonRightArrow {
		margin-top: 7px;
	}


	.smallCart .cartItemList .cartProductRow.total {
		margin-bottom: -5px;
	}

	.checkoutComplete {
		margin-top: 5px;
		height: 90px;
	}

	.changeShippingDropdownContainer::after {
		margin-top: -8px;
	}

	.changeShippingDropdownContainer::after {
		top:0;
	}

	.changeCountryDropdownContainer::after {
		top:0;
		margin-top: -8px;
	}

	.checkoutLabel {
		width: auto;
	}

	.checkoutTextInput, .changeCountryDropdownContainer {
		width: 100%;
	}

	.checkoutTextExpiry {
		width: calc(50% - 5px);
		margin-right: 0;
	}

	.checkoutTextExpiry1 {
		clear:both;
		margin-right: 10px;
	}



	.featureImageBorder {
		width: 100px;
		border-width: 2px;
		margin-right: 15px;
	}

	.featureText {
		margin-top: 0px;
		overflow: visible;
	}

	.featureTitle {
		font-size: 30px;
		line-height: 36px;
		overflow: visible;
	}

	.featureSubtitle {
		font-size: 22px;
		line-height: 28px;
		overflow: visible;
	}

	.featureRightArrow {
		width: 10px;
	}


	







	.newsItem .padding {
		padding: 10px 20px;
	}

	.newsThumbContainer {
		width: 100px;
		min-height: 100px;
	}

	.newsThumb {

	}

	.newsTitle {
		font-size: 22px;
		line-height: 24px;
		font-weight: 300;
	}

	.newsType {
		color: #5e7d8f;
		font-size: 16px;
		margin-top: 0;
		line-height: 20px;
	}
	.newsDate {
		font-size: 16px;
		line-height: 20px;
	}


	.image404 {
		height: 200px;
	}

	.title404 {
		margin-top: 10px;
		font-size: 45px;
	}

	.description404 {
		font-size: 20px;
	}


	.mobileInitialHeight {
		height: initial;
	}


	.galleryInfo {
		padding: 0 20px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.galleryArrowContainer {
		flex-grow: 1; 
	}


	.galleryPhoto {
		object-fit: contain;
		width: 100%;
		height: initial;
	}

	.galleryPhotoContainer {
		flex-shrink:1;
		height: initial;
	}

	.gallerySection {
		height: initial;
	}

	.galleryBack {
		opacity:1;
		position: relative;
		margin-top: 13px;
		line-height: 33px;
		margin-bottom: 0px;
		margin-left: 16px;
		margin-right: 15px;
		border:none;
		background-color: #216e9f;
		color: #FFF;
		height: 35px;
	}

	.galleryBackTriangle {
		border:none;
		top:5px;
		left:-12px;
		background-color: #216e9f;
		width:25px;
		height:25px;
	}

	.galleryBackText  {
		margin-left: -10px;
		color: #FFF;
		margin-right: -5px;
	}

	.galleryBack.mobileOnly {
		display: block;
	}





	.toolIconContainer {
		width: calc(100%);
		left: 0px;
		align-items: center;
		justify-content: space-between;
		border-bottom: solid 1px rgba(255,255,255,0.3);
		padding: 10px 15px;
	}

	.toolIcon {
		float: left;
		width: 70px;
		flex-grow:0;
	}

	.toolIconText {
		width: initial;
	}

	.toolIconTitle {
		width: initial;
		font-size: 24px;
		text-align: left;
		margin-left: 20px;
	}


	.diagramCanvas {
		width:100%;
		height: 250px;
		background-color: #FFF;
	}

	input[type=range].toolInput  {
		width:100%;
	}

	.controlResult {
		float: right;
	}

	.toolControlButton .controlLabel {
		width: 100%;
	}

	.toolControlButton {
		float: right;
		width: 100%;
	}

	.toolInputButton {
		width: 50%;
		margin-top: 5px;
		padding: 5px 5px;
	}

	.toolResult {
		margin-top: 20px;
	}

	.postSubtitle {
		font-size: 24px;
	}

	.aboutLogo {
		margin-bottom: 0px;
		margin-right: 0;
		width: 100%;
	}

	.smallColumn.marginRight {
		margin-right: 0px;
	}

	.aboutLogoContainer {
		margin-bottom: 20px;
	}

	.aboutButtons * a.button.bigButton {
		width: 100%;
		margin-bottom: 20px;
	}

	.aboutButtons {
		margin-bottom: -20px;
	}


	a.button.hollowButton.whiteButton.mobileNoHollow {
		background-color: rgba(255,255,255,0.5);
		color: #4d85c3;
	}

	a.button.hollowButton.whiteButton.mobileNoHollow:hover {
		background-color: #c0e0f7;
		color: #4d85c3;


	}

	.title404 {
		top: 0px;
		line-height: 84px;
	}


	.bookCover {
		width: 160%;
		margin-left: -67%;
		margin-right: 0px;
		flex-grow:0;
	}

	.bookContent {
		width: 100%;
	}

	.notifyMeInput {
		width: 100%;
		max-width: initial;
		margin-bottom: 0px;
	}


	.bookNotifyMe .viewFullButton {
		width: 100%;
		margin-left: 0;
	}


	.searchField {
		width: 100%;
		background-color: #FFF;
		border-radius: 20px;
		position: relative;
		color: #216e9f;
		padding-left: 40px;
		padding-right: 10px;
		height: 40px;
		margin: 10px 0px;
		z-index: 10;
	}

	.searchContainer input {
		z-index: 10;
	}

	.searchIcon {
		position: absolute;
		top: 13px;
		left: 20px;
		z-index: 11;
	}

	.searchField.searchPage {
		width: 100%;
	}


	.autocompleteContainer {
		float:left;
		z-index: 9;
	}

	.searchIconWhite {
		opacity: 1;
		display: none;
	}

	.searchIconBlue {
		opacity: 1;
		display: block;
	}

	nav {
		z-index: 999;
	}

	.galleryBuyButton {
		margin-left: 0px;
		margin-bottom: 20px;
		width: 100%;
		margin-top: 0px;
		float: none;
	}

	.galleryBuyButton.mobileOnly {
		display: block;
	}

	.mobileSmallPadding {
		padding: 10px 20px;
	}

	.storePreviewContainer.mobileOnly {
		display: flex;
	}



}


@media (-webkit-min-device-pixel-ratio: 1), (min-resolution: 192dpi) {

}

.margins.overflow {
	overflow: visible;
}

a.noUnderline:hover {
	text-decoration: none;
}

