<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

a:link, a:visited, a:active, h1, h2 {
  color: #1a1f6c;
}

a:hover {
  color: #fbcc36;
}

.progress-bar, .btn-primary, .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active, .panel-primary &gt; .panel-heading {
  background-color: #1a1f6c;
  border-color: #1a1f6c;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open &gt; .dropdown-toggle.btn-primary, .btn-warning:hover {
  background-color: #fbcc36;
  border-color: #fbcc36;
}

.btn-outline {
  border: 2px solid #1a1f6c;
  background: 0;
}

.btn-outline:hover {
  background-color: #1a1f6c;
  color: #FFF;
}

.row-header {  
  color: #1a1f6c;
}

.col-header {
  background-color: #1a1f6c;
  border: 1px solid #1a1f6c;
}

.table th {  
  background-color: #1a1f6c;
}


/* Site Specific Custom CSS */

.smallHeaderText {
  font: bold 12pt "Open Sans", sans-serif;
  color: #666;
  font-size: .5em;
  font-weight: 500;
}

/*Start of Tab CSS*/
.tabs a {
  padding: 20px 25px;
  line-height: normal;
  display: block;
  background-color: #EEE; /*Color of Tab*/
  color: #666;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  height: 100%;
  margin: 0 -15px;
  font-size: 18px;
}
.tabs a::before {
  content: '';
  display: block;
  height: 6px;
  background: #fbcc36; /*Underline color*/
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: -webkit-transform ease-in-out 250ms;
  -webkit-transition: -webkit-transform ease-in-out 250ms;
  -o-transition: transform ease-in-out 250ms;
  transition: transform ease-in-out 250ms;
  transition: transform ease-in-out 250ms, -webkit-transform ease-in-out 250ms;
}
.tabs a:hover::before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.tabs a.active, .tabs a.active:hover {
color : #FFF ; /*Font color of active tab*/
background : no-repeat 92% center #1a1f6c ; /*Color of active tab*/
background-size : 7px 10px ;
border : none;
}
a.tablinks:hover {
color : #1a1f6c ; /*Font color on tab hover*/
	text-decoration: none;
}
.tabcontent {
  padding: 0px 12px;
  width: 100%;
}
.tabs {
  margin-bottom: 10px;
}
/*End of Tab CSS*/

.card {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	background-color: #ffffff;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
}
.card blockquote {
	border-color: #ddd;
	border-color: rgba(0,0,0,0.15)
}
.card-lg {
	padding: 24px;
	border-radius: 6px
}
.card-sm {
	padding: 9px;
	border-radius: 3px
}</pre></body></html>