/**
	@Author:	Paul Strandoo
	@Date:		16 Septembrer 2018
	@Notes:		Suffolk Jazz School
		
	FONTS & COLORS
	-------------
	logo red: #d64236;
	header tan: #f3e8c9;
	panel light: #ecdcc9;
	panel dark: #cac2b5;
	
	Font-family: 'Ultra', serif; 400
	Font-family: 'Open Sans', sans-serif;
	available weight: 400, 400i, 700;
	inner max-width: 1070px;
*/

@import url('reset.css');
/* @import url('font-awesome.min.css'); */

* {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

html {
	font-size: 100%;
	}
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	background: #ffffff;
	}

body, input, textarea, table {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #222;
	}
	
/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 1em;
	line-height: 1.6em;
	margin: 0 0 1em;
	}
li {
	margin: 0;
	}

em {
	font-family: 'Open Sans', sans-serif;
	font-style: italic;
	}
b,
strong {
	font-weight: 700;
	}

a {
	color: #222;
	border-bottom: 1px solid #d64236;
}
a:hover {
	color: #d64236; /* blue */
	border-bottom: 2px solid #d64236;
}

h1,h2,h3,h4 {
	font-family: 'Ultra', serif;
	font-weight: 400;
	margin: 0 0 0.5em;
	color: #336b87;
	}
h1,
.h1 {
	font-family: 'Ultra', serif;
	font-weight: 400;
	font-size: 2.5em;
	line-height: 1.15em;
	margin: 0.5em auto;
	text-transform: uppercase;
	}
h2,
.h2 {
	font-family: 'Ultra', serif;
	font-weight: 400;
	font-size: 1.8em;
	line-height: 1.2em;
	margin: 0 0 0.7em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	}
h3,
.h3 {
	font-family: 'Ultra', serif;
	font-weight: 400;
	font-size: 1.3em;
	line-height: 1.3em;
	margin: 0 0 0.3em;
	}
h4 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.2em;
	line-height: 1.4em;
	font-weight: 700;
	color: #222;
	margin: 0 0 1em;
	padding: 0;
	}

.tutor-section h4 {
	margin: 0;
	}

h5 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	margin: 0.4em auto;
	font-weight: 700;
	}

h2 a, .h2 a {
	color: #336b87;
	border-color: transparent;
	}

@media only screen and (min-width: 600px) { 
	h1, .h1 {
		font-size: 3.5em;
		}
	h2, .h2 {
		font-size: 2.4em;
		}
	h3, .h3 {
		font-size: 1.5em;
		}		
}

/* Headline Overrides */
.uppercase {
	text-transform: uppercase !important;
	}
.lowercase {
	text-transform: none !important;
	}
.no-margin {
	margin-bottom: 0;
	}
.no-margin + h2 {
	margin-top: 0;
	}

img {
	display: block;
	}

/* Dark and Light */
.dark,
.dark p,
.dark li,
.dark h2,
.dark h3 {
	color: #fff;
	}
.dark p,
.dark li {
	font-weight: 400;
	}
.dark a {
	color: #fff;
	border-bottom: 1px solid #fff;
	}
.dark a:hover {
	color: #fff;
	}
.dark {
	background: #00355e;
	color: #fff;
	}
.dark h4 {
	color: #fff;
	}

/* global section centering */
.center,
.center p,
.center h2,
.center h3,
.center h4 {
	text-align: center;
	}


/* ----- [ Structure ] --------------------------*/
.page-wrapper {
	position: relative;
	padding-top: 0;
	background: #fff;
	min-height: 100%;
	margin-bottom: 600px;
	/*padding-top: 110px;*/
	z-index: 2;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.page-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: rgba(0,0,0,0.4);
	z-index: 600;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
	
header,
section,
footer {
	background: #ffffff;
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	padding: 40px 0;
	}
.inner {
	position: relative;
	max-width: 1070px;
	margin: 0 auto;
	padding: 0 5%;
	}
	
.inner-full {
	max-width: 100%;
	padding: 0;
	}
.inner-narrow {
	max-width: 900px;
	}


/* ----- [ Strandoo Simple Grid System v2.8 ] -- */
.row {
	display: block;
	margin: 0 -15px;
	overflow: hidden;
	position: relative;
	}

.stretch {
	align-items: stretch;
	}

.row > .col {
	width: 100%;
	vertical-align: top;
	padding: 0 15px;
	}

.row.no-padding,
.row.padding-0 {
	margin: 0;
	}
.row.padding-1 {
	margin: 0 -1px;
	}
.row.padding-2 {
	margin: 0 -1px;
	}
.row.padding-5 {
	margin: 0 -5px;
	padding-top: 5px;
	}
.row.padding-5 {
	margin: 0 -5px;
	padding-top: 5px;
	}
.row.padding-10 {
	margin: 0 -10px;
	padding-top: 10px;
	}
.row.padding-20 {
	margin: 0 -20px;
	}

.no-padding > .col,
.padding-0 > .col {
	padding: 0;
	}
.padding-1 > .col {
	padding: 1px;
	}
.padding-2 > .col {
	padding: 2px;
	}
.padding-5 > .col {
	padding: 5px;
	}
.padding-10 > .col {
	padding: 10px;
	}
.padding-20 > .col {
	padding: 20px;
	}

.row.text-center > .col {
	text-align: center;
	}

.row > .col.fright {
	float: right;
	}
.row > .col.fleft {
	float: left;
	}

.col > img {
	max-width: 100%;
	}

img.full {
	width: 100%;
	}
img.half {
	width: 50%;
	float: left;
	}

.centered,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}

.tutor-photos {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	}
.photo-circles {
	width: 25% !important;
	}

/* 37.5 equivalent breakpoint */
@media only screen and (min-width: 600px) { 
	.row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		}

	.row-2 > .col { width: 50%; }
	.row-3 > .col { width: 33.333%; }
	.row-4 > .col { width: 25%;}
	.row-5 > .col { width: 20%;}
	.row-6 > .col { width: 16.666%;}

	.row-2 .span-2 { width: 100%; }
	.row-3 .span-2 { width: 66.666%; }
	.row-4 .span-2 { width: 50%; }
	.row-4 .span-3 { width: 75%; }
	.row-5 .span-2 { width: 40%; }
	.row-5 .span-3 { width: 60%; }
	.row-5 .span-4 { width: 80%; }
	
	.photo-circles { width: 24% !important; 
		margin: 0 0.5%;}
	/*.photo-circles:nth-of-type(n+6) {
		display: none;
		}
	*/
}

.row-narrow {
    max-width: 760px;
    margin-inline: auto;
}


/* ----- [ Masthead / Page Header ] -------------*/
.page-header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	height: auto;
	margin: 0;
	padding: 0;
	z-index: 10;
	background: #f3e8c9;
	background: rgba(241,232,204,0.95);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	}

.open .page-header {
	height: 100vh;
	}

.logowrap {
	width: 200px;
	margin: 15px 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.logowrap img {
	width: 100%;
	height: auto;
	}
	
.cd-menu-trigger,
.logowrap a,
.logowrap a:hover {
	border-bottom: none;
	}

.small {
	position: fixed;
	}
.small .logowrap {
	width: 120px;
	margin: 5px auto 5px 0;
	}

@media only screen and (min-width: 800px) {
	.page-header {
		position: fixed;
		}
	.page-header .inner {
		justify-content: flex-start;
		}

	.logowrap {
		display: block;
		width: 220px;
		margin: 10px auto 10px 0;
		}
	.logowrap img {
		width: 100%;
		height: auto;
		}
	.logowrap a,
	.logowrap a:hover {
		border: none;
		}
		
	.small {
		position: fixed;
		}
	.small .logowrap {
		width: 100px;
		margin: 5px auto 5px 0;
		}
}


/* ----- [ Flex Container (Header) ] ----------- */
.flex-container {
	display: block;
	}
.flex-container > * {
	/*width: 100%;*/
	display: block;
	}
	
@media only screen and (min-width: 800px) {
	/* Make this a Utility Class */
	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		}
	.flex-container > * {
		/*border: 1px solid gold;*/
		}
		
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start; }
	.f-right { justify-content: flex-end; }
	.f-center { justify-content: center; }
}


/* ----- [ Navigation ] ------------------------ */
.main-navigation {
	display: none;
	}
.main-navigation.open {
	display: block;
	margin-top: 60px;
	}

.main-navigation ul {
	text-align: center;
	margin: 0;
	}
.main-navigation li {
	position: relative;
	font-size: 24px;
	margin: 0 1em 1em 0;
	}
.main-navigation li a,
.main-navigation li a:visited {
	color: #222222;
	text-decoration: none;
	/*border-bottom: 2px solid transparent;*/
	border-bottom: none;
	font-weight: 700;
	display: block;
	}
.main-navigation li a:hover {
	/*border-bottom: 2px solid #d64236;*/
	border-bottom: none;
	color: #d64236;
	}

.main-navigation .on > a,
.main-navigation li:hover > a {
	/*border-bottom: 2px solid #d64236;*/
	border-bottom: none;
	color: #d64236;
	}

@media only screen and (min-width: 800px) {
	.menu-toggle {
		display: none;
		}
		
	.main-navigation {
		display: block;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		width: auto;
		margin: 0;
		padding: 0;
		background: transparent;
		overflow: visible;
		}
	.main-navigation p {
		display: none;
		}
	.main-navigation ul {
		text-align: right;
		text-align: right;
		font-size: 1.4em;
		display: block;
		margin: 0;
		}
	.main-navigation li {
		position: relative;
		display: inline-block;
		font-size: 15px;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		margin: 0 1em 0 0;
		}

	.main-navigation li a,
	.main-navigation li a:visited {
		text-decoration: none;
		border-bottom: 2px solid transparent;
		font-weight: 700;
		}
	.main-navigation li a:hover {
		border-bottom: 2px solid #d64236;
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---------- */
.cd-menu-trigger {
	position: absolute;
	right: 0;
	top: 0;
	max-height: 70px;
	height: 100%;
	width: 70px;
	}
.cd-menu-trigger:hover {
	border: none;
	}
.cd-menu-trigger .cd-menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #FFF;
	display: none;
	}
.cd-menu-trigger .cd-menu-icon {
	/* this span is the central line in the menu menu */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 22px;
	height: 2px;
	background-color: #000;
	/* these are the upper and lower lines in the menu menu */
	}
.cd-menu-trigger .cd-menu-icon::before, 
.cd-menu-trigger .cd-menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.cd-menu-trigger .cd-menu-icon::before {
	bottom: 7px;
	}
.cd-menu-trigger .cd-menu-icon::after {
	top: 7px;
	}
.cd-menu-trigger.is-clicked .cd-menu-icon {
	background-color: rgba(0, 0, 0, 0);
	}
.cd-menu-trigger.is-clicked .cd-menu-icon::before, 
.cd-menu-trigger.is-clicked .cd-menu-icon::after {
	background-color: #000;
	}
.cd-menu-trigger.is-clicked .cd-menu-icon::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	}
.cd-menu-trigger.is-clicked .cd-menu-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
	
@media only screen and (min-width: 800px) {
	.cd-menu-trigger {
		display: none;
		}
	.cd-menu-trigger .cd-menu-text {
		display: inline-block;
		line-height: 70px;
		}
	.cd-menu-trigger .cd-menu-icon {
		left: auto;
		right: 1.25em;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		}
}



/* ----- [ Sections ] -------------------------- */
.top {
	border-top: 150px solid #fff;
	padding: 0;
	}

.panel {
	padding: 20px;
	margin: 0 0 30px;
	overflow: hidden;
	}
.light-panel {
	background: #ecdcc9;
	}
.dark-panel {
	background: #cac2b5;
	}
.panel > h2 {
	margin: 0 auto;
	}


/* ----- [ Home / Intro ] ---------------------- */
.photo-circles img {
	border-radius: 50%;
	}
.small-photo {
	width: 100%;
	}
	
.main-content {
	padding: 30px 0;
	padding: 0;
	}
	
.home-text {
	font-size: 1.08em;
	margin-bottom: 30px;
	}


/* ----- [ Programme Section ] ------------------*/
.the-programme .inner {
    overflow: hidden;
}
.the-programme .cms-text {
    overflow: scroll;
}
.table-wrapper {
	overflow-x: auto;
	width: 100%;
	}

.program-table {
	font-family: 'Ultra', serif;
	font-weight: 400;
	table-layout: fixed;
	width: auto;
	border-top: 6px double #336b87;
	border-bottom: 6px double #336b87;
	margin: 0 0 30px;
	}
.program-table td,
.program-table th {
	border: 1px solid #336b87;
	padding: 15px 5px;
	line-height: 1.3em;
	}
.program-table th {
	font-family: 'Ultra', serif;
	font-weight: 400;
	font-size: 1.2em;
	color: #336b87;
	text-align: center;
	width: 22%;
	}
.program-table th:first-of-type {
	width: 12%;
	}
.program-table th:nth-of-type(even),
.program-table td:nth-of-type(even) {
	background: #ecdcc9;
	}	
	
.program-table strong,
.program-table b {
	font-family: 'Ultra', serif;
	font-weight: 400;
	font-size: 1.1em;
	color: #336b87;
	}

@media only screen and (min-width: 660px) {
	.program-table strong,
	.program-table b {
		font-size: 1.5em;
		}
}


/* ----- [ Tutors / About Section ] -------------*/
.bio-photo {
	width: 180px;
	margin: 0 auto 20px;
	}
.circle-image {
	border-radius: 50%;
	}

.tutor-section:nth-of-type(odd) {
	background: #ecdcc9;
	}

.tutor-name {
	font-family: 'Ultra', serif;
	font-weight: 400;
	font-size: 2em;
	line-height: 1.1em;
	margin: 0 0 0.5em;
	}

@media only screen and (min-width: 660px) {
	.tutor-name {
		font-size: 2.4em;
		}
}

/* ----- [ Application / Downloads ] ------------*/
.document-list {
	border-top: 1px solid #ecdcc9;
	border-bottom: 1px solid #ecdcc9;
	margin: 0 0 20px;
	padding: 20px 0 0;
	}

.document-list .row {
	display: flex;
	}
	
.document-list .text-right {
	width: 20%;
	width: auto;
	}
.document {
	padding-bottom: 20px;
	}
	
.doc-thumb {
	margin:0 0 20px auto;
	max-width: 120px;
	max-width: 80px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	}

.small-text {
	font-size: 0.85em;
	line-height: 1.4em;
	}


.LoginRegisterLinks,
.LoginRegisterMessage {
	display: none;
	}

@media only screen and (min-width: 660px) {
	.document-list .text-right {
		/*width: 33.3333%;*/
		}
	.doc-thumb {
		max-width: 120px;
		}
}

/* ----- [ Gallery ] ------------*/
.gallery {
	margin-bottom: 80px;
	}
	
.gallery .row {
	justify-content: center;
	}
.gallery-thumb {
	width: 100%;
	}

.thumb-link {
	display: block;
	position: relative;
	border: none;
	}
.thumb-link:hover {
	border: none;
	}

.thumb-text {
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column; 
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
	}

.thumb-link:hover .thumb-text {
	opacity: 1;
	visibility: visible;
	}




/* ----- [ Section Dividers ] -------------------*/
.divider,
hr {
	position: relative;
	max-width: 900px;
	height: 50px;
	margin: 50px auto;
	background: url('../images/horn-dingbat.png') 50% 50% no-repeat;
	background-size: 50px;
	overflow: hidden;
	border: none;
	clear: both;
	}
.divider:before,
.divider:after,
hr:before,
hr:after {
	content: "";
	border-top: 1px solid #f00;
	position: absolute;
	width: 100%;
	top: 50%;
	margin-left: -54%;
	/*z-index: -1;*/
	}
.divider:after,
hr:after {
	margin-left: auto;
	margin-left: 54%;
	}
.divider.sax {
	background: url('../images/sax-dingbat.png') 50% 50% no-repeat;
	background-size: 50px;
	}
.divider.bass {
	background: url('../images/bass-dingbat.png') 50% 50% no-repeat;
	background-size: 50px;
	}
	
hr:nth-of-type(3n+2) {
	background: url('../images/sax-dingbat.png') 50% 50% no-repeat;
	background-size: 50px;
	}
hr:nth-of-type(3n) {
	background: url('../images/bass-dingbat.png') 50% 50% no-repeat;
	background-size: 50px;
	}


.sm2-bar-ui .bd, 
.sm2-bar-ui .sm2-extra-controls {
	background-color: #d64236;
	}

.audio-section + .contact-us {
	margin-top: 100px;
	}

/* ----- [ Contact form ]----------------------- */
.contact-us {
	background: #d64236;
	color: #fff;
	}

.contact-us ul {
	margin: 10px 0;
	}
.contact-us li strong {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.1em;
	font-weight: 400;
	font-variant: small-caps;
	text-transform: uppercase;
	}

form.contact-form {
	max-width: 700px;
	margin: 30px auto 30px;
	}

.contact-form li {
	margin: 0;
	position: relative;
	overflow: hidden;
	}
.antispam {
	display: none;
	}
.contact-form label {
	display: none;
	}

.contact-form label.show {
	display: inline-block;
	}

input,
select,
textarea {
    font-size: 1em;
    width: 100%;
    padding: 6px 8px;
    margin: 0 0 15px;
	color: #333;
    webkit-appearance: none;
    border: 1px solid #fff;
    border-radius: 0;
    }
textarea {
	margin: 0 0 5px;
	}

input[type=submit],
input.button {
    -webkit-appearance: none;
	}

input[type=checkbox] {
	width: auto;
	margin: 0 0 0 10px;
	}
select {
	height: 42px;
	font-size: 1.1;
	padding: 15px 19px;
	border: none;
	border-radius: 0;
	}

.error,
.success {
	padding: 10px;
	color: #fff;
	font-weight: 400;
	background: #f36617;
	margin: 0 0 20px;
	width: auto;
	}
.success {
	color: #00355e;
	background: #c5d301;
	}
.ui-widget-content p {
	text-align: right;
	margin: -1.6em 0 0;
	}
span.ui-state-error {
	color: red;
	}

@media only screen and (min-width: 660px) {
	.contact-form .name {
		float: left;
		width: 49%;
		}
	.contact-form .telephone {
		float: right;
		width: 49%;
		}
}


/* ----- [ Buttons ] --------------------------- */
.button,
.ui-button {
	display: inline-block;
	padding: 5px 14px;
	color: #fff;
	background: #d64236;
	border: 2px solid #d64236;
	cursor: pointer;
	width: auto;
	opacity: 0.9;
	font-size: 1em;
	font-weight: 700;
	text-transform: uppercase;
	}
.button:hover {
	color: #d64236;
	background: none;
	text-decoration: none;
	}
	
.button.outline {
	background: none;
	color: #d64236;
	}
	
.button.full,
.content .button.full {
	width: 100%;
	}
.button.right,
.content .button.right {
	float: right;
	}

.dark .button {
	color: #fff;
	background: transparent;
	border: 2px solid #fff;
	}
.dark .button:hover {
	color: #d64236;
	background: #fff;
	border: 2px solid #fff;
	}


/*-------[ Footer ] ---------------------------- */
.page-footer {
	clear: both; 
	border: none;
	background: #f3e8c9;
	padding: 0;
	text-align: center;
	margin-top: 20px;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	clear: both;
	}
	
.page-footer .inner {
	padding: 40px 15px 20px;
	}
.page-footer p,
.page-footer li {
	font-size: 0.9em;
	line-height: 1.3em;
	font-weight: 400;
	margin: 0 0 0.5em;
	}
.page-footer li {
	margin: 0;
	}

.footer-logo {
	width: 200px;
	margin: 0 auto 20px;
	} 

.copyright-credits {
	margin: 20px 0 0;
	font-size: 0.75em;
	}

/* ----- [ Social Media Icons ] ---------------- */
.social-networks {
	display: none;
	}
.social-networks li {
	display: inline-block;
	margin: 0;
	padding: 5px;
	}
.social-networks a {
	display: block;
	text-indent: -9999px;
	height: 60px;
	width: 60px;
	margin: 0;
	opacity: 1;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	}
.social-networks a.twitter { background: url('../images/ti-twitter.svg') 0 0 no-repeat; background-size: 100%; }
.social-networks a.linked-in { background: url('../images/ti-linkedin.svg') 0 0 no-repeat; background-size: 100%; }
.social-networks a.facebook { background: url('../images/ti-facebook.svg') 0 0 no-repeat; background-size: 100%; }
.social-networks a.instagram { background: url('../images/ti-instagram.svg') 0 0 no-repeat; background-size: 100%; }

.social-networks a:hover {
	opacity: 1;
	border: none;
	}

.top-link {
    position: fixed;
    bottom: 30px;
    right: 4%;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    z-index: 9;
    border-radius: 50%;
    overflow: hidden;
	}
.top-link a {
	color: #fff;
	font-size: 36px;
	line-height: 45px;
    background: #d64236 url('../images/up-arrow.png') 50% 50% no-repeat;
    background-size: 100%;
    display: block;
    height: 50px;
    width: 50px;
    outline: medium none;
    position: relative;
    z-index: 0;
    text-align: center;
    
    }
.top-link a:hover {
	border: none;
	background: #d64236 url('../images/up-arrow.png') 50% 50% no-repeat;
	background-size: 100%;
	}
.top-link.show {
	opacity: 1;
	}

/* ----- [ CMS Content ] ------------------------*/
.cms-text p > img {
	max-width: 100%;
	display: block;
	}
	
img.inline {
	display: inline !important;
	}

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text ul li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
.cms-text ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
	

/* ----- [ Misc. / Utility Styles ] ------------ */
img.right {
	float: right;
	}
.fright {
	float: right;
	}
.fleft {
	float: left;
	}
.text-left,
.text-left p,
.text-left li,
.text-left h2,
.text-left h3 {
	text-align: left;
	}
.text-right,
.text-right p,
.text-right li {
	text-align: right;
	}
.text-center {
	text-align: center;
	}
.text-small {
	font-size: 1em;
	}

.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	}
.clearfix:after {
	clear: both;
	}
.clearfix { 
	zoom: 1;
	}

.align_left {
	float: left;
	margin: 0 1em 1em 0;
}
.align_right {
	float: right;
	margin: 0 0 1em 1em;
}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
}

.init-cap::first-letter {
	float: left;
    font-size: 3.6em;
    font-weight: 400;
    line-height: 0.95em;
    margin-top: -0.1em;
    margin-left: -4px;
	}

#editpage {
	position: fixed;
	bottom: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
	z-index: 1000;
	}
#editpage:hover {
	background: #ffffcc;
	color: #000; 
	}
.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}


/* PRINT STYLES */
@media print {
	/* If you're going to have a print stylesheet, now's the time */
}


