/*================================================================================================================================*/
/*                                                            RESET.CSS                                                            */
/*================================================================================================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    height: 100%;
	min-height: 100%;
}

body {
    position: relative;
    line-height: 1;
    font-family: "Montserrat Regular", Arial, sans-serif;
    font-size: 100%;
    height: 100%;
    color: #212529;
    background: #0e253e;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
	
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

br.clearfloat {
    font-size: 1px;
    line-height: 0px;
    margin: 0px;
    clear: both;
    height: 0px;
}

h1 {
    font-family: "Montserrat Regular", Arial, sans-serif;
    font-size: 2.4em;
	text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 2px;
	color: white;
    margin: 0 0 0.5em;
}

h2 {
    font-family: "Montserrat SemiBold", Arial, sans-serif;
    font-size: 1.7em;
    line-height: 1.3;
    margin-bottom: 20px;
}

p {
    font-size: 1em;
    line-height: 1.3;
	margin-bottom: 1em;
}

p.large {
	font-size: 150%
}

.fw-semibold {
	font-family: "Montserrat SemiBold", Arial, sans-serif;
}

h2 + .dataTables_wrapper,
p + .dataTables_wrapper {
	margin-top: 30px;
}

a {
    font-family: "Montserrat Medium", Arial, sans-serif;
    color: #0072ED;
    text-decoration: none;
    -webkit-transition: color 250ms ease-in-out;
       -moz-transition: color 250ms ease-in-out;
			transition: color 250ms ease-in-out;
}

a:hover,
a:focus {
	color: #1e4167;
}

a.download,
a.view {
	display: inline-block;
	font-family: "Montserrat Medium", Arial, Helvetica, sans-serif;
	font-size: 0;
	text-decoration: none;
	line-height: 1;
	padding: 0;
}

a.download:after,
a.view:after {
	display: block;
	font-family: "Material-Design-Iconic-Font";
	font-size: 24px;
	line-height: 1;
}

a.download:after {
	content: '\f220';
}

a.view:after {
	content: '\f2f5';
}

a.primary,
a.secondary {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    width: auto;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    margin: 20px 8px 0 8px;
    padding: 0 30px;
    color: white;
    -webkit-transition: background 250ms ease-in-out;
       -moz-transition: background 250ms ease-in-out;
			transition: background 250ms ease-in-out;
}

a.primary,
a.secondary {
    text-shadow: none;
	color: white;
    background: #0072ED;
}

a.primary:hover,
a.secondary:hover {
    background: #1e4167;
}

img.logo {
	max-height: 50px;
}

strong {
	font-family: "Montserrat SemiBold", Arial, sans-serif;
	color: red;
}

span.theme_colour {
	font-family: "Montserrat SemiBold", Arial, sans-serif;
    color: #0072ED;
}

/*===============================================================================================================================*/
/*                                                            WEBSITE.CSS                                                        */
/*===============================================================================================================================*/
.container {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

div.wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
}

/* Header ====================================================================================================================== */
.header-wrapper {
	padding: 10px 20px;
	background: white;
}

header.main {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.sitebranding {
	width: 101px;
    height: 60px;
}

.sitebranding img {
	width: 100%
}

.navigation {
	flex: 1;
	text-align: right;
}

.navigation nav ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	justify-content:flex-end;
	align-items: center;
}

.navigation nav li {
	margin-left: 1em;
}

.navigation nav a {
	font-size: .8em;
	color: #282828;
	padding: 
}

.navigation nav a:focus, .navigation nav a:hover, .navigation nav a.selected {
	color: #0072ED;
}

/* Banner ====================================================================================================================== */
.banner-wrapper {
	position: relative;
	background: url("../images/bkg_banner-wrapper.jpg") top no-repeat;
	background-size: cover;
}

.banner-wrapper:after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: rgba(0,0,0,0.7);
}

.banner {
	position: relative;
	max-width: 1040px;
	margin: 0 auto;
	padding: 80px 20px;
	text-align: center;
	z-index: 100;
}

.banner h1 {
	position: absolute;
	left: -10000px;
}

.banner h1.show {
	position: relative;
	left: initial;
	margin-bottom: 0;
}

.banner p {
	font-size: 1.1em;
	color: white;
	margin-bottom: 20px;
}
/* Content ===================================================================================================================== */
.content-wrapper {
	padding: 30px;
	background: white;
	flex: 1;
}

.content-wrapper.alt {
	background: #f2f2f2;
	background: -moz-linear-gradient(top,  #fafafa 2%, #ffffff 100%);
	background: -webkit-linear-gradient(top,  #fafafa 2%,#ffffff 100%);
	background: linear-gradient(to bottom,  #fafafa 2%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#ffffff',GradientType=0 );
}

article.main {
	max-width: 100%;
	margin: 0 auto;
}

.narrow-content {
	max-width: 1400px;
	margin: 0 auto;
}

.centered {
	text-align: center;
}

.category-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
	align-items: stretch;
}

.category {
    width: calc(25% - 20px);
	margin: 10px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

.category img {
	max-width: 80%;
	max-height: 60px;
}

.category a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 1em;
	color: #282828;
	background: #f3f3f3;
	border-radius: 10px;
	border: 1px solid #e7e7e7;
	box-shadow: 0 2px 3px -1px rgb(0 0 0 / 5%), 0 5px 7px -1px rgb(0 0 0 / 10%)
	-webkit-transition: box-shadow 250ms ease-in-out, transform 250ms ease-in-out;
       -moz-transition: box-shadow 250ms ease-in-out, transform 250ms ease-in-out;
			transition: box-shadow 250ms ease-in-out, transform 250ms ease-in-out;
}

.category a:focus, .category a:hover {
	box-shadow: 0 4px 6px -2px rgb(0 0 0 / 5%), 0 10px 15px -3px rgb(0 0 0 / 10%);
	transform: scale(1.05);
}

@media only screen and (max-width: 64em) {

	.category {
		width: calc(33.3333% - 20px);
	}
}

@media only screen and (max-width: 51.25em) {

	.category {
		width: calc(50% - 20px);
	}
}

@media only screen and (max-width: 30em) {

	.category {
		width: calc(100% - 20px);
	}
}
/* Tables ====================================================================================================================== */
table.grid {
	width: 100%;
	border: none;
}

table.grid thead th {
	font-family: "Montserrat SemiBold", Arial, Helvetica, sans-serif;
	font-size: .9em;
	text-align: left;
	text-transform: uppercase;
	padding: 0px 10px 5px;
	vertical-align: middle;
	color: #6a5e51;
	position: relative;
	white-space: nowrap;
	border-bottom: 2px solid #0072ED;
}

table.grid thead th:first-child {
	border-left: none;
}

table.grid thead th:last-child,
table.grid thead th:nth-last-child(2) {
	width: 100px;
	text-align: center;
}

table.grid tbody tr {
	background: white;
	border-top: 1px solid #EEE;
}

table.grid tbody tr:nth-child(even) {
	background: rgba(0,0,0,0.02);
}

table.grid tbody tr:hover {
	background: #e5eef8;
}

table.grid tbody td {
	position: relative;
	font-size: 0.825em;
	padding: 5px 10px;
	vertical-align: middle;
	line-height: 1.3;
}

table.grid tbody td:first-child {
	font-family: "Montserrat SemiBold", Arial, Helvetica, sans-serif;
}

table.grid tbody td:first-child:focus {
	outline: none;
}

table.grid tbody td:last-child,
table.grid tbody td:nth-last-child(2) {
	text-align: center;
}

/* Footer ====================================================================================================================== */
.footer-wrapper {
	position: relative;
	padding: 10px 20px;
}

.footer-logo {
	float: left;
	width: 67px;
	height: 40px;
}

.footer-logo img {
	width: 100%;
}

.copyright {
	float: right;
	width: calc(100% - 100px);
}

.copyright p {
	font-size: .8em;
	text-align: right;
	color: #8697a8;
}

a.primary,
a.secondary {
    text-shadow: none;
	color: white;
    background: #0072ED;
}

a.primary:hover,
a.secondary:hover {
    background: #1e4167;
}

a.scrollToTop {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 25px;
    width: 31px;
    height: 31px;
    margin: 0;
    z-index: 1000;
    outline: none;
    cursor: pointer;
    display: none;
}

a.scrollToTop:before {
    content: '\f2fc';
    display: inline-block;
    width: 31px;
    height: 31px;
    line-height: 31px;
    float: left;
    font-family: "Material-Design-Iconic-Font";
    font-size: 1.6em;
    font-weight: 600;
    text-align: center;
	color: white;
    background: #0072ED;
    -webkit-transition: background .25s ease-in-out;
       -moz-transition: background .25s ease-in-out;
			transition: background .25s ease-in-out;
}

a.scrollToTop:hover:before {
    background: #1e4167;
}

a.scrollToTop span {
    display: none;
}

/*===============================================================================================================================*/
/*                                                              JQUERY                                                           */
/*===============================================================================================================================*/
/* DataTables ================================================================================================================== */
.dataTable thead .sorting_asc,
.dataTable thead .sorting_desc,
.dataTable thead .sorting {
	cursor: pointer;
}

.dataTable thead .sorting {
	position: relative;
}

.dataTable thead .sorting span:after {
	position: relative;
}

.dataTable thead .sorting_asc {
	position: relative;
}

.dataTable thead .sorting_desc {
	position: relative;
}

.dataTable thead .sorting span:after,
.dataTable thead .sorting_asc span:after,
.dataTable thead .sorting_desc span:after {
	display: inline-block;
	position: absolute;
	top: -9px;
	right: 5px;
	font-family: 'Material-Design-Iconic-Font';
	font-style: normal;
	font-weight: 300;
	font-size: 1.3em;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #0072ED;
}

.dataTable thead .sorting_asc span:after,
.dataTable thead .sorting_desc span:after {
	right: 0px;
}

.dataTable thead .sorting span:after {
	content: '\f312';
	color: #777;
	top: 6px;
}

.dataTable thead .sorting_asc span:after {
	top: -9px;
	content: '\f2f8';
	font-size: 3.5em;
	transform: scaleX(0.7);
}

.dataTable thead .sorting_desc span:after {
	top: -8px;
	content: '\f2f2';
	font-size: 3.5em;
	transform: scaleX(0.7);
}

.dataTables_wrapper .dataTables_paginate {
	text-align: right;
	padding-top: 0.25em;
	margin-top: 15px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	box-sizing: border-box;
	display: inline-block;
	width: auto;
	height: 30px;
	line-height: 28px;
	margin-left: 2px;
	padding: 0 10px;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	color: black !important;
	border: 1px solid transparent;
	font-size: 0.85em;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: #CCCCCC;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	color: white !important;
	background-color: #333333;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
	cursor: default;
	color: #bbb !important;
	border: 1px solid transparent;
	background: #eee;
	box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	color: white !important;
	background-color: #0091be;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
	outline: none;
	background-color: #0091be;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.last {
	display: none;
}

.dataTables_info {
	margin-top: 20px;
}

.dataTables_info p {
	font-size: .8em;
}
/* Responsive */
table.dataTable.dtr-inline.collapsed tbody td:first-child,
table.dataTable.dtr-inline.collapsed tbody th:first-child {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}

table.dataTable.dtr-inline.collapsed tbody td.child {
	padding: 5px;
	padding-left: 5px;
}

table.dataTable.dtr-inline.collapsed tbody td:first-child:before,
table.dataTable.dtr-inline.collapsed tbody th:first-child:before,
table.dataTable.dtr-inline.collapsed tbody tr.parent td:first-child:before,
table.dataTable.dtr-inline.collapsed tbody tr.parent th:first-child:before {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 6px;
	font-family: "Material-Design-Iconic-Font";
	font-size: 19px;
	display: block;
	float: left;
	margin-top: -12px;
	margin-right: 5px;
	color: #0072ED;
	height: 18px;
	width: 18px;
}

table.dataTable.dtr-inline.collapsed tbody td:first-child:before,
table.dataTable.dtr-inline.collapsed tbody th:first-child:before {
	content: '\f275';
}

table.dataTable.dtr-inline.collapsed tbody tr.parent td:first-child:before,
table.dataTable.dtr-inline.collapsed tbody tr.parent th:first-child:before {
	content: '\f270';
}

table.dataTable.dtr-inline.collapsed tbody td:first-child.dataTables_empty:before,
table.dataTable.dtr-inline.collapsed tbody th:first-child.dataTables_empty:before {
	display: none;
}

table.dataTable.dtr-inline.collapsed tbody tr.child td:before {
	display: none;
}

table.dataTable.dtr-column tbody td.control,
table.dataTable.dtr-column tbody th.control {
	position: relative;
	cursor: pointer;
}

table.dataTable.dtr-column tbody td.control:before,
table.dataTable.dtr-column tbody th.control:before {
	top: 50%;
	left: 50%;
	height: 16px;
	width: 16px;
	margin-top: -10px;
	margin-left: -10px;
	display: block;
	position: absolute;
	color: white;
	border: 2px solid white;
	border-radius: 16px;
	text-align: center;
	line-height: 14px;
	box-shadow: 0 0 3px #444;
	box-sizing: content-box;
	content: "+";
	background-color: #31b131;
}

table.dataTable.dtr-column tbody tr.parent td.control:before,
table.dataTable.dtr-column tbody tr.parent th.control:before {
	content: "-";
	background-color: #d33333;
}

table.dataTable tr.child {
	padding: 0.5em 1em;
}

table.dataTable tr.child:hover {
	background: transparent !important;
}

table.dataTable tr.child ul {
	display: inline-block;
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

table.dataTable tr.child ul li {
	border-bottom: none;
	padding: 5px 0;
}

table.dataTable tr.child ul li:last-child {
	border-bottom: none;
}

table.dataTable tr.child span.dtr-title,
table.dataTable tr.child span.dtr-data {
	display: inline-block;
	text-align: left;
	padding: 0;
	vertical-align: top;
	white-space: normal;
}

table.dataTable tr.child span.dtr-title {
	font-family: "Montserrat SemiBold", Arial, Helvetica, sans-serif;
	width: 49%;
}

table.dataTable tr.child span.dtr-data {
	font-family: "Montserrat Regular", Arial, Helvetica, sans-serif;
	width: 49%;
}

table.grid tbody tr.child {
	border-top: 1px solid #EEE;
	border-bottom: 1px solid #CCC;
}