/*colors:
nav: #f7fbff;
green: #75787b;
red: #ca2030;
dark blue: #012169;
light blue: #3D68A6;*/
/*Type:
font-family: 'Open Sans', sans-serif;
font-weight: 600, 700, 800*/

* {
	margin: 0;
}

*, *::after, *::before {
  box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 600;
	font-size: 100%;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	-webkit-text-stroke: 1px transparent;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

ul, li, p, h1, h2, h3 {
	list-style: none;
	margin: 0;
	padding: 0;
}

a:link, a:visited {
	text-decoration: none;
	border: 0px none;
	-moz-border: 0px none;
	outline: 0px none;
	-webkit-tap-highlight-color: #fff;
}

a img, img, a:active {
	border: 0px none;
	-moz-border: 0 none;
	outline: 0px none;
}

.site {
	display: flex;
	flex-direction: column;
	height: 100%;

	display: -webkit-flex;
	display: -ms-flexbox;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
}

header {
	position: relative;
	flex: none;
	-webkit-flex: none;
	-ms-flex: none;
}

nav {
	background-color: #f7fbff;
	border-bottom: 1px solid #cde0f3;
	border-top: 1px solid #cde0f3;
	height: 47px;
}

#mainNav {
	position: relative;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	font-weight: 800;
	font-size: .78em;
	letter-spacing: .05em;
	color: #75787b;
	height: 100%;

	flex: 0 0 auto;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;

	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;

	display: -webkit-flex;
  	display: -ms-flexbox;

  	-webkit-justify-content: flex-start;
    -webkit-align-items: center;
    -webkit-flex-flex-flow: row wrap;

    -ms-flex-align: center;
    -ms-flex-pack: justify;
}

#mainNav li {
	color: #75787B;
	/*color: #555;*/
	padding: 1.5% 2%;
}

#navTitle h3 {
	font-size: 1em;
	color: #012169;
	text-align: left;
}

.navElem {
	cursor: pointer;
}

.navElem:hover {
	color: #ca2030 !important;
}

.title {
	padding: 0 10% 0 2% !important;
	font-weight: 700;
}

.content {
	position: relative;
	z-index: 0;
	text-align: center;
	flex: 1 0 auto;
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
  	margin: 0;

  	display: flex;
  	display: -webkit-flex;
  	display: -ms-flexbox;
	flex-direction: column;
  	align-items: center;
  	justify-content: center;

  	-webkit-flex-direction: column;
  	-webkit-align-items: center;
  	-webkit-justify-content: center;

  	-ms-flex-direction: column;
  	-ms-flex-align: center;
  	-ms-flex-pack: justify;
}

canvas {
	-webkit-tap-highlight-color: transparent;
}

#loadIndicator {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("global/images/loadIndicator.gif");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-color: #fff;
}

.pageBottom {
	border-top: 1px solid #cde0f3;
	border-bottom: 1px solid #cde0f3;
	background-color: #ffffff;

	flex: none;
	-webkit-flex: none;
	-ms-flex: none;

	display: flex;

    justify-content: space-between;
    align-items: center;

    display: -webkit-flex;
  	display: -ms-flexbox;

	-webkit-justify-content: space-between;
    -webkit-align-items: center;

    -webkit-flex-justify-content: space-between;
    -webkit-flex-align-items: center;

    -ms-flex-align: center;
    -ms-flex-pack: justify;
}

#logoLeft {
	padding-left: 2%;
	padding-top: .3rem;
}

#logoLeft img {
	width: 100%;
	max-width: 124px;
}

#logoRight {
	padding-right: 2%;
}

#logoRight img {
	width: 100%;
	max-width: 120px;
}


@media (max-width: 68em) {

#mainNav {
	font-size: .7em;
}

#logoLeft img {
	width: 100%;
	max-width: 100px;
}

#logoRight img {
	width: 100%;
	max-width: 100px;
}

} /*@media 68em*/

@media (max-width: 58em) {

.title {
	padding: 0 3% 0 2% !important;
}

#mainNav li {
	padding: 2% 1.5%;
}

} /*58em*/

@media (max-width: 46em) {

nav {
	height: 100%;
}

#logoLeft img {
	width: 100%;
	max-width: 70px;
}

#logoRight img {
	width: 100%;
	max-width: 70px;
}
}
