/** ----------------------------------------------------------
 *
 * Contains the main layout of the page and the individual styles.
 * Acts as the main stylesheet for theme.
 *
 *		Include your notes or table of contents below....
 *		Include color hex's or values of your grid
 *
 *		1. OOCSS GRID
 *		2. MAIN LAYOUT
 *		3. HEADER
 *			- Brand
 *			- Search Form
 *		4. Navigation
 *			- Primary Navigation
 *			- tablet Navigation
 *			- Secondary Navigation
 *			- Secondary Nav 2-5 Levels deep
 *		5. Mixed
 *		6. Footer
 *		7. Page Specific Layout
 *			- Homepage
 *			- Search Results
 *		8. Device and Responsive Layout
 *			- Breakpoint 960px
 *			- Breakpoint 640px
 *				- Search Form
 *				- Main Content
 *		9. Print Styles
 *			- Simple Theme custom print styles
 *
 * @author Your Name <email@silverstripe.com>
 * ------------------------------------------------------- */

/* OOCSS Grid
* https://github.com/stubbornella/oocss/wiki/grids
*/

.line, /* line - Groups units on one horizontal line. Note: for mobile layout units may be stacked to avoid horizontal scrolling. */
.lastUnit {
	overflow:hidden;
	*overflow:visible;
	*zoom:1;
	padding:0 10px;
}
.unit { /* unit - Base class which divides a line into sections (columns). */
	float:left;
	padding:0 10px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box; /* box-sizing:border-box; creates a box-model where
	padding and border are NOT added onto the width - they are included in the width,
	so a 200px wide element with 20px padding will be 200px, NOT 240px wide */
}
.unitRightv { /* Use this class if you want to offset a column eg: |--content(.unit)--|--content(.unit)--|--no-content--|--no-content--|--content(.unitRighttv)--| */
	float:right;
}

/* sizeXofY - Extends unit. Indicates the fractional width of the unit, for example size3of4 would take up three quarters, or 75%, of the horizontal space.
The following fractions are supported: 1, 1/2, 1/3, 2/3, 1/4, 3/4, 1/5, 2/5, 3/5, 4/5 */
/* It is possible to add more columns if you wish you will just have to add the fractions that are missing eg: .size1of6 {width:16.66666%;} */

.size1of1 {
	float:none;
}
.size1of2 {
	width:50%;
}
.size1of3 {
	width:33.33333%;
}
.size2of3 {
	width:66.66666%;
}
.size1of4 {
	width:25%;
}
.size3of4 {
	width:75%;
}
.size1of5 {
	width:20%;
}
.size2of5 {
	width:40%;
}
.size3of5 {
	width:60%;
}
.size4of5 {
	width:80%;
}
.lastUnit { /* lastUnit - Extends unit. Applied to the last child of every line. */
	float:none;
	width:auto;
	_position:relative; /* Bug fix for IE6 - Internet Explorer 6 and below wouldn't fail on properties that were prefixed with non-alphanumeric characters.
	meaning that anything prefixed with _ wouldn't be picked up by any other browsers */
	_left:-3px;
	_margin-right:-3px;
}

/* MAIN LAYOUT */
body {
    margin: 0;
    z-index: -1;
    background-size: cover;
	background-attachment: fixed;
	background-position-y: -375px;
    min-width: 240px;
    -webkit-text-size-adjust: none; /* The text size is not adjusted for Safari on iPhone */
}
.body-overlay{
	height: inherit;
	width: inherit;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	z-index: 0;
	background-color: rgba(101,47,141, 0.3);

}
	.ie7 body,
	.ie8 body {
	    min-width: 860px; /* media queries are not supported in ie7/8 without a polyfill */
	}
	.main {
	    position: relative;
	    padding: 40px 0 40px;
	    min-height: 100px;
	}
	.main .inner{
		background-color: #fff;
		min-height: 800px;
		padding: 20px;
		border-radius: 10px;
		box-shadow: rgba(0, 0, 0, 0.548) 2px 2px 20px
	}

	.StaffHomePage .main .inner, .LoginPage .main .inner{
		background:  none;
		min-height: 0px;
		padding: 0;
	}
	.inner {
	    max-width: 1300px;
	    margin: 0 auto;
	    padding: 0 10px;
	}
	.ie6 .inner {
	    width: 960px;
	}
	.no-sidebar .content-container {
	    float: left;
	    width:100%; /* makes content container full width when there is no sidebar */
	}
	.sidebar { /* this is the sidebar element */
		margin-top: 12px;
	}
	.no-sidebar .sidebar {
		display: none;
	}
	ul.optionset{
		width: 100%;
		float: left;
		padding: 0;
		margin:  10px 0;
	}


/* HEADER */
#home-header {
	background: none;
	position: absolute;
	width: 100%;
	height: 180px;
}

#home-header .primary ul {
	left: 10px;
	top: unset;
	bottom: 10px;
}

#home-header .primary li {
	border-right: 3px solid #fff;
	padding-right: 25px;
	margin: 0px;
	margin-left: 25px;
}

#home-header .primary li.last {
	border-right: none;
}

#home-header .primary li a {
	font-size: 24px;
}

#home-header .primary > ul > li.section > a, #home-header .primary > ul > li.current > a {
	border-top: none;
}

#home-header .primary li.section > a, #home-header .primary li.current > a, #home-header .primary li a:hover {
	color: #fff;
}

#home-header ul li span {
	color: #fff;
}

span.waiting{
	display: block;
	width: 100%;
	text-align: center;
	background-color: rgba(209, 35, 35, 0.418);
}

span.approved{
	display: block;
	width: 100%;
	text-align: center;
	background-color: #004a2a;
	color: #fff
}

.page-link{
	padding: 10px 0;
    display: block;
    font-size: 15px;
    line-height: 17px;
	border-bottom: none;
	color: #652f8d;
	cursor: pointer;
}

.StaffHomePage .main {
	padding: 0px;
}

.header {
    padding-top: 1px;
}
.header .inner {
	padding-top: 0;
	position: relative;
	height: 183px;
	z-index: 99;
}

.header .primary li a.find-jobs{

}

.logo{
	width: 250px;
}
.JobsPage h3{
	font-size: 30px;
    font-weight: 600;
	font-family: Oswald;
	color: #000
}

.JobsPage .logo{
	float: left;
	width: 400px;
    max-width: 400px;
}
.ssv-logo{
	width: 150px;
	padding: 0 20px;
	margin-top: 60px;
}

/* Brand */
header .brand {
float: left;
display: inline-block;
margin: 20px 0;
}
.brand h1 {
	margin: 0;
}

body.sticky {
	padding-top: 183px;
}

.header.sticky{
height: 60px;
text-align: left;
padding-left: 20px;
transition: all ease .3s;
position: fixed;
width: 100%;
background-color: rgba(100, 47, 141, 0.664);
z-index: 100;
top: 0;
}
.header.sticky .inner{
	height: 60px;
	min-height: 60px;
}
.header.sticky .brand{
	margin: 0
}
.header.sticky .logo{
	width: 100px;
}
.header.sticky .primary ul{
	top: 15px;
}
.header.sticky .user-menu{
	padding-top: 0;
}
.header.sticky .primary li a{
	font-size: 14px;
}
.header.sticky .acc-btn-container{
	padding: 5px 0 0 0;
}
.header.sticky .acc-btn-container a {
	font-size: 10px;
	padding: 3px 6px;
}


	/* Search form */

	.search-bar {
		position: absolute;
		right: 13px;
		top: 12px;
	}
		.search-bar .field {
			margin: 0;
			padding: 0;
		}
		.search-bar form input.text {
		    width: 155px;
		    padding: 5px 34px 5px 15px;
		    color: #888;
		    margin: 0;
		    border: none;
		    -moz-border-radius: 14px;
		    border-radius: 14px;
		    background: #fff;
		}

		.search-bar form input.action { /* positions the search button icon over the top of the search input */
		    font-size: 14px;
		    position: absolute;
		    right: 5px;
		    top: 0;
		    cursor: pointer;
		    border: none;
		    padding: 5px;
		    background: none;
		    font-family: 'WebSymbolsRegular';
		    color: #848484;
			border-radius: 0;
			margin: 0;
		}
		.search-bar form input.active,
		.search-bar form input.action:hover {
		    color: #000;
		}
		.search-bar form input:focus,
		.header textarea:focus {
		    outline: none; /* removes default browser outlining on focus */
		}
		.search-dropdown-icon {
		    display: none; /* hides search-dropdown-icon when site is at full width - media queries set it to display:block when at mobile/tablet width */
		}
		.acc-btn-container{
			float: right;
			color: #fff;
			padding: 15px 0 0 0;
		}
		.login{
			background-color: #35B729;
		}
		.sign-up{
			background-color: #652f8d;
		}
		.acc-btn-container a{
			color: #fff;
			font-size: 15px;
			cursor: pointer;
			font-weight: bold;
			padding: 5px 10px;
		}
		.user-menu{
			float: right;
			color: #ffffff;
			padding-top: 20px;
		}
		.user-menu a{
			color: #ffffff;
			font-size: 12px;
			font-weight: bold;
		}
		.pesport-login .actions {
			text-align: center;
		}
		.pesport-login input[type="submit"]{
			text-transform: none;
			float: none;
			border-radius: 100px;
			background-color: #4990e2;
			width: 157px;
			height: 46px;
			margin: 10px auto;
			font-size: 18px;
			box-shadow: 0 10px 20px 0 rgba(74, 144, 226, 0.37);
		}
		.pesport-login-form{
			padding: 20px;
		}
		.login-inner{
			background-color: #ffffff70;
			width: 500px;
			height: auto;
			border-radius: 30px;
			position: relative;
			margin: 20px auto;
			box-sizing: border-box;
			padding: 20px;
			margin-bottom: 50px;
		}

		.login-inner .button-holder{
			width: 240px;
			margin: 0 auto;
			position: relative;
		}
		.login-pop{
		  display: none;
			width: 800px;
			height: 670px;
			position: absolute;
			box-shadow: 0 10px 30px 0 #2e445e;
			border-radius: 8px;
			top: 100px;
		  z-index: 999;
			left: 0;
			right: 0;
			margin-left: auto;
			margin-right: auto;
			background-color: #fefefe;
		}
		#NXTStepLoginForm_NXTStepLoginForm{
			max-width: 80%;
			width: 80%;
			margin: 10px auto;
		}
		.force-display{
			display: block!important;
		}
		.login-to-your-account {
			font-family: "Roboto", "CamboRegular", Georgia, "Times New Roman", Times, serif;
			font-size: 30px;
			width: 465px;
			font-weight: bold;
			text-align: center;
			color: #082b4f;
			margin: 44px auto 28px auto;

		}
		.pesport-login  input.text, .pesport-login input.password{
			height: 50px;
			border-radius: 5px;
			background-color: #f3f3f3;
			border: solid 1px #9b9b9b;
			width: 100%;
			max-width: 100%;
			padding: 0;
			margin-bottom: 30px;
		}
		.login-label{
			font-size: 18px;
			line-height: 1.5;
			letter-spacing: -0.1px;
			text-align: left;
			color: #082b4f;
			margin-bottom: 10px;
			display: inline-block;
		}
		input[type=checkbox]:not(old) + label.remember-label{
			line-height: 1.78;
			text-align: left;
			color: #64a820;
			font-size: 18px;
			display: inline-block;
			position: relative;
			vertical-align: middle;
			margin: 5px;
			cursor: pointer;
		}


/* NAVIGATION */

	/* Primary navigation */
	.header .inner .unit {
		position: relative; /* used to position the main navigation */
	}
	.header .primary ul {
		position:absolute;
		top:80px;
		right: 10px; /* positions the main navigation */
	    text-align: right;
	}
	.header .primary li {
	    float: left;
	    margin: 0 5px;
	    position: relative;
	    white-space: nowrap; /* forces text to never wrap onto a second line */
	    margin-left: 25px;
	}
	.header .primary li:first-child {
		margin-left: 0;
	}
	.header .primary li a {
	    font-size: 18px;
	    line-height: 22px;
	    padding: 7px 0 6px;
	    font-weight: bold;
	    display: block;
	    color: #fff;
	}
	.header .primary li a span {
		display: block;
		font-weight: normal;
		opacity: 0.5;
	}
	.header .primary li.section > a,
	.header .primary li.current > a,
	.header .primary li a:hover {
	    color: #faaf3b;
	}
	.header .primary > ul > li.section > a,
	.header .primary > ul > li.current > a {
	    border-top: 1px solid currentcolor;
	    padding-top: 6px;
	}

	.header .primary li ul {
		position: absolute;
		background: #72379c;
		top:100%;
		right:-10px;
		display:none;
		border-top: 0;
	}
	.header .primary li:hover > ul {
		display:block;
	}
	.header .primary li li {
		float: none;
		margin: 0 9px;
	}

	.header .primary li.closer {
		display: none;
	}

	/* Secondary navigation */
	.main .secondary h3 {
	    font-size: 20px;
	    color: #AAA;
	    margin: 0 0 8px 0;
	    font-weight: normal;
	}
	.main .secondary {
	    border-bottom: 1px solid #eee;
	}
		.main .secondary ul {
		    padding: 0;
		    margin: 0;
		}
		.main .secondary li {
		    border-top: 1px solid #eee;
		    position: relative;
		    list-style-type: none;
		    margin-bottom: 0;
		}
		.main .secondary li a { /* side nav link styling */
		    padding: 10px 0;
		    display: block;
		    font-size: 15px;
		    line-height: 17px;
		    border-bottom: none;
		}
		.main .secondary li.current a.current {
			color: #93c849;
		}
		.main .secondary li.section,
		.main .secondary li.current {
		}
			.main .secondary li.section a,
			.main .secondary li.current a {
			    color: #000;
			}


		/* Secondary navigation 2-5 levels deep */
		.main .secondary ul ul {
			display: none;
		}
		.secondary ul li.current ul,
		.secondary ul li.section ul { /* Only show child pages from selected parent */
			display: block;
		}
		.secondary li.current ul ul {
			display: none;
		}
		.main .secondary ul ul li a { padding-left: 10px; } /* Indent all sidebar navigation levels*/

		.main .secondary ul ul ul li a { padding-left: 20px; }

		.main .secondary ul ul ul ul li a { padding-left: 30px; }

		.main .secondary ul ul ul ul ul li a { padding-left: 40px; }

		.main .secondary li a:hover,
		.main .secondary li.section a:hover,
		.main .secondary li.current a:hover {
		}




/* MIXED */
header:after,
.main:after,
#Root:after,
.search-bar:after,
header .inner:after,
footer:after { /* clearfix */
    height: 0;
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
}
.search-bar form input.action,
.header .primary li a,
.footer a { /* adds color transition when links/inputs on hover */
    -moz-transition: color 0.2s;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.footer a.brand { color: #333; margin-left: 0; }
.footer a.brand:hover { color: #B80000; }
body h1 span.amp {
    font-style: italic;
}

/* HERO */
.herowrapper {
	background: #fff;
	height: 500px;
}
.hero {
	height: 500px;
	z-index: 10;
	position: relative;
	overflow: hidden;
	padding: 0;
}
	.hero ul.inner {
		list-style: none;
		padding: 0;
		margin: 0;
		position: relative;
		width:100%;
		height: 500px;
		max-width: 1200px;
		z-index: 5;
		margin: 0 auto;
	}
	.hero ul.inner li {
		position: absolute;
		width:100%;
		top:0;
		left:0;
		bottom: 0;
		z-index: 10;
		background-position: center center;
		background-size: cover;
	}
	.hero ul.inner li:first-child {
		z-index: 20;
	}
	ul.hero-indicators {
		position: absolute;
		bottom: 0;
		left:0;
		right: 0;
		text-align: center;
		padding:0;
		margin: 0;
		z-index: 25;
	}
	ul.hero-indicators li {
		display: inline-block;
		width:10px;
		height: 10px;
		border-radius: 5px;
		border:1px solid #fff;
		margin: 5px;
		background:rgba(255,255,255,0);
		transition:all 0.3s ease-in-out;
		cursor: pointer;
	}
	ul.hero-indicators li.active {
		background:#fff;
	}

.hero .quote {
	position: absolute;
	bottom: 30px;
	right: 20px;
	color: #fff;
	text-align: right;
		text-shadow: 0 0 5px #000;
}
	.hero .quote p {
		margin: 0;
	}
	.hero .quote .text {
		font-size: 36px;
		line-height: 44px;
	}
	.hero .quote .author {
		font-size: 14px;
		font-weight: bold;
	}

/* LOGIN */

.LoginPage .main {
	padding: 0px;
}

.login-top{
	width: 100%;
	height: 300px;
}



.login-content {
	width: 100%;
	height: 1000px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
	padding-top: 180px;
}

.login-overlay {
	height: inherit;
	width: inherit;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: rgba(101,47,141, 0.4);
}

.login-form-logo {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	height: 200px;
	width: 100%;
}

.login-top-logo {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	height: 100%;
	width: 240px;
	float: right;
}

.login-top-content {
    flex-direction: column;
    display: flex;
    flex: 1;
    justify-content: center;
    height: 100%;
    float: left;
}

.login-top-content span {
	display: inline-block;
	vertical-align: middle;
	line-height: 1.2em;
}

.login-top-content h1 {
	font-weight: bold;
	margin: 0px;
	line-height: 1.4em;
}

.login-top-content h2 {
	color: #2A3882;
	font-size: 50px;
	font-weight: bold;
	margin: 0px;
	line-height: 1.4em;
}

.staff-login .textfield input {
	opacity: 0.85;
	color: #000;
	font-weight: bold;
	height: 80px;
	line-height: 80px;
	padding: 10px 20px;
	margin-top: 20px;
	font-size: 30px;
}

.staff-login input::placeholder {
	color: #000;
	font-weight: bold;
	font-size: 30px;
	line-height: inherit;
	vertical-align: bottom;
}
.checkboxset label{
	width: 80%;
}
table .status{
	display: none;
}
.staff-login .button input {
	background-color:#652f8d;
	border-radius: 0px;
	width: 240px;
	height: 60px;
	font-family: Helvetica, sans-serif;
	margin-top: 20px;
	font-size: 34px;
	text-transform: none;
}

.login-inner .sign-up{
	background-color: #35B729;
	border-radius: 0px;
	width: 240px;
	height: 60px;
	font-family: Helvetica, sans-serif;
	margin-top: 20px;
	font-size: 34px;
	text-transform: none;
	color: #fff;
	display: block;
	text-align: center;
	line-height: 60px;
	position: relative;
	margin: auto;
}

.login-form-content h3 {
	color: #fff;
	font-weight: bold;
	font-size: 40px;
	line-height: 1.4em;
	margin-top: 0px;
}

.login-form form {
	padding: 0px;
}


/* FOOTER */
.footer {
    color: #333;
    padding: 50px 0;
    font-size: 20px;
    line-height: 26px;
    box-shadow: inset 0 3px 0 #652f8d;
    z-index: 2;
    position: relative;
    background:  #fff;
}
.footer-tag{
	font-size: 32px;
	text-align: center;
	font-weight: bold;
	color: #652f8d ;
	margin: 0;
	font-family: 'Oswald', sans-serif;
}

.footer-tag-container {
	width: 100%;
	text-align: center;
}

.footer-logo {
	height: 100px;
	width: 100px;
	float: right;
	margin-left: 20px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.footer-info {
	height: 100px;
    width: 420px;
    float: right;
    position: relative;
}

.timesheet input{
	max-width: 80px;
}
.yellow{
	color:  #faaf3b;
}
	.footer a {
	    color: #652f8d;
	    text-decoration: underline;
	}
	.footer a:hover {
	}
	.footer .copyright {
	    font-size: 12px;
	    line-height: 15px;
	    float: left;
	    line-height: 18px;
	    font-weight: bold;
	    position: absolute;
	    bottom: 0;
	    text-align: right;
	}
	.footer h4 {
		font-weight: bold;
	}
	.footer p {
		margin: 0px;
		line-height: 1.4em;
	}
	.footer .lastUnit {
		text-align: right;
		float: right;
	}

/* PAGE SPECIFIC LAYOUT */

	/* Homepage */
		/* currently no Hompage specific styles - feel free to add your own */

	/* Search Results */
	.typography .searchResults h1 {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.searchResults p.searchQuery {
	    margin-bottom: 10px;
	    font-size: 15px;
	    font-weight: bold;
	}
	.searchResults ul#SearchResults {
	    padding: 0;
	    border-bottom: 1px solid #e5e5e5;
	    margin:0;
	}
	.searchResults ul#SearchResults li {
	    border-top: 1px solid #e5e5e5;
	    padding: 20px 0;
	    list-style-type: none;
	}
	.searchResults ul#SearchResults p {
	    margin-bottom: 10px;
	}
	.searchResults #PageNumbers a {
	    padding: 0 5px;
	}
	.searchResults #PageNumbers .pagination {
	   	border-bottom: 1px solid #e5e5e5;
	    padding: 20px 0;
	    display:table; /* displays the pagination as a table so that elements stay inline and the middle column adjusts its size to accomodate and the right arrow stays to the right */
	    width:100%;
	}
	.searchResults #PageNumbers .pagination span{
		display:table-cell; /* each element in the pagination div displays as a table cell */
	}
	.searchResults #PageNumbers p {
	    text-align: center;
	    padding:20px 0;
	}
	.searchResults #PageNumbers .next,
	.searchResults #PageNumbers .prev {
	    font-size: 14px;
	    padding: 0 20px;
	    display:table-cell; /* each element in the pagination div displays as a table cell */
	    vertical-align: middle;
	    border-bottom:0 !important;
	}
	.searchResults #PageNumbers .next {
	    margin-left: 15px;
	}
	.searchResults #PageNumbers .prev {
	    margin-right: 15px;
	}
	.clear{
		clear: both;
	}
	.timesheet{
		width: 100%;
		float: left;
		margin-top: 20px!important;
	}
	.sports{
		max-width: 150px;
	}
	.sport-icon{
		color: #fff;
		display: block;
		padding: 0;
		margin: 2px;
		border-radius: 23px;
		background-color: #652f8d;
		float: left;
		text-indent: 100px;
		overflow: hidden;
		width: 32px;
		line-height: 32px;
		position: relative;
		height: 32px;
		border-radius: 16px;
		font-size: 0px;
	}
	.sport-icon:before {
		font-size: 32px;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		text-align: center;
		text-indent: 0;
	}
	.icon-holder .sport-icon.icon-first-aid {
		background: none;
		width: 50px;
		height: 50px;
		line-height: 50px;
		border-radius: 0;
	}
	.sport-icon.icon-first-aid:before {
		background: url(/themes/StaffHQ/images/sportsguard-colour.png);
		content: "";
		background-size: contain;
	}
	.large{
		font-size: 34px;
		padding: 1px;
	}
	#staff-jobs_wrapper .col-sm-6{
		width: 100%;
	}

	#staff-jobs_wrapper .col-sm-6 .input-sm{
		width: 92%;
		text-align: left;
	}
	#staff-jobs_wrapper div.dataTables_wrapper, #staff-jobs_wrapper div.dataTables_filter{
		text-align: left;
	}
	#staff-jobs_wrapper div.dataTables_filter label{
		width: 100%;
		float: left;
	}
	#staff-jobs thead th{
		border: none;
		border-bottom: #333;
	}
	#jobs .job-detail-cell{
		padding: 0;
		position: relative;
		overflow: hidden;
	}
.odd div.manage-buttons, .even div.manage-buttons{
	background-color: rgba(0, 0, 0, 0);
}

	.pe-pagination{
		margin: 20px 0;
		width: 100%;
		float: left;
	}
	.pe-pagination ul li{
		list-style: none;
		float: left;
		border: 1px solid rgba(101, 39, 142, 0.49);
		box-sizing: content-box;
	}
.pe-pagination ul{
		margin: 0!important;
	}

.pe-pagination ul li a{
	width: 30px;
	line-height: 30px;
	display: block;
	text-align: center;
	background-color: #ffffff;
	color: #65278e;
	font-size: 14px;
}
.pe-pagination ul li.page-nav a{
	width: auto;
	padding: 0 10px;
}
.pe-pagination ul li.active a{
	color: #fff;
	background-color: rgba(101, 39, 142, 0.49)
}
	.detail-label{
		width: 30%;
	}
	.detail{
		width: 70%
	}
	.role{
		height: auto;
		background-color: #fff;
		margin: 10px auto;
		padding: 15px;
	}
	tr.role{
		transition: all ease 0.2s;
	}
	tr.role:hover, tr.role.even:hover{
		background-color:rgba(100, 47, 141, 0.336)
	}
	tr.role td{
		border: none;
		vertical-align: middle;
	}
	.role h2{
		margin: 5px 0;
	}
	.actions{
		text-align: right;
		width: 95px;
	}
	#MemberLoginForm_LoginForm .actions{
		width: auto;
		text-align: left
	}
	.role p{
		font-size: 16px;
	}
	.role-details{
		width: 30%;
		float: left;
	}
	.role-qualifications{
		width: 30%;
		float: left;
		margin-top: 20px
	}
	.role-reimbursement{
		width: 20%;
		float: left;
		margin-top: 20px
	}
	.role-header{
		font-weight: bold;
		clear: both;
		width: 100%;
		display: block;
		margin-bottom: 10px;
	}
	.manage-buttons{
		width: 20%;
		float: right;
		margin-top: 20px
	}

	.error-box {
	    width: 100%;
	    padding: 20px;
	    background-color: #ffcccc;
	    color: #333;
	    display: none;
	    box-sizing: border-box;
	    text-align: center;
	}

	.staff-message{
		width: 100%;
		padding: 20px;
		background-color: #65278f;
		color: #fff;
		box-sizing: border-box;
		text-align: center;
	}

	.error-box p{
		margin: 0;
	}

	.user-info{
		margin: 5px 0;
		background-color: #652f8dcc;
		padding: 5px;
		color: #fff;
	}
	.user-info p{
		margin: 0;
	}
	.timesheet form{
		padding: 0;
	}
	legend{
		margin-top: 15px;
	}
	table#jobs{
		width: 100%;
	}
	.table-header{
		display: table-cell;
		width: auto;
		padding: 5px;
		width: 100px;
		background-color: #e4e4e4;
		font-weight: bold;
		font-size: 14px
	}
	.time-row{
		display: table-row;
		width: 100%;
	}
	.time-cell{
		display: table-cell;
		padding: 2px;
		background-color: #e4e4e4;
		width: 100px;
		font-size: 14px
	}
	.client-cell{
		width: 150px;
	}
	.job-id-cell{
		width: 50px;
	}
	.role-cell{
		width: 120px;
	}
	.time-cell input[type="submit"], .time-cell a.absent{
		padding: 1px 2px;
		margin:  5px 2px 5px 2px;
		font-size: 8px;
		letter-spacing: 1px;
		text-transform: uppercase;
		line-height: 20px;
		border-radius: 4px;
	}
	.odd div{
		background-color: #fff
	}
	.even div{
		background-color: #e4e4e4;
	}
	.details-role{
		width: 50%;
		float: left;
	}
	.details-vacantroles{
		width:50%;
		float: left;
	}
	.brand-section{
		padding-top: 40px;
		display: flex;
		justify-content: center;
	}
	.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
	}
	.brand-image {
    display: inline-block;
    vertical-align: middle;
    filter: gray;
    -webkit-filter: grayscale(100%);
    -webkit-transition: all .3s ease;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-backface-visibility: hidden;
    cursor: pointer;
	}
	.privacy{
		width: 100%;
		display: block;
		text-align: center;
		margin-top: 10px;
		padding-top:  20px;
		float: left;
	}
	.privacy a{
		text-decoration: none;
	}
	.brand-image:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
	}

    label.error {
    font-size: 14px;
	color: #fff;
	height: 30px;
	background-color: #dc4646;
	position: relative;
	line-height: 30px;
	float: left;
	width: 100%;
	text-align: center;
	}
	p.small{
		font-size: 10px;
		color: #333;
		margin: 0;
	}
	.combodate{
		width: 100%;
		float: left;
		display: block;
	}
	.combodate select{
		width: 30%;
	}
	.datepicker-inline{
		display: none;
	}

	#Form_RegForm{
		float: left;
		width: 100%;
		max-width: 100%;
	}
	#Form_EditUserForm{
		width: 100%;
		max-width: 100%;
	}
	#Form_EditUserForm fieldset > div.field{
		width: 45%;
		max-width: 45%;
		float: left;
		margin: 10px 5% 10px 0;
	}
	#Form_MoreInfo #DOB_year, #Form_MoreInfo #DOB_month, #Form_MoreInfo #DOB_day{
		width: 32%;
	}
	.idlist li{
		font-size: 12px;
		line-height: 14px
	}
	.field{
		 min-height: 95px;
	}
	div.half{
		width: 48%;
	}
	.field.half{
		width: 48%;
		margin-bottom: 5px;
	}
	.field.half.left {
		clear: left;
	}
	.left{
		float:  left;
		text-align: left;
	}
	.whole{
		width: 100%;
		float:  left;
	}

	.whole-abn{
		width: 100%;
		margin: 20px 0;
	}

	.right{
		float:  right;
		text-align: left!important;
	}
	input[type="checkbox"]{
		clear: both;
		margin-top: 5px;
	}
	.address{
		float: left;
		clear: both;
		width: 100%;
	}
    div.multi{
        min-height: 65px;
    }
    .hidden{
        display: none;
    }
	.third{
		width: 32%;
		float: left;
		margin-bottom: 10px;
		min-height: 65px;

	}
	.center{
		margin: 0 2%;
		text-align: left!important;
	}

	.field.center{
		margin: 5px 2%;
	}
	#EnrollmentStageOneForm_RegForm, #EnrollmentStageTwoForm_MoreInfo, #CoachRegFormOne_RegForm, #CoachRegFormTwo_MoreInfo{
		padding: 20px 20px 60px 20px;
		background-color: #652f8d2e;
	}

	#EnrollmentStageOneForm_RegForm input:required, #EnrollmentStageTwoForm_MoreInfo input:required, #EnrollmentStageTwoForm_MoreInfo select:required, #TimeSheetTempForm_TimeForm input:required,
	#CoachRegFormOne_RegForm input:required, #CoachRegFormTwo_MoreInfo input:required	{
		background-color: #ffd8d8;
		/* border: 1px solid black; */
		box-sizing: border-box;
		border: 1px solid rgba(51, 51, 51, 0.507);
	}

		#EnrollmentStageOneForm_RegForm_locations, #EnrollmentStageOneForm_RegForm_locations_chosen, #CoachRegFormOne_RegForm_locations, #CoachRegFormOne_RegForm_locations_chosen{
			display: none;
		}

		.victoria-map{
			max-width: 700px;
		}
		.victoria-map path{
			transition: all ease 0.2s;
			cursor: pointer;
		}
        .victoria-map path.EV:hover, .victoria-map path.NV:hover, .victoria-map path.WV:hover, .victoria-map path.NM:hover, .victoria-map path.SM:hover, .victoria-map path.EM:hover,
		.victoria-map path.WM:hover, .victoria-map path.SEM:hover{
            fill: #652f8d;
        }
		.victoria-map path.active{
			fill: #652f8d;
		}

		.pop.pulse{
			fill: #7f7f7f;
			animation-name: color;
			animation-duration: 1s;
			animation-iteration-count: infinite;
		}

	@keyframes color {
		0% {
			fill: #7f7f7f;
		}
		50% {
            fill: #faaf3b;
		}
        100 {
        fill: #7f7f7f;
        }
	}

	.Enrolment_right{
		width: 50%;
		float:  right;
	}
	.Enrolment_left{
		width: 50%;
		float: left;
	}
	.legend{
		float:left
	}
	.legend ul{
		margin: 0;
	}
	.legend ul li{
		list-style: none;
		float: left;
		margin: 5px;
		font-weight: bold

	}
	ul.pagination li{
		list-style-type: none;
		text-indent: 0;
		padding: 0;
	}
	ul.pagination li:before{
		display: none;
	}
	.extratext{
		float: left;
		margin-left: 20px;
		margin-top: -18px;
	  }
	.accepted{
		background-color: #00fe5275!important;
	}
	.first-stage{
		background-color: #ff9735a1!important;
	}
	.pending{
		background-color: #4688e18a!important;
	}
	.rejected{
		background-color: #ff001752!important;
	}
	.legend ul li{
		cursor: pointer;
	}
	.lost{
		width: 100%;
		text-align: center;
		padding: 20px 0

	}
	.lost a{
		color: #652f8d;
		font-size: 24px;
	}
	.staff-sidebar{
		width: 15%;
		float: left;
		margin-top: 20px;
	}
	.staff-sidebar a{
		color: #652f8d;
	}
	.colour{
		width: 23px;
		height: 23px;
		display: block;
		float: left;
		margin-right: 5px;
		border: 1px solid #333
	}
	#Form_TimeSlotForm{
		width: 100%;
		max-width: 100%;
	}
	#Form_TimeSlotForm div.field{
		max-width: 200px;
		margin-right: 15px;
		float: left;
	}
	.view-page{
		float: left;
		width: 100%;
	}
	.add-button, .ss-uploadfield-fromcomputer{
		background-color: #652f8d;
		padding: 5px 10px;
		border-radius: 5px;
		color: #fff;
		transition: all ease 0.2s;
		float: left;
		margin: 0px 5px 10px 0px;
	}
	.add-button:hover{
		color: #faaf3b;
		background-color: #421f5d;
		text-decoration: none;
	}
	.back-button{
		background-color: #652f8d;
		padding: 5px 10px;
		border-radius: 5px;
		color: #fff;
		transition: all ease 0.2s;
		float: left;
		margin-bottom: 10px;
		clear: both;
		float: right;
    	margin-top: -45px;
	}
	.back-button:hover{
		color: #faaf3b;
		background-color: #421f5d;
		text-decoration: none;
	}
	#users tr{
		overflow: hidden;
	}
	tr.disabled{
		color: rgb(161, 161, 161);
	}
	td.name{
		padding:0!important;
		min-width: 200px;
		position: relative;
		overflow: hidden;
	}
	p.name{
		float: left;
		margin-left: 15px;
		width: 95%
	}
	.status-block{
		height: 0px;
		padding-bottom: 900px;
		position: absolute;
		float: left;
		width: 10px;
	}
	.details-table{
		width: 100%;
		float:  left;
	}
	ul.tab-nav{
		list-style: none;
		padding: 0;
		margin:  0;
		margin-top: 20px;
	}
	ul.tab-nav li{
		cursor: pointer;
		float: left;
		width: auto;
		list-style-type: none;
		color: #652f8d;
		font-size: 20px;
		font-weight: bold;
		background-color: #e8e8e6;
    	padding: 15px 20px;
    	margin: 0;
	}
    ul.tab-nav li:first-child {
        border-radius: 20px 0 0 0;
    }
ul.tab-nav li:last-child {
    border-radius: 0 20px 0 0;
}
	ul.tab-nav li:hover{
		background-color: rgba(233, 230, 202, 0.3);
	}
	ul.tab-nav li.active{
		box-shadow: inset 0 2px 0 #faaf3b;
		color: #faaf3b;
		background-color: #f5f5f5;
	}
	div.tab{
		width: 100%;
		float: left;
		display: none;
        border-radius: 0px 20px 20px 20px;
		background-color: #f5f5f5;
	}
	a.add{
		color: #652f8d;
	}

	a.remove{
		color: #8d2f2f;
	}
	.manage-lines{
		width: 40px;
    	float: left;
    	margin-top: 8px;
	}

	td.small, th.small{
		max-width: 60px;
	}

	td.med, th.med{
		width: 105px;
	}

	td.client, th.client{
		width: 200px;
	}

	td.unit{
		width: 80px;
		height: auto;
	}
	#QuickJobForm_QuickJobForm{
		padding-bottom: 200px;
	}
	div.error{
		width: 100%;
	    color: #fff;
	    text-align: center;
	    height: 50px;
	    background-color: #dc4646;
	    z-index: 99;
	    position: relative;
	    font-size:  22px;
	    line-height: 45px;
	}
	.action:hover{
		text-decoration: underline;
	}
	.tab-container{
		width: 95%;
		margin: 20px auto;
	}
	div.tab.active{
		display: block;
	}
	.manage-holder{
		min-width: 170px;
	}
	a.manage{
		color: #ffffff;
		background-color: #652f8d;
		line-height: 20px;
		font-size: 14px;
		display: block;
		padding: 2px 5px;
		border-radius: 2px;
		float: left;
		margin:0 2px 2px 0
	}
	a.role-manage{
		color: #fff!important;
		font-size: 10px;
		background-color: #652f8d;
		padding: 5px 10px;
		border-radius: 10px;
		display: block;
		float: right;
		margin-bottom: 10px;
		transition: all ease 0.2s;
		text-decoration: none;
		width: 95px;
		text-align: center;
	}
	a.role-manage:hover{
		background-color: #422458;
	}
	a.assign{
		background-color: #00b769;
	}
	a.assign:hover{
		background-color: #004a2a;
	}
	a.unassign, a.absent{
		background-color: #b70000;
	}
	a.unassign:hover, a.absent:hover{
		background-color: #790404;
	}
	table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after{
		bottom: 2px;
	}
	tr .userbutton{
		display: inline-block;
		border-radius: 4px;
		padding: 2px 2px;
		text-transform: uppercase;
		border: none;
		font-size: 10px;
		margin: 0 10px 0 0 ;
        line-height: 14px;
	}
	.job-details .clear{
		padding: 10px 0
	}
	.days{
		display: none;
	}
	.id{
		display: none;
	}
	.date-hidden{
		display: none;
	}
	span.days-count{
		font-weight: bold;
		font-size: 15px;
		color: #652f8d;
	}
	.role-view{
		width: 100%;
		float: left;
		box-sizing: border-box;
		padding: 20px;
	}
	.role-view h2{
		margin: 5px 0
	}
	.roles .manage, .role-view .manage{
		font-size: 18px;
		padding: 5px 10px;
		margin-top: 20px;
	}
	.role-view h3{
		margin: 0 0 10px 0;
	}
	.role-employees{
		width: 30%;
		float: right;
	}
	.roles .employee, .role-view .employee{
		float: left;
		width: 100%;
	}
	.roles .employee p, .role-view .employee p{
		float: left;
		margin: 0;
	}
	.role-status{
		float: left;
		font-weight: bold;
		margin-bottom: 10px;
		background: none!important;
	}
	.role-status.rejected{

	}
	.role-status.accepted{

	}
	.Positions{
		width: 250px;
	}
	.empty{
		font-size: 12px;
		color: darkgreen;
		line-height: 14px;
		font-weight: bold;
	}
	.filled{
		font-size: 12px;
		color: #AAA;
		line-height: 14px;
		font-weight: bold;
	}
	.role_buttons{
		float: right;
	}
	.role-employees h3{
		margin: 0 0 5px 0
	}
	.status-colour{
		width: 2%;
		float: left;
		height: 240px;
		padding-bottom: 900px;
		position: absolute;
	}
	.job-title{
		width: 60%;
		float: left;
	}
	.job-content{
		width: 100%;
		float:left;
		display: table;
		min-height: 100px;
	}
	.client-name{
		font-size: 14px;
		font-weight: bold;
		float: left;
		clear: both;
	}
	.job-details{
		position: relative;
		float:left;
		padding: 5px;
		margin-left: 25px;
		width: 98%;
	}
	.job-date{

	}
	.job-details h4{
		font-weight: bold;
	}
	.job-details .days-to-go{
		position: relative;
		float: right;
	}
	.days-to-go p{
		margin:0;
		font-size: 16px;
		line-height: 16px;
	}
	.job-details .job-info{
		width: 40%;
        float: left;
	}
	span.location{
        display: block;
        font-size: 14px;
		max-width: 80%;
        word-break: break-all;
        overflow: hidden;
		float: left;
	}
	.job-info ul{
		float: left;
	}
	.icon-holder{
		float: right;
		padding-right: 50px;
	}
	.jobid{
		font-size: 10px;
	}
	#AssignStaffForm_AssignStaffForm{
		padding: 0px;
	}
	#AssignStaffForm_AssignStaffForm .field{
		min-height: 30px;
	}

	.created{
		float: right;
		font-size: 10px;
	}
	.job-details .applications, .job-details .roles{
		float: left;
		width: 40%;
        margin-top: -50px;
		padding: 0 20px;
	}
	.vacantroles{
		float: right;
		margin: 70px 0 0 0;
	}
	.viewrole{
		width: 100%;
		float: left;

	}
	.pending-app{
		float: right;
		color: #8d2f2f;
		font-weight: bold;
		margin-bottom: 20px;

	}
	.job-details .roles a{
		color: #652f8d;
	}
	.job-detail-cell a.manage{
		padding: 5px 10px;
		font-size: 16px;
		margin-right: 20px;
	}
	.job-detail-cell a.edit{
		background-color: #3CB535;
	}
	.job-detail-cell a.view{
		background-color: #64338B;
	}
	.job-detail-cell a.delete{
		background-color: #C0081F;
	}
	.job-details .roles .role_buttons a, .role_buttons a {
		float: left;
		font-size: 8px;
		padding: 2px 5px;
		line-height: 12px;
		margin: 5px;
		color: #fff;
	}
	.job-details h3{
		margin: 0 5px 5px 0;
		font-weight: bold;
	}
	.job-details ul{
		margin: 0;
	}
	.job-details ul li{
		list-style: none;
		margin: 0;
	}
	.job-details ul li p{
		margin: 0;
		max-width: 300px;
	}

	a.buy{
		background-color: #0cb637;
		color: #fff;
		padding: 5px;
		display: block;
		float: left;
	}
	.shop{
		width: 100%
	}
	.shop .left{
		float: left;
		width: 48%;
		height: 400px;
	}
	.shop .right{
		float: right;
		width: 48%;
		height: 400px;
	}
	.shop img{
		border: none;
		width: 100%;

	}

	.credit{
		font-size: 12px;
		text-align: center;
		width: 100%;
		float:left;
		display: block;
		display: block;
		text-decoration: none;
	}

    .get-paid{
        display: block;
        color: #fff;
        font-family: Oswald, sans-serif;
        background-color: #1b9c00;
        font-size: 25px;
        float: left;
        padding: 10px 25px;
		margin-right: 20px;
        transition: all ease 0.2s
    }
    .get-paid:hover{
        color: #fff;
        background-color: #157203;
    }

    .manual{
        background-color: #ff6919;
    }
    .manual:hover{
        background-color: #a54613;
    }




/* DEVICE & RESPONSIVE LAYOUT */
.header .nav-open-button {
    display: none; /* removes the nav toggle button for desktop site */
}
#media-query-trigger {
    /* instead of detecting the width of the window in simple/javascript/script.js it detects the visibility of this element (which is set using media queries)
    instead to trigger the hiding/showing of nav and search in mobile mode */
    display: none;
    visibility: hidden;
}

/* BREAKPOINT 960px */

@media only screen and (max-width: 1150px) {
	.header .primary li {
		margin-left: 15px;
	}
	.header .primary li a {
		font-size: 16px;
	}

	.login-top-logo {
		float: none;
		margin: 0 auto;
	}

	.login-top-content {
		display: none;
	}
}
/* BREAKPOINT 960px */

@media only screen and (max-width: 960px) {
	.content img {
	    max-width: 97%;
	    height: auto;
	}
	.header .primary ul {
	    margin-left: -12px;
	    -webkit-padding-start: 0px; /* removes default webkit padding on ul items */
	}

	#home-header .primary li {
		border-right: none;
	}

	.JobsPage .logo{
		display: none;
	}

	#home-header .primary ul {
		left: unset;
	}

	body {
		position: relative;
		left: 0;
	}

	.header .brand {
		float: none;
		text-align: center;
		display: block;
	}

	.header .nav-open-button {
		display: block;
		position: absolute;
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
	}
	.header .nav-open-button:after {
		content: "";
		position: absolute;
		left: 17px;
		height: 6px;
		width: 6px;
		top: 9px;
		border-radius: 3px;
		background: currentcolor;
		box-shadow: 0 8px 0 currentcolor,
					0 16px 0 currentcolor ;
	}


	.header .primary ul {
		right: -300px;
		background: #212d35;
		background: #212d35 -moz-linear-gradient(left, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 7%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
		background: #212d35 -webkit-linear-gradient(left, rgba(0,0,0,0.22) 0%,rgba(0,0,0,0) 7%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
		background: #212d35 linear-gradient(to right, rgba(0,0,0,0.22) 0%,rgba(0,0,0,0) 7%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		width: 260px;
		top: 0;
		text-align: left;
		position: fixed;
		bottom: 0;
		overflow: auto;
		padding: 20px;
	}
		.header .primary li {
			float: none;
			margin: 0;
		}
		.header .primary li a {
			display: inline-block;
		}
		.header .primary li ul {
			display: none !important;
		}

		.header .primary li.closer {
			display: block;
			position: absolute;
			top: 20px;
			right: 20px;
			width: 40px;
			height: 40px;
		}
		.header .primary li.closer a:before,
		.header .primary li.closer a:after {
			content: "";
			width: 40px;
			height: 4px;
			background: currentcolor;
			display: block;
			position: absolute;
			transform: rotate(45deg);
			top: 18px;
		}
		.header .primary li.closer a:after {
			transform: rotate(135deg);
		}
	body, .header .primary ul {
		transition: all 0.2s ease-in-out;
	}

	body.showmenu {
		left: -300px;
	}
	body.showmenu .header .primary ul {
		right: 0;
	}


}


/* BREAKPOINT 640px */

/* when changing the breakpoint below, change it ito the same value in the script.js file as well */
@media only screen and (max-width: 640px) {
	body {
	    max-width: 640px;
	}
	#media-query-trigger {
	    visibility: visible;
	}

	.login-form-content h3 {
		font-size: 20px;
	}

	/* Search Form */
	.search-bar { /* adds new styling to mobile search bar */
	    width: 100%;
	    position: relative;
	    top: 0;
	    right: 0;
	    display: none; /* hides searchbar initially */
	    padding: 20px 0;
	    margin: 0;
	    background-color: #E7E7E7;
	}
	.search-dropdown-icon { /* styling for search toggle button */
	    display: block;
	    cursor: pointer;
	    width: 20px;
	    height: 20px;
	    position: absolute;
	    right: 60px;
	    top: 34px;
	    font-family: 'WebSymbolsRegular';
	    font-size: 20px;
	    color: #ededed;
	    text-align: center;
	    line-height: 20px;
	}
	.search-bar form {
	    margin: 0;
	    width: 100%;
	}
		.search-bar form fieldset {
		    padding: 0 18px;
		    left: 0;
		    right: 0;
		    position: relative;
		}
	.search-bar div.field {
	    margin-bottom: 0;
	}
	.search-bar form input.text {
	    width: 89%; /* makes search input full width - allowing for space either side */
	    max-width: 89%;
	    padding: 8px 10% 8px 1%;
	    text-indent: 15px;
	    position: relative;
	    display: block;
	    right: 0;
	    left: 0;
	    border: 1px solid #e5e5e5;
	    background: #fff;
	    font-size: 17px;
	    -moz-border-radius: 20px; /* increase border radius due to increased padding */
		border-radius: 20px;
	}
	.search-bar form input.action {
	    right: 5%;
	    top: 2px;
	    font-size: 18px;
	}

	/* Main Content */
	.main {
	    padding: 20px 0 45px; /* decrease padding so that more content can fit on screen */
	}
	.content-container,
	.sidebar {
	    width: 100%; /* sidenav is now shown above the page content */
	    margin-bottom: 30px;
	}
	.typography h1 { /* decrease size of page heading due to smaller screen */
	    font-size: 30px;
		line-height:35px;
	    margin-bottom: 15px;
	    padding-bottom: 10px;
	}
	.typography p {
	    font-size: 14px;
	    line-height: 23px;
	}
	p.intro {
	    font-size: 19px;
	    line-height: 27px;
	}
	.main .inner {
	    padding: 0 22px;
	}
	/* Secondry Nav */
	.secondary li a {
	    line-height: 24px;
	}
	.secondary li .arrow {
	    line-height: 26px;
	}
	/* Footer */
	.footer {
		font-size: 18px;
	}
	.footer .unit {
	    float: none;
	    width: 100%;
	    text-align: left;
	    margin: 0 0 2em;
	}
	.unit.size1of2 {
		display: block;
		float: none;
		width: auto;
	}
	.hero .quote .text {
		font-size: 24px;
		line-height: 30px;
	}
	.hero .quote .author {
		font-size: 12px;
	}
}

/* Print Styles */

/* Based on HTML5 boilerplate print styles */
@media print {
	* {
	    background: transparent !important;
	    color: black !important;
	    box-shadow: none !important;
	    text-shadow: none !important;
	    filter: none !important;
	    -ms-filter: none !important;
	}
	a,
	a:visited {
	    text-decoration: underline
	}
	a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

	thead {
	    display: table-header-group
	}
	tr,
	img {
	    page-break-inside: avoid
	}
	img {
	    max-width: 100% !important
	}
	pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    /* Simple theme custom print styles */
	.header,
	.footer,
    .nav-open-button,
    .search-bar,
    .search-dropdown-icon,
    nav.primary {
	    display: none;
	}
}

.headeralert {
	padding: 20px 10px;
	text-align: center;
	font-weight: bold;
	background: #93c849;
	color: #fff;
}

.headeralert:before {
	font-family: "FontAwesome";
	content: "\f071 ";
	font-weight: normal;
}
