/* MOBILE STYLES FIRST */


* 	{ 
	box-sizing: border-box; 				/* This means the browser will include margin and padding size definitions rather than adding those values on. */
	}

body {  	
	width: 100%; 
	margin: 0px;
	padding: 0px;
	font-size: 0.95em; 
	line-height: 1.5; 
	font-family: 'Merriweather', 'Helvetica', 'Helvetica Neue', sans-serif, ebrima, 'lucida sans unicode'; 
	color: #333;
	background-color: #fff;
	font-weight: 300;
	}


/* MULTI-LEVEL MENU STYLES */

img.logoimg {
	width: 69px; 
	position: absolute; 
	overflow: visible; 
	margin-left: 5%; 
	top: 23px; 
	cursor: pointer;
	z-index: 1;
	-webkit-tap-highlight-color: transparent;
	} 

div.nav-toggle {
    padding: 7px;
    font-size: 220%;
	color: #1f90e6;
	cursor: pointer;
	z-index: 3;
	position: absolute;
	right: 3vw;
	top: 4px;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	}

nav {
	display: none;					/* This is toggled on-off by the jQuery script to show-hide the menu in mobile mode */
	position: absolute;
	top: 0px;
	height: 70px; 
	width: 100%;
	z-index: 2;
	background: #c5cace;
	padding: 0px 0px 20px 0px;
	margin: 0px;
	overflow: visible;
	} 

nav a { 							/* These styles apply to all <a> descendents of the <nav> */
	text-decoration: none;
	font-weight: normal;
	line-height: 2.8;
	display: block;
	background: #c5cace;
	width: 100%;
	padding: 0px 0px 0px 40px; /* set this to the same as .row's left padding */
	}
nav a:visited {color:#444;}
nav a:hover {color: #e0fc9f; background-color: #9b9fa2; text-decoration: none;}

nav ul {							/* This applies to all <ul> descendents of the <nav> */
	display: block;
	list-style: none;
	margin: 0px;
	background: #c5cace;
	padding: 30px 0px 20px 0px;		/* This gives the top and bottom buffer to the mobile menu. The apparent left buffer is done in the <a> tags' padding so the the <a> tags fill the full width re background colour */

	}

nav ul li {    
	display: block;
	}

nav ul li a {
	color: inherit; 
	}

	nav ul li ul {
		padding: 0px 0px 0px 0px;	/* This over-rides the ul padding next level up */
	}
	
	nav ul li ul li a {				/* These are the <a> in the second depth of the menu */
		padding-left: 60px;
	}




/* BASIC ROWS AND IMAGES */

.row {  background: transparent;
		display: block;
		margin: 0;
		position: relative;
        width: 100vw;										/* Does not use max width so that a background can be used in the full width of the row */
		padding: 60px 40px 60px 40px; 						/* Uses padding not margin so that a background can be used in the full width of the row */
	}
	

.header-background-image {  								/* The div which holds a page's header image*/
        height: 70vh;
		}

.full-width-background-image {  							/* Add to a row to define height where a full width image is background */
        height: 70vh;	
		}	


.content-image {margin: 30px -40px 0px -40px;				/* Gives full width image in mobile by 'undoing' the row padding c -ve margins and making it 100vw. */
				width: 100vw;								/* In large screen mode the negative margin is removed and width returned to '100%' */
	}

.clip-bottom-arrow {clip-path: polygon(0 0, 100% 0, 100% 98%, 50% 100%, 0% 98%);}
.clip-bottom-left-arrow {clip-path: polygon(0 0, 100% 0, 100% 98%, 40% 100%, 0% 98%);}


.flex {display: flex; flex-wrap: wrap;}				/* Turns it into a flex countainer that can contain flex items */




/* ARTICLES STYLES */
div.article-teaser {
	flex: 100%;
	padding: 0px 0px 30px 0px;
	margin: 0px 0px 20px 0px;
	border-bottom: 1px solid #c5cace;
	}
div.article-teaser h2, div.article-teaser p {
	cursor: pointer;
	}
div.article-teaser:hover h2 {
	color: #8ea01a;
	}

div.article-row {
	display: flex;
	flex-wrap: wrap;
	}
	
div.article {
	flex: 1 0 100%;	/* 
    1: The item can grow to fill the space.
    0: The item will not shrink.
    100%: The item will take up the full width of the container. */
	}	


div.articles-more {
	flex: 1 0 100%;
	padding: 30px 0px 0px 0px;
	margin: 50px 0px 0px 0px;
	border-top: 1px solid #c5cace;
	}





/* TABS FOR SESSION TYPES */
tabs {
	margin: 50px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: block;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid #c5cace;
}

tab {
	display: inline-block;
	cursor: pointer;
	border-top: 1px solid #c5cace; 
	border-left: 1px solid #c5cace; 
	border-right: 1px solid #c5cace;
	padding: 4px 6px 0px 6px;
	margin: 0px 5px 0px 5px;
}

tab:hover {
	background: #e0fc9f;
}

tab.active {
	background: #c5cace;
	border-color: #333;
	font-weight: 400;
}

tabcontent {
	display: none;
}

tabcontent.active {
	display: block;
	text-align: center;
	padding: 40px 0px 0px 0px;
}





/* HEADER STYLES */
h1, h2, h3 {display: block; 
            font-family: 'Helvetica';
            margin: 0px;}
			
h1 {font-size: 5vw; font-weight: 700;  letter-spacing: 0px; word-spacing: -2px; line-height: 1.25; color: #333;}
h1.article-title {font-family: 'Lato'; text-align: center; color: #263114; font-size: 160%;}
h1.over-header-image {font-size: 400%; color:#fff; font-weight: 700; position: relative; top: 90px;}

	
h2. {color: #333; font-size: 190%; margin: 100px 0px 25px 0px; }
h2.over-header-image {color:#fff; font-size: 200%; font-weight: 300; position: relative; top: 90px; margin: 57px 0px 0px 0px;}
h2.page-top {color: #333; font-size: 190%; margin: 0px 0px 25px 0px; }

h2.subtitle { font-size: 150%; margin-top: 0px; padding-bottom: 40px;}
h2.subsection {	font-size: 160%; line-height: 1.5; margin-top: 40px; margin-bottom:30px; 
							border-bottom-color: #e0e0e0; border-bottom-style: solid; border-bottom-width: 1px;}
							
h2.segment-header {
	color: #fff; 
	text-decoration: none; 
	font-size: 2vw; 
	font-weight: 700; 
	font-family: 'Lato'; 
	display: inline-block; 
	padding: 2px 8px 2px 8px; border-radius: 5px;
	background: rgba(000, 000, 000, 0.2);
	position: relative; left: 0px; top: 0px;}
							
h3 {font-family: 'Lato'; font-weight: 700; letter-spacing: 0.5px; display: block; font-size: 100%; color: #333; padding: 35px 0px 25px 0px;}
h3.reveal-header {color: #777; font-size: 170%; margin: 10px 0px 0px 0px; padding: 0px 0px 0px 0px;}



/* lINKS. Note: no classless <a> styles are used because this prevents styles unintentionally slipping over into other a classes */
a.normal {font-family: inherit; font-size: inherit; color: #0e70f6; font-weight: 400; text-decoration: none; border-bottom: 1px dashed #0e70f6; padding: 0px 1px 0px 1px;}		
a.normal:visited {color: #0e70f6; text-decoration: none;}
a.normal:hover {color: #034fb7; text-decoration: none; border-bottom: 1px solid #034fb7;}
span.a-normal {cursor: pointer; font-family: inherit; font-size: inherit; color: #0e70f6; font-weight: 400; text-decoration: none; border-bottom: 1px dashed #0e70f6; padding: 0px 1px 0px 1px;}		
span.a-normal:visited {color: #0e70f6; text-decoration: none;}
span.a-normal:hover {color: #034fb7; text-decoration: none; border-bottom: 1px solid #034fb7;}
	
a.over-image {
	color: #fff; 
	text-decoration: none; 
	font-size: 2vw; 
	font-weight: 700; 
	font-family: 'Lato'; 
	display: inline-block; 
	padding: 2px 8px 2px 8px; border-radius: 5px;
	background: rgba(255, 255, 255, 0.2);
	position: absolute; bottom: 30px;}
  
 
a.listing-title {
    color: #222; 
    font-family: 'Open Sans'; 
    font-size: 120%; font-weight: 800;
    text-decoration: none;  
    margin-bottom: 0px;
}
.listing-sub-title {
    display: block;
    clear: left;
    font-size: 75%;
}

a.featured {
    background: #3366ff; color: #fff; margin-top: 200px; padding: 3px 7px 3px 7px; border-radius: 5px;
    text-decoration: none;
}
a.featured-title {
    background: transparent; 
	text-decoration: none;
    display: block; margin-top: 15px;
    font-family: 'Open Sans'; font-size: 150%; color: #fff;}
a.featured-by {
    display: block; margin-top: 15px;
    font-family: 'Open Sans'; font-size: 85%; color: #fff; font-weight: bold; text-decoration: none;}





/* PARAGRAPH STYLES */
p {font-family: 'Lato', 'Merriweather'; font-weight: 300; font-size: 150%; font-size: 138%; line-height: 1.8;}
p.smaller {letter-spacing: 0.5px; display: block; font-size: 100%; color: #333; margin: 0px 15px 25px 0px;}
p.large {font-size: 120%;}
p.strong {font-weight: 700;}

p.overimage {font-size: 120%; color: #fff; font-weight: bold; width: 80vw;}

p.by-line {font-size: 85%; color: #555; margin-bottom: 50px;}
p.teaser {letter-spacing: 0.5px; display: block; font-size: 100%; color: #333; margin: 0px 15px 47px 0px;}

p.photo-caption {width: 90%; font-size: 88%; font-weight: 300; margin: 0px 0px 30px 5px; padding-top: 0px;}

p.footnote {font-size: 80%; margin-top: 60px; width: 90%; color: #555;}
p.leaders {font-size: 120%;}

p.testimonial {width: 90vw; margin: auto; padding-top: 50px; padding-bottom: 50px;}

p.article-comment-byline {font-size: 80%; color: #555; margin-bottom: 0px;}
p.article-comment-content {width: 60%; color: #333; border-bottom-color: #f0f0f0; border-bottom-style: solid; border-bottom-width: 1px; margin-top: 0px; margin-bottom: 15; padding-bottom: 25px;}

ul.content-ul li {font-family: 'Lato', 'Merriweather'; font-weight: 300; font-size: 150%; font-size: 138%; line-height: 1.8; padding: 0px 0px 15px 0px;}

ol.numbered-list {margin: 40px 0px 60px 0px;}
ol.numbered-list li {padding: 0px 0px 15px 0px;}

ol.content-ol {width: 95%; margin: 40px 0px 60px 0px; padding: 20px 20px 20px 0px; background: #f0f0f0;}
ol.content-ol li {font-family: 'Lato'; font-weight: 300; font-size: 110%; line-height: 1.8; padding: 0px 0px 15px 20px;}





/* BUTTON STYLES */
.button {	
	display: block;
	min-width: 184px;
	background: transparent; 
	font-size: .90em; 
	font-weight: 700; 
	text-decoration: none;
	width: 120px; 
	text-align: center; 
	border-radius: 4px; 
	padding: 8px 4px 8px 4px; 
	margin: 0px 0px 0px 0px;
	cursor: pointer; 
	border-style: solid; border-width: 2px; 
	transition: all 0.5s ease; 
}
	
.header-image-button {
	position: absolute;
	bottom: 50px;
	left: 0;
    right: 0;
	margin: auto;
	color: #daf52e; border-color: #daf52e;
}
	
.session-button {
    margin: auto;
	color: #dad75a; border-color: #dad75a;
}

	
	
/* HALF-WIDTH BLOCKS in large screen mode */
div.half-width-block-left {display: block; flex: 1; margin: 0px 0px 0px 0px;}
div.half-width-block-right {display: block; flex: 1; margin: 0px 0px 0px 0px; }

/* IMAGE BLOCKS - these fit full width of parent with no margin. Because they are flex you can just add or remove blocks in the html as needed */
div.image-block {transition: all 1.0s ease; filter: grayscale(100%); cursor: pointer; text-align: center; position: relative; display: block; width: 100%; aspect-ratio: 1 / 0.6; margin: 0px; padding: 0px 20px 0px 20px;}
div.image-block:hover {filter: none;}
h2.image-box {color: #edf8ae; position: relative; top: 25%;}
p.image-box {color: #fff; position: relative; top: 25%;}


/* SESSIONS CONTENT SECTION */
div.session-types-left {display: inline-block; width: 100%; padding: 0px 0px 30px 0px; }
div.session-types-right {display: inline-block; width: 100%; padding: 0px 0px 0px 0px; }
h1.session-types {color: #333; font-family: 'Helvetica'; font-weight: 100; font-size: 150%; padding: 0px 0px 0px 0px; margin: 0px 0px 20px 0px;}
h3.session-types {color: #333; font-family: 'Helvetica'; font-weight: 100; font-size: 150%; padding: 0px 0px 0px 0px; margin: 0px 0px 20px 0px;}
p.session-types {color: #333; font-size: 120%; line-height: 1.6; padding: 0px 0px 0px 0px; margin: 0px 0px 0px 0px;}
p.session-details {font-size: 96%; font-weight: 700; margin: 20px 0px 0px 0px;}
a.session-types {float: left; clear: left; display: inline-block; color: #fff; font-size: 78%; border: 1px solid #fff; border-radius: 2px; line-height: 30px; text-decoration: none;
	padding: 0px 15px 0px 15px; margin: 5px 0px 5px 0px; background: #bbb; }
	
	

	
/* EXPANDABLE CONTENT */
.expand-button {
	cursor: pointer;
}

.contracted {
display: none;
}	

.expanded {
	display: block;
}
	
	
	
	


/* FOOTER STYLES */

/* gets added to a row div to center the text, give the row a min-height, and give the text elements a wider line-spacing */
.footer-base {line-height: 3; min-height: 320px; text-align: center; font-size: .9em; padding: 130px 0px 50px 0px; border-top: 1px solid #eee;}					

a.footer {text-decoration: none; font-weight: 300; color: #777; display: block; -webkit-tap-highlight-color: transparent;}
a.footer:hover {text-decoration: none; text-decoration: underline; color: #444}
a.footer:visited {text-decoration: none; text-decoration: none; color: #777;}	
	


/* OTHER STYLES */

strong, b, em {font-weight: 700;}

/* the class to which the e-male jQuery script attaches its function */
.hoocamp {}							

.centred {text-align: center;}

div.pricing-item {display: inline-block; width: 200px;}
div.pricing-price {display: inline-block;}

.padding-bottom {padding-bottom: 90px;}

span.about-image-sideline{
	transform: rotate(-90deg) translateX(100%); 
	transform-origin: right bottom;
	padding: 0px 5px 0px 5px;
	color: #fff; 
	border-radius: 3px;
	font-size: 80%; 
	background: rgba(000,000,000,0.4);
	position: absolute; 
	bottom: 30px; right: 10px;
	}


/* WORDCLOUD SECTIONS */

div.wordcloud {position: relative; height: 500px; overflow: hidden; text-align: center;}
span.word {
    position: absolute;
	color: #999;
    white-space: nowrap; /* Prevent words from wrapping */
    transition: transform 0.3s; /* Smooth transition for hover effect */
}
span.word:hover {
    transform: scale(1.2); /* Scale up on hover */
	cursor: pointer;
	color: #1f90e6;
}


.space-above {margin-top: 90px;}			/* These are used instead of needing to apply margin to elements which don't always need it */
.space-below {margin-bottom: 90px;}























































/* STYLES FOR >900px SCREEN WIDTH */
@media only screen and (min-width: 900px) {
	

/* MULTI-LEVEL MENU STYLES */

img.logoimg {
	width: 69px; 
	position: fixed; 
	overflow: visible; 
	margin-left: 0px; 
	top: 10px; 
	left: 2vw;
	z-index: 3;} 

div.nav-toggle {
    display: none;
	}


nav {
	display: block;								      /* This is toggled on-off by the jQuery script to show-hide the menu in mobile mode */
	position: fixed;
	top: 0;
	transition: top 0.3s;
	filter: opacity(100%);
	text-align: center;
	width: 100%;
	height: auto;                      /* This over-rides the height definition in px given for the mobile version and allows the height to be governed by 'nav ul li a' */
	z-index: 2;
	background: #fff;
	padding: 0px 0px 0px 0px;
	border-bottom: 0px solid #7b8e36;
} 

nav a { 		
	color: #333;								/* These styles apply to all <a> descendents of the <nav> */
	text-decoration: none;
	font-family: 'Lato';
	background: #fff;
	font-weight: 400;
	display: block;
	width: 100%;
	padding: 0px 20px 0px 20px; 				/*make the padding equal on all sides for any background on hover to look good */
	}
nav a:visited {color:#333;}
nav a:hover {color: #9ca372; background-color: #fff; text-decoration: none;}

nav ul {										/* This applies to all <ul> descendents of the <nav> */
	display: block;
	background: #fff;
	list-style: none;
	margin: 0px;								/* For the desktop view these both ensure the ul does not push the nav to become taller than the ul is. */
	padding: 0px;
	border-bottom: 1px solid #c5cace;

}

nav ul li {    
	display: inline-block;
	position: relative;
	text-align: left;							 /* To ensure the child <ul> and its contents align to the left when they are displayed */
}

nav ul li a {
	line-height: 50px;                  /* This defines the height of the navbar! Note that line-height will ensure the text aligns vertical centre of the <a> tag. */
	background: transparent;
}

nav ul li a.active {
	font-weight: 700;
}

	nav ul li ul {
		display: none;							 /* To over-ride the mobile menu style where it has to show from the off */
		position: absolute;
		top: 50px;
		width: auto;
	}
	
	nav ul li ul li {
		width: 100%;							/* Ensures the nested ul's li's expand to 100% the set width set in 'nav ul li ul' */
		white-space: nowrap;
	}
	
	nav ul li:hover ul {
		display: block;							/* To display the nested <ul> when it's parent <li> is hovered over */
	}

	nav ul li ul li a {							/* These are the <a> in the second depth of the menu */
		line-height: 42px;
		background-color: #fff; 
		padding: 0px 20px 0px 20px;				/* This over-rides any greater left padding used for indent in the mobile menu */
	}
	nav ul li ul li a:hover {
		background: #c5cace;
	}





/* BASIC ROWS AND IMAGES */

.row {	padding: 60px 10vw 60px 10vw;
		}

.header-background-image {  										/* The div which holds a page's header image*/
        height: 95vh;	
		}
		
.full-width-background-image {  									/* Add to a row to define height where a full width image is background */
        height: 85vh;	
		}	





/* ARTICLES STYLES */
div.article-teaser {
	background: #fff; 
	max-width: 48%;
	padding: 4px 8px 4px 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	}
	
div.article {
	flex: 0 0 100%;
	}	

div.articles-more {
	flex: 0 0 100%;
	margin: 90px 0px 0px 0px;
	padding: 50px 0px 0px 0px;
	border-top: 1px solid #c5cace;
	}

h1.article-title {text-align: center; font-family: 'Lato'; font-weight: 300; color: #263114; font-size: 350%; margin: 0px 0px 125px 0px;}




/* TESTIMONIAL STYLES */
sliderscreen.testimonials {
	display: block;
	width: 100%;
	margin: auto;
	position: relative;
	overflow: hidden;
	height: 400px;
}

img.right-arrow {
	cursor: pointer;
	width: 59px;
	position: absolute;
	top: 45%; right: 5vw;
	opacity: 0.5;
}

img.left-arrow {
	cursor: pointer;
	width: 59px;
	position: absolute;
	top: 45%; left: 5vw;
	opacity: 0.5;
	transform: rotate(180deg);
}

slide.testimonial {
    position: absolute; /* Position testimonials absolutely - this means they all sit one on top of the other in the case of the fader, and can be positioned offsides in case of slider */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* ensure that the slide fills the full height of the sliderscreen */
    display: flex; /* Enable flexbox in order that the testimonials can be centred vertically within the slide! */
    justify-content: center; /* Center horizontally */
	flex-direction: column;
    align-items: center; /* Center vertically */
    visibility: hidden; /* Prevents interaction with clicks because opacity: 0; won't do that */
	opacity: 0;
    transition: opacity 0.5s ease; /* Transition effect*/
}

slide.testimonial-active {
	visibility: visible; /*instantly becomes visible, and then fades in thanks to the opacity animation */
    opacity: 1; /* The animatable arrival/departure of visibility on the page */
}

p.testimonial {width: 70%; margin: auto; padding: 0px 0px 0px 0px; margin: 0px 0px 40px 0px; text-align: center; font-style: italic;}
p.testimonial-byline {width: 80%; margin: auto; padding: 0px 0px 0px 0px; margin: 0px 0px 0px 0px; text-align: center; font-weight: 300;}






/* IMG STYLES */
.content-image {margin: 40px 0px 0px 0px;				/* Gives full width image in mobile by 'undoing' the row padding c -ve margins and making it 100vw. */
				width: 100%;								/* In large screen mode the negative margin is removed and width returned to '100%' */
	}






/*CONTENT SQUARES*/
.block {width: 22%; padding: 10px; margin: 0px 20px 0px 20px; height: 30vw; position: relative; top: 0px; border: 1px solid #ccc; overflow: hidden; transition: all 0.5s ease;}
.block:hover {margin: 0px 20px 0px 20px; border: 1px solid #fff;}
	.block h1 {font-size: 120%; color: #fff; transition: all 0.5s ease;}
	.block div {position: absolute; top: 2vw; transition: all 0.5s ease;}
	.block:hover div {}
	.block:hover h1 {color: #c4eb36;}

div.content-square {width: 400px; margin: 20px;}
div.content-square:hover {background: #ddd;}


/* FLEX CONTENT BLOCKS */6
div.flex-blocks {flex: 1; padding: 0px 0px 0px 0px; }
div.flex-blocks-content {padding: 20px 2vw 0px 3vw; max-width: 800px;}
h2.flex-blocks {font-family: 'Lato'; font-weight: 700; letter-spacing: 0.5px; display: inline-block; font-size: 120%; color: #333; border-bottom: 1px solid #333; padding: 0px 10px 0px 0px; margin: 5px 0px 15px 0px;}
h3.flex-blocks {font-family: 'Lato'; font-weight: 700; letter-spacing: 0.5px; display: block; font-size: 100%; color: #333; padding: 25px 0px 0px 0px;}
p.flex-blocks {font-family: 'Lato'; letter-spacing: 0.5px; display: block; font-size: 100%; color: #333; margin: 0px 15px 25px 0px;}
a.flex-blocks {font-family: 'Lato'; letter-spacing: 0.5px; display: block; font-size: 100%; font-weight: 700; text-decoration: none; color: #98b722; margin: 0px 0px 25px 0px;}




	
	
/* HALF-WIDTH BLOCKS in large screen mode */

div.half-width-block-left {display: block; flex: 1; margin: 0px 0px 0px 0px;}
div.half-width-block-right {display: block; flex: 1; margin: 0px 0px 0px 7%; }


/* IMAGE BLOCKS - these fit full width of parent with no margin. Because they are flex you can just add or remove blocks in the html as needed */

div.image-block {transition: all 1.0s ease; filter: grayscale(100%); cursor: pointer; text-align: center; position: relative; display: block; flex: 1; aspect-ratio: 1 / 1; margin: 0px;}
div.image-block:hover {filter: none;}
h2.image-box {color: #edf8ae; position: relative; top: 25%;}
p.image-box {color: #fff; position: relative; top: 25%;}


/* SESSIONS CONTENT SECTION */
div.session-types-left {display: inline-block; width: 25%; padding: 0px 3vw 0px 0px; }
div.session-types-right {display: inline-block; width: 74%; padding: 0px 0px 0px 5vw; vertical-align: top; }
h1.session-types {color: #333; font-family: 'Helvetica'; font-weight: 600; font-size: 170%; margin: 0px 0px 7px 0px; padding: 0px 0px 0px 0px;}
h3.session-types {color: #333; font-family: 'Helvetica'; font-weight: 100; font-size: 140%; margin: 0px 0px 38px 0px; padding: 0px 0px 0px 0px;}
p.session-types {color: #333; font-size: 115%; line-height: 1.7; padding: 0px 0px 0px 0px; margin: 0px 0px 0px 0px;}
a.session-types {float: left; clear: left; display: inline-block; color: #fff; font-size: 78%; border: 1px solid #fff; border-radius: 2px; line-height: 30px; text-decoration: none;
	padding: 0px 15px 0px 15px; margin: 5px 0px 5px 0px; background: #bbb; }








/* HEADER STYLES */
h1 {font-size: 5vw; font-weight: 700;  letter-spacing: 0px; word-spacing: -2px; line-height: 1.25; color: #333;}
h1.over-header-image {font-size: 400%; color:#fff; font-weight: 700; position: relative; top: 90px;}

h2 {color: #333; font-size: 190%; margin: 100px 0px 25px 0px; }
h2.over-header-image {color:#fff; font-size: 200%; font-weight: 300; position: relative; top: 90px; margin: 57px 0px 0px 0px;}
h2.section-title {font-family: 'Helvetica'; font-size: 300%; color: #222; padding: 0px 0px 0px 0px;}
h2.subtitle { font-size: 150%; margin-top: 0px; padding-bottom: 40px;}

h3 {font-family: 'Lato'; font-weight: 700; letter-spacing: 0.5px; display: block; font-size: 100%; color: #333; padding: 25px 0px 25px 0px;}



/* PARAGRAPH STYLES */
p {font-family: font-size: 138%; line-height: 1.8; margin: 0px 0px 43px 0px;}
p.smaller {letter-spacing: 0.5px; display: block; font-size: 115%; line-height: 1.7; color: #333; margin: 0px 15px 25px 0px;}
p.large {font-size: 120%;}
p.strong {font-weight: 700;}

p.overimage {font-size: 120%; color: #fff; font-weight: bold; width: 80vw;}
	
p.by-line {font-size: 85%; color: #555; margin-bottom: 20px;}
p.teaser {letter-spacing: 0.5px; display: block; font-size: 100%; color: #333; margin: 0px 15px 0px 0px;}

p.photo-caption {width: 90%; font-size: 88%; font-weight: 300; margin: 0px 0px 30px 5px; padding-top: 0px;}

p.footnote {font-size: 80%; margin-top: 60px; width: 90%; color: #555;}
p.leaders {font-size: 120%;}




p.article-comment-byline {font-size: 80%; color: #555; margin-bottom: 0px;}
p.article-comment-content {width: 60%; color: #333; border-bottom-color: #f0f0f0; border-bottom-style: solid; border-bottom-width: 1px; margin-top: 0px; margin-bottom: 15; padding-bottom: 25px;}

ul.content-ul li {padding: 0px 0px 15px 0px;}

ol.numbered-list {margin: 40px 0px 60px 0px;}
ol.numbered-list li {padding: 0px 0px 15px 0px;}





/* footer styles */
.footer h2 {margin-top: 0px;}







.space-above {margin-top: 90px;}			/* These are used instead of needing to apply margin to elements which don't always need it */
.space-below {margin-bottom: 90px;}


}/* close media query */

