/* Minification failed. Returning unminified contents.
(50,1): run-time error CSS1019: Unexpected token, found '@import'
(50,9): run-time error CSS1019: Unexpected token, found 'url(https://fonts.googleapis.com/css?family=Raleway)'
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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%;
	vertical-align: baseline;
	font-weight: normal;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

@import url(https://fonts.googleapis.com/css?family=Raleway);

body {
	font-family: Raleway, Arial, sans-serif !important;
	font-size: 10pt !important;
	background-color: white !important;
	color: #333 !important;
	margin: 0 !important;
	padding: 0 !important;
	height: 100vh !important;
}

p {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	line-height: 110%;
}

img {
	border: 0;
}

a, button, input[type=submit], input[type=button] {
	cursor: pointer;
}

h1, h2, h3, h4 {
	color: #325d77;
	margin-bottom: 0.5em;
}

h1 {
	font-size: 24pt;
	margin-top: 1em;
	margin-bottom: 1em;
}

h2 {
	font-size: 20pt;
}

h3 {
	font-size: 16pt;
}

h4 {
	font-size: 14px;
}

#topbar {
	width: 100%;
	height: 84px;
	background-color: #b6b8ba;
	margin: 0 auto;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
}

#logo-div {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 200px;
	box-sizing: border-box;
}

#logo-anchor {
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	text-decoration: none;
}

#logo {
	width: 226px;
	text-align: center;
	border-right: 3px solid #1A4963;
}

#logo-text {
	font-weight: bold;
	padding-left: 13px;
	text-align: center;
	color: #1A4963;
	letter-spacing: 2px;
	margin-bottom:0;
}

#login-header {
	margin-left: 4em;
	position: relative;
	font-weight: bold;
	bottom: 30px;
	color: #325d77;
}

#main-menu {
	margin: 0 auto;
	width: 960px;
	text-align: right;
	display: flex;
	justify-content: flex-end;
}
.dropbtn {
	background-color: transparent;
	color: #325D77;
	height: 40px;
	padding: 0;
	font-size: 16px;
	border: none;
	border-radius: 3px;
	outline: none;
}

.dropbtn.active .dropbtn-txt {
	font-weight: 700 !important;
}

.dropdown {
	position: relative;
	display: inline-block;
	margin: 0 20px;
}

.dropdown-content {
	display: none;
	position: absolute;
	top: 60px;
	background-color: #f1f1f1;
	min-width: 180px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a.active {
	color: #325d77;
	text-decoration: none;
	font-weight: 700;
}

.dropdown-content a:hover {
	background-color: #ddd;
}

.dropdown:hover .dropbtn .dropbtn-dummy {
	height: 30px;
	position: absolute;
	width: 100%;
	left: 0;
	top: 40px;
}

.dropdown:hover .dropdown-content,
.dropbtn:hover + .dropdown-content {
	display: block;
}

.dropdown .dropbtn > .dropbtn-txt::after {
	width: 0;
}

.dropdown:hover .dropbtn > .dropbtn-txt::after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	width: 100%;
	background-color: #325D77;
	border-bottom: 1px solid #325D77;
	margin-bottom: 20px;
}

#main-menu a:link, #main-menu a:visited, #main-menu a:hover {
	color: #666;
	text-decoration: none;
}

#main-content {
	margin: 0 auto;
	width: 960px;
	height: calc(100vh - 85px);
}
.main-content-inner {
	height: 100%;
}

#logged-on-btn {
	display: flex;
}

.logged-on-data {
	display: flex;
	flex-direction: column;
}

.logged-on-data .logged-on-text {
	text-align: right;
	color: white;
	font-size: 8px;
	width: 150px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 2px 0;
}

#logged-on-btn .dropbtn-arrow {
	transform: rotate(90deg);
	margin-left: 10px;
}

#message {
	color: #333;
	text-align: center;
	width: 100%;
	-moz-border-radius: 15px;
	border-radius: 15px;
	line-height: 42px;
	height: 42px;
	border: 1px solid #999;
}

.message-message {
	background-color: #f0f0f1;
}

.message-error {
	background-color: #de974b;
}

.button-margin {
	margin-right: 20px;
}

.button {
	color: #fff;
	background-color: #325d77;
	border-color: #325d77;
	text-align: center;
	text-decoration: none;
	border: 0;
	padding: 7px 20px;
	margin-left: 3px;
}

.pagination {
	width: 100%;
	text-align: center;
}

.pagination img {
	display: inline-block;
	vertical-align: middle;
}

.pagination span {
	vertical-align: middle;
}

.login-types-container a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: start;
}

    .login-types-container a img {
        max-width: 50px;
        height: auto;
        margin-right: 5px;
    }

    .login-types-container a:hover {
        cursor: pointer;
        background: #325d77;
        color: #fff;
    }

.login-type-container {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

    .login-type-container:first-child {
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
    }

    .login-type-container:last-child {
        margin-bottom: 0;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
    }

a.login-type-container {
    color: #555;
    text-decoration: none;
}

.login-type-content {
    display: flex;
    align-items: center;
    justify-content: start;
}

#authentication-cookie-expiration-alert{
    display: none;
}

.nav-link.active {
  font-weight: bold;
}
