/*@import 'MyFontsWebfontsKit';*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,400italic,700);

@keyframes ngdialog-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes ngdialog-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.ngdialog {
  box-sizing: border-box; }

.ngdialog *,
.ngdialog *:before,
.ngdialog *:after {
  box-sizing: inherit; }

.ngdialog {
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.ngdialog.ngdialog-disabled-animation,
.ngdialog.ngdialog-disabled-animation .ngdialog-overlay,
.ngdialog.ngdialog-disabled-animation .ngdialog-content {
  animation: none !important; }

.ngdialog-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  animation: ngdialog-fadein 0.5s; }

.ngdialog-no-overlay {
  pointer-events: none; }

.ngdialog.ngdialog-closing .ngdialog-overlay {
  -webkit-backface-visibility: hidden;
  animation: ngdialog-fadeout 0.5s; }

.ngdialog-content {
  background: white;
  -webkit-backface-visibility: hidden;
  animation: ngdialog-fadein 0.5s;
  pointer-events: all; }

.ngdialog.ngdialog-closing .ngdialog-content {
  -webkit-backface-visibility: hidden;
  animation: ngdialog-fadeout 0.5s; }

.ngdialog-close:before {
  font-family: 'Helvetica', Arial, sans-serif;
  content: '\00D7';
  cursor: pointer; }

html.ngdialog-open,
body.ngdialog-open {
  overflow: hidden; }

@keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    transform: translateY(-40px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-40px); } }

.ngdialog.ngdialog-theme-default {
  padding-bottom: 160px;
  padding-top: 160px; }

.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
  animation: ngdialog-flyout .5s; }

.ngdialog.ngdialog-theme-default .ngdialog-content {
  animation: ngdialog-flyin .5s;
  background: #f0f0f0;
  border-radius: 5px;
  color: #444;
  font-family: 'Helvetica',sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  padding: 0.1px;
  /*padding: 1em;*/
  position: relative;
  /*width: 450px;*/ }

.ngdialog.ngdialog-theme-default .ngdialog-close {
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0; }

.ngdialog.ngdialog-theme-default .ngdialog-close:before {
  background: transparent;
  border-radius: 3px;
  color: #bbb;
  content: '\00D7';
  font-size: 26px;
  font-weight: 400;
  height: 30px;
  line-height: 26px;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 30px; }

.ngdialog.ngdialog-theme-default .ngdialog-close:hover:before,
.ngdialog.ngdialog-theme-default .ngdialog-close:active:before {
  color: #777; }

.ngdialog.ngdialog-theme-default .ngdialog-message {
  margin-bottom: .5em; }

.ngdialog.ngdialog-theme-default .ngdialog-input {
  margin-bottom: 1em; }

.ngdialog.ngdialog-theme-default .ngdialog-input textarea,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"] {
  background: #fff;
  border: 0;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 .25em;
  min-height: 2.5em;
  padding: .25em .67em;
  width: 100%; }

.ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]:focus {
  box-shadow: inset 0 0 0 2px #8dbdf1;
  outline: none; }

.ngdialog.ngdialog-theme-default .ngdialog-buttons {
  *zoom: 1; }

.ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
  content: '';
  display: table;
  clear: both; }

.ngdialog.ngdialog-theme-default .ngdialog-button {
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  float: right;
  font-family: inherit;
  font-size: .8em;
  letter-spacing: .1em;
  line-height: 1em;
  margin: 0 0 0 .5em;
  padding: .75em 2em;
  text-transform: uppercase; }

.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
  animation: ngdialog-pulse 1.1s infinite;
  outline: none; }

@media (max-width: 568px) {
  .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
    animation: none; } }

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
  background: #3288e6;
  color: #fff; }

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
  background: #e0e0e0;
  color: #777; }

/*!
 * bootswatch v3.3.5
 * Homepage: http://bootswatch.com
 * Copyright 2012-2015 Thomas Park
 * Licensed under MIT
 * Based on Bootstrap
*/
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }

.btn-group > .btn, .btn-group-vertical > .btn {
  position: relative;
  float: left; }

.btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
  z-index: 2; }

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }

.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group {
  float: left; }

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
  margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child {
  margin-left: 0; }

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group > .btn {
  float: none; }

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 3px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }

.btn-group-justified > .btn, .btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%; }

.btn-group-justified > .btn-group .btn {
  width: 100%; }

.btn-group-justified > .btn-group .dropdown-menu {
  left: auto; }

/*[data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	pointer-events: none;
}*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }

.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0; }

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0; }

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  height: 45px;
  padding: 10px 16px;
  font-size: 17px;
  line-height: 1.3333333;
  border-radius: 3px; }

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
  height: 45px;
  line-height: 45px; }

textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto; }

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px; }

textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto; }

.input-group-addon, .input-group-btn, .input-group .form-control {
  display: table-cell; }

.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0; }

.input-group-addon, .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 16px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  color: #666666;
  text-align: center;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 3px; }

.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px; }

.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 17px;
  border-radius: 3px; }

.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
  margin-top: 0; }

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }

.input-group-btn > .btn {
  position: relative; }

.input-group-btn > .btn + .btn {
  margin-left: -1px; }

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2; }

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
  margin-right: -1px; }

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }

.nav > li {
  position: relative;
  display: block; }

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px; }

.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee; }

.nav > li.disabled > a {
  color: #bbbbbb; }

.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #bbbbbb;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed; }

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #2196f3; }

.nav .nav-divider {
  height: 1px;
  margin: 10.5px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

.nav > li > a > img {
  max-width: none; }

.nav-tabs {
  border-bottom: 1px solid transparent; }

/*.nav-tabs > li {
	float: left;
	margin-bottom: -1px;
}*/
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.846;
  border: 1px solid transparent;
  border-radius: 3px 3px 0 0; }

.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee transparent; }

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #666666;
  background-color: transparent;
  border: 1px solid transparent;
  border-bottom-color: transparent;
  cursor: default; }

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0; }

.nav-tabs.nav-justified > li {
  float: none; }

.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px; }

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0; } }

.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 3px; }

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid transparent; }

@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid transparent;
    border-radius: 3px 3px 0 0; }
  .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #ffffff; } }

.nav-pills > li {
  float: left; }

.nav-pills > li > a {
  border-radius: 3px; }

.nav-pills > li + li {
  margin-left: 2px; }

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #2196f3; }

.nav-stacked > li {
  float: none; }

.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0; }

.nav-justified {
  width: 100%; }

.nav-justified > li {
  float: none; }

.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px; }

.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%; }
  .nav-justified > li > a {
    margin-bottom: 0; } }

.nav-tabs-justified {
  border-bottom: 0; }

.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 3px; }

.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
  border: 1px solid transparent; }

@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid transparent;
    border-radius: 3px 3px 0 0; }
  .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #ffffff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  min-height: 64px;
  margin-bottom: 23px;
  border: 1px solid transparent; }

@media (min-width: 768px) {
  .navbar {
    border-radius: 3px; } }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }

.navbar-collapse.in {
  overflow-y: auto; }

@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none; }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important; }
  .navbar-collapse.in {
    overflow-y: visible; }
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0; } }

.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }

@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px; } }

.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }

@media (min-width: 768px) {
  .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }

@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0; } }

.navbar-fixed-top, .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }

@media (min-width: 768px) {
  .navbar-fixed-top, .navbar-fixed-bottom {
    border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: 20.5px 15px;
  font-size: 17px;
  line-height: 23px;
  height: 64px; }

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none; }

.navbar-brand > img {
  display: block; }

@media (min-width: 768px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 3px; }

.navbar-toggle:focus {
  outline: 0; }

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px; }

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px; }

@media (min-width: 768px) {
  .navbar-toggle {
    display: none; } }

.navbar-nav {
  margin: 10.25px -15px; }

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 23px; }

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none; }
  .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px; }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 23px; }
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none; } }

@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0; }
  .navbar-nav > li {
    float: left; }
  .navbar-nav > li > a {
    padding-top: 20.5px;
    padding-bottom: 20.5px; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 13.5px;
  margin-bottom: 13.5px; }

@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .navbar-form .form-control-static {
    display: inline-block; }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle; }
  .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control {
    width: auto; }
  .navbar-form .input-group > .form-control {
    width: 100%; }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio, .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  .navbar-form .radio label, .navbar-form .checkbox label {
    padding-left: 0; }
  .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0; } }

@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px; }
  .navbar-form .form-group:last-child {
    margin-bottom: 0; } }

@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 13.5px;
  margin-bottom: 13.5px; }

.navbar-btn.btn-sm {
  margin-top: 17px;
  margin-bottom: 17px; }

.navbar-btn.btn-xs {
  margin-top: 21px;
  margin-bottom: 21px; }

.navbar-text {
  margin-top: 20.5px;
  margin-bottom: 20.5px; }

@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
  .navbar-right ~ .navbar-right {
    margin-right: 0; } }

.navbar-default {
  background-color: #ffffff;
  border-color: transparent; }

.navbar-default .navbar-brand {
  color: #666666; }

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #212121;
  background-color: transparent; }

.navbar-default .navbar-text {
  color: #bbbbbb; }

.navbar-default .navbar-nav > li > a {
  color: #666666; }

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #212121;
  background-color: transparent; }

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #212121;
  background-color: #eeeeee; }

.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #cccccc;
  background-color: transparent; }

.navbar-default .navbar-toggle {
  border-color: transparent; }

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: transparent; }

.navbar-default .navbar-toggle .icon-bar {
  background-color: rgba(0, 0, 0, 0.5); }

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border-color: transparent; }

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #eeeeee;
  color: #212121; }

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #666666; }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #212121;
    background-color: transparent; }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #212121;
    background-color: #eeeeee; }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #cccccc;
    background-color: transparent; } }

.navbar-default .navbar-link {
  color: #666666; }

.navbar-default .navbar-link:hover {
  color: #212121; }

.navbar-default .btn-link {
  color: #666666; }

.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #212121; }

.navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #cccccc; }

.navbar-inverse {
  background-color: #2196f3;
  border-color: transparent; }

.navbar-inverse .navbar-brand {
  color: #b2dbfb; }

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #ffffff;
  background-color: transparent; }

.navbar-inverse .navbar-text {
  color: #bbbbbb; }

.navbar-inverse .navbar-nav > li > a {
  color: #b2dbfb; }

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #ffffff;
  background-color: transparent; }

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #0c7cd5; }

.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444444;
  background-color: transparent; }

.navbar-inverse .navbar-toggle {
  border-color: transparent; }

.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: transparent; }

.navbar-inverse .navbar-toggle .icon-bar {
  background-color: rgba(0, 0, 0, 0.5); }

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
  border-color: #0c84e4; }

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #0c7cd5;
  color: #ffffff; }

@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: transparent; }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: transparent; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #b2dbfb; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
    background-color: transparent; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #0c7cd5; }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444444;
    background-color: transparent; } }

.navbar-inverse .navbar-link {
  color: #b2dbfb; }

.navbar-inverse .navbar-link:hover {
  color: #ffffff; }

.navbar-inverse .btn-link {
  color: #b2dbfb; }

.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #ffffff; }

.navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444444; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 23px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 3px; }

.breadcrumb > li {
  display: inline-block; }

.breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #cccccc; }

.breadcrumb > .active {
  color: #bbbbbb; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }

a.label:hover, a.label:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer; }

.label:empty {
  display: none; }

.btn .label {
  position: relative;
  top: -1px; }

.label-default {
  background-color: #bbbbbb; }

.label-default[href]:hover, .label-default[href]:focus {
  background-color: #a2a2a2; }

.label-primary {
  background-color: #2196f3; }

.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #0c7cd5; }

.label-success {
  background-color: #4caf50; }

.label-success[href]:hover, .label-success[href]:focus {
  background-color: #3d8b40; }

.label-info {
  background-color: #9c27b0; }

.label-info[href]:hover, .label-info[href]:focus {
  background-color: #771e86; }

.label-warning {
  background-color: #ff9800; }

.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #cc7a00; }

.label-danger {
  background-color: #e51c23; }

.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #b9151b; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: normal;
  color: #ffffff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #bbbbbb;
  border-radius: 10px; }

.badge:empty {
  display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.btn-xs .badge, .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px; }

a.badge:hover, a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer; }

.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  color: #2196f3;
  background-color: #ffffff; }

.list-group-item > .badge {
  float: right; }

.list-group-item > .badge + .badge {
  margin-right: 5px; }

.nav-pills > li > a > .badge {
  margin-left: 3px; }

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #f9f9f9; }

.jumbotron h1, .jumbotron .h1 {
  color: #444444; }

.jumbotron p {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 200; }

.jumbotron > hr {
  border-top-color: #e0e0e0; }

.container .jumbotron, .container-fluid .jumbotron {
  border-radius: 3px; }

.jumbotron .container {
  max-width: 100%; }

@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px; }
  .container .jumbotron, .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px; }
  .jumbotron h1, .jumbotron .h1 {
    font-size: 59px; } }

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 23px;
  line-height: 1.846;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 3px;
  transition: border .2s ease-in-out; }

.thumbnail > img, .thumbnail a > img {
  margin-left: auto;
  margin-right: auto; }

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
  border-color: #2196f3; }

.thumbnail .caption {
  padding: 9px;
  color: #666666; }

.alert {
  padding: 15px;
  margin-bottom: 23px;
  border: 1px solid transparent;
  border-radius: 3px; }

.alert h4 {
  margin-top: 0;
  color: inherit; }

.alert .alert-link {
  font-weight: bold; }

.alert > p, .alert > ul {
  margin-bottom: 0; }

.alert > p + p {
  margin-top: 5px; }

.alert-dismissable, .alert-dismissible {
  padding-right: 35px; }

.alert-dismissable .close, .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #4caf50; }

.alert-success hr {
  border-top-color: #c9e2b3; }

.alert-success .alert-link {
  color: #3d8b40; }

.alert-info {
  background-color: #e1bee7;
  border-color: #cba4dd;
  color: #9c27b0; }

.alert-info hr {
  border-top-color: #c191d6; }

.alert-info .alert-link {
  color: #771e86; }

.alert-warning {
  background-color: #ffe0b2;
  border-color: #ffc599;
  color: #ff9800; }

.alert-warning hr {
  border-top-color: #ffb67f; }

.alert-warning .alert-link {
  color: #cc7a00; }

.alert-danger {
  background-color: #f9bdbb;
  border-color: #f7a4af;
  color: #e51c23; }

.alert-danger hr {
  border-top-color: #f58c9a; }

.alert-danger .alert-link {
  color: #b9151b; }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  overflow: hidden;
  height: 23px;
  margin-bottom: 23px;
  background-color: #f5f5f5;
  border-radius: 3px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 23px;
  color: #ffffff;
  text-align: center;
  background-color: #2196f3;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease; }

.progress-striped .progress-bar, .progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px; }

.progress.active .progress-bar, .progress-bar.active {
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #4caf50; }

.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
  background-color: #9c27b0; }

.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
  background-color: #ff9800; }

.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
  background-color: #e51c23; }

.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.media {
  margin-top: 15px; }

.media:first-child {
  margin-top: 0; }

.media, .media-body {
  zoom: 1;
  overflow: hidden; }

.media-body {
  width: 10000px; }

.media-object {
  display: block; }

.media-object.img-thumbnail {
  max-width: none; }

.media-right, .media > .pull-right {
  padding-left: 10px; }

.media-left, .media > .pull-left {
  padding-right: 10px; }

.media-left, .media-right, .media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  margin-bottom: 20px;
  padding-left: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #dddddd; }

.list-group-item:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

a.list-group-item, button.list-group-item {
  color: #555555; }

a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
  color: #333333; }

a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus {
  text-decoration: none;
  color: #555555;
  background-color: #f5f5f5; }

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #bbbbbb;
  cursor: not-allowed; }

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit; }

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #bbbbbb; }

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #2196f3;
  border-color: #2196f3; }

.list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit; }

.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #e3f2fd; }

.list-group-item-success {
  color: #4caf50;
  background-color: #dff0d8; }

a.list-group-item-success, button.list-group-item-success {
  color: #4caf50; }

a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading {
  color: inherit; }

a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus {
  color: #4caf50;
  background-color: #d0e9c6; }

a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #4caf50;
  border-color: #4caf50; }

.list-group-item-info {
  color: #9c27b0;
  background-color: #e1bee7; }

a.list-group-item-info, button.list-group-item-info {
  color: #9c27b0; }

a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading {
  color: inherit; }

a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus {
  color: #9c27b0;
  background-color: #d8abe0; }

a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #9c27b0;
  border-color: #9c27b0; }

.list-group-item-warning {
  color: #ff9800;
  background-color: #ffe0b2; }

a.list-group-item-warning, button.list-group-item-warning {
  color: #ff9800; }

a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading {
  color: inherit; }

a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus {
  color: #ff9800;
  background-color: #ffd699; }

a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #ff9800;
  border-color: #ff9800; }

.list-group-item-danger {
  color: #e51c23;
  background-color: #f9bdbb; }

a.list-group-item-danger, button.list-group-item-danger {
  color: #e51c23; }

a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading {
  color: inherit; }

a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus {
  color: #e51c23;
  background-color: #f7a6a4; }

a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #e51c23;
  border-color: #e51c23; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.panel {
  margin-bottom: 23px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px; }

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  color: inherit; }

.panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a {
  color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px; }

.panel > .list-group, .panel > .panel-collapse > .list-group {
  margin-bottom: 0; }

.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0; }

.panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px; }

.panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px; }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table {
  margin-bottom: 0; }

.panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px; }

.panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px; }

.panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px; }

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 2px; }

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 2px; }

.panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px; }

.panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px; }

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 2px; }

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 2px; }

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
  border-top: 1px solid #dddddd; }

.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
  border: 0; }

.panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0; }

.panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0; }

.panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0; }

.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0; }

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

.panel-group {
  margin-bottom: 23px; }

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 3px; }

.panel-group .panel + .panel {
  margin-top: 5px; }

.panel-group .panel-heading {
  border-bottom: 0; }

.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #dddddd; }

.panel-group .panel-footer {
  border-top: 0; }

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd; }

.panel-default {
  border-color: #dddddd; }

.panel-default > .panel-heading {
  color: #212121;
  background-color: #f5f5f5;
  border-color: #dddddd; }

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #dddddd; }

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #212121; }

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #dddddd; }

.panel-primary {
  border-color: #2196f3; }

.panel-primary > .panel-heading {
  color: #ffffff;
  background-color: #2196f3;
  border-color: #2196f3; }

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #2196f3; }

.panel-primary > .panel-heading .badge {
  color: #2196f3;
  background-color: #ffffff; }

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #2196f3; }

.panel-success {
  border-color: #d6e9c6; }

.panel-success > .panel-heading {
  color: #ffffff;
  background-color: #4caf50;
  border-color: #d6e9c6; }

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6; }

.panel-success > .panel-heading .badge {
  color: #4caf50;
  background-color: #ffffff; }

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #cba4dd; }

.panel-info > .panel-heading {
  color: #ffffff;
  background-color: #9c27b0;
  border-color: #cba4dd; }

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cba4dd; }

.panel-info > .panel-heading .badge {
  color: #9c27b0;
  background-color: #ffffff; }

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cba4dd; }

.panel-warning {
  border-color: #ffc599; }

.panel-warning > .panel-heading {
  color: #ffffff;
  background-color: #ff9800;
  border-color: #ffc599; }

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ffc599; }

.panel-warning > .panel-heading .badge {
  color: #ff9800;
  background-color: #ffffff; }

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ffc599; }

.panel-danger {
  border-color: #f7a4af; }

.panel-danger > .panel-heading {
  color: #ffffff;
  background-color: #e51c23;
  border-color: #f7a4af; }

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #f7a4af; }

.panel-danger > .panel-heading .badge {
  color: #e51c23;
  background-color: #ffffff; }

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #f7a4af; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }

.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  border: 1px solid transparent;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
  padding: 24px;
  border-radius: 3px; }

.well-sm {
  padding: 9px;
  border-radius: 3px; }

.close {
  float: right;
  font-size: 19.5px;
  font-weight: normal;
  line-height: 1;
  color: #000000;
  text-shadow: none;
  opacity: 0.2;
  filter: alpha(opacity=20); }

.close:hover, .close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform .3s ease-out; }

.modal.in .modal-dialog {
  transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid transparent;
  border-radius: 3px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000; }

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid transparent;
  min-height: 16.846px; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.846; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid transparent; }

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

/*.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after {
	content: " ";
	display: table;
}*/
.clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important; }

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs, td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm, td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md, td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg, td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print, td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }

@media print {
  .visible-print-block {
    display: block !important; } }

.visible-print-inline {
  display: none !important; }

@media print {
  .visible-print-inline {
    display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }

@media print {
  .visible-print-inline-block {
    display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

.navbar {
  border: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }

.navbar-brand {
  font-size: 24px; }

.navbar-inverse .navbar-form input[type=text], .navbar-inverse .navbar-form input[type=password] {
  color: #fff;
  box-shadow: inset 0 -1px 0 #b2dbfb; }

.navbar-inverse .navbar-form input[type=text]::-moz-placeholder, .navbar-inverse .navbar-form input[type=password]::-moz-placeholder {
  color: #b2dbfb;
  opacity: 1; }

.navbar-inverse .navbar-form input[type=text]:-ms-input-placeholder, .navbar-inverse .navbar-form input[type=password]:-ms-input-placeholder {
  color: #b2dbfb; }

.navbar-inverse .navbar-form input[type=text]::-webkit-input-placeholder, .navbar-inverse .navbar-form input[type=password]::-webkit-input-placeholder {
  color: #b2dbfb; }

.navbar-inverse .navbar-form input[type=text]:focus, .navbar-inverse .navbar-form input[type=password]:focus {
  box-shadow: inset 0 -2px 0 #fff; }

.btn-default {
  background-size: 200%;
  background-position: 50%; }

.btn-default:focus {
  background-color: #ffffff; }

.btn-default:hover, .btn-default:active:hover {
  background-color: #f0f0f0; }

.btn-default:active {
  background-color: #e0e0e0;
  background-image: radial-gradient(circle, #e0e0e0 10%, #fff 11%);
  background-repeat: no-repeat;
  background-size: 1000%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); }

.btn-primary {
  background-size: 200%;
  background-position: 50%; }

.btn-primary:focus {
  background-color: #2196f3; }

.btn-primary:hover, .btn-primary:active:hover {
  background-color: #0d87e9; }

.btn-primary:active {
  background-color: #0b76cc;
  background-image: radial-gradient(circle, #0b76cc 10%, #2196f3 11%);
  background-repeat: no-repeat;
  background-size: 1000%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); }

.btn-success {
  background-size: 200%;
  background-position: 50%; }

.btn-success:focus {
  background-color: #4caf50; }

.btn-success:hover, .btn-success:active:hover {
  background-color: #439a46; }

.btn-success:active {
  background-color: #39843c;
  background-image: radial-gradient(circle, #39843c 10%, #4caf50 11%);
  background-repeat: no-repeat;
  background-size: 1000%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); }

.btn-info {
  background-size: 200%;
  background-position: 50%; }

.btn-info:focus {
  background-color: #9c27b0; }

.btn-info:hover, .btn-info:active:hover {
  background-color: #862197; }

.btn-info:active {
  background-color: #701c7e;
  background-image: radial-gradient(circle, #701c7e 10%, #9c27b0 11%);
  background-repeat: no-repeat;
  background-size: 1000%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); }

.btn-warning {
  background-size: 200%;
  background-position: 50%; }

.btn-warning:focus {
  background-color: #ff9800; }

.btn-warning:hover, .btn-warning:active:hover {
  background-color: #e08600; }

.btn-warning:active {
  background-color: #c27400;
  background-image: radial-gradient(circle, #c27400 10%, #ff9800 11%);
  background-repeat: no-repeat;
  background-size: 1000%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); }

.btn-danger {
  background-size: 200%;
  background-position: 50%; }

.btn-danger:focus {
  background-color: #e51c23; }

.btn-danger:hover, .btn-danger:active:hover {
  background-color: #cb171e; }

.btn-danger:active {
  background-color: #b0141a;
  background-image: radial-gradient(circle, #b0141a 10%, #e51c23 11%);
  background-repeat: no-repeat;
  background-size: 1000%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); }

.btn-link {
  background-size: 200%;
  background-position: 50%; }

.btn-link:focus {
  background-color: #ffffff; }

.btn-link:hover, .btn-link:active:hover {
  background-color: #f0f0f0; }

.btn-link:active {
  background-color: #e0e0e0;
  background-image: radial-gradient(circle, #e0e0e0 10%, #fff 11%);
  background-repeat: no-repeat;
  background-size: 1000%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); }

.btn {
  text-transform: uppercase;
  border: none;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  transition: all 0.4s; }

.btn-link {
  border-radius: 3px;
  box-shadow: none;
  color: #444444; }

.btn-link:hover, .btn-link:focus {
  box-shadow: none;
  color: #444444;
  text-decoration: none; }

/*input[type="radio"]:focus, .radio input[type="radio"]:focus, .radio-inline input[type="radio"]:focus {
	outline: none;


input[type="radio"]:before, .radio input[type="radio"]:before, .radio-inline input[type="radio"]:before, input[type="radio"]:after, .radio input[type="radio"]:after, .radio-inline input[type="radio"]:after {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	-webkit-transition: 240ms;
	-o-transition: 240ms;
	transition: 240ms;


input[type="radio"]:before, .radio input[type="radio"]:before, .radio-inline input[type="radio"]:before {
	position: absolute;
	left: 0;
	top: -3px;
	background-color: #2196f3;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

input[type="radio"]:after, .radio input[type="radio"]:after, .radio-inline input[type="radio"]:after {
	position: relative;
	top: -3px;
	border: 2px solid #666666;
}

input[type="radio"]:checked:before, .radio input[type="radio"]:checked:before, .radio-inline input[type="radio"]:checked:before {
	-webkit-transform: scale(.5);
	-ms-transform: scale(.5);
	-o-transform: scale(.5);
	transform: scale(.5);
}

input[type="radio"]:disabled:checked:before, .radio input[type="radio"]:disabled:checked:before, .radio-inline input[type="radio"]:disabled:checked:before {
	background-color: #bbbbbb;
}

input[type="radio"]:checked:after, .radio input[type="radio"]:checked:after, .radio-inline input[type="radio"]:checked:after {
	border-color: #2196f3;
}

input[type="radio"]:disabled:after, .radio input[type="radio"]:disabled:after, .radio-inline input[type="radio"]:disabled:after, input[type="radio"]:disabled:checked:after, .radio input[type="radio"]:disabled:checked:after, .radio-inline input[type="radio"]:disabled:checked:after {
	border-color: #bbbbbb;
}*/
.nav-tabs > li > a, .nav-tabs > li > a:focus {
  margin-right: 0;
  background-color: transparent;
  border: none;
  color: #666666;
  box-shadow: inset 0 -1px 0 #ddd;
  transition: all 0.2s; }

.nav-tabs > li > a:hover, .nav-tabs > li > a:focus:hover {
  background-color: transparent;
  box-shadow: inset 0 -2px 0 #2196f3;
  color: #2196f3; }

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus {
  border: none;
  box-shadow: inset 0 -2px 0 #2196f3;
  color: #2196f3; }

.nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus:hover {
  border: none;
  color: #2196f3; }

.nav-tabs > li.disabled > a {
  box-shadow: inset 0 -1px 0 #ddd; }

.nav-tabs.nav-justified > li > a, .nav-tabs.nav-justified > li > a:hover, .nav-tabs.nav-justified > li > a:focus, .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
  border: none; }

.nav-tabs .dropdown-menu {
  margin-top: 0; }

.dropdown-menu {
  margin-top: 0;
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); }

.alert {
  border: none;
  color: #fff; }

.alert-success {
  background-color: #4caf50; }

.alert-info {
  background-color: #9c27b0; }

.alert-warning {
  background-color: #ff9800; }

.alert-danger {
  background-color: #e51c23; }

.alert a:not(.close), .alert .alert-link {
  color: #fff;
  font-weight: bold; }

.alert .close {
  color: #fff; }

.badge {
  padding: 3px 6px 5px; }

.progress {
  position: relative;
  z-index: 1;
  height: 6px;
  border-radius: 0;
  box-shadow: none; }

.progress-bar {
  box-shadow: none; }

.progress-bar:last-child {
  border-radius: 0 3px 3px 0; }

.progress-bar:last-child:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #cae6fc; }

.progress-bar-success:last-child.progress-bar:before {
  background-color: #c7e7c8; }

.progress-bar-info:last-child.progress-bar:before {
  background-color: #edc9f3; }

.progress-bar-warning:last-child.progress-bar:before {
  background-color: #ffe0b3; }

.progress-bar-danger:last-child.progress-bar:before {
  background-color: #f28e92; }

.close {
  font-size: 34px;
  font-weight: 300;
  line-height: 24px;
  opacity: 0.6;
  transition: all 0.2s; }

.close:hover {
  opacity: 1; }

.list-group-item {
  padding: 15px; }

.list-group-item-text {
  color: #bbbbbb; }

/*Popover*/
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  line-break: auto; }

.popover.top {
  margin-top: -10px; }

.popover.right {
  margin-left: 10px; }

.popover.bottom {
  margin-top: 10px; }

.popover.bottom-left {
  margin-top: 10px; }

.popover.left {
  margin-left: -10px; }

.popover-title {
  color: #FFFFFF;
  background-color: #464646;
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  border-radius: 5px 5px 0 0; }

.popover-content {
  padding: 9px 14px;
  color: #FFFFFF;
  background-color: #464646; }

.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px; }

.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0; }

.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0; }

.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0; }

.popover.bottom > .arrow {
  color: #464646;
  color: #464646;
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #464646;
  border-bottom-color: #464646; }

.popover.bottom > .arrow:after {
  color: #464646;
  color: #464646;
  top: -0px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #464646;
  border-bottom-color: #464646; }

.popover.bottom-left > .arrow {
  color: #464646;
  color: #464646;
  top: -11px;
  left: 7%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #464646;
  border-bottom-color: #464646; }

.popover.bottom-left > .arrow:after {
  color: #464646;
  color: #464646;
  top: -0px;
  left: 7%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #464646;
  border-bottom-color: #464646; }

.popover.bottom-right > .arrow {
  color: #464646;
  color: #464646;
  top: -11px;
  left: 7%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #464646;
  border-bottom-color: #464646; }

.popover.bottom-right > .arrow:after {
  color: #464646;
  color: #464646;
  top: -0px;
  left: 7%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #464646;
  border-bottom-color: #464646; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25); }

.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff; }

@media (min-width: 320px) and (max-width: 479px) {
  #campus-header-campusname {
    display: none; }
  #printbuttonsvg {
    transition: 0.5s; }
  a:hover #printbuttonsvg {
    fill: #007bb6; }
  .print-buttons {
    z-index: 99999;
    width: 100%;
    text-align: center;
    background: #444;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5); } }
  @media print and (min-width: 320px) and (max-width: 479px) {
    .print-buttons {
      display: none; } }

@media (min-width: 320px) and (max-width: 479px) {
  .print-buttons button {
    margin: 0px 2px 0px 2px;
    border: none;
    background: #444;
    text-decoration: underline;
    color: #98D0EA;
    font-family: Roboto;
    font-size: 14px; } }
  @media print and (min-width: 320px) and (max-width: 479px) {
    .print-buttons button {
      display: none; } }

@media (min-width: 320px) and (max-width: 479px) {
  .groupbreak {
    page-break-after: always; }
  html, body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    letter-spacing: 0.0625em; }
  [ng-click] {
    cursor: pointer; }
  address {
    font-style: normal; }
  button:disabled {
    border: 3px solid #cdcdcd !important;
    color: #cdcdcd !important; }
  button:focus {
    outline: 1px dotted #ccc; }
  button:hover {
    cursor: pointer; }
  .center {
    margin: 0 10px; }
  i {
    font-style: normal;
    display: inline-block;
    background-repeat: no-repeat; }
    i.is-fav {
      background-image: url("../images/icon_favorite_small_select.png"); }
    i.not-fav {
      background-image: url("../images/icon_favorite_small_notselect.png"); }
  .header {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1000; }
    .header .center {
      max-width: 459px;
      min-width: 300px; }
    .header p {
      border: none;
      margin: 0;
      padding: 0;
      letter-spacing: 0.0625em; }
    .header .home-link {
      display: inline-block;
      height: 44px;
      width: 120px; }
    .header .first-header-row {
      background-color: #002913;
      background-color: rgba(0, 41, 19, 0.9);
      color: #fff;
      height: 27px; }
    .header .second-header-row {
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      color: #fff;
      height: 66px;
      padding-top: 19px; }
      .header .second-header-row nav {
        float: right;
        margin: 0;
        text-align: right; }
        .header .second-header-row nav button {
          background: none;
          margin: 0;
          padding: 0;
          border: none;
          height: 59px;
          width: 45px; }
          .header .second-header-row nav button.selected {
            background-color: #002913;
            background-color: rgba(0, 41, 19, 0.9); }
    .header .header-menu {
      z-index: 100;
      position: absolute;
      top: 112px;
      right: 0;
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      list-style: none;
      padding: 0;
      margin: 0; }
      .header .header-menu li {
        margin: 0 0 0 0;
        padding: 5px 10px 5px;
        text-align: left; }
        .header .header-menu li:hover {
          background-color: #002913;
          background-color: rgba(0, 41, 19, 0.9); }
      .header .header-menu a {
        font-size: 1rem;
        font-weight: bold;
        font-family: "Roboto", sans-serif;
        text-decoration: none;
        color: #fff; }
    .header .header-favs {
      z-index: 100;
      position: absolute;
      top: 112px;
      right: 0;
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      list-style: none;
      padding: 0;
      margin: 0; }
      .header .header-favs li {
        margin: 0 0 0 0;
        padding: 5px 10px 5px; }
        .header .header-favs li:hover {
          background-color: #002913;
          background-color: rgba(0, 41, 19, 0.9); }
      .header .header-favs a, .header .header-favs p {
        font-size: 1rem;
        font-weight: bold;
        font-family: "Roboto", sans-serif;
        text-decoration: none;
        color: #fff; }
  .footer {
    background-color: #151515;
    font-family: "Roboto", sans-serif;
    padding-top: 0.1px; }
    .footer .center {
      max-width: 459px;
      min-width: 300px;
      margin: 0 20px; }
    .footer .upper {
      margin-top: 25px; }
    .footer .lower {
      margin-top: 10px;
      padding-bottom: 20px; }
      .footer .lower a {
        font-size: 0.722rem;
        font-weight: bold; }
    .footer a {
      display: block;
      font-size: 0.667rem;
      line-height: 1rem;
      color: #fff;
      text-decoration: none; }
  .homepage .center {
    max-width: 439px;
    min-width: 280px;
    margin: 0 20px; }
  .homepage .top-section {
    padding-top: 138px;
    background-color: #eaeaeb;
    background-image: url("../images/bg_1920by836_eada.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
    padding-bottom: 25px; }
    .homepage .top-section h1 {
      display: none; }
    .homepage .top-section .link-box {
      display: inline-block;
      width: 100%;
      text-decoration: none;
      vertical-align: top;
      color: #fff;
      font-family: "Roboto", sans-serif;
      margin: 0;
      padding: 0; }
      .homepage .top-section .link-box h3 {
        font-size: 1.556rem;
        margin: 30px 30px 20px 30px; }
      .homepage .top-section .link-box hr, .homepage .top-section .link-box p {
        display: none; }
      .homepage .top-section .link-box.institution {
        background-color: #369;
        margin-bottom: 10px; }
      .homepage .top-section .link-box.compare {
        background-color: #cc672f;
        margin-bottom: 10px; }
      .homepage .top-section .link-box.custom {
        background-color: #01b7bd;
        margin-bottom: 10px; }
      .homepage .top-section .link-box.trend {
        background-color: #2a455f;
        margin-bottom: 10px; }
      .homepage .top-section .link-box.download {
        background-color: #a9a543;
        margin-bottom: 10px; }
    .homepage .top-section h2 {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      text-align: center;
      margin-top: 90px;
      margin-bottom: 50px;
      color: #00642D;
      font-size: 2rem; }
    .homepage .top-section .description {
      text-align: center;
      font-size: 1rem;
      font-family: "Roboto", sans-serif;
      color: #151515; }
  .homepage .bottom-section {
    text-align: center;
    margin-bottom: 60px; }
    .homepage .bottom-section h2 {
      margin-top: 25px;
      margin-bottom: 53px;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      text-align: center;
      color: #00642D;
      font-size: 2rem; }
    .homepage .bottom-section .button {
      text-decoration: none;
      display: block;
      width: 100%;
      border-radius: 83px;
      border: 2px solid #00642D;
      text-align: center;
      margin: 0 auto;
      margin-bottom: 22px;
      padding-top: 17.5px;
      padding-bottom: 17.5px;
      font-family: "Roboto", sans-serif;
      font-size: .8rem;
      color: #00642D; }
      .homepage .bottom-section .button strong {
        font-family: "Roboto", sans-serif;
        font-size: .95rem; }
  .help-page {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 112px;
    font-size: 0.889rem;
    color: #151515;
    padding-top: 151px; }
    .help-page a {
      color: #151515; }
    .help-page .colored-text {
      color: #1f88bd; }
    .help-page strong {
      font-weight: bold;
      font-size: 0.889rem; }
    .help-page .center {
      max-width: 439px;
      min-width: 280px;
      margin: 0 20px; }
    .help-page .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2.000rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .help-page .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444em;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px;
      width: 100%; }
    .help-page .step-one a {
      float: right; }
    .help-page .first-header {
      margin-top: 50px; }
    .help-page .continue-button {
      margin: 50px auto;
      text-align: center; }
      .help-page .continue-button button, .help-page .continue-button a {
        margin: auto auto;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
  .institution-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .institution-search .center {
      max-width: 439px;
      min-width: 280px;
      margin: 0 20px; }
    .institution-search .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .institution-search .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .institution-search .continue-button {
      margin: 50px auto;
      text-align: center; }
      .institution-search .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
  .institution-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .institution-list .center {
      max-width: 439px;
      min-width: 280px;
      margin: 0 20px; }
    .institution-list .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .institution-list .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .institution-list .continue-button {
      margin: 50px auto;
      text-align: center; }
      .institution-list .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .institution-list .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
  .institution-details {
    z-index: 99;
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .institution-details .center {
      max-width: 459px;
      min-width: 300px;
      margin: 0 10px; }
    .institution-details .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .institution-details .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .institution-details .continue-button {
      margin: 50px auto;
      text-align: center; }
      .institution-details .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .institution-details .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
  .compare-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-search .center {
      max-width: 439px;
      min-width: 280px;
      margin: 0 20px; }
    .compare-search .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-search .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .compare-search .continue-button {
      margin: 50px auto;
      text-align: center; }
      .compare-search .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
  .compare-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-list .center {
      max-width: 439px;
      min-width: 280px;
      margin: 0 20px; }
    .compare-list .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-list .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .compare-list .continue-button {
      margin: 50px auto;
      text-align: center; }
      .compare-list .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .compare-list .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
  .compare-confirm {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-confirm .center {
      max-width: 439px;
      min-width: 280px;
      margin: 0 20px; }
    .compare-confirm .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-confirm .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .compare-confirm .continue-button {
      margin: 50px auto;
      text-align: center; }
      .compare-confirm .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .compare-confirm .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
  .compare-details {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-details .center {
      max-width: 439px;
      min-width: 280px;
      margin: 0 20px; }
    .compare-details .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-details .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .compare-details .selectNumberFormat {
      margin-top: 50px;
      margin-bottom: 30px;
      font-size: 0.722rem;
      color: #151515;
      background-color: #e1e1e1;
      vertical-align: middle;
      line-height: 23px; }
    .compare-details .continue-button {
      margin: 50px auto;
      text-align: center; }
      .compare-details .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .compare-details .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
  .customdata-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .customdata-search .center {
      max-width: 439px;
      min-width: 280px;
      margin: 0 20px; }
    .customdata-search .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .customdata-search .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .customdata-search .continue-button {
      margin: 50px auto;
      text-align: center; }
      .customdata-search .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
  .customdata-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .customdata-list .center {
      max-width: 439px;
      min-width: 280px;
      margin: 0 20px; }
    .customdata-list .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .customdata-list .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .customdata-list .continue-button {
      margin: 50px auto;
      text-align: center; }
      .customdata-list .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .customdata-list .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
    .customdata-list .shared-list .continue-with-all {
      border: 2px solid #007bb6;
      border-radius: 2px;
      text-align: center;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 15px;
      color: #007bb6;
      margin: 0;
      padding: 10px 10px;
      background-color: #fff;
      margin-left: 10px; }
  .customdata-details {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .customdata-details .center {
      max-width: 439px;
      min-width: 280px;
      margin: 0 20px; }
    .customdata-details .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .customdata-details .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .customdata-details .select-all {
      background-color: #e1e1e1;
      color: #151515;
      padding: 2px 2px 2px 3px;
      font-size: 12px;
      font-weight: bold;
      margin-top: 25px;
      margin-bottom: 17px;
      display: inline-block; }
    .customdata-details p {
      margin-top: 0; }
    .customdata-details .continue-button {
      margin: 50px auto;
      text-align: center; }
      .customdata-details .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .customdata-details .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
    .customdata-details .institutions {
      font-family: "Roboto", sans-serif;
      font-size: 1rem;
      color: #007bb6; }
      .customdata-details .institutions .name {
        font-size: 1.111rem;
        font-weight: bold; }
      .customdata-details .institutions .enroll {
        background-image: url("../images/icon_enrollment.png");
        background-size: 18px;
        display: inline-block;
        height: 18px;
        width: 24px;
        vertical-align: text-bottom; }
    .customdata-details ul {
      padding-left: 0;
      list-style: none;
      margin: 0; }
    .customdata-details .years li {
      display: inline-block;
      width: 70px;
      margin-right: 8%;
      font-weight: bold;
      font-size: 0.889rem; }
      .customdata-details .years li:last-child {
        margin-right: 0; }
    .customdata-details .link-button {
      font-family: "Roboto", sans-serif;
      border: 0;
      background: 0;
      font-size: inherit;
      font-weight: normal; }
    .customdata-details .screen {
      padding-top: 0.1px;
      margin-top: 10px; }
      .customdata-details .screen:first-child {
        margin-top: 10px; }
      .customdata-details .screen h5 {
        font-size: 1rem;
        font-weight: bold;
        margin: 0; }
      .customdata-details .screen i {
        display: inline-block;
        height: 14px;
        width: 14px;
        margin-right: 10px; }
      .customdata-details .screen .open {
        color: #007bb6; }
        .customdata-details .screen .open i {
          padding-right: 10px;
          padding-top: 10px;
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .customdata-details .screen .closed i {
        padding-right: 10px;
        padding-top: 10px;
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
      .customdata-details .screen ul {
        padding-left: 24px; }
        .customdata-details .screen ul input[type='checkbox'] {
          margin-left: 0; }
  .download-data {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .download-data .center {
      max-width: 439px;
      min-width: 280px;
      margin: 0 20px; }
    .download-data .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .download-data .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .download-data p {
      margin-top: 0; }
    .download-data ul {
      padding-left: 0;
      list-style: none;
      margin: 0; }
    .download-data .years, .download-data .data-types {
      text-align: justify;
      -ms-text-align-last: justify;
      text-align-last: justify;
      display: inline-block; }
      .download-data .years li, .download-data .data-types li {
        display: inline-block;
        text-align: justify;
        -ms-text-align-last: justify;
        text-align-last: justify; }
    .download-data .data-types {
      display: block;
      margin-bottom: 50px; }
    .download-data .file-list {
      margin-bottom: 10px; }
      .download-data .file-list li {
        margin: 15px 0;
        font-family: "Roboto", sans-serif;
        font-size: 0.889rem;
        color: #151515; }
        .download-data .file-list li span {
          font-weight: bold;
          font-size: 1rem; }
        .download-data .file-list li a {
          text-decoration: underline;
          font-size: 0.889rem;
          color: #151515; }
    .download-data hr {
      border: none; }
      .download-data hr.thin {
        height: 1px;
        color: #ccc;
        background-color: #ccc;
        margin: 15px 0; }
      .download-data hr.thick {
        height: 2px;
        color: #151515;
        background-color: #151515; }
      .download-data hr.dotted {
        height: 1px;
        color: #ccc;
        background-color: #ccc; }
    .download-data section {
      padding: 0.1px;
      margin-top: 0; }
      .download-data section h3 {
        margin: 0;
        margin-bottom: 5px; }
      .download-data section:last-child {
        margin-bottom: 50px; }
  .shared-search button {
    border: 2px solid #333;
    border-radius: 2px;
    width: 141px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.889rem;
    color: #151515;
    margin: 0 5px;
    padding: 13px 0;
    margin-bottom: 35px;
    background-color: #fff; }
  .shared-search .selected {
    background-color: #007bb6;
    border: 2px solid #007bb6;
    color: #fff; }
  .shared-search .search {
    margin: 0; }
  .shared-search input[type='text'] {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.889rem;
    padding: 0; }
  .shared-search .selectbox button {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.889rem;
    text-align: left;
    background-color: #fff;
    margin-bottom: 0;
    position: relative; }
    .shared-search .selectbox button i {
      display: inline-block;
      position: absolute;
      height: 14px;
      width: 8px;
      background-image: url("../images/icon_pointtoright_notselect.png");
      right: 15px;
      top: 18px; }
      .shared-search .selectbox button i.badge-counter {
        background-image: none;
        background: none;
        background-color: #007bb6;
        border: 1px solid #007bb6;
        border-radius: 100%;
        color: #fff;
        top: 10px;
        right: 40px;
        width: auto;
        height: auto;
        text-align: center;
        padding: 5px 8px 5px 9px;
        font-size: .75em; }
    .shared-search .selectbox button.selected {
      color: #007bb6;
      font-weight: bold; }
      .shared-search .selectbox button.selected i {
        background-image: url("../images/icon_pointtoright_select.png"); }
        .shared-search .selectbox button.selected i.badge-counter {
          background-image: none; }
  .shared-search .selectbox label {
    display: block;
    width: 100%;
    height: 20px;
    border: none;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 0.889rem;
    text-align: left;
    background-color: #fff;
    margin-bottom: 0;
    vertical-align: bottom;
    padding-top: 20px;
    padding-bottom: 15px; }
  .shared-search .mobile-selectbox select {
    width: 100%;
    height: 50px;
    font-size: 0.889rem;
    margin: 0 5px;
    border: 1px solid #ccc;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../images/icon_dropdown.png");
    padding-right: 27px;
    background-repeat: no-repeat;
    background-position: right 10px center;
    font-weight: bold;
    color: #151515; }
    .shared-search .mobile-selectbox select::-ms-expand {
      display: none; }
  .shared-search .search-left {
    margin: 0;
    padding: 0;
    width: 100%;
    vertical-align: top; }
  .shared-search .search-right {
    display: none; }
  .shared-search .all-selected {
    color: #007bb6;
    font-size: 1.222rem;
    font-weight: bold; }
  .shared-list {
    position: relative; }
    .shared-list h3 {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.222rem;
      color: #007bb6;
      margin-top: 0;
      /*margin-top: 25px;*/
      margin-bottom: 10px;
      display: inline-block; }
    .shared-list .filter-header {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 0.889em;
      color: #151515;
      margin: 10px 0;
      display: block;
      height: calc( 40px - 22px);
      padding-top: 11px;
      padding-bottom: 11px;
      padding-left: 0;
      background-color: #e1e1e1;
      vertical-align: middle; }
      .shared-list .filter-header h4 {
        margin: 0;
        display: inline-block;
        text-align: left; }
      .shared-list .filter-header i {
        display: inline-block;
        height: 14px;
        width: 14px;
        margin-right: 10px;
        margin-left: 10px; }
      .shared-list .filter-header.open {
        color: #fff;
        background-color: #707070;
        margin-bottom: 0; }
        .shared-list .filter-header.open i {
          background-image: url("../images/icon_close_white.png"); }
        .shared-list .filter-header.open .selectAll {
          color: #fff; }
      .shared-list .filter-header.closed i {
        background-image: url("../images/icon_open.png"); }
      .shared-list .filter-header .selectAll {
        border: 0;
        background: 0;
        text-decoration: underline;
        color: #151515;
        font-size: 0.778rem;
        display: inline-block;
        text-align: right;
        position: absolute;
        right: 10px; }
    .shared-list div {
      padding-left: 34px;
      padding-top: 0.1px;
      padding-bottom: 0.1px;
      color: #151515;
      background-color: #e1e1e1;
      font-size: 0.778rem;
      margin-bottom: 10px; }
      .shared-list div p {
        margin: 1em 0;
        font-weight: normal; }
        .shared-list div p .filter-body {
          display: inline-block; }
          .shared-list div p .filter-body.name {
            width: calc( 100% - 139px - 4px); }
          .shared-list div p .filter-body.city {
            width: calc(100% - 108px - 4px); }
          .shared-list div p .filter-body.enrollement {
            width: calc( 100% - 156px - 4px); }
          .shared-list div p .filter-body.state {
            width: calc( 100% - 158px - 4px); }
          .shared-list div p .filter-body.country {
            width: calc( 100% - 119px - 4px); }
          .shared-list div p .filter-body.program {
            width: calc( 100% - 155px - 4px); }
          .shared-list div p .filter-body.type {
            width: calc( 100% - 132px - 4px); }
        .shared-list div p .filter-head {
          font-weight: bold;
          display: inline-block;
          vertical-align: top;
          margin-right: 4px; }
          .shared-list div p .filter-head.name {
            max-width: 139px; }
          .shared-list div p .filter-head.city {
            max-width: 108px; }
          .shared-list div p .filter-head.enrollement {
            max-width: 156px; }
          .shared-list div p .filter-head.state {
            max-width: 158px; }
          .shared-list div p .filter-head.country {
            max-width: 119px; }
          .shared-list div p .filter-head.program {
            max-width: 155px; }
          .shared-list div p .filter-head.type {
            max-width: 132px; }
    .shared-list p {
      margin-top: 0; }
    .shared-list ul.pagination {
      list-style: none;
      padding: 0;
      margin: 0 20px;
      margin-top: 50px !important;
      font-size: 0.889em;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      color: #151515;
      max-width: 439px;
      min-width: 280px;
      text-align: center; }
      .shared-list ul.pagination li {
        display: inline-block;
        width: 35px; }
        .shared-list ul.pagination li a {
          color: #151515; }
        .shared-list ul.pagination li.active a {
          color: #007bb6; }
    .shared-list .results-header {
      background-color: #ffffff;
      padding-left: 0px;
      padding-top: 0px;
      padding-bottom: 0px;
      margin-bottom: 10px;
      width: 100%;
      font-size: 1rem;
      margin-bottom: 1rem; }
      .shared-list .results-header select {
        display: block;
        height: 39px;
        border: 1px solid #ccc;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        background-image: url("../images/icon_dropdown.png");
        padding-right: 27px;
        background-repeat: no-repeat;
        background-position: right 10px center;
        font-weight: bold;
        font-size: 0.889rem;
        color: #151515; }
        .shared-list .results-header select::-ms-expand {
          display: none; }
    .shared-list table thead tr {
      border-width: 2px; }
    .shared-list .favorite {
      display: inline-block;
      height: 20px;
      width: 20px;
      background-image: url("../images/icon_favorite2_notselect.png"); }
      .shared-list .favorite.is-Fav {
        background-image: url("../images/icon_favorite2_select.png"); }
  .institution-details-head h3 {
    font-family: "Roboto", sans-serif;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 1.667rem;
    color: #007bb6;
    border-bottom: 2px solid #007bb6;
    position: relative; }
    .institution-details-head h3 i {
      position: absolute;
      right: 0;
      cursor: pointer;
      height: 31px;
      width: 31px; }
  .institution-details-head .address, .institution-details-head .web-address, .institution-details-head .enrollment {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    color: #007bb6;
    display: inline-block;
    margin: 5px 0; }
    .institution-details-head .address i, .institution-details-head .web-address i, .institution-details-head .enrollment i {
      margin-right: 5px; }
  .institution-details-head .col-1, .institution-details-head .col-2 {
    width: 100%;
    display: block; }
  .institution-details-head .address {
    text-align: left;
    position: relative;
    vertical-align: top; }
    .institution-details-head .address address {
      width: calc(100% - 16px - 5px);
      display: inline-block;
      vertical-align: top;
      overflow: hidden;
      white-space: nowrap;
      -ms-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .institution-details-head .address .map-icon {
      margin-top: 10px;
      height: 25px;
      width: 16px;
      background-image: url("../images/icon_address.png"); }
  .institution-details-head .web-address {
    text-align: left;
    position: relative;
    vertical-align: top; }
    .institution-details-head .web-address a {
      max-width: calc(100% - 25px - 5px);
      display: inline-block;
      vertical-align: top;
      text-transform: lowercase;
      overflow: hidden;
      white-space: nowrap;
      -ms-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .institution-details-head .web-address .web-icon {
      height: 25px;
      width: 25px;
      background-image: url("../images/icon_website.png"); }
  .institution-details-head .enrollment {
    text-align: left;
    vertical-align: top; }
    .institution-details-head .enrollment span {
      vertical-align: top; }
    .institution-details-head .enrollment .enroll-icon {
      height: 25px;
      width: 33px;
      background-image: url("../images/icon_enrollment.png"); }
  .institution-details-head .campus-list {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent;
    height: 25px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    margin-top: 15px;
    margin-bottom: 50px;
    text-align: left;
    background-color: #333;
    background-image: url("../images/icon_dropdown_white.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    border: none; }
    .institution-details-head .campus-list::-ms-expand {
      display: none; }
  .institution-details-head .campus-header {
    width: 100%;
    color: #fff;
    background-color: #007bb6;
    font-size: 0.889rem;
    margin-top: 15px;
    position: relative;
    padding: 0.1px; }
    .institution-details-head .campus-header .departmentInfo {
      height: auto;
      margin-top: 15px;
      margin-left: 22px;
      margin-bottom: 0;
      display: block;
      vertical-align: middle; }
    .institution-details-head .campus-header .campus-list {
      margin-top: 0;
      display: block;
      margin-bottom: 15px;
      width: 75%; }
    .institution-details-head .campus-header i.is-fav {
      height: 42px;
      width: 42px;
      position: absolute;
      right: 0;
      top: 0;
      background-image: url("../images/icon_favorite_select.png"); }
    .institution-details-head .campus-header i.not-fav {
      height: 42px;
      width: 42px;
      position: absolute;
      right: 0;
      top: 0;
      background-image: url("../images/icon_favorite_notselect.png"); }
    .institution-details-head .campus-header i.map-icon {
      background-image: url("../images/icon_address_white.png");
      height: 20px;
      width: 12px; }
    .institution-details-head .campus-header .address, .institution-details-head .campus-header .on-campus-housing, .institution-details-head .campus-header .local-police {
      margin-left: 15px;
      color: #fff;
      width: calc(100% - 15px) !important; }
    .institution-details-head .campus-header h4, .institution-details-head .campus-header h5 {
      font-weight: bold;
      font-size: 0.889rem;
      color: #fff;
      margin-bottom: 0;
      text-transform: uppercase; }
    .institution-details-head .campus-header p {
      margin-top: 5px;
      margin-bottom: 25px; }
  .institution-details-head .badges {
    margin-top: 10px;
    font-size: 0.889rem;
    color: #fff;
    /*min-height: 181px;*/ }
    .institution-details-head .badges h5 {
      text-transform: uppercase;
      font-weight: bold;
      margin: 25px 0 10px 0;
      padding: 0; }
    .institution-details-head .badges p {
      margin: 0; }
    .institution-details-head .badges address {
      margin: 0;
      display: inline; }
    .institution-details-head .badges section {
      width: 100%;
      width: calc(100% - 10px);
      display: inline-block;
      background-color: #007bb6;
      padding-left: 10px;
      padding-bottom: 10px;
      background-repeat: no-repeat;
      background-position: top 20px right 15px;
      vertical-align: top;
      margin-bottom: 10px; }
      .institution-details-head .badges section.security {
        background-image: url("../images/icon_securityofficer.png"); }
      .institution-details-head .badges section.fire {
        background-image: url("../images/icon_fireofficer.png"); }
      .institution-details-head .badges section.coord {
        background-image: url("../images/icon_lead.png"); }
  .institution-details-tabs ul.nav.nav-tabs {
    border-bottom: 2px solid #007bb6; }
    .institution-details-tabs ul.nav.nav-tabs li {
      font-weight: bold;
      font-size: 0.833rem;
      text-transform: uppercase;
      color: #999;
      background-color: transparent;
      height: 44px;
      display: block;
      text-align: center;
      margin-bottom: 0 !important; }
      .institution-details-tabs ul.nav.nav-tabs li a {
        color: #999;
        box-shadow: none;
        text-decoration: none; }
      .institution-details-tabs ul.nav.nav-tabs li.active {
        color: #fff;
        background-color: #007bb6; }
        .institution-details-tabs ul.nav.nav-tabs li.active a {
          color: #fff; }
  .institution-details-tabs .screen {
    padding-top: 0.1px;
    margin-top: 50px; }
    .institution-details-tabs .screen a {
      border-bottom: 1px dotted;
      text-decoration: none; }
    .institution-details-tabs .screen:first-child {
      margin-top: 25px; }
    .institution-details-tabs .screen h5 {
      margin: 0;
      font-size: 1rem;
      font-weight: bold; }
      .institution-details-tabs .screen h5 i {
        display: inline-block;
        height: 14px;
        width: 14px;
        padding-right: 10px;
        padding-top: 10px; }
    .institution-details-tabs .screen .open {
      color: #007bb6; }
      .institution-details-tabs .screen .open i {
        background-image: url("../images/icon_close.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
    .institution-details-tabs .screen .closed i {
      background-image: url("../images/icon_open.png");
      background-repeat: no-repeat;
      background-position: left bottom; }
    .institution-details-tabs .screen .caveat-header {
      font-weight: bold; }
    .institution-details-tabs .screen table {
      margin-top: 50px;
      width: 100%; }
      .institution-details-tabs .screen table td:first-child {
        padding-left: 24px;
        text-align: left; }
      .institution-details-tabs .screen table th:first-child {
        padding-left: 24px;
        text-align: left; }
      .institution-details-tabs .screen table th:not(:first-child) {
        padding-right: 10px;
        text-align: right; }
      .institution-details-tabs .screen table thead tr {
        border: none; }
        .institution-details-tabs .screen table thead tr.header-1, .institution-details-tabs .screen table thead tr.header-2 {
          font-size: 0.722rem;
          color: #151515; }
        .institution-details-tabs .screen table thead tr.header-1 {
          font-style: italic; }
          .institution-details-tabs .screen table thead tr.header-1 th:not([rowspan="2"]) {
            border-bottom: dotted;
            border-color: #ccc;
            border-width: 1px; }
          .institution-details-tabs .screen table thead tr.header-1 th[rowspan="2"] {
            font-style: normal;
            font-weight: bold; }
            .institution-details-tabs .screen table thead tr.header-1 th[rowspan="2"].number {
              text-align: right; }
        .institution-details-tabs .screen table thead tr.header-2 {
          font-weight: bold; }
        .institution-details-tabs .screen table thead tr th {
          font-size: 0.722rem;
          font-weight: bold;
          color: #151515;
          /*padding: 10px 10px 10px 10px;*/ }
          .institution-details-tabs .screen table thead tr th:not(:first-of-type) {
            font-size: 0.722rem;
            font-weight: bold;
            color: #151515; }
      .institution-details-tabs .screen table tbody tr td {
        padding: 10px 10px 10px 10px; }
    .institution-details-tabs .screen hr {
      width: 100%;
      color: #ccc;
      border: none;
      border-bottom: 1px solid #ccc; }
  .institution-details-tabs .additional-info {
    margin-top: 50px;
    display: block;
    padding: 15px;
    background-color: #e1e1e1;
    font-size: 0.833rem;
    color: #151515; }
    .institution-details-tabs .additional-info ul {
      list-style: circle;
      padding-left: 18px; }
    .institution-details-tabs .additional-info strong {
      font-weight: bold; }
  .institution-details-tabs .campus-list {
    width: 100%;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent;
    height: 25px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    margin-top: 15px;
    text-align: left;
    background-color: #333;
    background-image: url("../images/icon_dropdown_white.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    border: none; }
    .institution-details-tabs .campus-list::-ms-expand {
      display: none; }
  .institution-details-tabs-print {
    padding-top: 0.1px;
    margin-top: 25px; }
    .institution-details-tabs-print tr.ng-scope.header-1 {
      font-size: 13px;
      background-color: white !important;
      font-style: italic;
      text-decoration: underline;
      font-weight: normal !important; }
    .institution-details-tabs-print ul.nav.nav-tabs {
      margin-top: 0;
      border-bottom: 2px solid #007bb6;
      text-align: justify;
      position: relative; }
      .institution-details-tabs-print ul.nav.nav-tabs li {
        display: inline-block;
        font-weight: bold;
        font-size: 0.889rem;
        text-transform: uppercase;
        color: #999;
        background-color: transparent;
        height: 44px;
        margin-bottom: 0 !important;
        border-radius: 5px 5px 0 0; }
        .institution-details-tabs-print ul.nav.nav-tabs li:nth-child(7) {
          position: absolute;
          right: 0px; }
        .institution-details-tabs-print ul.nav.nav-tabs li a {
          text-align: center;
          color: #999;
          box-shadow: none;
          text-decoration: none; }
          .institution-details-tabs-print ul.nav.nav-tabs li a:hover {
            color: #007bb6; }
        .institution-details-tabs-print ul.nav.nav-tabs li.active {
          color: #fff;
          background-color: #007bb6; }
          .institution-details-tabs-print ul.nav.nav-tabs li.active a {
            color: #fff; }
    .institution-details-tabs-print .screen {
      padding-top: 0.1px; }
      .institution-details-tabs-print .screen a {
        border-bottom: 1px solid;
        text-decoration: none;
        cursor: pointer; }
      .institution-details-tabs-print .screen:first-child {
        margin-top: 15px; }
      .institution-details-tabs-print .screen h5 {
        margin: 0;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 16px; }
        .institution-details-tabs-print .screen h5 i {
          display: inline-block;
          height: 14px;
          width: 14px;
          padding-right: 10px;
          padding-top: 10px; }
      .institution-details-tabs-print .screen .open {
        color: #007bb6; }
        .institution-details-tabs-print .screen .open i {
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .institution-details-tabs-print .screen .closed i {
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
      .institution-details-tabs-print .screen .caveat-header {
        font-weight: bold; }
      .institution-details-tabs-print .screen .popover {
        background-color: #464646;
        color: #ffffff;
        max-width: 430px !important; }
        .institution-details-tabs-print .screen .popover .arrow:after {
          border-right-color: #464646; }
        .institution-details-tabs-print .screen .popover .popover-inner {
          padding: 8px 5px; }
          .institution-details-tabs-print .screen .popover .popover-inner .popover-content {
            max-height: 150px;
            overflow-y: auto;
            position: relative; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar {
              width: 12px;
              padding: 2px 5px 2px 0px; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-track {
              background-color: #eaeaea;
              border-left: 1px solid #ccc; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
              background-color: #ccc; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
              background-color: #aaa; }
      .institution-details-tabs-print .screen .definition-popover {
        font: "Roboto", sans-serif; }
        .institution-details-tabs-print .screen .definition-popover .definition-title {
          font-size: 0.778rem;
          font-weight: bold;
          margin-bottom: 5px; }
        .institution-details-tabs-print .screen .definition-popover .definition-content {
          font-size: 0.722rem; }
          .institution-details-tabs-print .screen .definition-popover .definition-content table {
            background-color: #464646;
            color: #fff;
            margin: 0; }
            .institution-details-tabs-print .screen .definition-popover .definition-content table thead {
              font-size: 0.778rem; }
              .institution-details-tabs-print .screen .definition-popover .definition-content table thead tr {
                background-color: #464646;
                border-bottom: #ffffff; }
                .institution-details-tabs-print .screen .definition-popover .definition-content table thead tr th {
                  font-weight: bold;
                  font-size: 0.722rem;
                  color: #fff;
                  text-transform: none; }
            .institution-details-tabs-print .screen .definition-popover .definition-content table tbody {
              font-size: 0.722rem; }
              .institution-details-tabs-print .screen .definition-popover .definition-content table tbody tr {
                background-color: #464646; }
      .institution-details-tabs-print .screen table {
        margin-top: 10px;
        width: 100%;
        margin-bottom: 40px;
        page-break-after: avoid; }
        .institution-details-tabs-print .screen table td:first-child, .institution-details-tabs-print .screen table th:first-child {
          padding-left: 24px; }
        .institution-details-tabs-print .screen table thead tr {
          border: none; }
          .institution-details-tabs-print .screen table thead tr.header-1 th, .institution-details-tabs-print .screen table thead tr.header-2 th {
            font-size: 0.722rem;
            color: #151515; }
            .institution-details-tabs-print .screen table thead tr.header-1 th:not(:first-of-type), .institution-details-tabs-print .screen table thead tr.header-2 th:not(:first-of-type) {
              font-size: 0.722rem;
              font-weight: bold;
              color: #151515; }
          .institution-details-tabs-print .screen table thead tr.header-1 {
            font-style: italic;
            font-size: 0.889rem; }
            .institution-details-tabs-print .screen table thead tr.header-1 th:not([rowspan="2"]) {
              border-bottom: solid;
              border-color: #e1e1e1;
              border-width: 1px;
              font-weight: normal; }
            .institution-details-tabs-print .screen table thead tr.header-1 th[rowspan="2"] {
              font-style: normal;
              font-weight: bold; }
              .institution-details-tabs-print .screen table thead tr.header-1 th[rowspan="2"].number {
                text-align: right; }
          .institution-details-tabs-print .screen table thead tr.header-2 {
            font-weight: bold;
            font-size: 0.889rem; }
            .institution-details-tabs-print .screen table thead tr.header-2 th {
              color: #151515;
              padding: 13px 10px 13px 0; }
              .institution-details-tabs-print .screen table thead tr.header-2 th:first-child {
                padding-left: 5px; }
          .institution-details-tabs-print .screen table thead tr th {
            font-size: 0.944rem;
            font-weight: bold;
            color: #151515;
            padding: 5px 10px 10px 0; }
            .institution-details-tabs-print .screen table thead tr th:not(:first-of-type) {
              font-size: 0.944rem;
              font-weight: bold;
              color: #151515; }
        .institution-details-tabs-print .screen table tbody tr td {
          padding: 9px 10px 9px 0; }
          .institution-details-tabs-print .screen table tbody tr td .popover {
            background-color: #464646;
            color: #ffffff;
            max-width: 430px !important; }
            .institution-details-tabs-print .screen table tbody tr td .popover .arrow:after {
              border-right-color: #464646; }
            .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner {
              padding: 8px 5px; }
              .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content {
                max-height: 150px;
                overflow-y: auto;
                position: relative; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar {
                  width: 12px;
                  padding: 2px 5px 2px 0px; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-track {
                  background-color: #eaeaea;
                  border-left: 1px solid #ccc; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
                  background-color: #ccc; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
                  background-color: #aaa; }
          .institution-details-tabs-print .screen table tbody tr td .definition-popover {
            font: "Roboto", sans-serif; }
            .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-title {
              font-size: 0.778rem;
              font-weight: bold;
              margin-bottom: 5px; }
            .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content {
              font-size: 0.722rem; }
              .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table {
                background-color: #464646;
                color: #fff;
                margin: 0; }
                .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead {
                  font-size: 0.778rem; }
                  .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr {
                    background-color: #464646;
                    border-bottom: #ffffff; }
                    .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr th {
                      font-weight: bold;
                      font-size: 0.722rem;
                      color: #fff;
                      text-transform: none; }
                .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody {
                  font-size: 0.722rem; }
                  .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody tr {
                    background-color: #464646; }
        .institution-details-tabs-print .screen table tbody tr:nth-child(odd) {
          background-color: #eceef1; }
        .institution-details-tabs-print .screen table.special-table thead {
          border-bottom: 1px solid #ccc;
          text-transform: uppercase; }
          .institution-details-tabs-print .screen table.special-table thead tr th.subHeader {
            font-size: 0.778rem; }
        .institution-details-tabs-print .screen table.special-table .popover {
          max-width: 820px !important; }
          .institution-details-tabs-print .screen table.special-table .popover .arrow:after {
            border-left-color: #464646; }
          .institution-details-tabs-print .screen table.special-table .popover th, .institution-details-tabs-print .screen table.special-table .popover td {
            text-align: right;
            padding-right: 20px; }
          .institution-details-tabs-print .screen table.special-table .popover th:first-child, .institution-details-tabs-print .screen table.special-table .popover td:first-child, .institution-details-tabs-print .screen table.special-table .popover th:nth-child(2), .institution-details-tabs-print .screen table.special-table .popover td:nth-child(2) {
            text-align: left;
            padding-left: 0; }
      .institution-details-tabs-print .screen hr {
        width: 100%;
        color: #ccc;
        border: none;
        border-bottom: 1px solid #ccc; }
    .institution-details-tabs-print .additional-info {
      margin-top: 50px;
      display: block;
      padding: 23px 23px 25px 23px;
      background-color: #e1e1e1;
      font-size: 0.778rem;
      color: #151515; }
      .institution-details-tabs-print .additional-info ul {
        list-style: circle;
        padding-left: 18px;
        margin-bottom: 0; }
        .institution-details-tabs-print .additional-info ul li {
          margin-bottom: 10px; }
          .institution-details-tabs-print .additional-info ul li:last-child {
            margin-bottom: 0; }
      .institution-details-tabs-print .additional-info strong {
        font-weight: bold; }
      .institution-details-tabs-print .additional-info p {
        margin-bottom: 0; }
  .compare-details-head ul {
    list-style: none;
    margin: 0;
    padding: 0.1px; }
    .compare-details-head ul li {
      font-family: "Roboto", sans-serif;
      font-size: 1rem;
      color: #007bb6; }
      .compare-details-head ul li i {
        color: #ffffff;
        border-radius: 5px;
        padding: 3px 5px;
        font-size: 0.667rem;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        vertical-align: top; }
        .compare-details-head ul li i.badge-counter-first {
          background-color: #cc672f; }
        .compare-details-head ul li i.badge-counter-second {
          background-color: #01b7bd; }
        .compare-details-head ul li i.badge-counter-third {
          background-color: #a9a543; }
        .compare-details-head ul li i.badge-counter-fourth {
          background-color: #2a455f; }
      .compare-details-head ul li .name {
        font-size: 20px;
        font-weight: bold; }
      .compare-details-head ul li .enroll {
        background-image: url("../images/icon_enrollment.png");
        background-size: 18px;
        display: inline-block;
        height: 18px;
        width: 24px;
        vertical-align: text-bottom; }
  .compare-details-tabs ul.nav.nav-tabs {
    border-bottom: 2px solid #007bb6; }
    .compare-details-tabs ul.nav.nav-tabs li {
      font-weight: bold;
      font-size: 0.833rem;
      text-transform: uppercase;
      color: #999;
      background-color: transparent;
      height: 44px;
      min-width: 184px;
      text-align: center;
      margin-bottom: 0 !important; }
      .compare-details-tabs ul.nav.nav-tabs li a {
        color: #999;
        box-shadow: none;
        text-decoration: none; }
      .compare-details-tabs ul.nav.nav-tabs li.active {
        color: #fff;
        background-color: #007bb6; }
        .compare-details-tabs ul.nav.nav-tabs li.active a {
          color: #fff; }
  .compare-details-tabs .screen {
    padding-top: 0.1px;
    margin-top: 50px; }
    .compare-details-tabs .screen:first-child {
      margin-top: 25px; }
    .compare-details-tabs .screen h5 {
      margin: 0; }
      .compare-details-tabs .screen h5.open {
        color: #007bb6; }
        .compare-details-tabs .screen h5.open i {
          background-image: url("../images/icon_close.png"); }
      .compare-details-tabs .screen h5.closed i {
        background-image: url("../images/icon_open.png"); }
    .compare-details-tabs .screen i {
      display: inline-block;
      height: 14px;
      width: 14px;
      margin-right: 10px; }
    .compare-details-tabs .screen a {
      border-bottom: 1px dotted;
      text-decoration: none; }
    .compare-details-tabs .screen .closed i {
      background-image: url("../images/icon_open.png"); }
    .compare-details-tabs .screen table {
      margin-top: 10px;
      width: calc(100%);
      border-bottom: 1px solid #ccc; }
      .compare-details-tabs .screen table th {
        padding-bottom: 5px; }
        .compare-details-tabs .screen table th.number {
          color: #ffffff; }
          .compare-details-tabs .screen table th.number span {
            border-radius: 5px;
            padding: 3px 5px; }
            .compare-details-tabs .screen table th.number span.first {
              background: #cc672f; }
            .compare-details-tabs .screen table th.number span.second {
              background: #01b7b8; }
            .compare-details-tabs .screen table th.number span.third {
              background: #a9a543; }
            .compare-details-tabs .screen table th.number span.fourth {
              background: #2a455f; }
  .compare-details-tabs .additional-info {
    margin-top: 50px;
    display: block;
    padding: 15px;
    background-color: #e1e1e1;
    font-size: 0.833rem;
    color: #151515; }
    .compare-details-tabs .additional-info ul {
      list-style: circle;
      padding-left: 18px; }
    .compare-details-tabs .additional-info strong {
      font-weight: bold; }
  .compare-details-tabs-print ul.nav.nav-tabs {
    margin-top: 0;
    border-bottom: 2px solid #007bb6;
    text-align: justify; }
    .compare-details-tabs-print ul.nav.nav-tabs li {
      display: inline-block;
      font-weight: bold;
      font-size: 0.833rem;
      text-transform: uppercase;
      color: #999;
      background-color: transparent;
      height: 44px;
      margin-bottom: 0 !important;
      border-radius: 5px 5px 0 0; }
      .compare-details-tabs-print ul.nav.nav-tabs li a {
        text-align: center;
        color: #999;
        box-shadow: none;
        text-decoration: none; }
      .compare-details-tabs-print ul.nav.nav-tabs li.active {
        color: #fff;
        background-color: #007bb6; }
        .compare-details-tabs-print ul.nav.nav-tabs li.active a {
          color: #fff; }
  .compare-details-tabs-print .screen {
    padding-top: 0.1px;
    margin-top: 50px; }
    .compare-details-tabs-print .screen:first-child {
      margin-top: 25px; }
    .compare-details-tabs-print .screen h5 {
      margin: 0;
      font-size: 1rem;
      font-weight: bold; }
      .compare-details-tabs-print .screen h5.open {
        color: #007bb6; }
        .compare-details-tabs-print .screen h5.open i {
          padding-right: 10px;
          padding-top: 10px;
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .compare-details-tabs-print .screen h5.closed i {
        padding-right: 10px;
        padding-top: 10px;
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
    .compare-details-tabs-print .screen i {
      display: inline-block;
      height: 14px;
      width: 14px;
      margin-right: 0px; }
    .compare-details-tabs-print .screen a {
      border-bottom: 1px solid;
      text-decoration: none;
      cursor: pointer; }
    .compare-details-tabs-print .screen .closed i {
      background-image: url("../images/icon_open.png"); }
    .compare-details-tabs-print .screen table {
      margin-top: 10px;
      width: 100%;
      border-bottom: 1px solid #ccc; }
      .compare-details-tabs-print .screen table td:first-child, .compare-details-tabs-print .screen table th:first-child {
        padding-left: 24px; }
      .compare-details-tabs-print .screen table tbody tr:nth-child(odd) {
        background-color: #eceef1; }
      .compare-details-tabs-print .screen table tbody tr td {
        padding: 9px 10px 9px 0; }
        .compare-details-tabs-print .screen table tbody tr td .popover {
          background-color: #464646;
          color: #ffffff;
          max-width: 430px !important; }
          .compare-details-tabs-print .screen table tbody tr td .popover .arrow:after {
            border-right-color: #464646; }
          .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner {
            padding: 8px 5px; }
            .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content {
              max-height: 150px;
              overflow-y: auto;
              position: relative;
              /*Custom Scroll bar 1*/ }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar {
                width: 12px;
                padding: 2px 5px 2px 0px; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-track {
                background-color: #eaeaea;
                border-left: 1px solid #ccc; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
                background-color: #ccc; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
                background-color: #aaa; }
        .compare-details-tabs-print .screen table tbody tr td .definition-popover {
          font: "Roboto", sans-serif; }
          .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-title {
            font-size: 0.778rem;
            font-weight: bold;
            margin-bottom: 5px; }
          .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content {
            font-size: 0.722rem; }
            .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table {
              background-color: #464646;
              color: #fff;
              margin: 0; }
              .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead {
                font-size: 0.778rem; }
                .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr {
                  background-color: #464646;
                  border-bottom: #ffffff; }
                  .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr th {
                    font-weight: bold;
                    font-size: 0.722rem;
                    color: #fff; }
              .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody {
                font-size: 0.722rem; }
                .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody tr {
                  background-color: #464646; }
        .compare-details-tabs-print .screen table tbody tr td span {
          margin-right: 5px; }
      .compare-details-tabs-print .screen table thead tr {
        border: none; }
        .compare-details-tabs-print .screen table thead tr th {
          padding: 5px 10px 10px 0px; }
          .compare-details-tabs-print .screen table thead tr th:first-child {
            font-size: 0.944rem; }
          .compare-details-tabs-print .screen table thead tr th.number {
            color: #ffffff; }
            .compare-details-tabs-print .screen table thead tr th.number i {
              display: inline-block;
              border-radius: 5px;
              text-align: center;
              line-height: 1.22rem;
              height: 22px;
              width: 22px;
              font-size: 0.944rem;
              padding-left: 1px; }
              .compare-details-tabs-print .screen table thead tr th.number i.first {
                background: #cc672f; }
              .compare-details-tabs-print .screen table thead tr th.number i.second {
                background: #01b7b8; }
              .compare-details-tabs-print .screen table thead tr th.number i.third {
                background: #a9a543; }
              .compare-details-tabs-print .screen table thead tr th.number i.fourth {
                background: #2a455f; }
  .compare-details-tabs-print .additional-info {
    margin-top: 50px;
    display: block;
    padding: 15px;
    background-color: #e1e1e1;
    font-size: 0.833rem;
    color: #151515; }
    .compare-details-tabs-print .additional-info ul {
      list-style: circle;
      padding-left: 18px; }
    .compare-details-tabs-print .additional-info strong {
      font-weight: bold; }
  table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Roboto", sans-serif;
    font-size: 0.889rem;
    color: #151515; }
    table thead tr {
      border-bottom: 3px solid #151515; }
      table thead tr:not(:only-child):first-child th {
        text-align: center; }
      table thead tr th {
        text-align: left;
        font-size: 0.667rem;
        padding-right: 0.278rem; }
        table thead tr th.number {
          text-align: right; }
    table tbody tr:first-child td {
      padding-top: 10px; }
    table tbody tr.institution {
      font-weight: bold; }
    table tbody tr.selected td {
      background-color: #007bb6;
      color: #fff; }
    table tbody tr td {
      padding: 5px 0;
      padding-right: 0.278rem; }
      table tbody tr td button {
        border: none !important;
        background-color: transparent !important;
        width: 14px !important;
        height: 14px !important;
        padding: 0 !important;
        margin: 0 !important; }
      table tbody tr td.number {
        text-align: right; }
      table tbody tr td.remove {
        padding-left: 25px;
        width: 14px; }
      table tbody tr td span {
        -ms-word-wrap: break-word;
        word-wrap: break-word; }
      table tbody tr td.subHead {
        font-weight: bold; }
  .glossary-full {
    width: 100%;
    max-width: 439px; }
    .glossary-full h1 {
      height: 70px;
      margin: 0;
      background-color: #00642D;
      color: #fff;
      font-size: 26px;
      font-weight: bold;
      padding: 20px 0 10px 25px; }
    .glossary-full .padding-container {
      padding: 25px; }
    .glossary-full .instructions {
      margin: 0;
      font-weight: bold;
      font-size: 18px;
      color: #00642D; }
    .glossary-full .keyword-search {
      display: inline-block;
      height: 37px; }
    .glossary-full button {
      margin: auto auto;
      height: 37px;
      width: 175px;
      border: 3px solid #007bb6;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 17px;
      color: #007bb6;
      background-color: #fff;
      border-radius: 45px;
      text-align: center;
      padding: 0; }
    .glossary-full .search {
      margin-left: 25px; }
    .glossary-full .term-label {
      font-weight: bold;
      font-size: 16px;
      color: #151515;
      text-transform: uppercase;
      margin: 0;
      margin-top: 25px; }
    .glossary-full .alphabet {
      list-style: none;
      margin: 0;
      padding: 0;
      margin-top: 10px;
      margin-bottom: 25px; }
      .glossary-full .alphabet li {
        display: inline-block;
        margin-right: 15px;
        font-size: 18px;
        color: #151515; }
        .glossary-full .alphabet li a {
          text-decoration: underline;
          color: #151515; }
          .glossary-full .alphabet li a.selectedLetter {
            font-weight: bold;
            text-decoration: none; }
    .glossary-full hr {
      border: none;
      margin: 0; }
      .glossary-full hr.thick {
        height: 2px;
        color: #151515;
        background-color: #151515; }
    .glossary-full .definitions {
      margin-top: 15px;
      max-height: 300px;
      font-size: 14px;
      color: #151515;
      overflow: auto; }
      .glossary-full .definitions dl {
        margin-top: 0;
        margin-bottom: 15px;
        padding: 0; }
      .glossary-full .definitions dt {
        padding: 0; }
      .glossary-full .definitions dfn {
        font-weight: bold;
        padding: 0; }
      .glossary-full .definitions dd {
        padding: 0;
        margin: 0; }
  .ngdialog.ngdialog-theme-default .ngdialog-content {
    width: 100%;
    max-width: 439px;
    overflow: hidden; }
    .ngdialog.ngdialog-theme-default .ngdialog-content .loading {
      padding-top: 23px;
      /*padding-bottom: 50px;*/ }
  /* The starting CSS styles for the enter animation */
  .view.ng-enter {
    transition: 0.2s linear all;
    opacity: 0; }
  /* The finishing CSS styles for the enter animation */
  .view.ng-enter.ng-enter-active {
    opacity: 1; } }

@media (min-width: 480px) and (max-width: 767px) {
  #campus-header-campusname {
    display: none; }
  #printbuttonsvg {
    transition: 0.5s; }
  a:hover #printbuttonsvg {
    fill: #007bb6; }
  .print-buttons {
    z-index: 99999;
    width: 100%;
    text-align: center;
    background: #444;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5); } }
  @media print and (min-width: 480px) and (max-width: 767px) {
    .print-buttons {
      display: none; } }

@media (min-width: 480px) and (max-width: 767px) {
  .print-buttons button {
    margin: 0px 2px 0px 2px;
    border: none;
    background: #444;
    text-decoration: underline;
    color: #98D0EA;
    font-family: Roboto;
    font-size: 14px; } }
  @media print and (min-width: 480px) and (max-width: 767px) {
    .print-buttons button {
      display: none; } }

@media (min-width: 480px) and (max-width: 767px) {
  .groupbreak {
    page-break-after: always; }
  html, body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em; }
  [ng-click] {
    cursor: pointer; }
  address {
    font-style: normal; }
  button:disabled {
    border: 3px solid #cdcdcd !important;
    color: #cdcdcd !important; }
  button:focus {
    outline: 1px dotted #ccc; }
  button:hover {
    cursor: pointer; }
  .center {
    margin: 0 10px; }
  i {
    font-style: normal;
    display: inline-block;
    background-repeat: no-repeat; }
    i.is-fav {
      background-image: url("../images/icon_favorite_small_select.png"); }
    i.not-fav {
      background-image: url("../images/icon_favorite_small_notselect.png"); }
  .header {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1000; }
    .header .center {
      max-width: 747px;
      min-width: 460px; }
    .header p {
      border: none;
      margin: 0;
      padding: 0;
      letter-spacing: 0.0625em; }
    .header .home-link {
      display: inline-block;
      height: 44px;
      width: 260px; }
    .header .first-header-row {
      background-color: #002913;
      background-color: rgba(0, 41, 19, 0.9);
      color: #fff;
      height: 27px; }
    .header .second-header-row {
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      color: #fff;
      height: 66px;
      padding-top: 19px; }
      .header .second-header-row nav {
        float: right;
        margin: 0;
        text-align: right; }
        .header .second-header-row nav button {
          background: none;
          margin: 0;
          padding: 0;
          border: none;
          height: 59px;
          width: 45px; }
          .header .second-header-row nav button.selected {
            background-color: #002913;
            background-color: rgba(0, 41, 19, 0.9); }
    .header .header-menu {
      z-index: 100;
      position: absolute;
      top: 112px;
      right: 0;
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      list-style: none;
      padding: 0;
      margin: 0; }
      .header .header-menu li {
        margin: 0 0 0 0;
        padding: 5px 10px 5px;
        text-align: left; }
        .header .header-menu li:hover {
          background-color: #002913;
          background-color: rgba(0, 41, 19, 0.9); }
      .header .header-menu a {
        font-size: 1rem;
        font-weight: bold;
        font-family: "Roboto", sans-serif;
        text-decoration: none;
        color: #fff; }
    .header .header-favs {
      z-index: 100;
      position: absolute;
      top: 112px;
      right: 0;
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      list-style: none;
      padding: 0;
      margin: 0; }
      .header .header-favs li {
        margin: 0 0 0 0;
        padding: 5px 10px 5px; }
        .header .header-favs li:hover {
          background-color: #002913;
          background-color: rgba(0, 41, 19, 0.9); }
      .header .header-favs a, .header .header-favs p {
        font-size: 1rem;
        font-weight: bold;
        font-family: "Roboto", sans-serif;
        text-decoration: none;
        color: #fff; }
  .footer {
    background-color: #151515;
    font-family: "Roboto", sans-serif;
    padding-top: 0.1px; }
    .footer .center {
      max-width: 747px;
      margin: 0 20px; }
    .footer .upper {
      margin-top: 25px; }
    .footer .lower {
      margin-top: 10px;
      padding-bottom: 20px; }
      .footer .lower a {
        font-size: 0.722rem;
        font-weight: bold; }
    .footer a {
      display: block;
      font-size: 0.667rem;
      line-height: 1rem;
      color: #fff;
      text-decoration: none; }
  .homepage .center {
    max-width: 727px;
    margin: 0 20px; }
  .homepage .top-section {
    padding-top: 138px;
    background-color: #eaeaeb;
    background-image: url("../images/bg_1920by836_eada.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
    padding-bottom: 25px; }
    .homepage .top-section h1 {
      color: #fff;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 3.333rem;
      margin-top: 50px;
      margin-bottom: 77px;
      text-align: center; }
    .homepage .top-section .mobile-row {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      width: 100%; }
      .homepage .top-section .mobile-row .link-box {
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        display: inline-block;
        width: calc(50% - 10px);
        text-decoration: none;
        vertical-align: top;
        color: #fff;
        font-family: "Roboto", sans-serif;
        margin: 0;
        padding: 0; }
        .homepage .top-section .mobile-row .link-box h3 {
          font-size: 1.556rem;
          margin: 30px 30px 20px 30px; }
        .homepage .top-section .mobile-row .link-box hr {
          display: none; }
        .homepage .top-section .mobile-row .link-box p {
          margin: 0 20px 20px 30px; }
        .homepage .top-section .mobile-row .link-box.institution {
          margin-right: 10px;
          background-color: #369;
          margin-bottom: 10px;
          -ms-flex-order: 1;
              order: 1; }
        .homepage .top-section .mobile-row .link-box.compare {
          margin-left: 10px;
          background-color: #cc672f;
          margin-bottom: 10px;
          -ms-flex-order: 2;
              order: 2; }
        .homepage .top-section .mobile-row .link-box.custom {
          margin-right: 10px;
          background-color: #01b7bd;
          margin-bottom: 10px;
          margin-top: 10px;
          -ms-flex-order: 3;
              order: 3; }
        .homepage .top-section .mobile-row .link-box.trend {
          background-color: #2a455f;
          margin-bottom: 10px;
          margin-top: 10px;
          width: 100%;
          -ms-flex-order: 5;
              order: 5; }
        .homepage .top-section .mobile-row .link-box.download {
          background-color: #a9a543;
          margin-left: 10px;
          -ms-flex-order: 4;
              order: 4;
          margin-bottom: 10px;
          margin-top: 10px; }
    .homepage .top-section h2 {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      text-align: center;
      margin-top: 90px;
      margin-bottom: 50px;
      color: #00642D;
      font-size: 2rem; }
    .homepage .top-section .description {
      text-align: center;
      font-size: 1rem;
      font-family: "Roboto", sans-serif;
      color: #151515; }
  .homepage .bottom-section {
    text-align: center;
    margin-bottom: 60px; }
    .homepage .bottom-section h2 {
      margin-top: 25px;
      margin-bottom: 53px;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      text-align: center;
      color: #00642D;
      font-size: 2rem; }
    .homepage .bottom-section .button {
      text-decoration: none;
      display: block;
      width: 375px;
      border-radius: 83px;
      border: 2px solid #00642D;
      text-align: center;
      margin: 0 auto;
      margin-bottom: 22px;
      padding-top: 17.5px;
      padding-bottom: 17.5px;
      font-family: "Roboto", sans-serif;
      font-size: .8rem;
      color: #00642D; }
      .homepage .bottom-section .button strong {
        font-family: "Roboto", sans-serif;
        font-size: .95rem; }
  .help-page {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px;
    font-size: 0.889rem;
    color: #151515; }
    .help-page a {
      color: #151515; }
    .help-page .colored-text {
      color: #1f88bd; }
    .help-page strong {
      font-weight: bold;
      font-size: 0.889rem; }
    .help-page .center {
      max-width: 727px;
      min-width: 440px;
      margin: 0 20px; }
    .help-page .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2.000rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .help-page .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444em;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px;
      width: 100%; }
    .help-page .step-one a {
      float: right; }
    .help-page .first-header {
      margin-top: 50px; }
    .help-page .continue-button {
      margin: 50px auto;
      text-align: center; }
      .help-page .continue-button button, .help-page .continue-button a {
        margin: auto auto;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
  .institution-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .institution-search .center {
      max-width: 727px;
      margin: 0 20px; }
    .institution-search .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .institution-search .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .institution-search .continue-button {
      margin: 50px auto;
      text-align: center; }
      .institution-search .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .institution-search .continue-button button:first-of-type {
          margin-right: 20px; }
  .institution-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .institution-list .center {
      max-width: 727px;
      margin: 0 20px; }
    .institution-list .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .institution-list .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .institution-list .continue-button {
      margin: 50px auto;
      text-align: center; }
      .institution-list .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .institution-list .continue-button button:first-of-type {
          margin-right: 20px; }
        .institution-list .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
  .institution-details {
    z-index: 99;
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .institution-details .center {
      max-width: 747px;
      margin: 0 10px; }
    .institution-details .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .institution-details .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .institution-details .continue-button {
      margin: 50px auto;
      text-align: center; }
      .institution-details .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .institution-details .continue-button button:first-of-type {
          margin-right: 20px; }
        .institution-details .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
  .compare-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-search .center {
      max-width: 727px;
      margin: 0 20px; }
    .compare-search .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-search .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .compare-search .continue-button {
      margin: 50px auto;
      text-align: center; }
      .compare-search .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .compare-search .continue-button button:first-of-type {
          margin-right: 20px; }
  .compare-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-list .center {
      max-width: 727px;
      margin: 0 20px; }
    .compare-list .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-list .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .compare-list .continue-button {
      margin: 50px auto;
      text-align: center; }
      .compare-list .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .compare-list .continue-button button:first-of-type {
          margin-right: 20px; }
        .compare-list .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
  .compare-confirm {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-confirm .center {
      max-width: 727px;
      margin: 0 20px; }
    .compare-confirm .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-confirm .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .compare-confirm .continue-button {
      margin: 50px auto;
      text-align: center; }
      .compare-confirm .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .compare-confirm .continue-button button:first-of-type {
          margin-right: 20px; }
        .compare-confirm .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
  .compare-details {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-details .center {
      max-width: 727px;
      margin: 0 20px; }
    .compare-details .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-details .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .compare-details .selectNumberFormat {
      margin-top: 50px;
      margin-bottom: 30px;
      font-size: 0.722rem;
      color: #151515;
      background-color: #e1e1e1;
      vertical-align: middle;
      line-height: 23px; }
    .compare-details .continue-button {
      margin: 50px auto;
      text-align: center; }
      .compare-details .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .compare-details .continue-button button:first-of-type {
          margin-right: 20px; }
        .compare-details .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
  .customdata-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .customdata-search .center {
      max-width: 727px;
      margin: 0 20px; }
    .customdata-search .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .customdata-search .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .customdata-search .continue-button {
      margin: 50px auto;
      text-align: center; }
      .customdata-search .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .customdata-search .continue-button button:first-of-type {
          margin-right: 20px; }
  .customdata-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .customdata-list .center {
      max-width: 727px;
      margin: 0 20px; }
    .customdata-list .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .customdata-list .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .customdata-list .continue-button {
      margin: 50px auto;
      text-align: center; }
      .customdata-list .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .customdata-list .continue-button button:first-of-type {
          margin-right: 20px; }
        .customdata-list .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
    .customdata-list .shared-list .continue-with-all {
      border: 2px solid #007bb6;
      border-radius: 2px;
      text-align: center;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 15px;
      color: #007bb6;
      margin: 0;
      padding: 10px 10px;
      background-color: #fff;
      margin-left: 10px; }
  .customdata-details {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .customdata-details .center {
      max-width: 727px;
      margin: 0 20px; }
    .customdata-details .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .customdata-details .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .customdata-details .select-all {
      background-color: #e1e1e1;
      color: #151515;
      padding: 2px 2px 2px 3px;
      font-size: 12px;
      font-weight: bold;
      margin-top: 25px;
      margin-bottom: 17px;
      display: inline-block; }
    .customdata-details p {
      margin-top: 0; }
    .customdata-details .continue-button {
      margin: 50px auto;
      text-align: center; }
      .customdata-details .continue-button button {
        margin: auto auto;
        margin-bottom: 10px;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
        .customdata-details .continue-button button:first-of-type {
          margin-right: 20px; }
        .customdata-details .continue-button button:disabled {
          border: 3px solid #cdcdcd;
          color: #cdcdcd; }
    .customdata-details .institutions {
      font-family: "Roboto", sans-serif;
      font-size: 1rem;
      color: #007bb6; }
      .customdata-details .institutions .name {
        font-size: 1.111rem;
        font-weight: bold; }
      .customdata-details .institutions .enroll {
        background-image: url("../images/icon_enrollment.png");
        background-size: 18px;
        display: inline-block;
        height: 18px;
        width: 24px;
        vertical-align: text-bottom; }
    .customdata-details ul {
      padding-left: 0;
      list-style: none;
      margin: 0; }
    .customdata-details .years li {
      display: inline-block;
      width: 70px;
      margin-right: 8%;
      font-weight: bold;
      font-size: 0.889rem; }
      .customdata-details .years li:last-child {
        margin-right: 0; }
    .customdata-details .link-button {
      font-family: "Roboto", sans-serif;
      border: 0;
      background: 0;
      font-size: inherit;
      font-weight: normal; }
    .customdata-details .screen {
      padding-top: 0.1px;
      margin-top: 10px; }
      .customdata-details .screen:first-child {
        margin-top: 10px; }
      .customdata-details .screen h5 {
        font-size: 1rem;
        font-weight: bold;
        margin: 0; }
      .customdata-details .screen i {
        display: inline-block;
        height: 14px;
        width: 14px;
        margin-right: 10px; }
      .customdata-details .screen .open {
        color: #007bb6; }
        .customdata-details .screen .open i {
          padding-right: 10px;
          padding-top: 10px;
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .customdata-details .screen .closed i {
        padding-right: 10px;
        padding-top: 10px;
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
      .customdata-details .screen ul {
        padding-left: 24px; }
        .customdata-details .screen ul input[type='checkbox'] {
          margin-left: 0; }
  .download-data {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .download-data .center {
      max-width: 727px;
      margin: 0 20px; }
    .download-data .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .download-data .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .download-data p {
      margin-top: 0; }
    .download-data ul {
      padding-left: 0;
      list-style: none;
      margin: 0; }
    .download-data .years, .download-data .data-types {
      text-align: justify;
      -ms-text-align-last: justify;
      text-align-last: justify;
      display: inline-block; }
      .download-data .years li, .download-data .data-types li {
        display: inline-block;
        text-align: justify;
        -ms-text-align-last: justify;
        text-align-last: justify; }
    .download-data .data-types {
      display: block;
      margin-bottom: 50px; }
    .download-data .file-list {
      margin-bottom: 10px; }
      .download-data .file-list li {
        margin: 15px 0;
        font-family: "Roboto", sans-serif;
        font-size: 0.889rem;
        color: #151515; }
        .download-data .file-list li span {
          font-weight: bold;
          font-size: 1rem; }
        .download-data .file-list li a {
          text-decoration: underline;
          font-size: 0.889rem;
          color: #151515; }
    .download-data hr {
      border: none; }
      .download-data hr.thin {
        height: 1px;
        color: #ccc;
        background-color: #ccc;
        margin: 15px 0; }
      .download-data hr.thick {
        height: 2px;
        color: #151515;
        background-color: #151515; }
      .download-data hr.dotted {
        height: 1px;
        color: #ccc;
        background-color: #ccc; }
    .download-data section {
      padding: 0.1px;
      margin-top: 0; }
      .download-data section h3 {
        margin: 0;
        margin-bottom: 5px; }
      .download-data section:last-child {
        margin-bottom: 50px; }
  .shared-search button {
    border: 2px solid #333;
    border-radius: 2px;
    width: 141px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.889rem;
    color: #151515;
    margin: 0 5px;
    padding: 13px 0;
    margin-bottom: 35px;
    background-color: #fff; }
  .shared-search .selected {
    background-color: #007bb6;
    border: 2px solid #007bb6;
    color: #fff; }
  .shared-search .search {
    margin: 0; }
  .shared-search input[type='text'] {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.889rem;
    padding: 0; }
  .shared-search .selectbox button {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.889rem;
    text-align: left;
    background-color: #fff;
    margin-bottom: 0;
    position: relative; }
    .shared-search .selectbox button i {
      display: inline-block;
      position: absolute;
      height: 14px;
      width: 8px;
      background-image: url("../images/icon_pointtoright_notselect.png");
      right: 15px;
      top: 18px; }
      .shared-search .selectbox button i.badge-counter {
        background-image: none;
        background: none;
        background-color: #007bb6;
        border: 1px solid #007bb6;
        border-radius: 100%;
        color: #fff;
        top: 10px;
        right: 40px;
        width: auto;
        height: auto;
        text-align: center;
        padding: 5px 8px 5px 9px;
        font-size: .75em; }
    .shared-search .selectbox button.selected {
      color: #007bb6;
      font-weight: bold; }
      .shared-search .selectbox button.selected i {
        background-image: url("../images/icon_pointtoright_select.png"); }
        .shared-search .selectbox button.selected i.badge-counter {
          background-image: none; }
  .shared-search .selectbox label {
    display: block;
    width: 100%;
    height: 20px;
    border: none;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 0.889rem;
    text-align: left;
    background-color: #fff;
    margin-bottom: 0;
    vertical-align: bottom;
    padding-top: 20px;
    padding-bottom: 15px; }
  .shared-search .mobile-selectbox select {
    width: 100%;
    height: 50px;
    font-size: 0.889rem;
    margin: 0 5px;
    border: 1px solid #ccc;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../images/icon_dropdown.png");
    padding-right: 27px;
    background-repeat: no-repeat;
    background-position: right 10px center;
    font-weight: bold;
    color: #151515; }
    .shared-search .mobile-selectbox select::-ms-expand {
      display: none; }
  .shared-search .search-left {
    margin: 0;
    padding: 0;
    width: 100%;
    vertical-align: top; }
  .shared-search .search-right {
    display: none; }
  .shared-search .all-selected {
    color: #007bb6;
    font-size: 1.222rem;
    font-weight: bold; }
  .shared-list {
    position: relative; }
    .shared-list h3 {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.222rem;
      color: #007bb6;
      margin-top: 0;
      /*margin-top: 25px;*/
      margin-bottom: 10px;
      display: inline-block; }
    .shared-list .filter-header {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 0.889em;
      color: #151515;
      margin: 10px 0;
      display: block;
      height: calc( 40px - 22px);
      padding-top: 11px;
      padding-bottom: 11px;
      padding-left: 0;
      background-color: #e1e1e1;
      vertical-align: middle; }
      .shared-list .filter-header h4 {
        margin: 0;
        display: inline-block;
        text-align: left; }
      .shared-list .filter-header i {
        display: inline-block;
        height: 14px;
        width: 14px;
        margin-right: 10px;
        margin-left: 10px; }
      .shared-list .filter-header.open {
        color: #fff;
        background-color: #707070;
        margin-bottom: 0; }
        .shared-list .filter-header.open i {
          background-image: url("../images/icon_close_white.png"); }
        .shared-list .filter-header.open .selectAll {
          color: #fff; }
      .shared-list .filter-header.closed i {
        background-image: url("../images/icon_open.png"); }
      .shared-list .filter-header .selectAll {
        border: 0;
        background: 0;
        text-decoration: underline;
        color: #151515;
        font-size: 0.778rem;
        display: inline-block;
        text-align: right;
        position: absolute;
        right: 10px; }
    .shared-list div {
      padding-left: 34px;
      padding-top: 0.1px;
      padding-bottom: 0.1px;
      color: #151515;
      background-color: #e1e1e1;
      font-size: 0.778rem;
      margin-bottom: 10px; }
      .shared-list div p {
        margin: 1em 0;
        font-weight: normal; }
        .shared-list div p .filter-body {
          display: inline-block; }
          .shared-list div p .filter-body.name {
            width: calc( 100% - 139px - 4px); }
          .shared-list div p .filter-body.city {
            width: calc(100% - 108px - 4px); }
          .shared-list div p .filter-body.enrollement {
            width: calc( 100% - 156px - 4px); }
          .shared-list div p .filter-body.state {
            width: calc( 100% - 158px - 4px); }
          .shared-list div p .filter-body.country {
            width: calc( 100% - 119px - 4px); }
          .shared-list div p .filter-body.program {
            width: calc( 100% - 155px - 4px); }
          .shared-list div p .filter-body.type {
            width: calc( 100% - 132px - 4px); }
        .shared-list div p .filter-head {
          font-weight: bold;
          display: inline-block;
          vertical-align: top;
          margin-right: 4px; }
          .shared-list div p .filter-head.name {
            max-width: 139px; }
          .shared-list div p .filter-head.city {
            max-width: 108px; }
          .shared-list div p .filter-head.enrollement {
            max-width: 156px; }
          .shared-list div p .filter-head.state {
            max-width: 158px; }
          .shared-list div p .filter-head.country {
            max-width: 119px; }
          .shared-list div p .filter-head.program {
            max-width: 155px; }
          .shared-list div p .filter-head.type {
            max-width: 132px; }
    .shared-list p {
      margin-top: 0; }
    .shared-list ul.pagination {
      list-style: none;
      padding: 0;
      margin: 0 20px;
      margin-top: 50px !important;
      font-size: 0.889em;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      color: #151515;
      max-width: 727px;
      min-width: 440px;
      text-align: center; }
      .shared-list ul.pagination li {
        display: inline-block;
        width: 35px; }
        .shared-list ul.pagination li a {
          color: #151515; }
        .shared-list ul.pagination li.active a {
          color: #007bb6; }
    .shared-list .results-header {
      background-color: #ffffff;
      padding-left: 0px;
      padding-top: 0px;
      padding-bottom: 0px;
      margin-bottom: 10px;
      width: 100%;
      font-size: 1rem;
      margin-bottom: 1rem; }
      .shared-list .results-header select {
        display: block;
        height: 39px;
        border: 1px solid #ccc;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        background-image: url("../images/icon_dropdown.png");
        padding-right: 27px;
        background-repeat: no-repeat;
        background-position: right 10px center;
        font-weight: bold;
        font-size: 0.889rem;
        color: #151515; }
        .shared-list .results-header select::-ms-expand {
          display: none; }
    .shared-list table thead tr {
      border-width: 2px; }
    .shared-list .favorite {
      display: inline-block;
      height: 20px;
      width: 20px;
      background-image: url("../images/icon_favorite2_notselect.png"); }
      .shared-list .favorite.is-Fav {
        background-image: url("../images/icon_favorite2_select.png"); }
  .institution-details-head h3 {
    font-family: "Roboto", sans-serif;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 1.667rem;
    color: #007bb6;
    border-bottom: 2px solid #007bb6;
    position: relative; }
    .institution-details-head h3 i {
      position: absolute;
      right: 0;
      cursor: pointer;
      height: 31px;
      width: 31px; }
  .institution-details-head .address, .institution-details-head .web-address, .institution-details-head .enrollment {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    color: #007bb6;
    display: inline-block;
    margin: 5px 0; }
    .institution-details-head .address i, .institution-details-head .web-address i, .institution-details-head .enrollment i {
      margin-right: 5px; }
  .institution-details-head .col-1, .institution-details-head .col-2 {
    width: 100%;
    display: block; }
  .institution-details-head .address {
    text-align: left;
    position: relative;
    vertical-align: top; }
    .institution-details-head .address address {
      width: calc(100% - 16px - 5px);
      display: inline-block;
      vertical-align: top;
      overflow: hidden;
      white-space: nowrap;
      -ms-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .institution-details-head .address .map-icon {
      margin-top: 10px;
      height: 25px;
      width: 16px;
      background-image: url("../images/icon_address.png"); }
  .institution-details-head .web-address {
    text-align: left;
    position: relative;
    vertical-align: top; }
    .institution-details-head .web-address a {
      max-width: calc(100% - 25px - 5px);
      display: inline-block;
      vertical-align: top;
      text-transform: lowercase;
      overflow: hidden;
      white-space: nowrap;
      -ms-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .institution-details-head .web-address .web-icon {
      height: 25px;
      width: 25px;
      background-image: url("../images/icon_website.png"); }
  .institution-details-head .enrollment {
    text-align: left;
    vertical-align: top; }
    .institution-details-head .enrollment span {
      vertical-align: top; }
    .institution-details-head .enrollment .enroll-icon {
      height: 25px;
      width: 33px;
      background-image: url("../images/icon_enrollment.png"); }
  .institution-details-head .campus-list {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent;
    height: 25px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    margin-top: 15px;
    margin-bottom: 50px;
    text-align: left;
    background-color: #333;
    background-image: url("../images/icon_dropdown_white.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    border: none; }
    .institution-details-head .campus-list::-ms-expand {
      display: none; }
  .institution-details-head .campus-header {
    width: 100%;
    color: #fff;
    background-color: #007bb6;
    font-size: 0.889rem;
    margin-top: 15px;
    position: relative;
    padding: 0.1px; }
    .institution-details-head .campus-header .departmentInfo {
      height: auto;
      margin-top: 15px;
      margin-left: 22px;
      margin-bottom: 0;
      display: block;
      vertical-align: middle; }
    .institution-details-head .campus-header .campus-list {
      margin-top: 0;
      display: block;
      margin-bottom: 15px;
      width: 75%; }
    .institution-details-head .campus-header i.is-fav {
      height: 42px;
      width: 42px;
      position: absolute;
      right: 0;
      top: 0;
      background-image: url("../images/icon_favorite_select.png"); }
    .institution-details-head .campus-header i.not-fav {
      height: 42px;
      width: 42px;
      position: absolute;
      right: 0;
      top: 0;
      background-image: url("../images/icon_favorite_notselect.png"); }
    .institution-details-head .campus-header i.map-icon {
      background-image: url("../images/icon_address_white.png");
      height: 20px;
      width: 12px; }
    .institution-details-head .campus-header .address, .institution-details-head .campus-header .on-campus-housing, .institution-details-head .campus-header .local-police {
      margin-left: 15px;
      color: #fff;
      width: calc(100% - 15px) !important; }
    .institution-details-head .campus-header h4, .institution-details-head .campus-header h5 {
      font-weight: bold;
      font-size: 0.889rem;
      color: #fff;
      margin-bottom: 0;
      text-transform: uppercase; }
    .institution-details-head .campus-header p {
      margin-top: 5px;
      margin-bottom: 25px; }
  .institution-details-head .badges {
    margin-top: 10px;
    font-size: 0.889rem;
    color: #fff;
    /*min-height: 181px;*/ }
    .institution-details-head .badges h5 {
      text-transform: uppercase;
      font-weight: bold;
      margin: 25px 0 10px 0;
      padding: 0; }
    .institution-details-head .badges p {
      margin: 0; }
    .institution-details-head .badges address {
      margin: 0;
      display: inline; }
    .institution-details-head .badges section {
      width: 100%;
      width: calc(100% - 10px);
      display: inline-block;
      background-color: #007bb6;
      padding-left: 10px;
      padding-bottom: 10px;
      background-repeat: no-repeat;
      background-position: top 20px right 15px;
      vertical-align: top;
      margin-bottom: 10px; }
      .institution-details-head .badges section.security {
        background-image: url("../images/icon_securityofficer.png"); }
      .institution-details-head .badges section.fire {
        background-image: url("../images/icon_fireofficer.png"); }
      .institution-details-head .badges section.coord {
        background-image: url("../images/icon_lead.png"); }
  .institution-details-tabs ul.nav.nav-tabs {
    border-bottom: 2px solid #007bb6; }
    .institution-details-tabs ul.nav.nav-tabs li {
      font-weight: bold;
      font-size: 0.833rem;
      text-transform: uppercase;
      color: #999;
      background-color: transparent;
      height: 44px;
      display: block;
      text-align: center;
      margin-bottom: 0 !important; }
      .institution-details-tabs ul.nav.nav-tabs li a {
        color: #999;
        box-shadow: none;
        text-decoration: none; }
      .institution-details-tabs ul.nav.nav-tabs li.active {
        color: #fff;
        background-color: #007bb6; }
        .institution-details-tabs ul.nav.nav-tabs li.active a {
          color: #fff; }
  .institution-details-tabs .screen {
    padding-top: 0.1px;
    margin-top: 50px; }
    .institution-details-tabs .screen a {
      border-bottom: 1px dotted;
      text-decoration: none; }
    .institution-details-tabs .screen:first-child {
      margin-top: 25px; }
    .institution-details-tabs .screen h5 {
      margin: 0;
      font-size: 1rem;
      font-weight: bold; }
      .institution-details-tabs .screen h5 i {
        display: inline-block;
        height: 14px;
        width: 14px;
        padding-right: 10px;
        padding-top: 10px; }
    .institution-details-tabs .screen i {
      display: inline-block;
      height: 14px;
      width: 14px;
      margin-right: 10px; }
    .institution-details-tabs .screen .open {
      color: #007bb6; }
      .institution-details-tabs .screen .open i {
        background-image: url("../images/icon_close.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
    .institution-details-tabs .screen .closed i {
      background-image: url("../images/icon_open.png");
      background-repeat: no-repeat;
      background-position: left bottom; }
    .institution-details-tabs .screen .caveat-header {
      font-weight: bold; }
    .institution-details-tabs .screen table {
      margin-top: 50px;
      width: 100%; }
      .institution-details-tabs .screen table td:first-child {
        padding-left: 24px;
        text-align: left; }
      .institution-details-tabs .screen table th:first-child {
        padding-left: 24px;
        text-align: left; }
      .institution-details-tabs .screen table th:not(:first-child) {
        padding-right: 10px;
        text-align: right; }
      .institution-details-tabs .screen table thead tr {
        border: none; }
        .institution-details-tabs .screen table thead tr.header-1, .institution-details-tabs .screen table thead tr.header-2 {
          font-size: 0.722rem;
          color: #151515; }
        .institution-details-tabs .screen table thead tr.header-1 {
          font-style: italic; }
          .institution-details-tabs .screen table thead tr.header-1 th:not([rowspan="2"]) {
            border-bottom: dotted;
            border-color: #ccc;
            border-width: 1px; }
          .institution-details-tabs .screen table thead tr.header-1 th[rowspan="2"] {
            font-style: normal;
            font-weight: bold; }
            .institution-details-tabs .screen table thead tr.header-1 th[rowspan="2"].number {
              text-align: right; }
        .institution-details-tabs .screen table thead tr.header-2 {
          font-weight: bold; }
        .institution-details-tabs .screen table thead tr th {
          font-size: 0.722rem;
          font-weight: bold;
          color: #151515; }
          .institution-details-tabs .screen table thead tr th:not(:first-of-type) {
            font-size: 0.722rem;
            font-weight: bold;
            color: #151515; }
      .institution-details-tabs .screen table tbody tr td {
        padding: 10px 10px 10px 10px; }
    .institution-details-tabs .screen hr {
      width: 100%;
      color: #ccc;
      border: none;
      border-bottom: 1px solid #ccc; }
  .institution-details-tabs .additional-info {
    margin-top: 50px;
    display: block;
    padding: 15px;
    background-color: #e1e1e1;
    font-size: 0.833rem;
    color: #151515; }
    .institution-details-tabs .additional-info ul {
      list-style: circle;
      padding-left: 18px; }
    .institution-details-tabs .additional-info strong {
      font-weight: bold; }
  .institution-details-tabs .campus-list {
    width: 100%;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent;
    height: 25px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    margin-top: 15px;
    text-align: left;
    background-color: #333;
    background-image: url("../images/icon_dropdown_white.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    border: none; }
    .institution-details-tabs .campus-list::-ms-expand {
      display: none; }
  .institution-details-tabs-print {
    padding-top: 0.1px;
    margin-top: 25px; }
    .institution-details-tabs-print tr.ng-scope.header-1 {
      font-size: 13px;
      background-color: white !important;
      font-style: italic;
      text-decoration: underline;
      font-weight: normal !important; }
    .institution-details-tabs-print ul.nav.nav-tabs {
      margin-top: 0;
      border-bottom: 2px solid #007bb6;
      text-align: justify;
      position: relative; }
      .institution-details-tabs-print ul.nav.nav-tabs li {
        display: inline-block;
        font-weight: bold;
        font-size: 0.889rem;
        text-transform: uppercase;
        color: #999;
        background-color: transparent;
        height: 44px;
        margin-bottom: 0 !important;
        border-radius: 5px 5px 0 0; }
        .institution-details-tabs-print ul.nav.nav-tabs li:nth-child(7) {
          position: absolute;
          right: 0px; }
        .institution-details-tabs-print ul.nav.nav-tabs li a {
          text-align: center;
          color: #999;
          box-shadow: none;
          text-decoration: none; }
          .institution-details-tabs-print ul.nav.nav-tabs li a:hover {
            color: #007bb6; }
        .institution-details-tabs-print ul.nav.nav-tabs li.active {
          color: #fff;
          background-color: #007bb6; }
          .institution-details-tabs-print ul.nav.nav-tabs li.active a {
            color: #fff; }
    .institution-details-tabs-print .screen {
      padding-top: 0.1px; }
      .institution-details-tabs-print .screen a {
        border-bottom: 1px solid;
        text-decoration: none;
        cursor: pointer; }
      .institution-details-tabs-print .screen:first-child {
        margin-top: 15px; }
      .institution-details-tabs-print .screen h5 {
        margin: 0;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 16px; }
        .institution-details-tabs-print .screen h5 i {
          display: inline-block;
          height: 14px;
          width: 14px;
          padding-right: 10px;
          padding-top: 10px; }
      .institution-details-tabs-print .screen .open {
        color: #007bb6; }
        .institution-details-tabs-print .screen .open i {
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .institution-details-tabs-print .screen .closed i {
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
      .institution-details-tabs-print .screen .caveat-header {
        font-weight: bold; }
      .institution-details-tabs-print .screen .popover {
        background-color: #464646;
        color: #ffffff;
        max-width: 430px !important; }
        .institution-details-tabs-print .screen .popover .arrow:after {
          border-right-color: #464646; }
        .institution-details-tabs-print .screen .popover .popover-inner {
          padding: 8px 5px; }
          .institution-details-tabs-print .screen .popover .popover-inner .popover-content {
            max-height: 150px;
            overflow-y: auto;
            position: relative; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar {
              width: 12px;
              padding: 2px 5px 2px 0px; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-track {
              background-color: #eaeaea;
              border-left: 1px solid #ccc; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
              background-color: #ccc; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
              background-color: #aaa; }
      .institution-details-tabs-print .screen .definition-popover {
        font: "Roboto", sans-serif; }
        .institution-details-tabs-print .screen .definition-popover .definition-title {
          font-size: 0.778rem;
          font-weight: bold;
          margin-bottom: 5px; }
        .institution-details-tabs-print .screen .definition-popover .definition-content {
          font-size: 0.722rem; }
          .institution-details-tabs-print .screen .definition-popover .definition-content table {
            background-color: #464646;
            color: #fff;
            margin: 0; }
            .institution-details-tabs-print .screen .definition-popover .definition-content table thead {
              font-size: 0.778rem; }
              .institution-details-tabs-print .screen .definition-popover .definition-content table thead tr {
                background-color: #464646;
                border-bottom: #ffffff; }
                .institution-details-tabs-print .screen .definition-popover .definition-content table thead tr th {
                  font-weight: bold;
                  font-size: 0.722rem;
                  color: #fff;
                  text-transform: none; }
            .institution-details-tabs-print .screen .definition-popover .definition-content table tbody {
              font-size: 0.722rem; }
              .institution-details-tabs-print .screen .definition-popover .definition-content table tbody tr {
                background-color: #464646; }
      .institution-details-tabs-print .screen table {
        margin-top: 10px;
        width: 100%;
        margin-bottom: 40px;
        page-break-after: avoid; }
        .institution-details-tabs-print .screen table td:first-child, .institution-details-tabs-print .screen table th:first-child {
          padding-left: 24px; }
        .institution-details-tabs-print .screen table thead tr {
          border: none; }
          .institution-details-tabs-print .screen table thead tr.header-1 th, .institution-details-tabs-print .screen table thead tr.header-2 th {
            font-size: 0.722rem;
            color: #151515; }
            .institution-details-tabs-print .screen table thead tr.header-1 th:not(:first-of-type), .institution-details-tabs-print .screen table thead tr.header-2 th:not(:first-of-type) {
              font-size: 0.722rem;
              font-weight: bold;
              color: #151515; }
          .institution-details-tabs-print .screen table thead tr.header-1 {
            font-style: italic;
            font-size: 0.889rem; }
            .institution-details-tabs-print .screen table thead tr.header-1 th:not([rowspan="2"]) {
              border-bottom: solid;
              border-color: #e1e1e1;
              border-width: 1px;
              font-weight: normal; }
            .institution-details-tabs-print .screen table thead tr.header-1 th[rowspan="2"] {
              font-style: normal;
              font-weight: bold; }
              .institution-details-tabs-print .screen table thead tr.header-1 th[rowspan="2"].number {
                text-align: right; }
          .institution-details-tabs-print .screen table thead tr.header-2 {
            font-weight: bold;
            font-size: 0.889rem; }
            .institution-details-tabs-print .screen table thead tr.header-2 th {
              color: #151515;
              padding: 13px 10px 13px 0; }
              .institution-details-tabs-print .screen table thead tr.header-2 th:first-child {
                padding-left: 5px; }
          .institution-details-tabs-print .screen table thead tr th {
            font-size: 0.944rem;
            font-weight: bold;
            color: #151515;
            padding: 5px 10px 10px 0; }
            .institution-details-tabs-print .screen table thead tr th:not(:first-of-type) {
              font-size: 0.944rem;
              font-weight: bold;
              color: #151515; }
        .institution-details-tabs-print .screen table tbody tr td {
          padding: 9px 10px 9px 0; }
          .institution-details-tabs-print .screen table tbody tr td .popover {
            background-color: #464646;
            color: #ffffff;
            max-width: 430px !important; }
            .institution-details-tabs-print .screen table tbody tr td .popover .arrow:after {
              border-right-color: #464646; }
            .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner {
              padding: 8px 5px; }
              .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content {
                max-height: 150px;
                overflow-y: auto;
                position: relative; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar {
                  width: 12px;
                  padding: 2px 5px 2px 0px; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-track {
                  background-color: #eaeaea;
                  border-left: 1px solid #ccc; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
                  background-color: #ccc; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
                  background-color: #aaa; }
          .institution-details-tabs-print .screen table tbody tr td .definition-popover {
            font: "Roboto", sans-serif; }
            .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-title {
              font-size: 0.778rem;
              font-weight: bold;
              margin-bottom: 5px; }
            .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content {
              font-size: 0.722rem; }
              .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table {
                background-color: #464646;
                color: #fff;
                margin: 0; }
                .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead {
                  font-size: 0.778rem; }
                  .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr {
                    background-color: #464646;
                    border-bottom: #ffffff; }
                    .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr th {
                      font-weight: bold;
                      font-size: 0.722rem;
                      color: #fff;
                      text-transform: none; }
                .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody {
                  font-size: 0.722rem; }
                  .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody tr {
                    background-color: #464646; }
        .institution-details-tabs-print .screen table tbody tr:nth-child(odd) {
          background-color: #eceef1; }
        .institution-details-tabs-print .screen table.special-table thead {
          border-bottom: 1px solid #ccc;
          text-transform: uppercase; }
          .institution-details-tabs-print .screen table.special-table thead tr th.subHeader {
            font-size: 0.778rem; }
        .institution-details-tabs-print .screen table.special-table .popover {
          max-width: 820px !important; }
          .institution-details-tabs-print .screen table.special-table .popover .arrow:after {
            border-left-color: #464646; }
          .institution-details-tabs-print .screen table.special-table .popover th, .institution-details-tabs-print .screen table.special-table .popover td {
            text-align: right;
            padding-right: 20px; }
          .institution-details-tabs-print .screen table.special-table .popover th:first-child, .institution-details-tabs-print .screen table.special-table .popover td:first-child, .institution-details-tabs-print .screen table.special-table .popover th:nth-child(2), .institution-details-tabs-print .screen table.special-table .popover td:nth-child(2) {
            text-align: left;
            padding-left: 0; }
      .institution-details-tabs-print .screen hr {
        width: 100%;
        color: #ccc;
        border: none;
        border-bottom: 1px solid #ccc; }
    .institution-details-tabs-print .additional-info {
      margin-top: 50px;
      display: block;
      padding: 23px 23px 25px 23px;
      background-color: #e1e1e1;
      font-size: 0.778rem;
      color: #151515; }
      .institution-details-tabs-print .additional-info ul {
        list-style: circle;
        padding-left: 18px;
        margin-bottom: 0; }
        .institution-details-tabs-print .additional-info ul li {
          margin-bottom: 10px; }
          .institution-details-tabs-print .additional-info ul li:last-child {
            margin-bottom: 0; }
      .institution-details-tabs-print .additional-info strong {
        font-weight: bold; }
      .institution-details-tabs-print .additional-info p {
        margin-bottom: 0; }
  .compare-details-head ul {
    list-style: none;
    margin: 0;
    padding: 0.1px; }
    .compare-details-head ul li {
      font-family: "Roboto", sans-serif;
      font-size: 1rem;
      color: #007bb6; }
      .compare-details-head ul li i {
        color: #ffffff;
        border-radius: 5px;
        padding: 3px 5px;
        font-size: 0.667rem;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        vertical-align: top; }
        .compare-details-head ul li i.badge-counter-first {
          background-color: #cc672f; }
        .compare-details-head ul li i.badge-counter-second {
          background-color: #01b7bd; }
        .compare-details-head ul li i.badge-counter-third {
          background-color: #a9a543; }
        .compare-details-head ul li i.badge-counter-fourth {
          background-color: #2a455f; }
      .compare-details-head ul li .name {
        font-size: 20px;
        font-weight: bold; }
      .compare-details-head ul li .enroll {
        background-image: url("../images/icon_enrollment.png");
        background-size: 18px;
        display: inline-block;
        height: 18px;
        width: 24px;
        vertical-align: text-bottom; }
  .compare-details-tabs ul.nav.nav-tabs {
    border-bottom: 2px solid #007bb6; }
    .compare-details-tabs ul.nav.nav-tabs li {
      font-weight: bold;
      font-size: 0.833rem;
      text-transform: uppercase;
      color: #999;
      background-color: transparent;
      height: 44px;
      min-width: 184px;
      text-align: center;
      margin-bottom: 0 !important; }
      .compare-details-tabs ul.nav.nav-tabs li a {
        color: #999;
        box-shadow: none;
        text-decoration: none; }
      .compare-details-tabs ul.nav.nav-tabs li.active {
        color: #fff;
        background-color: #007bb6; }
        .compare-details-tabs ul.nav.nav-tabs li.active a {
          color: #fff; }
  .compare-details-tabs .screen {
    padding-top: 0.1px;
    margin-top: 50px; }
    .compare-details-tabs .screen:first-child {
      margin-top: 25px; }
    .compare-details-tabs .screen h5 {
      margin: 0; }
      .compare-details-tabs .screen h5.open {
        color: #007bb6; }
        .compare-details-tabs .screen h5.open i {
          background-image: url("../images/icon_close.png"); }
      .compare-details-tabs .screen h5.closed i {
        background-image: url("../images/icon_open.png"); }
    .compare-details-tabs .screen i {
      display: inline-block;
      height: 14px;
      width: 14px;
      margin-right: 10px; }
    .compare-details-tabs .screen a {
      border-bottom: 1px dotted;
      text-decoration: none; }
    .compare-details-tabs .screen .closed i {
      background-image: url("../images/icon_open.png"); }
    .compare-details-tabs .screen table {
      margin-top: 10px;
      width: calc(100%);
      border-bottom: 1px solid #ccc; }
      .compare-details-tabs .screen table th {
        padding-bottom: 5px; }
        .compare-details-tabs .screen table th.number {
          color: #ffffff; }
          .compare-details-tabs .screen table th.number span {
            border-radius: 5px;
            padding: 3px 5px; }
            .compare-details-tabs .screen table th.number span.first {
              background: #cc672f; }
            .compare-details-tabs .screen table th.number span.second {
              background: #01b7b8; }
            .compare-details-tabs .screen table th.number span.third {
              background: #a9a543; }
            .compare-details-tabs .screen table th.number span.fourth {
              background: #2a455f; }
  .compare-details-tabs .additional-info {
    margin-top: 50px;
    display: block;
    padding: 15px;
    background-color: #e1e1e1;
    font-size: 0.833rem;
    color: #151515; }
    .compare-details-tabs .additional-info ul {
      list-style: circle;
      padding-left: 18px; }
    .compare-details-tabs .additional-info strong {
      font-weight: bold; }
  .compare-details-tabs-print ul.nav.nav-tabs {
    margin-top: 0;
    border-bottom: 2px solid #007bb6;
    text-align: justify; }
    .compare-details-tabs-print ul.nav.nav-tabs li {
      display: inline-block;
      font-weight: bold;
      font-size: 0.833rem;
      text-transform: uppercase;
      color: #999;
      background-color: transparent;
      height: 44px;
      margin-bottom: 0 !important;
      border-radius: 5px 5px 0 0; }
      .compare-details-tabs-print ul.nav.nav-tabs li a {
        text-align: center;
        color: #999;
        box-shadow: none;
        text-decoration: none; }
      .compare-details-tabs-print ul.nav.nav-tabs li.active {
        color: #fff;
        background-color: #007bb6; }
        .compare-details-tabs-print ul.nav.nav-tabs li.active a {
          color: #fff; }
  .compare-details-tabs-print .screen {
    padding-top: 0.1px;
    margin-top: 50px; }
    .compare-details-tabs-print .screen:first-child {
      margin-top: 25px; }
    .compare-details-tabs-print .screen h5 {
      margin: 0;
      font-size: 1rem;
      font-weight: bold; }
      .compare-details-tabs-print .screen h5.open {
        color: #007bb6; }
        .compare-details-tabs-print .screen h5.open i {
          padding-right: 10px;
          padding-top: 10px;
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .compare-details-tabs-print .screen h5.closed i {
        padding-right: 10px;
        padding-top: 10px;
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
    .compare-details-tabs-print .screen i {
      display: inline-block;
      height: 14px;
      width: 14px;
      margin-right: 0px; }
    .compare-details-tabs-print .screen a {
      border-bottom: 1px solid;
      text-decoration: none;
      cursor: pointer; }
    .compare-details-tabs-print .screen .closed i {
      background-image: url("../images/icon_open.png"); }
    .compare-details-tabs-print .screen table {
      margin-top: 10px;
      width: 100%;
      border-bottom: 1px solid #ccc; }
      .compare-details-tabs-print .screen table td:first-child, .compare-details-tabs-print .screen table th:first-child {
        padding-left: 24px; }
      .compare-details-tabs-print .screen table tbody tr:nth-child(odd) {
        background-color: #eceef1; }
      .compare-details-tabs-print .screen table tbody tr td {
        padding: 9px 10px 9px 0; }
        .compare-details-tabs-print .screen table tbody tr td .popover {
          background-color: #464646;
          color: #ffffff;
          max-width: 430px !important; }
          .compare-details-tabs-print .screen table tbody tr td .popover .arrow:after {
            border-right-color: #464646; }
          .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner {
            padding: 8px 5px; }
            .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content {
              max-height: 150px;
              overflow-y: auto;
              position: relative;
              /*Custom Scroll bar 1*/ }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar {
                width: 12px;
                padding: 2px 5px 2px 0px; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-track {
                background-color: #eaeaea;
                border-left: 1px solid #ccc; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
                background-color: #ccc; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
                background-color: #aaa; }
        .compare-details-tabs-print .screen table tbody tr td .definition-popover {
          font: "Roboto", sans-serif; }
          .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-title {
            font-size: 0.778rem;
            font-weight: bold;
            margin-bottom: 5px; }
          .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content {
            font-size: 0.722rem; }
            .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table {
              background-color: #464646;
              color: #fff;
              margin: 0; }
              .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead {
                font-size: 0.778rem; }
                .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr {
                  background-color: #464646;
                  border-bottom: #ffffff; }
                  .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr th {
                    font-weight: bold;
                    font-size: 0.722rem;
                    color: #fff; }
              .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody {
                font-size: 0.722rem; }
                .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody tr {
                  background-color: #464646; }
        .compare-details-tabs-print .screen table tbody tr td span {
          margin-right: 5px; }
      .compare-details-tabs-print .screen table thead tr {
        border: none; }
        .compare-details-tabs-print .screen table thead tr th {
          padding: 5px 10px 10px 0px; }
          .compare-details-tabs-print .screen table thead tr th:first-child {
            font-size: 0.944rem; }
          .compare-details-tabs-print .screen table thead tr th.number {
            color: #ffffff; }
            .compare-details-tabs-print .screen table thead tr th.number i {
              display: inline-block;
              border-radius: 5px;
              text-align: center;
              line-height: 1.22rem;
              height: 22px;
              width: 22px;
              font-size: 0.944rem;
              padding-left: 1px; }
              .compare-details-tabs-print .screen table thead tr th.number i.first {
                background: #cc672f; }
              .compare-details-tabs-print .screen table thead tr th.number i.second {
                background: #01b7b8; }
              .compare-details-tabs-print .screen table thead tr th.number i.third {
                background: #a9a543; }
              .compare-details-tabs-print .screen table thead tr th.number i.fourth {
                background: #2a455f; }
  .compare-details-tabs-print .additional-info {
    margin-top: 50px;
    display: block;
    padding: 15px;
    background-color: #e1e1e1;
    font-size: 0.833rem;
    color: #151515; }
    .compare-details-tabs-print .additional-info ul {
      list-style: circle;
      padding-left: 18px; }
    .compare-details-tabs-print .additional-info strong {
      font-weight: bold; }
  table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Roboto", sans-serif;
    font-size: 0.889rem;
    color: #151515; }
    table thead tr {
      border-bottom: 3px solid #151515; }
      table thead tr:not(:only-child):first-child th {
        text-align: center; }
      table thead tr th {
        text-align: left;
        font-size: 0.667rem;
        padding-right: 0.278rem; }
        table thead tr th.number {
          text-align: right; }
    table tbody tr:first-child td {
      padding-top: 10px; }
    table tbody tr.institution {
      font-weight: bold; }
    table tbody tr.selected td {
      background-color: #007bb6;
      color: #fff; }
    table tbody tr td {
      padding: 5px 0;
      padding-right: 0.278rem; }
      table tbody tr td button {
        border: none !important;
        background-color: transparent !important;
        width: 14px !important;
        height: 14px !important;
        padding: 0 !important;
        margin: 0 !important; }
      table tbody tr td.number {
        text-align: right; }
      table tbody tr td.remove {
        padding-left: 25px;
        width: 14px; }
      table tbody tr td span {
        -ms-word-wrap: break-word;
        word-wrap: break-word; }
      table tbody tr td.subHead {
        font-weight: bold; }
  .glossary-full {
    width: 100%;
    max-width: 727px;
    overflow: hidden; }
    .glossary-full h1 {
      height: 70px;
      margin: 0;
      background-color: #00642D;
      color: #fff;
      font-size: 26px;
      font-weight: bold;
      padding: 20px 0 10px 25px; }
    .glossary-full .padding-container {
      padding: 25px; }
    .glossary-full .instructions {
      margin: 0;
      font-weight: bold;
      font-size: 18px;
      color: #00642D; }
    .glossary-full .keyword-search {
      display: inline-block;
      height: 37px; }
    .glossary-full button {
      margin: auto auto;
      height: 37px;
      width: 175px;
      border: 3px solid #007bb6;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 17px;
      color: #007bb6;
      background-color: #fff;
      border-radius: 45px;
      text-align: center;
      padding: 0; }
    .glossary-full .search {
      margin-left: 25px; }
    .glossary-full .term-label {
      font-weight: bold;
      font-size: 16px;
      color: #151515;
      text-transform: uppercase;
      margin: 0;
      margin-top: 25px; }
    .glossary-full .alphabet {
      list-style: none;
      margin: 0;
      padding: 0;
      margin-top: 10px;
      margin-bottom: 25px; }
      .glossary-full .alphabet li {
        display: inline-block;
        margin-right: 15px;
        font-size: 18px;
        color: #151515; }
        .glossary-full .alphabet li a {
          text-decoration: underline;
          color: #151515; }
          .glossary-full .alphabet li a.selectedLetter {
            font-weight: bold;
            text-decoration: none; }
    .glossary-full hr {
      border: none;
      margin: 0; }
      .glossary-full hr.thick {
        height: 2px;
        color: #151515;
        background-color: #151515; }
    .glossary-full .definitions {
      margin-top: 15px;
      max-height: 300px;
      font-size: 14px;
      color: #151515;
      overflow: auto; }
      .glossary-full .definitions dl {
        margin-top: 0;
        margin-bottom: 15px;
        padding: 0; }
      .glossary-full .definitions dt {
        padding: 0; }
      .glossary-full .definitions dfn {
        font-weight: bold;
        padding: 0; }
      .glossary-full .definitions dd {
        padding: 0;
        margin: 0; }
  .ngdialog.ngdialog-theme-default .ngdialog-content {
    width: 100%;
    max-width: 727px;
    overflow: hidden; }
    .ngdialog.ngdialog-theme-default .ngdialog-content .loading {
      padding-top: 23px;
      /*padding-bottom: 50px;*/ }
  /* The starting CSS styles for the enter animation */
  .view.ng-enter {
    transition: 0.2s linear all;
    opacity: 0; }
  /* The finishing CSS styles for the enter animation */
  .view.ng-enter.ng-enter-active {
    opacity: 1; } }

@media (min-width: 768px) and (max-width: 1016px) {
  #campus-header-campusname {
    display: none; }
  #printbuttonsvg {
    transition: 0.5s; }
  a:hover #printbuttonsvg {
    fill: #007bb6; }
  .print-buttons {
    z-index: 99999;
    width: 100%;
    text-align: center;
    background: #444;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5); } }
  @media print and (min-width: 768px) and (max-width: 1016px) {
    .print-buttons {
      display: none; } }

@media (min-width: 768px) and (max-width: 1016px) {
  .print-buttons button {
    margin: 0px 2px 0px 2px;
    border: none;
    background: #444;
    text-decoration: underline;
    color: #98D0EA;
    font-family: Roboto;
    font-size: 14px; } }
  @media print and (min-width: 768px) and (max-width: 1016px) {
    .print-buttons button {
      display: none; } }

@media (min-width: 768px) and (max-width: 1016px) {
  .groupbreak {
    page-break-after: always; }
  html, body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    letter-spacing: 0.0625em; }
  [ng-click] {
    cursor: pointer; }
  address {
    font-style: normal; }
  button:disabled {
    border: 3px solid #cdcdcd !important;
    color: #cdcdcd !important; }
  button:focus {
    outline: 1px dotted #ccc; }
  button:hover {
    cursor: pointer; }
  .center {
    margin: 0 10px; }
  .isSticky {
    padding: 10px 0 10px 0; }
  .continue-button {
    margin: 50px auto;
    text-align: center; }
    .continue-button.isSticky {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #efefef;
      margin: 0;
      transition: bottom 1s ease, background 0s ease; }
    .continue-button.notSticky {
      background: #151515;
      bottom: -63px;
      z-index: 1; }
    .continue-button button {
      margin: auto auto;
      margin-bottom: 10px;
      height: 43px;
      width: 175px;
      border: 3px solid #007bb6;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 0.944rem;
      color: #007bb6;
      background-color: #fff;
      border-radius: 45px;
      text-align: center;
      padding: 0; }
      .continue-button button:first-of-type {
        margin-right: 15px; }
      .continue-button button.back, .continue-button button.add {
        margin-right: 15px; }
      .continue-button button:disabled {
        border: 2px solid #cdcdcd;
        color: #cdcdcd; }
  i {
    font-style: normal;
    display: inline-block;
    background-repeat: no-repeat; }
    i.is-fav {
      background-image: url("../images/icon_favorite_small_select.png"); }
    i.not-fav {
      background-image: url("../images/icon_favorite_small_notselect.png"); }
  .header {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1000; }
    .header .center {
      max-width: 980px; }
    .header p {
      border: none;
      margin: 0;
      padding: 0;
      letter-spacing: 0.0625em; }
    .header .home-link {
      display: inline-block;
      height: 44px;
      width: 260px; }
    .header .first-header-row {
      background-color: #002913;
      background-color: rgba(0, 41, 19, 0.9);
      color: #fff;
      height: 27px; }
    .header .second-header-row {
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      color: #fff;
      height: 66px;
      padding-top: 19px; }
      .header .second-header-row nav {
        float: right;
        margin: 0;
        text-align: right; }
        .header .second-header-row nav button {
          background: none;
          margin: 0;
          padding: 0;
          border: none;
          height: 59px;
          width: 60px; }
          .header .second-header-row nav button.selected {
            background-color: #002913;
            background-color: rgba(0, 41, 19, 0.9); }
    .header .header-menu {
      z-index: 100;
      position: absolute;
      top: 112px;
      right: 0;
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      list-style: none;
      padding: 0;
      margin: 0; }
      .header .header-menu li {
        margin: 0 0 0 0;
        padding: 5px 10px 5px;
        text-align: left; }
        .header .header-menu li:hover {
          background-color: #002913;
          background-color: rgba(0, 41, 19, 0.9); }
      .header .header-menu a {
        font-size: 18px;
        font-weight: bold;
        font-family: "Roboto", sans-serif;
        text-decoration: none;
        color: #fff; }
    .header .header-favs {
      z-index: 100;
      position: absolute;
      top: 112px;
      right: 0;
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      list-style: none;
      padding: 0;
      margin: 0; }
      .header .header-favs li {
        margin: 0 0 0 0;
        padding: 5px 10px 5px; }
        .header .header-favs li:hover {
          background-color: #002913;
          background-color: rgba(0, 41, 19, 0.9); }
      .header .header-favs a, .header .header-favs p {
        font-size: 1rem;
        font-weight: bold;
        font-family: "Roboto", sans-serif;
        text-decoration: none;
        color: #fff; }
  .footer {
    background-color: #151515;
    font-family: "Roboto", sans-serif; }
    .footer .center {
      max-width: 980px; }
    .footer .upper {
      text-align: justify;
      -ms-text-align-last: justify;
      text-align-last: justify; }
    .footer .lower {
      text-align: justify;
      -ms-text-align-last: justify;
      text-align-last: justify; }
      .footer .lower a {
        font-size: 13px;
        font-weight: bold; }
    .footer a {
      display: inline-block;
      margin-top: 25px;
      font-size: 0.667rem;
      color: #fff;
      text-decoration: none; }
    .footer a:hover {
      text-decoration: underline; }
  .homepage .center {
    max-width: 960px;
    margin: 0 20px; }
  .homepage .top-section {
    padding-top: 138px;
    background-color: #eaeaeb;
    background-image: url("../images/bg_1920by836_eada.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    width: 100%;
    padding-bottom: 100px; }
    .homepage .top-section h1 {
      color: #fff;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 3.333rem;
      margin-top: 50px;
      margin-bottom: 77px;
      text-align: center; }
    .homepage .top-section .link-box {
      display: inline-block;
      min-height: 300px;
      width: calc(100% / 3 - 20px);
      max-width: 320px;
      text-decoration: none;
      vertical-align: top;
      color: #fff;
      font-family: "Roboto", sans-serif;
      font-size: 0.7778rem;
      margin: 0;
      padding: 0; }
      .homepage .top-section .link-box h3 {
        font-size: 1.556rem;
        margin: 25px 30px 18px 30px; }
      .homepage .top-section .link-box hr {
        width: 28%;
        margin-left: 30px;
        border: none;
        border-bottom: 1px solid #fff; }
      .homepage .top-section .link-box p {
        margin: 24px 37px 20px 30px; }
      .homepage .top-section .link-box.institution {
        background-color: #369;
        margin-right: 20px; }
      .homepage .top-section .link-box.compare {
        background-color: #cc672f;
        margin-right: 20px; }
      .homepage .top-section .link-box.custom {
        background-color: #01b7bd; }
      .homepage .top-section .link-box.trend {
        width: calc((100% / 3 - 20px) * 2 + 20px);
        max-width: 660px;
        margin-right: 20px;
        margin-top: 20px;
        background-color: #2a455f; }
        .homepage .top-section .link-box.trend h3 {
          font-size: 1.556rem;
          margin: 25px 30px 18px 30px; }
        .homepage .top-section .link-box.trend hr {
          width: 66%; }
        .homepage .top-section .link-box.trend p {
          margin: 24px 70px 20px 30px; }
      .homepage .top-section .link-box.download {
        background-color: #a9a543;
        margin-top: 20px; }
    .homepage .top-section h2 {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      text-align: center;
      margin-top: 90px;
      margin-bottom: 50px;
      color: #00642D;
      font-size: 2rem; }
    .homepage .top-section .description {
      text-align: center;
      font-size: 1rem;
      font-family: "Roboto", sans-serif;
      color: #151515; }
  .homepage .bottom-section {
    text-align: center;
    margin-bottom: 120px; }
    .homepage .bottom-section h2 {
      margin-top: 25px;
      margin-bottom: 53px;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      text-align: center;
      color: #00642D;
      font-size: 2rem; }
    .homepage .bottom-section .button {
      text-decoration: none;
      display: block;
      width: 432px;
      border-radius: 83px;
      border: 2px solid #00642D;
      text-align: center;
      margin: 0 auto;
      margin-bottom: 22px;
      padding-top: 17.5px;
      padding-bottom: 17.5px;
      font-family: "Roboto", sans-serif;
      font-size: 1rem;
      color: #00642D; }
      .homepage .bottom-section .button strong {
        font-family: "Roboto", sans-serif;
        font-size: 0.944rem; }
  .help-page {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 190px;
    font-size: 0.889rem;
    color: #151515; }
    .help-page a {
      color: #151515; }
    .help-page .colored-text {
      color: #1f88bd; }
    .help-page strong {
      font-weight: bold;
      font-size: 0.889rem; }
    .help-page .center {
      max-width: 960px;
      margin: 0 20px; }
    .help-page .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .help-page .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444em;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px;
      width: 100%; }
    .help-page .step-one a {
      float: right; }
    .help-page #printbutton {
      float: right; }
    .help-page .continue-button {
      margin: 50px auto;
      text-align: center; }
      .help-page .continue-button button, .help-page .continue-button a {
        margin: auto auto;
        height: 43px;
        width: 175px;
        border: 3px solid #007bb6;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 0.944rem;
        color: #007bb6;
        background-color: #fff;
        border-radius: 45px;
        text-align: center;
        padding: 0; }
  .institution-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 190px; }
    .institution-search .center {
      max-width: 960px;
      margin: 0 20px; }
    .institution-search .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .institution-search .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
  .institution-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .institution-list .center {
      max-width: 960px;
      min-width: 728px;
      margin: 0 20px; }
    .institution-list .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .institution-list .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
  .institution-details {
    z-index: 99;
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .institution-details .center {
      max-width: 980px;
      margin: 0 10px; }
    .institution-details .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .institution-details .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
  .compare-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-search .center {
      max-width: 960px;
      margin: 0 20px; }
    .compare-search .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-search .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
  .compare-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-list .center {
      max-width: 960px;
      margin: 0 20px; }
    .compare-list .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-list .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
  .compare-confirm {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-confirm .center {
      max-width: 960px;
      margin: 0 20px; }
    .compare-confirm .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-confirm .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
  .compare-details {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .compare-details .center {
      max-width: 960px;
      margin: 0 20px; }
    .compare-details .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .compare-details .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .compare-details .selectNumberFormat {
      margin-top: 50px;
      margin-bottom: 30px;
      font-size: 0.722rem;
      color: #151515;
      background-color: #e1e1e1;
      vertical-align: middle;
      line-height: 23px; }
  .customdata-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .customdata-search .center {
      max-width: 960px;
      margin: 0 20px; }
    .customdata-search .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .customdata-search .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
  .customdata-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .customdata-list .center {
      max-width: 960px;
      margin: 0 20px; }
    .customdata-list .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .customdata-list .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .customdata-list .shared-list .continue-with-all {
      border: 2px solid #007bb6;
      border-radius: 2px;
      text-align: center;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 15px;
      color: #007bb6;
      margin: 0;
      padding: 10px 10px;
      background-color: #fff;
      margin-left: 10px; }
  .customdata-details {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .customdata-details .center {
      max-width: 960px;
      margin: 0 20px; }
    .customdata-details .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .customdata-details .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .customdata-details .select-all {
      background-color: #e1e1e1;
      color: #151515;
      padding: 2px 2px 2px 3px;
      font-size: 12px;
      font-weight: bold;
      margin-top: 25px;
      margin-bottom: 17px;
      display: inline-block; }
    .customdata-details p {
      margin-top: 0; }
    .customdata-details .institutions {
      font-family: "Roboto", sans-serif;
      font-size: 1rem;
      color: #007bb6; }
      .customdata-details .institutions .name {
        font-size: 1.111rem;
        font-weight: bold; }
      .customdata-details .institutions .enroll {
        background-image: url("../images/icon_enrollment.png");
        background-size: 18px;
        display: inline-block;
        height: 18px;
        width: 24px;
        vertical-align: text-bottom; }
    .customdata-details ul {
      padding-left: 0;
      list-style: none;
      margin: 0; }
    .customdata-details .years li {
      display: inline-block;
      width: 70px;
      margin-right: 8%;
      font-weight: bold;
      font-size: 0.889rem; }
      .customdata-details .years li:last-child {
        margin-right: 0; }
    .customdata-details .link-button {
      font-family: "Roboto", sans-serif;
      border: 0;
      background: 0;
      font-size: inherit;
      font-weight: normal; }
    .customdata-details .screen {
      padding-top: 0.1px;
      margin-top: 10px; }
      .customdata-details .screen:first-child {
        margin-top: 10px; }
      .customdata-details .screen h5 {
        font-size: 1rem;
        font-weight: bold;
        margin: 0; }
      .customdata-details .screen i {
        display: inline-block;
        height: 14px;
        width: 14px;
        margin-right: 10px; }
      .customdata-details .screen .open {
        color: #007bb6; }
        .customdata-details .screen .open i {
          padding-right: 10px;
          padding-top: 10px;
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .customdata-details .screen .closed i {
        padding-right: 10px;
        padding-top: 10px;
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
      .customdata-details .screen ul {
        padding-left: 24px; }
        .customdata-details .screen ul input[type='checkbox'] {
          margin-left: 0; }
  .download-data {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 151px; }
    .download-data .center {
      max-width: 960px;
      margin: 0 20px; }
    .download-data .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .download-data .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444rem;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .download-data p {
      margin-top: 0; }
    .download-data ul {
      padding-left: 0;
      list-style: none;
      margin: 0; }
    .download-data .years, .download-data .data-types {
      text-align: justify;
      -ms-text-align-last: justify;
      text-align-last: justify;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .download-data .years li, .download-data .data-types li {
        display: inline-block;
        text-align: justify;
        -ms-text-align-last: justify;
        text-align-last: justify;
        width: 70px;
        margin-right: 8%;
        position: relative;
        margin-bottom: 5px; }
        .download-data .years li:last-child, .download-data .data-types li:last-child {
          margin-right: 0; }
        .download-data .years li label, .download-data .data-types li label {
          position: relative; }
          .download-data .years li label input, .download-data .data-types li label input {
            width: 15px;
            height: 15px; }
          .download-data .years li label span, .download-data .data-types li label span {
            position: absolute; }
    .download-data .data-types {
      display: block;
      margin-bottom: 50px; }
      .download-data .data-types li + li {
        padding-left: 10px; }
    .download-data .file-list {
      margin-bottom: 10px; }
      .download-data .file-list li {
        margin: 15px 0;
        font-family: "Roboto", sans-serif;
        font-size: 0.889rem;
        color: #151515; }
        .download-data .file-list li span {
          font-weight: bold;
          font-size: 1rem; }
        .download-data .file-list li a {
          text-decoration: underline;
          font-size: 0.889rem;
          color: #151515; }
    .download-data hr {
      border: none; }
      .download-data hr.thin {
        height: 1px;
        color: #ccc;
        background-color: #ccc;
        margin: 15px 0; }
      .download-data hr.thick {
        height: 2px;
        color: #151515;
        background-color: #151515; }
      .download-data hr.dotted {
        height: 1px;
        color: #ccc;
        background-color: #ccc; }
    .download-data section {
      padding: 0.1px;
      margin-top: 0;
      margin-bottom: 5px; }
      .download-data section h3 {
        margin: 2px 0px 5px 0px; }
      .download-data section:last-child {
        margin-bottom: 50px; }
    .download-data .top-select {
      min-width: 176px !important; }
    .download-data .select-all {
      font-size: 0.667rem;
      font-weight: bold;
      color: #151515;
      display: inline-block;
      min-width: 100px;
      line-height: 1rem;
      vertical-align: middle;
      background-color: #ccc;
      padding: 6px 9px 4px 9px;
      margin-top: 35px;
      margin-bottom: 15px; }
      .download-data .select-all input {
        vertical-align: middle;
        position: relative;
        bottom: 1px;
        width: 15px;
        height: 15px; }
    .download-data .second-select-all {
      margin-top: 30px; }
  .shared-search button {
    border: 2px solid #333;
    border-radius: 2px;
    width: 141px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.889rem;
    color: #151515;
    margin: 0 5px;
    padding: 13px 0;
    margin-bottom: 35px;
    background-color: #fff; }
  .shared-search .selected {
    background-color: #007bb6;
    border: 2px solid #007bb6;
    color: #fff; }
  .shared-search .search {
    margin-right: 20px; }
  .shared-search input[type='text'] {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.889rem;
    padding: 0; }
  .shared-search .dropdown-menu {
    box-sizing: border-box;
    margin-top: 0;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 0.722rem;
    text-align: left;
    background-color: #fff;
    border-radius: 3px;
    background-clip: padding-box; }
    .shared-search .dropdown-menu li.active {
      background-color: #007bb6; }
      .shared-search .dropdown-menu li.active a {
        color: #fff; }
    .shared-search .dropdown-menu > li > a {
      display: block;
      padding: 3px 20px;
      clear: both;
      font-weight: normal;
      line-height: 1.846;
      color: #666;
      white-space: nowrap;
      transition: all 0.2s;
      text-decoration: none;
      background-color: transparent; }
  .shared-search .selectbox button {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.889rem;
    text-align: left;
    background-color: #fff;
    margin-bottom: 0;
    position: relative; }
    .shared-search .selectbox button i {
      display: inline-block;
      position: absolute;
      height: 14px;
      width: 8px;
      background-image: url("../images/icon_pointtoright_notselect.png");
      background-repeat: no-repeat;
      right: 15px;
      top: 18px; }
      .shared-search .selectbox button i.badge-counter {
        background-image: none;
        background: none;
        background-color: #007bb6;
        border: 1px solid #007bb6;
        border-radius: 100%;
        color: #fff;
        top: 10px;
        right: 40px;
        width: auto;
        height: auto;
        text-align: center;
        padding: 5px 8px 5px 9px;
        font-size: .75em; }
    .shared-search .selectbox button.selected {
      color: #007bb6;
      font-weight: bold; }
      .shared-search .selectbox button.selected i {
        background-image: url("../images/icon_pointtoright_select.png"); }
        .shared-search .selectbox button.selected i.badge-counter {
          background-image: none; }
  .shared-search .selectbox label {
    display: block;
    width: 100%;
    height: 20px;
    border: none;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 0.889rem;
    text-align: left;
    background-color: #fff;
    margin-bottom: 0;
    vertical-align: bottom;
    padding-top: 20px;
    padding-bottom: 15px; }
  .shared-search .mobile-selectbox {
    display: none; }
  .shared-search .show-border {
    outline: 1px solid #ccc; }
  .shared-search .search-left {
    margin: 0;
    padding: 0;
    width: 47%;
    margin-right: 5%;
    display: inline-block;
    max-height: 405px;
    vertical-align: top; }
  .shared-search .search-right {
    margin: 0;
    padding: 0;
    width: 47%;
    display: inline-block;
    height: 403px;
    overflow: auto; }
    .shared-search .search-right button {
      margin: 0;
      padding: 0;
      border: 0;
      width: auto; }
      .shared-search .search-right button:hover {
        text-decoration: underline;
        color: #007bb6; }
      .shared-search .search-right button:first-child {
        margin-left: 10px;
        margin-right: 10px; }
    .shared-search .search-right span {
      display: block;
      margin-left: 10px;
      margin-bottom: 11px; }
    .shared-search .search-right div label {
      display: block;
      margin-left: 10px;
      margin-bottom: 11px;
      font-size: 0.833rem;
      vertical-align: top; }
      .shared-search .search-right div label input[type="checkbox"] {
        height: 13px;
        width: 13px;
        margin: 3px 3px 3px 4px;
        display: inline-block;
        vertical-align: top; }
      .shared-search .search-right div label span {
        display: inline-block;
        width: calc(100% - 7px - 13px);
        margin: 0; }
    .shared-search .search-right .initial-right img {
      display: block;
      margin: 0 auto; }
    .shared-search .search-right .initial-right .search-note-header {
      font-size: 1.444rem;
      font-style: normal;
      text-align: center;
      width: 79%;
      margin-left: 11.5%;
      padding-top: 5%; }
    .shared-search .search-right .initial-right .search-note {
      font-size: 0.889rem;
      font-style: normal;
      text-align: center;
      width: 66%;
      margin-left: 17%;
      padding-top: 1%; }
    .shared-search .search-right .select-all {
      background-color: #e1e1e1;
      color: #151515;
      padding-top: 0.1px;
      font-size: 0.6667rem;
      font-weight: bold;
      display: inline-block;
      vertical-align: baseline;
      margin-bottom: 11px;
      width: 100%; }
      .shared-search .search-right .select-all label {
        margin-top: 9px;
        font-size: 0.8rem;
        vertical-align: middle;
        line-height: 1rem; }
      .shared-search .search-right .select-all input[type="checkbox"] {
        vertical-align: baseline; }
  .shared-search .selected-filters {
    list-style: none;
    padding: 0;
    margin: 0; }
  .shared-search .all-selected {
    color: #007bb6;
    font-size: 1.222rem;
    font-weight: bold; }
  .shared-list {
    position: relative; }
    .shared-list h3 {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 22px;
      color: #007bb6;
      margin-top: 0;
      /*margin-top: 25px;*/
      margin-bottom: 10px;
      display: inline-block; }
    .shared-list .filter-header {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 16px;
      color: #151515;
      margin: 10px 0;
      /*margin-top: 25px;*/
      display: block;
      height: calc( 40px - 22px);
      padding-top: 11px;
      padding-bottom: 11px;
      padding-left: 0;
      background-color: #e1e1e1;
      vertical-align: middle; }
      .shared-list .filter-header h4 {
        margin: 0;
        display: inline-block;
        text-align: left; }
      .shared-list .filter-header i {
        display: inline-block;
        height: 14px;
        width: 14px;
        margin-right: 10px;
        margin-left: 10px; }
      .shared-list .filter-header.open {
        color: #fff;
        background-color: #707070;
        margin-bottom: 0; }
        .shared-list .filter-header.open i {
          background-image: url("../images/icon_close_white.png"); }
        .shared-list .filter-header.open .selectAll {
          color: #fff; }
      .shared-list .filter-header.closed i {
        background-image: url("../images/icon_open.png"); }
      .shared-list .filter-header .selectAll {
        border: 0;
        background: 0;
        text-decoration: underline;
        color: #151515;
        font-size: 14px;
        display: inline-block;
        text-align: right;
        position: absolute;
        right: 10px; }
    .shared-list div {
      padding-left: 34px;
      padding-top: 0.1px;
      padding-bottom: 0.1px;
      color: #151515;
      background-color: #e1e1e1;
      font-size: 14px;
      margin-bottom: 10px; }
      .shared-list div p {
        margin: 1em 0;
        font-weight: normal; }
        .shared-list div p .filter-body {
          display: inline-block; }
          .shared-list div p .filter-body.name {
            width: calc( 100% - 158px - 4px); }
          .shared-list div p .filter-body.city {
            width: calc(100% - 158px - 4px); }
          .shared-list div p .filter-body.enrollement {
            width: calc( 100% - 158px - 4px); }
          .shared-list div p .filter-body.state {
            width: calc( 100% - 158px - 4px); }
          .shared-list div p .filter-body.country {
            width: calc( 100% - 158px - 4px); }
          .shared-list div p .filter-body.program {
            width: calc( 100% - 158px - 4px); }
          .shared-list div p .filter-body.type {
            width: calc( 100% - 158px - 4px); }
        .shared-list div p .filter-head {
          font-weight: bold;
          display: inline-block;
          vertical-align: top;
          margin-right: 4px; }
          .shared-list div p .filter-head.name {
            width: 158px; }
          .shared-list div p .filter-head.city {
            width: 158px; }
          .shared-list div p .filter-head.enrollement {
            width: 158px; }
          .shared-list div p .filter-head.state {
            width: 158px; }
          .shared-list div p .filter-head.country {
            width: 158px; }
          .shared-list div p .filter-head.program {
            width: 158px; }
          .shared-list div p .filter-head.type {
            width: 158px; }
    .shared-list p {
      margin-top: 0; }
    .shared-list ul {
      margin-top: 50px !important; }
      .shared-list ul.pagination {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        font-size: 16px;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        color: #151515;
        width: 600px;
        text-align: center; }
        .shared-list ul.pagination li {
          display: inline-block;
          width: 35px; }
          .shared-list ul.pagination li a {
            color: #151515; }
          .shared-list ul.pagination li.active a {
            color: #007bb6; }
    .shared-list .results-header {
      position: relative;
      background-color: #ffffff;
      padding-left: 0px;
      padding-top: 0px;
      padding-bottom: 0px;
      margin-bottom: 10px;
      width: 100%;
      height: 39px;
      font-size: 1rem;
      margin-bottom: 1rem; }
      .shared-list .results-header select {
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        height: 39px;
        border: 1px solid #ccc;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        background-image: url("../images/icon_dropdown.png");
        padding-right: 27px;
        background-repeat: no-repeat;
        background-position: right 10px center;
        font-weight: bold;
        font-size: 0.889rem;
        color: #151515; }
        .shared-list .results-header select::-ms-expand {
          display: none; }
      .shared-list .results-header span {
        position: absolute;
        bottom: 0; }
    .shared-list table thead tr {
      border-width: 2px; }
    .shared-list .favorite {
      display: inline-block;
      height: 20px;
      width: 20px;
      background-image: url("../images/icon_favorite2_notselect.png"); }
      .shared-list .favorite.is-Fav {
        background-image: url("../images/icon_favorite2_select.png"); }
  .institution-details-head h3 {
    font-family: "Roboto", sans-serif;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 1.667rem;
    color: #007bb6;
    border-bottom: 2px solid #007bb6;
    position: relative; }
    .institution-details-head h3 i {
      position: absolute;
      right: 0;
      cursor: pointer;
      height: 31px;
      width: 31px; }
    .institution-details-head h3 span {
      position: absolute;
      right: 40px;
      bottom: 0;
      font-size: 25px; }
      .institution-details-head h3 span.no-fav-icon {
        right: 0px; }
  .institution-details-head .address, .institution-details-head .web-address, .institution-details-head .enrollment {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    color: #007bb6;
    display: inline-block;
    height: 50px; }
    .institution-details-head .address i, .institution-details-head .web-address i, .institution-details-head .enrollment i {
      margin-right: 5px; }
  .institution-details-head .col-1, .institution-details-head .col-2 {
    width: calc( 50% - 6px);
    display: inline-block; }
  .institution-details-head .address {
    text-align: left;
    position: relative;
    vertical-align: top; }
    .institution-details-head .address address {
      width: calc(100% - 16px - 5px);
      display: inline-block;
      vertical-align: top;
      overflow: hidden;
      white-space: nowrap;
      -ms-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .institution-details-head .address .map-icon {
      margin-top: 10px;
      height: 25px;
      width: 16px;
      background-image: url("../images/icon_address.png"); }
  .institution-details-head .web-address {
    text-align: center;
    position: relative;
    vertical-align: top; }
    .institution-details-head .web-address a {
      max-width: calc(100% - 25px - 5px);
      display: inline-block;
      vertical-align: top;
      text-transform: lowercase;
      overflow: hidden;
      white-space: nowrap;
      -ms-text-overflow: ellipsis;
      text-overflow: ellipsis; }
    .institution-details-head .web-address .web-icon {
      height: 25px;
      width: 25px;
      background-image: url("../images/icon_website.png"); }
  .institution-details-head .enrollment {
    text-align: right;
    vertical-align: top; }
    .institution-details-head .enrollment span {
      vertical-align: top; }
    .institution-details-head .enrollment .enroll-icon {
      height: 25px;
      width: 33px;
      background-image: url("../images/icon_enrollment.png"); }
  .institution-details-head .campus-list {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent;
    height: 51px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-size: 1.222rem;
    font-weight: normal;
    margin-top: 15px;
    margin-bottom: 50px;
    text-align: left;
    background-color: #333;
    background-image: url("../images/icon_dropdown_white.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    border: none; }
    .institution-details-head .campus-list::-ms-expand {
      display: none; }
  .institution-details-head .campus-header {
    width: 100%;
    color: #fff;
    background-color: #007bb6;
    font-size: 0.889rem;
    margin-top: 15px;
    position: relative;
    padding: 0.1px; }
    .institution-details-head .campus-header .departmentInfo {
      height: auto;
      margin-top: 15px;
      margin-left: 22px;
      margin-bottom: 0;
      display: block;
      vertical-align: middle; }
    .institution-details-head .campus-header .campus-list {
      margin-top: 0;
      display: block;
      margin-bottom: 15px; }
    .institution-details-head .campus-header i.is-fav {
      height: 42px;
      width: 42px;
      position: absolute;
      right: 10px;
      top: 10px;
      background-image: url("../images/icon_favorite_select.png"); }
    .institution-details-head .campus-header i.not-fav {
      height: 42px;
      width: 42px;
      position: absolute;
      right: 10px;
      top: 10px;
      background-image: url("../images/icon_favorite_notselect.png"); }
    .institution-details-head .campus-header i.map-icon {
      background-image: url("../images/icon_address_white.png");
      height: 20px;
      width: 12px; }
    .institution-details-head .campus-header .address, .institution-details-head .campus-header .on-campus-housing, .institution-details-head .campus-header .local-police {
      margin-left: 15px;
      color: #fff;
      width: calc(100% - 15px) !important; }
    .institution-details-head .campus-header h4, .institution-details-head .campus-header h5 {
      font-weight: bold;
      font-size: 0.889rem;
      color: #fff;
      margin-bottom: 0;
      text-transform: uppercase; }
    .institution-details-head .campus-header p {
      margin-top: 5px;
      margin-bottom: 25px; }
  .institution-details-head .badges {
    margin-top: 10px;
    font-size: 0.889rem;
    color: #fff;
    min-height: 181px;
    /*text-align: justify;
			-moz-text-align-last: justify;
			-ms-text-align-last: justify;
			text-align-last: justify;*/ }
    .institution-details-head .badges h5 {
      text-transform: uppercase;
      font-weight: bold;
      margin: 25px 0 10px 0;
      padding: 0; }
    .institution-details-head .badges p {
      margin: 0; }
    .institution-details-head .badges address {
      margin: 0;
      display: inline; }
    .institution-details-head .badges section {
      width: calc(49% - 16px);
      margin-right: 9.6874px;
      display: inline-block;
      background-color: #007bb6;
      padding-left: 10px;
      padding-bottom: 10px;
      background-repeat: no-repeat;
      background-position: top 20px right 15px;
      vertical-align: top;
      min-height: 215px; }
      .institution-details-head .badges section:last-child {
        margin-right: 0; }
      .institution-details-head .badges section.security {
        background-image: url("../images/icon_securityofficer.png"); }
      .institution-details-head .badges section.fire {
        background-image: url("../images/icon_fireofficer.png"); }
      .institution-details-head .badges section.coord {
        background-image: url("../images/icon_lead.png"); }
  .institution-details-tabs ul.nav.nav-tabs {
    border-bottom: 2px solid #007bb6; }
    .institution-details-tabs ul.nav.nav-tabs li {
      font-weight: bold;
      font-size: 0.833rem;
      text-transform: uppercase;
      color: #999;
      background-color: transparent;
      height: 44px;
      display: block;
      text-align: center;
      margin-bottom: 0 !important; }
      .institution-details-tabs ul.nav.nav-tabs li a {
        color: #999;
        box-shadow: none;
        text-decoration: none; }
      .institution-details-tabs ul.nav.nav-tabs li.active {
        color: #fff;
        background-color: #007bb6; }
        .institution-details-tabs ul.nav.nav-tabs li.active a {
          color: #fff; }
  .institution-details-tabs .screen {
    padding-top: 0.1px;
    margin-top: 50px; }
    .institution-details-tabs .screen a {
      border-bottom: 1px dotted;
      text-decoration: none; }
    .institution-details-tabs .screen:first-child {
      margin-top: 25px; }
    .institution-details-tabs .screen h5 {
      margin: 0;
      font-size: 1rem;
      font-weight: bold; }
      .institution-details-tabs .screen h5 i {
        display: inline-block;
        height: 14px;
        width: 14px;
        padding-right: 10px;
        padding-top: 10px; }
    .institution-details-tabs .screen .open {
      color: #007bb6; }
      .institution-details-tabs .screen .open i {
        background-image: url("../images/icon_close.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
    .institution-details-tabs .screen .closed i {
      background-image: url("../images/icon_open.png");
      background-repeat: no-repeat;
      background-position: left bottom; }
    .institution-details-tabs .screen .caveat-header {
      font-weight: bold; }
    .institution-details-tabs .screen table {
      margin-top: 50px;
      width: 100%; }
      .institution-details-tabs .screen table td:first-child {
        padding-left: 24px;
        text-align: left; }
      .institution-details-tabs .screen table th:first-child {
        padding-left: 24px;
        text-align: left; }
      .institution-details-tabs .screen table th:not(:first-child) {
        padding-right: 10px;
        text-align: right; }
      .institution-details-tabs .screen table thead tr {
        border: none; }
        .institution-details-tabs .screen table thead tr.header-1, .institution-details-tabs .screen table thead tr.header-2 {
          font-size: 0.722rem;
          color: #151515; }
        .institution-details-tabs .screen table thead tr.header-1 {
          font-style: italic; }
          .institution-details-tabs .screen table thead tr.header-1 th:not([rowspan="2"]) {
            border-bottom: dotted;
            border-color: #ccc;
            border-width: 1px; }
          .institution-details-tabs .screen table thead tr.header-1 th[rowspan="2"] {
            font-style: normal;
            font-weight: bold; }
            .institution-details-tabs .screen table thead tr.header-1 th[rowspan="2"].number {
              text-align: right; }
        .institution-details-tabs .screen table thead tr.header-2 {
          font-weight: bold; }
        .institution-details-tabs .screen table thead tr th {
          font-size: 0.722rem;
          font-weight: bold;
          color: #151515; }
          .institution-details-tabs .screen table thead tr th:not(:first-of-type) {
            font-size: 0.722rem;
            font-weight: bold;
            color: #151515; }
      .institution-details-tabs .screen table tbody tr td {
        padding: 10px 10px 10px 10px; }
    .institution-details-tabs .screen hr {
      width: 100%;
      color: #ccc;
      border: none;
      border-bottom: 1px solid #ccc; }
  .institution-details-tabs .additional-info {
    margin-top: 50px;
    display: block;
    padding: 15px;
    background-color: #e1e1e1;
    font-size: 0.833rem;
    color: #151515; }
    .institution-details-tabs .additional-info ul {
      list-style: circle;
      padding-left: 18px; }
    .institution-details-tabs .additional-info strong {
      font-weight: bold; }
  .institution-details-tabs .campus-list {
    width: 100%;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent;
    height: 25px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    margin-top: 15px;
    text-align: left;
    background-color: #333;
    background-image: url("../images/icon_dropdown_white.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    border: none; }
    .institution-details-tabs .campus-list::-ms-expand {
      display: none; }
  .institution-details-tabs-print {
    padding-top: 0.1px;
    margin-top: 25px; }
    .institution-details-tabs-print tr.ng-scope.header-1 {
      font-size: 13px;
      background-color: white !important;
      font-style: italic;
      text-decoration: underline;
      font-weight: normal !important; }
    .institution-details-tabs-print ul.nav.nav-tabs {
      margin-top: 0;
      border-bottom: 2px solid #007bb6;
      text-align: justify;
      position: relative; }
      .institution-details-tabs-print ul.nav.nav-tabs li {
        display: inline-block;
        font-weight: bold;
        font-size: 0.889rem;
        text-transform: uppercase;
        color: #999;
        background-color: transparent;
        height: 44px;
        margin-bottom: 0 !important;
        border-radius: 5px 5px 0 0; }
        .institution-details-tabs-print ul.nav.nav-tabs li:nth-child(7) {
          position: absolute;
          right: 0px; }
        .institution-details-tabs-print ul.nav.nav-tabs li a {
          text-align: center;
          color: #999;
          box-shadow: none;
          text-decoration: none; }
          .institution-details-tabs-print ul.nav.nav-tabs li a:hover {
            color: #007bb6; }
        .institution-details-tabs-print ul.nav.nav-tabs li.active {
          color: #fff;
          background-color: #007bb6; }
          .institution-details-tabs-print ul.nav.nav-tabs li.active a {
            color: #fff; }
    .institution-details-tabs-print .screen {
      padding-top: 0.1px; }
      .institution-details-tabs-print .screen a {
        border-bottom: 1px solid;
        text-decoration: none;
        cursor: pointer; }
      .institution-details-tabs-print .screen:first-child {
        margin-top: 15px; }
      .institution-details-tabs-print .screen h5 {
        margin: 0;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 16px; }
        .institution-details-tabs-print .screen h5 i {
          display: inline-block;
          height: 14px;
          width: 14px;
          padding-right: 10px;
          padding-top: 10px; }
      .institution-details-tabs-print .screen .open {
        color: #007bb6; }
        .institution-details-tabs-print .screen .open i {
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .institution-details-tabs-print .screen .closed i {
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
      .institution-details-tabs-print .screen .caveat-header {
        font-weight: bold; }
      .institution-details-tabs-print .screen .popover {
        background-color: #464646;
        color: #ffffff;
        max-width: 430px !important; }
        .institution-details-tabs-print .screen .popover .arrow:after {
          border-right-color: #464646; }
        .institution-details-tabs-print .screen .popover .popover-inner {
          padding: 8px 5px; }
          .institution-details-tabs-print .screen .popover .popover-inner .popover-content {
            max-height: 150px;
            overflow-y: auto;
            position: relative; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar {
              width: 12px;
              padding: 2px 5px 2px 0px; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-track {
              background-color: #eaeaea;
              border-left: 1px solid #ccc; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
              background-color: #ccc; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
              background-color: #aaa; }
      .institution-details-tabs-print .screen .definition-popover {
        font: "Roboto", sans-serif; }
        .institution-details-tabs-print .screen .definition-popover .definition-title {
          font-size: 0.778rem;
          font-weight: bold;
          margin-bottom: 5px; }
        .institution-details-tabs-print .screen .definition-popover .definition-content {
          font-size: 0.722rem; }
          .institution-details-tabs-print .screen .definition-popover .definition-content table {
            background-color: #464646;
            color: #fff;
            margin: 0; }
            .institution-details-tabs-print .screen .definition-popover .definition-content table thead {
              font-size: 0.778rem; }
              .institution-details-tabs-print .screen .definition-popover .definition-content table thead tr {
                background-color: #464646;
                border-bottom: #ffffff; }
                .institution-details-tabs-print .screen .definition-popover .definition-content table thead tr th {
                  font-weight: bold;
                  font-size: 0.722rem;
                  color: #fff;
                  text-transform: none; }
            .institution-details-tabs-print .screen .definition-popover .definition-content table tbody {
              font-size: 0.722rem; }
              .institution-details-tabs-print .screen .definition-popover .definition-content table tbody tr {
                background-color: #464646; }
      .institution-details-tabs-print .screen table {
        margin-top: 10px;
        width: 100%;
        margin-bottom: 40px;
        page-break-after: avoid; }
        .institution-details-tabs-print .screen table td:first-child, .institution-details-tabs-print .screen table th:first-child {
          padding-left: 24px; }
        .institution-details-tabs-print .screen table thead tr {
          border: none; }
          .institution-details-tabs-print .screen table thead tr.header-1 th, .institution-details-tabs-print .screen table thead tr.header-2 th {
            font-size: 0.722rem;
            color: #151515; }
            .institution-details-tabs-print .screen table thead tr.header-1 th:not(:first-of-type), .institution-details-tabs-print .screen table thead tr.header-2 th:not(:first-of-type) {
              font-size: 0.722rem;
              font-weight: bold;
              color: #151515; }
          .institution-details-tabs-print .screen table thead tr.header-1 {
            font-style: italic;
            font-size: 0.889rem; }
            .institution-details-tabs-print .screen table thead tr.header-1 th:not([rowspan="2"]) {
              border-bottom: solid;
              border-color: #e1e1e1;
              border-width: 1px;
              font-weight: normal; }
            .institution-details-tabs-print .screen table thead tr.header-1 th[rowspan="2"] {
              font-style: normal;
              font-weight: bold; }
              .institution-details-tabs-print .screen table thead tr.header-1 th[rowspan="2"].number {
                text-align: right; }
          .institution-details-tabs-print .screen table thead tr.header-2 {
            font-weight: bold;
            font-size: 0.889rem; }
            .institution-details-tabs-print .screen table thead tr.header-2 th {
              color: #151515;
              padding: 13px 10px 13px 0; }
              .institution-details-tabs-print .screen table thead tr.header-2 th:first-child {
                padding-left: 5px; }
          .institution-details-tabs-print .screen table thead tr th {
            font-size: 0.944rem;
            font-weight: bold;
            color: #151515;
            padding: 5px 10px 10px 0; }
            .institution-details-tabs-print .screen table thead tr th:not(:first-of-type) {
              font-size: 0.944rem;
              font-weight: bold;
              color: #151515; }
        .institution-details-tabs-print .screen table tbody tr td {
          padding: 9px 10px 9px 0; }
          .institution-details-tabs-print .screen table tbody tr td .popover {
            background-color: #464646;
            color: #ffffff;
            max-width: 430px !important; }
            .institution-details-tabs-print .screen table tbody tr td .popover .arrow:after {
              border-right-color: #464646; }
            .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner {
              padding: 8px 5px; }
              .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content {
                max-height: 150px;
                overflow-y: auto;
                position: relative; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar {
                  width: 12px;
                  padding: 2px 5px 2px 0px; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-track {
                  background-color: #eaeaea;
                  border-left: 1px solid #ccc; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
                  background-color: #ccc; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
                  background-color: #aaa; }
          .institution-details-tabs-print .screen table tbody tr td .definition-popover {
            font: "Roboto", sans-serif; }
            .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-title {
              font-size: 0.778rem;
              font-weight: bold;
              margin-bottom: 5px; }
            .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content {
              font-size: 0.722rem; }
              .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table {
                background-color: #464646;
                color: #fff;
                margin: 0; }
                .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead {
                  font-size: 0.778rem; }
                  .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr {
                    background-color: #464646;
                    border-bottom: #ffffff; }
                    .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr th {
                      font-weight: bold;
                      font-size: 0.722rem;
                      color: #fff;
                      text-transform: none; }
                .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody {
                  font-size: 0.722rem; }
                  .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody tr {
                    background-color: #464646; }
        .institution-details-tabs-print .screen table tbody tr:nth-child(odd) {
          background-color: #eceef1; }
        .institution-details-tabs-print .screen table.special-table thead {
          border-bottom: 1px solid #ccc;
          text-transform: uppercase; }
          .institution-details-tabs-print .screen table.special-table thead tr th.subHeader {
            font-size: 0.778rem; }
        .institution-details-tabs-print .screen table.special-table .popover {
          max-width: 820px !important; }
          .institution-details-tabs-print .screen table.special-table .popover .arrow:after {
            border-left-color: #464646; }
          .institution-details-tabs-print .screen table.special-table .popover th, .institution-details-tabs-print .screen table.special-table .popover td {
            text-align: right;
            padding-right: 20px; }
          .institution-details-tabs-print .screen table.special-table .popover th:first-child, .institution-details-tabs-print .screen table.special-table .popover td:first-child, .institution-details-tabs-print .screen table.special-table .popover th:nth-child(2), .institution-details-tabs-print .screen table.special-table .popover td:nth-child(2) {
            text-align: left;
            padding-left: 0; }
      .institution-details-tabs-print .screen hr {
        width: 100%;
        color: #ccc;
        border: none;
        border-bottom: 1px solid #ccc; }
    .institution-details-tabs-print .additional-info {
      margin-top: 50px;
      display: block;
      padding: 23px 23px 25px 23px;
      background-color: #e1e1e1;
      font-size: 0.778rem;
      color: #151515; }
      .institution-details-tabs-print .additional-info ul {
        list-style: circle;
        padding-left: 18px;
        margin-bottom: 0; }
        .institution-details-tabs-print .additional-info ul li {
          margin-bottom: 10px; }
          .institution-details-tabs-print .additional-info ul li:last-child {
            margin-bottom: 0; }
      .institution-details-tabs-print .additional-info strong {
        font-weight: bold; }
      .institution-details-tabs-print .additional-info p {
        margin-bottom: 0; }
  .compare-details-head ul {
    list-style: none;
    margin: 0;
    padding: 0.1px; }
    .compare-details-head ul li {
      font-family: "Roboto", sans-serif;
      font-size: 1rem;
      color: #007bb6; }
      .compare-details-head ul li i {
        color: #ffffff;
        border-radius: 5px;
        padding: 3px 5px;
        font-size: 0.667rem;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        vertical-align: top; }
        .compare-details-head ul li i.badge-counter-first {
          background-color: #cc672f; }
        .compare-details-head ul li i.badge-counter-second {
          background-color: #01b7bd; }
        .compare-details-head ul li i.badge-counter-third {
          background-color: #a9a543; }
        .compare-details-head ul li i.badge-counter-fourth {
          background-color: #2a455f; }
      .compare-details-head ul li .name {
        font-size: 20px;
        font-weight: bold; }
      .compare-details-head ul li .enroll {
        background-image: url("../images/icon_enrollment.png");
        background-repeat: no-repeat;
        background-position: bottom left;
        background-size: 18px;
        display: inline-block;
        height: 18px;
        width: 24px;
        vertical-align: text-bottom; }
  .compare-details-tabs ul.nav.nav-tabs {
    border-bottom: 2px solid #007bb6; }
    .compare-details-tabs ul.nav.nav-tabs li {
      font-weight: bold;
      font-size: 0.833rem;
      text-transform: uppercase;
      color: #999;
      background-color: transparent;
      height: 44px;
      min-width: 184px;
      text-align: center;
      margin-bottom: 0 !important; }
      .compare-details-tabs ul.nav.nav-tabs li a {
        color: #999;
        box-shadow: none;
        text-decoration: none; }
      .compare-details-tabs ul.nav.nav-tabs li.active {
        color: #fff;
        background-color: #007bb6; }
        .compare-details-tabs ul.nav.nav-tabs li.active a {
          color: #fff; }
  .compare-details-tabs .screen {
    padding-top: 0.1px;
    margin-top: 50px; }
    .compare-details-tabs .screen:first-child {
      margin-top: 25px; }
    .compare-details-tabs .screen h5 {
      margin: 0; }
      .compare-details-tabs .screen h5.open {
        color: #007bb6; }
        .compare-details-tabs .screen h5.open i {
          background-image: url("../images/icon_close.png"); }
      .compare-details-tabs .screen h5.closed i {
        background-image: url("../images/icon_open.png"); }
    .compare-details-tabs .screen i {
      display: inline-block;
      height: 14px;
      width: 14px;
      margin-right: 10px; }
    .compare-details-tabs .screen a {
      border-bottom: 1px dotted;
      text-decoration: none; }
    .compare-details-tabs .screen .closed i {
      background-image: url("../images/icon_open.png"); }
    .compare-details-tabs .screen table {
      margin-top: 10px;
      width: calc(100%);
      border-bottom: 1px solid #ccc; }
      .compare-details-tabs .screen table th {
        padding-bottom: 5px; }
        .compare-details-tabs .screen table th.number {
          color: #ffffff; }
          .compare-details-tabs .screen table th.number span {
            border-radius: 5px;
            padding: 3px 5px; }
            .compare-details-tabs .screen table th.number span.first {
              background: #cc672f; }
            .compare-details-tabs .screen table th.number span.second {
              background: #01b7b8; }
            .compare-details-tabs .screen table th.number span.third {
              background: #a9a543; }
            .compare-details-tabs .screen table th.number span.fourth {
              background: #2a455f; }
  .compare-details-tabs .additional-info {
    margin-top: 50px;
    display: block;
    padding: 15px;
    background-color: #e1e1e1;
    font-size: 0.833rem;
    color: #151515; }
    .compare-details-tabs .additional-info ul {
      list-style: circle;
      padding-left: 18px; }
    .compare-details-tabs .additional-info strong {
      font-weight: bold; }
  .compare-details-tabs-print ul.nav.nav-tabs {
    margin-top: 0;
    border-bottom: 2px solid #007bb6;
    text-align: justify; }
    .compare-details-tabs-print ul.nav.nav-tabs li {
      display: inline-block;
      font-weight: bold;
      font-size: 0.833rem;
      text-transform: uppercase;
      color: #999;
      background-color: transparent;
      height: 44px;
      margin-bottom: 0 !important;
      border-radius: 5px 5px 0 0; }
      .compare-details-tabs-print ul.nav.nav-tabs li a {
        text-align: center;
        color: #999;
        box-shadow: none;
        text-decoration: none; }
      .compare-details-tabs-print ul.nav.nav-tabs li.active {
        color: #fff;
        background-color: #007bb6; }
        .compare-details-tabs-print ul.nav.nav-tabs li.active a {
          color: #fff; }
  .compare-details-tabs-print .screen {
    padding-top: 0.1px;
    margin-top: 50px; }
    .compare-details-tabs-print .screen:first-child {
      margin-top: 25px; }
    .compare-details-tabs-print .screen h5 {
      margin: 0;
      font-size: 1rem;
      font-weight: bold; }
      .compare-details-tabs-print .screen h5.open {
        color: #007bb6; }
        .compare-details-tabs-print .screen h5.open i {
          padding-right: 10px;
          padding-top: 10px;
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .compare-details-tabs-print .screen h5.closed i {
        padding-right: 10px;
        padding-top: 10px;
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
    .compare-details-tabs-print .screen i {
      display: inline-block;
      height: 14px;
      width: 14px;
      margin-right: 0px; }
    .compare-details-tabs-print .screen a {
      border-bottom: 1px solid;
      text-decoration: none;
      cursor: pointer; }
    .compare-details-tabs-print .screen .closed i {
      background-image: url("../images/icon_open.png"); }
    .compare-details-tabs-print .screen table {
      margin-top: 10px;
      width: 100%;
      border-bottom: 1px solid #ccc; }
      .compare-details-tabs-print .screen table td:first-child, .compare-details-tabs-print .screen table th:first-child {
        padding-left: 24px; }
      .compare-details-tabs-print .screen table tbody tr:nth-child(odd) {
        background-color: #eceef1; }
      .compare-details-tabs-print .screen table tbody tr td {
        padding: 9px 10px 9px 0; }
        .compare-details-tabs-print .screen table tbody tr td .popover {
          background-color: #464646;
          color: #ffffff;
          max-width: 430px !important; }
          .compare-details-tabs-print .screen table tbody tr td .popover .arrow:after {
            border-right-color: #464646; }
          .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner {
            padding: 8px 5px; }
            .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content {
              max-height: 150px;
              overflow-y: auto;
              position: relative;
              /*Custom Scroll bar 1*/ }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar {
                width: 12px;
                padding: 2px 5px 2px 0px; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-track {
                background-color: #eaeaea;
                border-left: 1px solid #ccc; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
                background-color: #ccc; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
                background-color: #aaa; }
        .compare-details-tabs-print .screen table tbody tr td .definition-popover {
          font: "Roboto", sans-serif; }
          .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-title {
            font-size: 0.778rem;
            font-weight: bold;
            margin-bottom: 5px; }
          .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content {
            font-size: 0.722rem; }
            .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table {
              background-color: #464646;
              color: #fff;
              margin: 0; }
              .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead {
                font-size: 0.778rem; }
                .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr {
                  background-color: #464646;
                  border-bottom: #ffffff; }
                  .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr th {
                    font-weight: bold;
                    font-size: 0.722rem;
                    color: #fff; }
              .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody {
                font-size: 0.722rem; }
                .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody tr {
                  background-color: #464646; }
        .compare-details-tabs-print .screen table tbody tr td span {
          margin-right: 5px; }
      .compare-details-tabs-print .screen table thead tr {
        border: none; }
        .compare-details-tabs-print .screen table thead tr th {
          padding: 5px 10px 10px 0px; }
          .compare-details-tabs-print .screen table thead tr th:first-child {
            font-size: 0.944rem; }
          .compare-details-tabs-print .screen table thead tr th.number {
            color: #ffffff; }
            .compare-details-tabs-print .screen table thead tr th.number i {
              display: inline-block;
              border-radius: 5px;
              text-align: center;
              line-height: 1.22rem;
              height: 22px;
              width: 22px;
              font-size: 0.944rem;
              padding-left: 1px; }
              .compare-details-tabs-print .screen table thead tr th.number i.first {
                background: #cc672f; }
              .compare-details-tabs-print .screen table thead tr th.number i.second {
                background: #01b7b8; }
              .compare-details-tabs-print .screen table thead tr th.number i.third {
                background: #a9a543; }
              .compare-details-tabs-print .screen table thead tr th.number i.fourth {
                background: #2a455f; }
  .compare-details-tabs-print .additional-info {
    margin-top: 50px;
    display: block;
    padding: 15px;
    background-color: #e1e1e1;
    font-size: 0.833rem;
    color: #151515; }
    .compare-details-tabs-print .additional-info ul {
      list-style: circle;
      padding-left: 18px; }
    .compare-details-tabs-print .additional-info strong {
      font-weight: bold; }
  table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #151515; }
    table thead tr {
      border-bottom: 3px solid #151515; }
      table thead tr:not(:only-child):first-child th {
        text-align: center; }
      table thead tr th {
        text-align: left;
        font-size: 12px;
        padding-right: 0.278rem; }
        table thead tr th.number {
          text-align: right; }
    table tbody tr:first-child td {
      padding-top: 10px; }
    table tbody tr.institution {
      font-weight: bold;
      cursor: pointer; }
    table tbody tr.selected td {
      background-color: #e6e6e6; }
    table tbody tr td {
      padding: 5px 0;
      padding-right: 0.278rem; }
      table tbody tr td button {
        border: none !important;
        background-color: transparent !important;
        width: 14px !important;
        height: 14px !important;
        padding: 0 !important;
        margin: 0 !important; }
      table tbody tr td.number {
        text-align: right; }
      table tbody tr td.remove {
        padding-left: 25px;
        width: 14px; }
      table tbody tr td span {
        -ms-word-wrap: break-word;
        word-wrap: break-word; }
        table tbody tr td span .subHead {
          font-weight: bold; }
  .glossary-full {
    width: 100%;
    max-width: 960px; }
    .glossary-full h1 {
      height: 70px;
      margin: 0;
      background-color: #00642D;
      color: #fff;
      font-size: 1.444rem;
      font-weight: bold;
      padding: 20px 0 10px 25px; }
    .glossary-full .padding-container {
      padding: 25px; }
    .glossary-full .instructions {
      margin: 0;
      font-weight: bold;
      font-size: 1rem;
      color: #00642D; }
    .glossary-full .keyword-search {
      display: inline-block;
      height: 37px; }
    .glossary-full button {
      margin: auto auto;
      height: 37px;
      width: 175px;
      border: 3px solid #007bb6;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 0.944rem;
      color: #007bb6;
      background-color: #fff;
      border-radius: 45px;
      text-align: center;
      padding: 0; }
    .glossary-full .search {
      margin-left: 25px; }
    .glossary-full .term-label {
      font-weight: bold;
      font-size: 0.889rem;
      color: #151515;
      text-transform: uppercase;
      margin: 0;
      margin-top: 25px; }
    .glossary-full .alphabet {
      list-style: none;
      margin: 0;
      padding: 0;
      margin-top: 10px;
      margin-bottom: 25px; }
      .glossary-full .alphabet li {
        display: inline-block;
        margin-right: 15px;
        font-size: 1rem;
        color: #151515; }
        .glossary-full .alphabet li a {
          text-decoration: underline;
          color: #151515; }
          .glossary-full .alphabet li a.selectedLetter {
            font-weight: bold;
            text-decoration: none; }
    .glossary-full hr {
      border: none;
      margin: 0; }
      .glossary-full hr.thick {
        height: 2px;
        color: #151515;
        background-color: #151515; }
    .glossary-full .definitions {
      margin-top: 15px;
      max-height: 300px;
      font-size: 0.778rem;
      color: #151515;
      overflow: auto; }
      .glossary-full .definitions dl {
        margin-top: 0;
        margin-bottom: 15px;
        padding: 0; }
      .glossary-full .definitions dt {
        padding: 0; }
      .glossary-full .definitions dfn {
        font-weight: bold;
        padding: 0; }
      .glossary-full .definitions dd {
        padding: 0;
        margin: 0; }
  .ngdialog.ngdialog-theme-default .ngdialog-content {
    width: 100%;
    max-width: 960px;
    overflow: hidden; }
    .ngdialog.ngdialog-theme-default .ngdialog-content .loading {
      padding-top: 23px;
      /*padding-bottom: 50px;*/ }
  /* The starting CSS styles for the enter animation */
  .view.ng-enter {
    transition: 0.2s linear all;
    opacity: 0; }
  /* The finishing CSS styles for the enter animation */
  .view.ng-enter.ng-enter-active {
    opacity: 1; }
  /* now the element will fade out before it is removed from the DOM */ }

@media (min-width: 1017px) {
  #campus-header-campusname {
    display: none; }
  #printbuttonsvg {
    transition: 0.5s; }
  a:hover #printbuttonsvg {
    fill: #007bb6; }
  .print-buttons {
    z-index: 99999;
    width: 100%;
    text-align: center;
    background: #444;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5); } }
  @media print and (min-width: 1017px) {
    .print-buttons {
      display: none; } }

@media (min-width: 1017px) {
  .print-buttons button {
    margin: 0px 2px 0px 2px;
    border: none;
    background: #444;
    text-decoration: underline;
    color: #98D0EA;
    font-family: Roboto;
    font-size: 14px; } }
  @media print and (min-width: 1017px) {
    .print-buttons button {
      display: none; } }

@media (min-width: 1017px) {
  .groupbreak {
    page-break-after: always; }
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em; }
  a {
    color: #151515; }
    a:visited {
      color: #151515; }
    a:hover {
      color: #151515; }
  .input {
    width: 15px;
    height: 15px; }
  #wrap {
    min-height: 100%; }
  .css-content {
    overflow: auto;
    padding-bottom: 100px; }
  [ng-click] {
    cursor: pointer; }
  address {
    font-style: normal;
    letter-spacing: 0.04em; }
  button {
    letter-spacing: 0.04em; }
    button:disabled {
      border: 2px solid #cdcdcd !important;
      color: #cdcdcd !important; }
    button:focus {
      outline: 1px dotted #ccc; }
    button:hover {
      cursor: pointer; }
  .center {
    margin: 0 auto; }
  .isSticky {
    padding: 13px 0 13px 0; }
  .title {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 2rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 11px;
    display: inline-block; }
  .step-one {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 1.444rem;
    color: #151515;
    display: inline-block;
    margin-top: 39px;
    margin-bottom: 31px;
    width: 100%; }
  .step-one a {
    float: right; }
  .continue-button {
    width: 1000px;
    margin: 35px auto 80px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    z-index: 0; }
    .continue-button.isSticky {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      margin: 0;
      transition: bottom 1s ease, background 0s ease; }
      .continue-button.isSticky button {
        background-color: rgba(255, 255, 255, 0.95); }
    .continue-button.notSticky {
      background: #151515;
      bottom: -63px;
      z-index: 1; }
    .continue-button button {
      margin: auto auto;
      height: 43px;
      width: 175px;
      border: 2px solid #007bb6;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 0.944rem;
      color: #007bb6;
      background-color: #fff;
      border-radius: 45px;
      text-align: center;
      padding: 0; }
      .continue-button button:first-of-type {
        margin-right: 15px; }
      .continue-button button.back, .continue-button button.add {
        margin-right: 15px; }
      .continue-button button:disabled {
        border: 2px solid #cdcdcd;
        color: #cdcdcd; }
  i {
    font-style: normal;
    display: inline-block;
    background-repeat: no-repeat;
    letter-spacing: 0.0625em; }
    i.is-fav {
      background-image: url("../images/icon_favorite_select.png"); }
    i.not-fav {
      background-image: url("../images/icon_favorite_notselect.png"); }
  .header {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1000; }
    .header .center {
      max-width: 1200px; }
    .header p {
      border: none;
      margin: 0;
      padding: 0;
      letter-spacing: 0.0625em; }
    .header .home-link {
      display: inline-block;
      height: 44px;
      width: 260px; }
    .header .first-header-row {
      background-color: #002913;
      background-color: rgba(0, 41, 19, 0.9);
      color: #fff;
      height: 27px; }
    .header .second-header-row {
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      color: #fff;
      height: 66px;
      padding-top: 19px; }
      .header .second-header-row nav {
        float: right;
        margin: 0;
        text-align: right;
        padding-bottom: 0.1px; }
        .header .second-header-row nav button {
          background: none;
          margin: 0;
          margin-right: 10px;
          padding: 0;
          border: none;
          height: 59px;
          width: 60px;
          margin-top: -5px;
          margin-bottom: 5px; }
          .header .second-header-row nav button:last-of-type {
            margin-right: 0; }
          .header .second-header-row nav button.selected {
            background-color: #002913;
            background-color: rgba(0, 41, 19, 0.9); }
    .header .header-menu {
      z-index: 100;
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      list-style: none;
      padding: 0;
      margin: 0;
      margin-top: 7px; }
      .header .header-menu li {
        margin: 0 0 0 0;
        /*padding: 8px 16px;*/
        text-align: left; }
        .header .header-menu li:hover {
          background-color: #002913;
          background-color: rgba(0, 41, 19, 0.9); }
        .header .header-menu li.active {
          background-color: #00642D;
          background-color: transparent; }
          .header .header-menu li.active a {
            color: rgba(255, 255, 255, 0.3);
            cursor: default; }
      .header .header-menu a {
        font-size: 1rem;
        font-weight: bold;
        font-family: "Roboto", sans-serif;
        text-decoration: none;
        color: #fff;
        display: block;
        padding: 8px 16px;
        cursor: pointer; }
    .header .header-favs {
      z-index: 100;
      background-color: #00642D;
      background-color: rgba(0, 100, 45, 0.9);
      list-style: none;
      padding: 0;
      /*padding-bottom: 10px;*/
      margin: 0;
      margin-top: 7px;
      margin-right: 69px;
      /*outline: 1px solid#fff;*/
      max-height: 220px;
      overflow-y: auto;
      max-width: 700px;
      /*Custom Scroll bar*/ }
      .header .header-favs::-webkit-scrollbar {
        width: 12px;
        padding: 2px 5px 2px 0px; }
      .header .header-favs::-webkit-scrollbar-track {
        background-color: #eaeaea;
        border-left: 1px solid #ccc; }
      .header .header-favs::-webkit-scrollbar-thumb {
        background-color: #ccc; }
      .header .header-favs::-webkit-scrollbar-thumb:hover {
        background-color: #aaa; }
      .header .header-favs li {
        margin: 0 0 0 0;
        padding: 8px 16px; }
        .header .header-favs li:hover {
          background-color: #002913;
          background-color: rgba(0, 41, 19, 0.9); }
      .header .header-favs a, .header .header-favs p {
        font-size: 0.833rem;
        font-weight: bold;
        font-family: "Roboto", sans-serif;
        text-decoration: none;
        color: #fff;
        letter-spacing: 0.0625em; }
  .footer {
    position: relative;
    margin-top: -100px;
    height: 100px;
    background-color: #151515;
    font-family: "Roboto", sans-serif;
    z-index: 10; }
    .footer .center {
      max-width: 1200px; }
    .footer .upper {
      text-align: justify;
      -ms-text-align-last: justify;
      text-align-last: justify; }
    .footer .lower {
      text-align: justify;
      -ms-text-align-last: justify;
      text-align-last: justify; }
      .footer .lower a {
        font-size: 13px;
        font-weight: bold; }
    .footer a {
      display: inline-block;
      margin-top: 25px;
      font-size: 0.667rem;
      color: #fff;
      text-decoration: none;
      letter-spacing: 0.0625em; }
    .footer a:hover {
      text-decoration: underline; }
  .homepage .center {
    max-width: 1000px; }
  .homepage .top-section {
    padding-top: 138px;
    background-color: #eaeaeb;
    background-image: url("../images/bg_1920by836_eada.jpg");
    background-image: url("../images/bg_1920by836_eada.jpg"), linear-gradient(#333, #000);
    background-repeat: no-repeat, repeat-x;
    background-position: top center, top left;
    background-size: auto, auto 836px;
    background-position-y: -44px,-44px;
    width: 100%;
    padding-bottom: 120px; }
    .homepage .top-section h1 {
      color: #fff;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 3.333rem;
      margin-top: 50px;
      margin-bottom: 77px;
      text-align: center; }
    .homepage .top-section .link-box {
      display: inline-block;
      height: 250px;
      width: 32%;
      max-width: 320px;
      text-decoration: none;
      vertical-align: top;
      color: #fff;
      font-family: "Roboto", sans-serif;
      font-size: 0.7778rem;
      margin: 0;
      padding: 0; }
      .homepage .top-section .link-box h3 {
        font-size: 1.556rem;
        margin: 25px 30px 18px 30px; }
      .homepage .top-section .link-box hr {
        width: 28%;
        margin-left: 30px;
        border: none;
        border-bottom: 1px solid #fff; }
      .homepage .top-section .link-box p {
        margin: 24px 37px 20px 30px; }
      .homepage .top-section .link-box.institution {
        background-color: #369;
        margin-right: 20px; }
      .homepage .top-section .link-box.compare {
        background-color: #cc672f;
        margin-right: 20px; }
      .homepage .top-section .link-box.custom {
        background-color: #01b7bd; }
      .homepage .top-section .link-box.trend {
        width: calc(64% + 20px);
        max-width: 660px;
        margin-right: 20px;
        margin-top: 20px;
        background-color: #2a455f; }
        .homepage .top-section .link-box.trend h3 {
          font-size: 1.556rem;
          margin: 25px 30px 18px 30px; }
        .homepage .top-section .link-box.trend hr {
          width: 66%; }
        .homepage .top-section .link-box.trend p {
          margin: 24px 70px 20px 30px; }
      .homepage .top-section .link-box.download {
        background-color: #a9a543;
        margin-top: 20px; }
    .homepage .top-section h2 {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      text-align: center;
      margin-top: 95px;
      margin-bottom: 35px;
      color: #00642D;
      font-size: 2.111rem; }
    .homepage .top-section .description {
      text-align: center;
      margin: 0 90px;
      font-size: 1rem;
      line-height: 1.7rem;
      font-family: "Roboto", sans-serif;
      color: #151515; }
  .homepage .bottom-section {
    text-align: center;
    margin-bottom: 120px; }
    .homepage .bottom-section h2 {
      margin-top: 95px;
      margin-bottom: 35px;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      text-align: center;
      color: #00642D;
      font-size: 2rem; }
    .homepage .bottom-section .button {
      text-decoration: none;
      display: block;
      width: 432px;
      border-radius: 83px;
      border: 3px solid #00642D;
      text-align: center;
      margin: 0 auto;
      margin-bottom: 25px;
      padding-top: 17.5px;
      padding-bottom: 17.5px;
      font-family: "Roboto", sans-serif;
      font-size: 1rem;
      color: #00642D; }
      .homepage .bottom-section .button strong {
        font-family: "Roboto", sans-serif;
        font-size: 1rem;
        display: inline-block;
        margin-bottom: 2px; }
  .help-page {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto,auto 244px;
    padding-top: 190px;
    font-size: 0.889rem;
    color: #151515; }
    .help-page a {
      color: #151515; }
    .help-page .colored-text {
      color: #1f88bd; }
    .help-page .first-header {
      margin-top: 50px; }
    .help-page p {
      margin-top: 0; }
    .help-page h2 {
      font-weight: bold;
      font-size: 1.222rem;
      margin: 35px 0 8px 0; }
    .help-page .center {
      max-width: 1000px; }
    .help-page .title {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 2rem;
      color: #fff;
      margin-top: 0;
      margin-bottom: 11px;
      display: inline-block; }
    .help-page .step-one {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.444em;
      color: #151515;
      display: inline-block;
      margin-top: 49px;
      margin-bottom: 40px; }
    .help-page .continue-button button {
      width: 225px;
      padding-left: 25px;
      padding-right: 25px; }
  .institution-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto, auto 244px;
    padding-top: 190px; }
    .institution-search .center {
      max-width: 1000px; }
  .institution-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto, auto 244px;
    padding-top: 190px; }
    .institution-list .center {
      max-width: 1000px; }
    .institution-list .sticky-class {
      width: 1000px;
      background-color: #efefef;
      margin: 50px auto;
      padding-top: 10px;
      padding-bottom: 10px;
      text-align: center; }
    .institution-list .sticky-bottom-class {
      background-color: none; }
  .institution-details {
    z-index: 99;
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto, auto 244px;
    padding-top: 190px; }
    .institution-details .center {
      max-width: 1200px; }
    .institution-details .agg-warning {
      margin: 0;
      font-size: 0.889rem;
      font-weight: normal; }
  .compare-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto, auto 244px;
    padding-top: 190px; }
    .compare-search .center {
      max-width: 1000px; }
  .compare-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto, auto 244px;
    padding-top: 190px;
    /*padding-bottom: 143px;*/ }
    .compare-list .center {
      max-width: 1000px; }
    .compare-list table thead tr th:first-child {
      padding-left: 0; }
    .compare-list table tbody tr td:first-child {
      padding-left: 0; }
  .compare-confirm {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto, auto 244px;
    padding-top: 190px; }
    .compare-confirm .center {
      max-width: 1000px; }
    .compare-confirm p {
      margin-top: 0; }
    .compare-confirm table .opeid {
      text-align: right;
      padding-right: 15px; }
    .compare-confirm table .checkbox-cell {
      max-width: 17px;
      padding-left: 0; }
      .compare-confirm table .checkbox-cell input {
        height: 15px;
        width: 15px; }
    .compare-confirm table tr:first-child td {
      padding-top: 15px; }
    .compare-confirm table th.max-width, .compare-confirm table td.max-width {
      width: 50%; }
    .compare-confirm .compare-list-container {
      position: relative; }
      .compare-confirm .compare-list-container select {
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        height: 39px;
        border: 1px solid #ccc;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        background-image: url("../images/icon_dropdown.png");
        padding-right: 27px;
        padding-left: 5px;
        background-repeat: no-repeat;
        background-position: right 10px center;
        font-weight: bold;
        font-size: 0.889rem;
        color: #151515; }
        .compare-confirm .compare-list-container select::-ms-expand {
          display: none; }
      .compare-confirm .compare-list-container table {
        margin-top: 40px; }
  .compare-details {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto, auto 244px;
    padding-top: 190px; }
    .compare-details .center {
      max-width: 1200px; }
    .compare-details p {
      margin-top: 0;
      font-size: 0.944rem; }
    .compare-details .selectNumberFormat {
      margin-top: 40px;
      height: 47px;
      margin-bottom: 30px;
      font-size: 0.889rem;
      color: #151515;
      background-color: #e1e1e1;
      vertical-align: middle;
      line-height: 47px;
      padding-right: 15px; }
      .compare-details .selectNumberFormat label {
        margin-left: 10px; }
        .compare-details .selectNumberFormat label span {
          font-size: 17px; }
        .compare-details .selectNumberFormat label:first-of-type {
          margin-right: 20px; }
  .customdata-search {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto, auto 244px;
    padding-top: 190px; }
    .customdata-search .center {
      max-width: 1000px; }
  .customdata-list {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto, auto 244px;
    padding-top: 190px; }
    .customdata-list .center {
      max-width: 1000px; }
    .customdata-list table thead tr th:first-child {
      padding-left: 0; }
    .customdata-list table tbody tr td:first-child {
      padding-left: 0; }
    .customdata-list .shared-list .continue-with-all {
      border: 2px solid #007bb6;
      border-radius: 2px;
      text-align: center;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 15px;
      color: #007bb6;
      margin: 0;
      padding: 10px 10px;
      background-color: #fff;
      margin-left: 10px; }
  .customdata-details {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto, auto 244px;
    padding-top: 190px; }
    .customdata-details hr.thin {
      margin-bottom: 0;
      border-style: solid;
      border-top-width: 0px;
      border-color: #ccc; }
    .customdata-details hr.thick {
      margin-bottom: 0;
      border-style: solid;
      border-top-width: 1px;
      border-color: #000; }
    .customdata-details .center {
      max-width: 1200px; }
    .customdata-details p {
      margin-top: 0; }
    .customdata-details .customdata-details-desc {
      font-size: 16px;
      margin-bottom: 0px; }
    .customdata-details h3 {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 22px;
      color: #007bb6;
      margin-top: 0;
      /*margin-top: 25px;*/
      margin-bottom: 25px;
      display: inline-block; }
    .customdata-details .warning {
      color: #cc0000; }
    .customdata-details .institutions {
      font-family: "Roboto", sans-serif;
      font-size: 1rem;
      color: #007bb6; }
      .customdata-details .institutions li {
        font-family: "Roboto", sans-serif;
        font-weight: bold;
        font-size: 1.222rem;
        color: #007bb6;
        margin-top: 0;
        margin-bottom: 10px;
        display: inline-block; }
      .customdata-details .institutions .name {
        font-size: 1.111rem;
        font-weight: bold; }
      .customdata-details .institutions .enroll {
        background-image: url("../images/icon_enrollment.png");
        background-size: 18px;
        display: inline-block;
        height: 18px;
        width: 24px;
        vertical-align: text-bottom; }
    .customdata-details .top-select {
      min-width: 176px !important; }
    .customdata-details .category-select {
      margin-bottom: 5px; }
    .customdata-details .customHeader {
      font-size: 1.222rem;
      font-weight: bold;
      color: #00632D;
      margin: 30px 0px 15px 0px;
      text-transform: uppercase; }
      .customdata-details .customHeader span {
        color: #000000; }
    .customdata-details .select-all {
      font-size: 0.667rem;
      font-weight: bold;
      color: #151515;
      display: inline-block;
      min-width: 92px;
      line-height: 1rem;
      vertical-align: middle;
      background-color: #ccc;
      padding: 6px 9px 4px 9px;
      margin-top: 25px;
      margin-bottom: 15px; }
      .customdata-details .select-all input {
        vertical-align: middle;
        position: relative;
        bottom: 1px;
        width: 15px;
        height: 15px; }
    .customdata-details ul {
      padding-top: 0.1px;
      padding-left: 0;
      list-style: none;
      margin: 0; }
    .customdata-details .category-list {
      border-top: 2px solid #151515;
      padding-bottom: 10px; }
    .customdata-details .years {
      margin-bottom: 15px; }
      .customdata-details .years li {
        display: inline-block;
        width: 70px;
        margin-right: 8%;
        font-size: 1rem;
        position: relative;
        margin-bottom: 5px; }
        .customdata-details .years li:last-child {
          margin-right: 0; }
        .customdata-details .years li label input {
          width: 15px;
          height: 15px; }
        .customdata-details .years li label span {
          position: absolute;
          top: 0px; }
    .customdata-details .link-button {
      font-family: "Roboto", sans-serif;
      border: 0;
      background: 0;
      font-size: inherit;
      font-weight: normal; }
    .customdata-details .screen {
      padding-top: 0.1px;
      padding-bottom: 0.1px; }
      .customdata-details .screen h5 {
        font-size: 1rem;
        font-weight: bold;
        margin: 9px 0px 16px 0px; }
      .customdata-details .screen i {
        display: inline-block;
        height: 14px;
        width: 14px;
        /*margin-right: 10px;*/ }
      .customdata-details .screen .open {
        color: #007bb6; }
        .customdata-details .screen .open i {
          padding-right: 10px;
          padding-top: 10px;
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .customdata-details .screen .closed i {
        padding-right: 10px;
        padding-top: 10px;
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
      .customdata-details .screen ul {
        padding-left: 24px;
        margin-bottom: 20px;
        margin-top: 12px; }
        .customdata-details .screen ul input[type='checkbox'] {
          margin-left: 0;
          width: 15px;
          height: 15px; }
        .customdata-details .screen ul li {
          position: relative; }
          .customdata-details .screen ul li .select-all {
            margin-top: 20px;
            margin-bottom: 13px;
            background-color: #ededed; }
          .customdata-details .screen ul li .groupItemName {
            font-size: 15px; }
            .customdata-details .screen ul li .groupItemName .warning {
              position: relative;
              color: #00632D; }
            .customdata-details .screen ul li .groupItemName span {
              position: absolute;
              top: 2px; }
          .customdata-details .screen ul li label select {
            height: 39px;
            border: 1px solid #ccc;
            -moz-appearance: none;
            -webkit-appearance: none;
            appearance: none;
            background-image: url("../images/icon_dropdown.png");
            padding-right: 27px;
            padding-left: 5px;
            background-repeat: no-repeat;
            background-position: right 10px center;
            font-weight: bold;
            font-size: 0.889rem;
            color: #151515;
            margin-top: 10px;
            width: 300px; }
            .customdata-details .screen ul li label select::-ms-expand {
              display: none; }
  .download-data {
    background-image: url("../images/bg_1920by244_eada.jpg");
    background-image: url("../images/bg_1920by244_eada.jpg"), linear-gradient(#333, #000);
    background-position: top center, top center;
    background-repeat: no-repeat, repeat-x;
    background-size: auto, auto 244px;
    padding-top: 190px; }
    .download-data .center {
      max-width: 1200px; }
    .download-data p {
      margin-top: 0;
      font-size: 0.886rem;
      margin-bottom: 0px; }
    .download-data ul {
      padding-left: 0;
      list-style: none;
      margin: 0; }
    .download-data .years, .download-data .data-types {
      text-align: justify;
      -ms-text-align-last: justify;
      text-align-last: justify;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .download-data .years li, .download-data .data-types li {
        display: inline-block;
        text-align: justify;
        width: 70px;
        -ms-text-align-last: justify;
        text-align-last: justify;
        margin-right: 8%;
        position: relative;
        margin-bottom: 5px; }
        .download-data .years li:last-child, .download-data .data-types li:last-child {
          margin-right: 0; }
        .download-data .years li label, .download-data .data-types li label {
          position: relative; }
          .download-data .years li label input, .download-data .data-types li label input {
            width: 15px;
            height: 15px; }
          .download-data .years li label span, .download-data .data-types li label span {
            position: absolute; }
    .download-data .data-types {
      display: block;
      margin-bottom: 50px; }
      .download-data .data-types li + li {
        padding-left: 10px; }
    .download-data .file-list {
      margin-bottom: 30px; }
      .download-data .file-list li {
        margin: 15px 0;
        font-family: "Roboto", sans-serif;
        font-size: 0.833rem;
        color: #151515; }
        .download-data .file-list li span {
          font-weight: bold;
          font-size: 1rem; }
        .download-data .file-list li a {
          text-decoration: underline;
          font-size: 0.889rem;
          color: #151515; }
    .download-data hr {
      border: none; }
      .download-data hr.thin {
        height: 1px;
        color: #ccc;
        background-color: #ccc;
        margin: 15px 0; }
      .download-data hr.thick {
        height: 2px;
        color: #151515;
        background-color: #151515; }
      .download-data hr.dotted {
        height: 1px;
        color: #ccc;
        background-color: #ccc; }
    .download-data section {
      padding: 0.1px;
      margin-top: 0;
      margin-bottom: 5px; }
      .download-data section h3 {
        margin: 2px 0px 5px 0px; }
      .download-data section:last-child {
        margin-bottom: 50px; }
    .download-data .top-select {
      min-width: 176px !important; }
    .download-data .select-all {
      font-size: 0.667rem;
      font-weight: bold;
      color: #151515;
      display: inline-block;
      min-width: 100px;
      line-height: 1rem;
      vertical-align: middle;
      background-color: #ccc;
      padding: 6px 9px 4px 9px;
      margin-top: 35px;
      margin-bottom: 15px; }
      .download-data .select-all input {
        vertical-align: middle;
        position: relative;
        bottom: 1px;
        width: 15px;
        height: 15px; }
    .download-data .second-select-all {
      margin-top: 30px; }
  .shared-search button {
    border: 2px solid #333;
    border-radius: 2px;
    width: 141px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.944rem;
    color: #151515;
    margin: 0;
    padding: 13px 0;
    margin-bottom: 35px;
    background-color: #fff; }
  .shared-search .selected {
    background-color: #007bb6;
    border: 2px solid #007bb6;
    color: #fff; }
  .shared-search .search {
    margin-right: 20px; }
  .shared-search .favorites {
    margin-right: 20px; }
  .shared-search input[type='text'] {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #007bb6;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.944rem;
    letter-spacing: 0.04em;
    padding: 0; }
  .shared-search .dropdown-menu {
    box-sizing: border-box;
    margin-top: 0;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    max-width: 470px;
    width: 47%;
    padding: 0 0;
    margin: 0 0 0 0;
    list-style: none;
    font-size: 0.778rem;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    color: #151515; }
    .shared-search .dropdown-menu li.active {
      background-color: #007bb6; }
      .shared-search .dropdown-menu li.active a {
        color: #fff; }
    .shared-search .dropdown-menu > li > a {
      display: block;
      padding: 3px 11px;
      clear: both;
      font-weight: normal;
      line-height: 1.846;
      color: #151515;
      white-space: nowrap;
      transition: all 0.2s;
      text-decoration: none;
      background-color: transparent;
      overflow: hidden; }
  .shared-search .selectbox button {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 0.944rem;
    text-align: left;
    background-color: #fff;
    margin-bottom: 0;
    position: relative; }
    .shared-search .selectbox button i {
      display: inline-block;
      position: absolute;
      height: 14px;
      width: 8px;
      background-image: url("../images/icon_pointtoright_notselect.png");
      background-repeat: no-repeat;
      right: 15px;
      top: 18px; }
      .shared-search .selectbox button i.badge-counter {
        background-image: none;
        background: none;
        background-color: #007bb6;
        border-radius: 50%;
        color: #fff;
        top: 12px;
        right: 35px;
        width: 26px;
        height: 26px;
        text-align: center;
        line-height: 26px;
        padding-left: 1px;
        font-size: .7rem; }
    .shared-search .selectbox button.selected {
      color: #007bb6;
      font-weight: bold; }
      .shared-search .selectbox button.selected i {
        background-image: url("../images/icon_pointtoright_select.png"); }
        .shared-search .selectbox button.selected i.badge-counter {
          background-image: none; }
  .shared-search .selectbox label {
    display: block;
    width: 100%;
    height: 20px;
    border: none;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 0.778rem;
    text-align: left;
    background-color: #fff;
    margin-bottom: 0;
    vertical-align: bottom;
    padding-top: 20px; }
    .shared-search .selectbox label input {
      margin-left: 0; }
  .shared-search .show-border {
    outline: 1px solid #ccc; }
  .shared-search .search-left {
    margin: 0;
    padding: 0;
    width: 47%;
    margin-right: 5%;
    display: inline-block;
    max-height: 405px;
    vertical-align: top; }
    .shared-search .search-left input[type="checkbox"] {
      height: 13px;
      width: 13px;
      display: inline-block;
      vertical-align: top; }
    .shared-search .search-left .loading-names {
      width: 10%;
      text-align: center;
      position: absolute;
      top: calc(50%);
      left: calc(50%); }
    .shared-search .search-left span {
      display: inline-block;
      width: calc(100% - 7px - 13px);
      margin: 0;
      margin-top: 2px; }
  .shared-search .search-right {
    margin: 0;
    padding: 0;
    width: 47%;
    display: inline-block;
    height: 388px;
    overflow: auto; }
    .shared-search .search-right button {
      margin: 0;
      padding: 0;
      border: 0;
      width: auto; }
      .shared-search .search-right button:hover {
        text-decoration: underline;
        color: #007bb6; }
      .shared-search .search-right button:first-child {
        margin-left: 10px;
        margin-right: 10px; }
    .shared-search .search-right span {
      display: block;
      margin-left: 10px;
      margin-bottom: 11px; }
    .shared-search .search-right div label {
      display: block;
      margin-left: 10px;
      margin-bottom: 11px;
      font-size: 0.833rem;
      vertical-align: top; }
      .shared-search .search-right div label input[type="checkbox"] {
        height: 15px;
        width: 15px;
        margin: 3px 3px 3px 4px;
        display: inline-block;
        vertical-align: top; }
      .shared-search .search-right div label span {
        display: inline-block;
        width: calc(100% - 7px - 15px - 6px);
        margin: 0;
        margin-top: 2px; }
    .shared-search .search-right .initial-right {
      padding-top: 30px; }
      .shared-search .search-right .initial-right img {
        display: block;
        margin: 0 auto; }
      .shared-search .search-right .initial-right .search-note-header {
        font-size: 1.8rem;
        font-style: normal;
        text-align: center;
        width: 70%;
        margin-left: 14%;
        padding-top: 5%; }
      .shared-search .search-right .initial-right .search-note {
        font-size: 1rem;
        line-height: 1.5rem;
        font-style: normal;
        text-align: center;
        width: 60%;
        margin-left: 19%;
        padding-top: 3%; }
    .shared-search .search-right .select-all {
      background-color: #e6e6e6;
      color: #151515;
      font-weight: bold;
      display: block;
      width: 100%;
      line-height: 19px;
      height: 38px;
      vertical-align: middle;
      margin-bottom: 11px;
      padding-top: 0.1px; }
      .shared-search .search-right .select-all label {
        margin-top: 9px;
        font-size: 0.8rem;
        vertical-align: middle;
        line-height: 1rem; }
      .shared-search .search-right .select-all input[type="checkbox"] {
        vertical-align: top; }
  .shared-search .selected-filters {
    list-style: none;
    padding: 0;
    margin: 0; }
  .shared-search .all-selected {
    color: #007bb6;
    font-size: 1.222rem;
    font-weight: bold; }
  .shared-search .table-container {
    padding-top: 0.1px;
    padding-bottom: 0.1px; }
  .shared-search table {
    margin-top: 10px;
    margin-bottom: 20px; }
    .shared-search table.empty {
      margin-bottom: 136px; }
    .shared-search table .selected {
      border: none;
      color: #151515; }
    .shared-search table tbody {
      /*min-height: 130px;*/ }
      .shared-search table tbody tr td {
        padding: 7px 0; }
    .shared-search table .opeid {
      padding-right: 20px; }
    .shared-search table th.remove {
      padding-left: 20px; }
    .shared-search table td.remove {
      text-align: right; }
  .shared-list {
    position: relative; }
    .shared-list h3 {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1.222rem;
      color: #007bb6;
      margin-top: 0;
      margin-bottom: 10px;
      display: inline-block; }
    .shared-list input[type="checkbox"] {
      height: 15px;
      width: 15px;
      color: #007bb6; }
    .shared-list .filter-header {
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1rem;
      color: #151515;
      margin: 10px 0;
      display: block;
      height: calc( 40px - 22px);
      padding-top: 8px;
      padding-bottom: 11px;
      padding-left: 0;
      background-color: #e1e1e1;
      vertical-align: middle; }
      .shared-list .filter-header h4 {
        margin: 0;
        display: inline-block;
        font-weight: normal;
        text-align: left; }
      .shared-list .filter-header i {
        display: inline-block;
        height: 14px;
        width: 14px;
        margin-right: 7px;
        margin-left: 17px; }
      .shared-list .filter-header.open {
        color: #fff;
        background-color: #707070;
        margin-bottom: 0; }
        .shared-list .filter-header.open i {
          background-image: url("../images/icon_close_white.png"); }
        .shared-list .filter-header.open .selectAll {
          color: #fff; }
      .shared-list .filter-header.closed i {
        background-image: url("../images/icon_open.png"); }
      .shared-list .filter-header .selectAll {
        border: 0;
        background: 0;
        text-decoration: underline;
        color: #151515;
        font-size: 0.778rem;
        display: inline-block;
        text-align: right;
        position: absolute;
        right: 10px; }
    .shared-list div {
      padding: 0.1px 20px 17px 17px;
      color: #151515;
      background-color: #e1e1e1;
      font-size: 13px;
      margin-bottom: 20px; }
      .shared-list div p {
        margin: 17px 0 17px 0;
        font-weight: normal; }
        .shared-list div p .filter-body {
          display: inline-block; }
          .shared-list div p .filter-body.name, .shared-list div p .filter-body.city, .shared-list div p .filter-body.enrollement, .shared-list div p .filter-body.state, .shared-list div p .filter-body.classification, .shared-list div p .filter-body.country, .shared-list div p .filter-body.program, .shared-list div p .filter-body.type, .shared-list div p .filter-body.conference, .shared-list div p .filter-body.international {
            width: calc( 100% - 158px - 4px); }
        .shared-list div p .filter-head {
          font-weight: bold;
          display: inline-block;
          vertical-align: top;
          margin-right: 4px; }
          .shared-list div p .filter-head.name, .shared-list div p .filter-head.city, .shared-list div p .filter-head.enrollement, .shared-list div p .filter-head.state, .shared-list div p .filter-head.classification, .shared-list div p .filter-head.country, .shared-list div p .filter-head.program, .shared-list div p .filter-head.type, .shared-list div p .filter-head.conference, .shared-list div p .filter-head.international {
            width: 158px; }
        .shared-list div p:last-of-type {
          margin-bottom: 0; }
    .shared-list p {
      margin-top: 0; }
    .shared-list ul {
      margin-top: 50px !important; }
      .shared-list ul.pagination {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        font-size: 0.889rem;
        font-family: "Roboto", sans-serif;
        font-weight: normal;
        color: #151515;
        width: 600px;
        text-align: center; }
        .shared-list ul.pagination li {
          display: inline-block;
          width: 35px; }
          .shared-list ul.pagination li.pagination-first, .shared-list ul.pagination li.pagination-prev, .shared-list ul.pagination li.pagination-next, .shared-list ul.pagination li.pagination-last {
            font-size: 1.167rem; }
            .shared-list ul.pagination li.pagination-first a, .shared-list ul.pagination li.pagination-prev a, .shared-list ul.pagination li.pagination-next a, .shared-list ul.pagination li.pagination-last a {
              text-decoration: none; }
          .shared-list ul.pagination li a {
            color: #151515; }
          .shared-list ul.pagination li.active a {
            cursor: default;
            text-decoration: none;
            color: #007bb6;
            font-weight: bold; }
    .shared-list .results-header {
      position: relative;
      background-color: #ffffff;
      padding-left: 0;
      padding-top: 0;
      padding-bottom: 0;
      width: 100%;
      height: 39px;
      margin-bottom: 28px; }
      .shared-list .results-header select {
        position: absolute;
        display: block;
        top: 0;
        right: 20px;
        height: 39px;
        border: 1px solid #ccc;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        background-image: url("../images/icon_dropdown.png");
        padding-right: 27px;
        padding-left: 5px;
        background-repeat: no-repeat;
        background-position: right 10px center;
        font-weight: bold;
        font-size: 0.889rem;
        color: #151515; }
        .shared-list .results-header select.ie9 {
          background-image: none;
          padding-right: 0; }
        .shared-list .results-header select::-ms-expand {
          display: none; }
      .shared-list .results-header span {
        font-size: 0.889rem;
        position: absolute;
        bottom: 0; }
    .shared-list table .checkbox-cell {
      width: 17px; }
    .shared-list table .opeid {
      padding-right: 15px; }
    .shared-list table thead tr {
      border-width: 2px; }
      .shared-list table thead tr th.checkbox-cell input {
        margin-top: 0;
        margin-bottom: 0; }
    .shared-list table tbody tr:first-child td {
      padding-top: 8px; }
    .shared-list table tbody tr td.fav-column {
      text-align: right;
      padding-right: 8px; }
    .shared-list table tbody tr td:last-child {
      padding-left: 10px; }
    .shared-list .favorite {
      display: inline-block;
      height: 20px;
      width: 20px;
      background-image: url("../images/icon_favorite2_notselect.png"); }
      .shared-list .favorite.is-Fav {
        background-image: url("../images/icon_favorite2_select.png"); }
  .institution-details-head {
    margin-top: 10px; }
    .institution-details-head h3 {
      font-family: "Roboto", sans-serif;
      margin-top: 0;
      margin-bottom: 15px;
      font-weight: bold;
      font-size: 1.667rem;
      color: #007bb6;
      border-bottom: 2px solid #007bb6;
      position: relative;
      padding-right: 250px; }
      .institution-details-head h3 i {
        position: absolute;
        right: 0;
        cursor: pointer;
        height: 31px;
        width: 31px; }
      .institution-details-head h3 span {
        position: absolute;
        right: 40px;
        bottom: 0;
        font-size: 25px; }
        .institution-details-head h3 span.no-fav-icon {
          right: 0px; }
    .institution-details-head .address, .institution-details-head .web-address, .institution-details-head .enrollment {
      font-family: "Roboto", sans-serif;
      font-size: 1rem;
      color: #007bb6;
      display: inline-block;
      height: 50px; }
      .institution-details-head .address i, .institution-details-head .web-address i, .institution-details-head .enrollment i {
        margin-right: 5px; }
    .institution-details-head .badges {
      margin-top: 10px;
      font-size: 0.833rem;
      color: #fff;
      min-height: 181px;
      /*width: 100%;*/ }
      .institution-details-head .badges h5 {
        font-size: 0.944rem;
        text-transform: uppercase;
        font-weight: bold;
        margin: 17px 0 10px 0;
        padding: 0;
        padding-bottom: 3px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
        width: calc(100% - 121px); }
      .institution-details-head .badges p {
        margin: 0;
        margin-top: 5px; }
      .institution-details-head .badges address {
        margin: 0;
        display: inline; }
      .institution-details-head .badges section {
        width: calc(49% - 16px);
        margin-right: 10px;
        display: inline-block;
        background-color: #007bb6;
        padding-left: 20px;
        padding-bottom: 14px;
        background-repeat: no-repeat;
        background-position: top 20px right 18px;
        vertical-align: top;
        min-height: 230px;
        /*font-weight: normal;*/ }
        .institution-details-head .badges section:last-child {
          margin-right: 0; }
        .institution-details-head .badges section.general {
          background-image: url("../images/icon_generalinfo.png"); }
        .institution-details-head .badges section.department {
          background-image: url("../images/icon_athleticdept.png");
          margin-right: 0; }
  .institution-details-tabs {
    padding-top: 0.1px;
    margin-top: 25px; }
    .institution-details-tabs ul.nav.nav-tabs {
      margin-top: 0;
      border-bottom: 2px solid #007bb6;
      text-align: justify;
      text-align-last: justify;
      position: relative; }
      .institution-details-tabs ul.nav.nav-tabs li {
        display: inline-block;
        font-weight: bold;
        font-size: 0.889rem;
        text-transform: uppercase;
        color: #999;
        background-color: transparent;
        height: 44px;
        /*min-width: 166px;*/
        margin-bottom: 0 !important;
        border-radius: 5px 5px 0 0;
        padding-left: 30px;
        padding-right: 30px;
        /*&:nth-child(7) {
					position: absolute;
					right: 0px;
				}*/ }
        .institution-details-tabs ul.nav.nav-tabs li a {
          text-align: center;
          color: #999;
          box-shadow: none;
          text-decoration: none; }
          .institution-details-tabs ul.nav.nav-tabs li a:hover {
            color: #007bb6; }
        .institution-details-tabs ul.nav.nav-tabs li.active {
          color: #fff;
          background-color: #007bb6; }
          .institution-details-tabs ul.nav.nav-tabs li.active a {
            color: #fff; }
    .institution-details-tabs .screen {
      padding-top: 0.1px; }
      .institution-details-tabs .screen a {
        border-bottom: 1px dotted;
        text-decoration: none;
        cursor: pointer; }
      .institution-details-tabs .screen:first-child {
        margin-top: 15px; }
      .institution-details-tabs .screen h5 {
        margin: 0;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 16px; }
        .institution-details-tabs .screen h5 i {
          display: inline-block;
          height: 14px;
          width: 14px;
          padding-right: 10px;
          padding-top: 10px; }
      .institution-details-tabs .screen .open {
        color: #007bb6; }
        .institution-details-tabs .screen .open i {
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .institution-details-tabs .screen .closed i {
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
      .institution-details-tabs .screen .caveat-header {
        font-weight: bold; }
      .institution-details-tabs .screen .popover {
        background-color: #464646;
        color: #ffffff;
        max-width: 430px !important; }
        .institution-details-tabs .screen .popover .arrow:after {
          border-right-color: #464646; }
        .institution-details-tabs .screen .popover .popover-inner {
          padding: 8px 5px; }
          .institution-details-tabs .screen .popover .popover-inner .popover-content {
            max-height: 150px;
            overflow-y: auto;
            position: relative; }
            .institution-details-tabs .screen .popover .popover-inner .popover-content::-webkit-scrollbar {
              width: 12px;
              padding: 2px 5px 2px 0px; }
            .institution-details-tabs .screen .popover .popover-inner .popover-content::-webkit-scrollbar-track {
              background-color: #eaeaea;
              border-left: 1px solid #ccc; }
            .institution-details-tabs .screen .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
              background-color: #ccc; }
            .institution-details-tabs .screen .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
              background-color: #aaa; }
      .institution-details-tabs .screen .definition-popover {
        font: "Roboto", sans-serif; }
        .institution-details-tabs .screen .definition-popover .definition-title {
          font-size: 0.778rem;
          font-weight: bold;
          margin-bottom: 5px; }
        .institution-details-tabs .screen .definition-popover .definition-content {
          font-size: 0.722rem; }
          .institution-details-tabs .screen .definition-popover .definition-content table {
            background-color: #464646;
            color: #fff;
            margin: 0; }
            .institution-details-tabs .screen .definition-popover .definition-content table thead {
              font-size: 0.778rem; }
              .institution-details-tabs .screen .definition-popover .definition-content table thead tr {
                background-color: #464646;
                border-bottom: #ffffff; }
                .institution-details-tabs .screen .definition-popover .definition-content table thead tr th {
                  font-weight: bold;
                  font-size: 0.722rem;
                  color: #fff;
                  text-transform: none; }
            .institution-details-tabs .screen .definition-popover .definition-content table tbody {
              font-size: 0.722rem; }
              .institution-details-tabs .screen .definition-popover .definition-content table tbody tr {
                background-color: #464646; }
      .institution-details-tabs .screen table {
        margin-top: 10px;
        width: 100%;
        margin-bottom: 40px; }
        .institution-details-tabs .screen table td:first-child, .institution-details-tabs .screen table th:first-child {
          padding-left: 24px; }
        .institution-details-tabs .screen table thead tr {
          border: none; }
          .institution-details-tabs .screen table thead tr.header-1 th, .institution-details-tabs .screen table thead tr.header-2 th {
            font-size: 0.722rem;
            color: #151515; }
            .institution-details-tabs .screen table thead tr.header-1 th:not(:first-of-type), .institution-details-tabs .screen table thead tr.header-2 th:not(:first-of-type) {
              font-size: 0.722rem;
              font-weight: bold;
              color: #151515; }
          .institution-details-tabs .screen table thead tr.header-1 {
            font-style: italic;
            font-size: 0.889rem; }
            .institution-details-tabs .screen table thead tr.header-1 th:not([rowspan="2"]) {
              border-bottom: solid;
              border-color: #e1e1e1;
              border-width: 1px;
              font-weight: normal; }
            .institution-details-tabs .screen table thead tr.header-1 th[rowspan="2"] {
              font-style: normal;
              font-weight: bold; }
              .institution-details-tabs .screen table thead tr.header-1 th[rowspan="2"].number {
                text-align: right; }
          .institution-details-tabs .screen table thead tr.header-2 {
            font-weight: bold;
            font-size: 0.889rem; }
            .institution-details-tabs .screen table thead tr.header-2 th {
              color: #151515;
              padding: 13px 10px 13px 0; }
              .institution-details-tabs .screen table thead tr.header-2 th:first-child {
                padding-left: 5px; }
          .institution-details-tabs .screen table thead tr th {
            font-size: 0.944rem;
            font-weight: bold;
            color: #151515;
            padding: 5px 10px 10px 0; }
            .institution-details-tabs .screen table thead tr th:not(:first-of-type) {
              font-size: 0.944rem;
              font-weight: bold;
              color: #151515; }
        .institution-details-tabs .screen table tbody tr.header-1 th, .institution-details-tabs .screen table tbody tr.header-2 th {
          font-size: 0.722rem;
          color: #151515;
          background-color: white; }
          .institution-details-tabs .screen table tbody tr.header-1 th:not(:first-of-type), .institution-details-tabs .screen table tbody tr.header-2 th:not(:first-of-type) {
            font-size: 0.722rem;
            font-weight: bold;
            color: #151515; }
        .institution-details-tabs .screen table tbody tr.header-1 {
          font-style: italic;
          font-size: 0.889rem;
          background-color: white; }
          .institution-details-tabs .screen table tbody tr.header-1 th:not([rowspan="2"]) {
            border-bottom: solid;
            border-color: #e1e1e1;
            border-width: 1px;
            font-weight: normal; }
          .institution-details-tabs .screen table tbody tr.header-1 th[rowspan="2"] {
            font-style: normal;
            font-weight: bold; }
            .institution-details-tabs .screen table tbody tr.header-1 th[rowspan="2"].number {
              text-align: right;
              text-transform: uppercase; }
            .institution-details-tabs .screen table tbody tr.header-1 th[rowspan="2"].text {
              text-align: left !important; }
        .institution-details-tabs .screen table tbody tr.header-2 {
          font-weight: bold;
          font-size: 0.889rem;
          background-color: white; }
          .institution-details-tabs .screen table tbody tr.header-2 th {
            color: #151515;
            padding: 13px 10px 13px 0; }
            .institution-details-tabs .screen table tbody tr.header-2 th:first-child {
              padding-left: 24px; }
        .institution-details-tabs .screen table tbody tr th {
          font-size: 0.944rem;
          font-weight: bold;
          color: #151515;
          padding: 5px 10px 10px 0;
          background-color: white; }
          .institution-details-tabs .screen table tbody tr th:not(:first-of-type) {
            font-size: 0.944rem;
            font-weight: bold;
            color: #151515; }
          .institution-details-tabs .screen table tbody tr th.text {
            text-align: center; }
          .institution-details-tabs .screen table tbody tr th.number {
            text-align: right; }
          .institution-details-tabs .screen table tbody tr th.center {
            text-align: center; }
        .institution-details-tabs .screen table tbody tr td {
          padding: 9px 10px 9px 0; }
          .institution-details-tabs .screen table tbody tr td .popover {
            background-color: #464646;
            color: #ffffff;
            max-width: 430px !important; }
            .institution-details-tabs .screen table tbody tr td .popover .arrow:after {
              border-right-color: #464646; }
            .institution-details-tabs .screen table tbody tr td .popover .popover-inner {
              padding: 8px 5px; }
              .institution-details-tabs .screen table tbody tr td .popover .popover-inner .popover-content {
                max-height: 150px;
                overflow-y: auto;
                position: relative; }
                .institution-details-tabs .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar {
                  width: 12px;
                  padding: 2px 5px 2px 0px; }
                .institution-details-tabs .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-track {
                  background-color: #eaeaea;
                  border-left: 1px solid #ccc; }
                .institution-details-tabs .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
                  background-color: #ccc; }
                .institution-details-tabs .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
                  background-color: #aaa; }
          .institution-details-tabs .screen table tbody tr td .definition-popover {
            font: "Roboto", sans-serif; }
            .institution-details-tabs .screen table tbody tr td .definition-popover .definition-title {
              font-size: 0.778rem;
              font-weight: bold;
              margin-bottom: 5px; }
            .institution-details-tabs .screen table tbody tr td .definition-popover .definition-content {
              font-size: 0.722rem; }
              .institution-details-tabs .screen table tbody tr td .definition-popover .definition-content table {
                background-color: #464646;
                color: #fff;
                margin: 0; }
                .institution-details-tabs .screen table tbody tr td .definition-popover .definition-content table thead {
                  font-size: 0.778rem; }
                  .institution-details-tabs .screen table tbody tr td .definition-popover .definition-content table thead tr {
                    background-color: #464646;
                    border-bottom: #ffffff; }
                    .institution-details-tabs .screen table tbody tr td .definition-popover .definition-content table thead tr th {
                      font-weight: bold;
                      font-size: 0.722rem;
                      color: #fff;
                      text-transform: none; }
                .institution-details-tabs .screen table tbody tr td .definition-popover .definition-content table tbody {
                  font-size: 0.722rem; }
                  .institution-details-tabs .screen table tbody tr td .definition-popover .definition-content table tbody tr {
                    background-color: #464646; }
        .institution-details-tabs .screen table tbody tr:nth-child(odd) {
          background-color: #eceef1; }
        .institution-details-tabs .screen table tbody tr.grandTotal:first-child {
          border-top: 2px solid #e1e1e1;
          border-left: 2px solid #e1e1e1;
          border-right: 2px solid #e1e1e1; }
          .institution-details-tabs .screen table tbody tr.grandTotal:first-child th {
            font-weight: normal;
            font-family: "Roboto", sans-serif;
            font-size: 0.833rem; }
        .institution-details-tabs .screen table tbody tr.grandTotal {
          border-top: 2px solid #e1e1e1;
          border-left: 2px solid #e1e1e1;
          border-right: 2px solid #e1e1e1; }
          .institution-details-tabs .screen table tbody tr.grandTotal th {
            font-weight: bold;
            font-family: "Roboto", sans-serif;
            font-size: 0.833rem;
            padding: 9px 10px 9px 24px; }
          .institution-details-tabs .screen table tbody tr.grandTotal th:first-child {
            text-align: left;
            max-width: 500px; }
        .institution-details-tabs .screen table tbody tr.grandTotal:last-child {
          padding-top: 14px;
          border-bottom: 2px solid #e1e1e1;
          border-left: 2px solid #e1e1e1;
          border-right: 2px solid #e1e1e1; }
          .institution-details-tabs .screen table tbody tr.grandTotal:last-child th {
            font-weight: bold;
            font-family: "Roboto", sans-serif;
            font-size: 0.833rem; }
        .institution-details-tabs .screen table.special-table thead {
          border-bottom: 1px solid #ccc;
          text-transform: uppercase; }
          .institution-details-tabs .screen table.special-table thead tr th.subHeader {
            font-size: 0.778rem; }
        .institution-details-tabs .screen table.special-table .popover {
          max-width: 820px !important; }
          .institution-details-tabs .screen table.special-table .popover .arrow:after {
            border-left-color: #464646; }
          .institution-details-tabs .screen table.special-table .popover th, .institution-details-tabs .screen table.special-table .popover td {
            text-align: right;
            padding-right: 20px; }
          .institution-details-tabs .screen table.special-table .popover th:first-child, .institution-details-tabs .screen table.special-table .popover td:first-child, .institution-details-tabs .screen table.special-table .popover th:nth-child(2), .institution-details-tabs .screen table.special-table .popover td:nth-child(2) {
            text-align: left;
            padding-left: 0; }
      .institution-details-tabs .screen table.oneHead tbody tr.data:nth-child(even) {
        background-color: #eceef1; }
      .institution-details-tabs .screen table.oneHead tbody tr.data:nth-child(odd) {
        background-color: #fff !important; }
      .institution-details-tabs .screen table.twoHead tbody tr.data:nth-child(odd) {
        background-color: #eceef1; }
      .institution-details-tabs .screen table.twoHead tbody tr.blankRow {
        background-color: white !important;
        height: 25px; }
      .institution-details-tabs .screen hr {
        width: 100%;
        color: #ccc;
        border: none;
        border-bottom: 1px solid #ccc; }
    .institution-details-tabs .additional-info {
      margin-top: 50px;
      display: block;
      padding: 23px 23px 25px 23px;
      background-color: #e1e1e1;
      font-size: 0.778rem;
      color: #151515; }
      .institution-details-tabs .additional-info ul {
        list-style: circle;
        padding-left: 18px;
        margin-bottom: 0; }
        .institution-details-tabs .additional-info ul li {
          margin-bottom: 10px; }
          .institution-details-tabs .additional-info ul li:last-child {
            margin-bottom: 0; }
      .institution-details-tabs .additional-info strong {
        font-weight: bold; }
      .institution-details-tabs .additional-info p {
        margin-bottom: 0; }
  .institution-details-tabs-print {
    padding-top: 0.1px;
    margin-top: 25px; }
    .institution-details-tabs-print tr.ng-scope.header-1 {
      font-size: 13px;
      background-color: white !important;
      font-style: italic;
      text-decoration: underline;
      font-weight: normal !important; }
    .institution-details-tabs-print ul.nav.nav-tabs {
      margin-top: 0;
      border-bottom: 2px solid #007bb6;
      text-align: justify;
      position: relative; }
      .institution-details-tabs-print ul.nav.nav-tabs li {
        display: inline-block;
        font-weight: bold;
        font-size: 0.889rem;
        text-transform: uppercase;
        color: #999;
        background-color: transparent;
        height: 44px;
        margin-bottom: 0 !important;
        border-radius: 5px 5px 0 0; }
        .institution-details-tabs-print ul.nav.nav-tabs li:nth-child(7) {
          position: absolute;
          right: 0px; }
        .institution-details-tabs-print ul.nav.nav-tabs li a {
          text-align: center;
          color: #999;
          box-shadow: none;
          text-decoration: none; }
          .institution-details-tabs-print ul.nav.nav-tabs li a:hover {
            color: #007bb6; }
        .institution-details-tabs-print ul.nav.nav-tabs li.active {
          color: #fff;
          background-color: #007bb6; }
          .institution-details-tabs-print ul.nav.nav-tabs li.active a {
            color: #fff; }
    .institution-details-tabs-print .screen {
      padding-top: 0.1px; }
      .institution-details-tabs-print .screen a {
        border-bottom: 1px solid;
        text-decoration: none;
        cursor: pointer; }
      .institution-details-tabs-print .screen:first-child {
        margin-top: 15px; }
      .institution-details-tabs-print .screen h5 {
        margin: 0;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 16px; }
        .institution-details-tabs-print .screen h5 i {
          display: inline-block;
          height: 14px;
          width: 14px;
          padding-right: 10px;
          padding-top: 10px; }
      .institution-details-tabs-print .screen .open {
        color: #007bb6; }
        .institution-details-tabs-print .screen .open i {
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .institution-details-tabs-print .screen .closed i {
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
      .institution-details-tabs-print .screen .caveat-header {
        font-weight: bold; }
      .institution-details-tabs-print .screen .popover {
        background-color: #464646;
        color: #ffffff;
        max-width: 430px !important; }
        .institution-details-tabs-print .screen .popover .arrow:after {
          border-right-color: #464646; }
        .institution-details-tabs-print .screen .popover .popover-inner {
          padding: 8px 5px; }
          .institution-details-tabs-print .screen .popover .popover-inner .popover-content {
            max-height: 150px;
            overflow-y: auto;
            position: relative; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar {
              width: 12px;
              padding: 2px 5px 2px 0px; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-track {
              background-color: #eaeaea;
              border-left: 1px solid #ccc; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
              background-color: #ccc; }
            .institution-details-tabs-print .screen .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
              background-color: #aaa; }
      .institution-details-tabs-print .screen .definition-popover {
        font: "Roboto", sans-serif; }
        .institution-details-tabs-print .screen .definition-popover .definition-title {
          font-size: 0.778rem;
          font-weight: bold;
          margin-bottom: 5px; }
        .institution-details-tabs-print .screen .definition-popover .definition-content {
          font-size: 0.722rem; }
          .institution-details-tabs-print .screen .definition-popover .definition-content table {
            background-color: #464646;
            color: #fff;
            margin: 0; }
            .institution-details-tabs-print .screen .definition-popover .definition-content table thead {
              font-size: 0.778rem; }
              .institution-details-tabs-print .screen .definition-popover .definition-content table thead tr {
                background-color: #464646;
                border-bottom: #ffffff; }
                .institution-details-tabs-print .screen .definition-popover .definition-content table thead tr th {
                  font-weight: bold;
                  font-size: 0.722rem;
                  color: #fff;
                  text-transform: none; }
            .institution-details-tabs-print .screen .definition-popover .definition-content table tbody {
              font-size: 0.722rem; }
              .institution-details-tabs-print .screen .definition-popover .definition-content table tbody tr {
                background-color: #464646; }
      .institution-details-tabs-print .screen table {
        margin-top: 10px;
        width: 100%;
        margin-bottom: 40px;
        page-break-after: avoid; }
        .institution-details-tabs-print .screen table td:first-child, .institution-details-tabs-print .screen table th:first-child {
          padding-left: 24px; }
        .institution-details-tabs-print .screen table thead tr {
          border: none; }
          .institution-details-tabs-print .screen table thead tr.header-1 th, .institution-details-tabs-print .screen table thead tr.header-2 th {
            font-size: 0.722rem;
            color: #151515; }
            .institution-details-tabs-print .screen table thead tr.header-1 th:not(:first-of-type), .institution-details-tabs-print .screen table thead tr.header-2 th:not(:first-of-type) {
              font-size: 0.722rem;
              font-weight: bold;
              color: #151515; }
          .institution-details-tabs-print .screen table thead tr.header-1 {
            font-style: italic;
            font-size: 0.889rem; }
            .institution-details-tabs-print .screen table thead tr.header-1 th:not([rowspan="2"]) {
              border-bottom: solid;
              border-color: #e1e1e1;
              border-width: 1px;
              font-weight: normal; }
            .institution-details-tabs-print .screen table thead tr.header-1 th[rowspan="2"] {
              font-style: normal;
              font-weight: bold; }
              .institution-details-tabs-print .screen table thead tr.header-1 th[rowspan="2"].number {
                text-align: right; }
          .institution-details-tabs-print .screen table thead tr.header-2 {
            font-weight: bold;
            font-size: 0.889rem; }
            .institution-details-tabs-print .screen table thead tr.header-2 th {
              color: #151515;
              padding: 13px 10px 13px 0; }
              .institution-details-tabs-print .screen table thead tr.header-2 th:first-child {
                padding-left: 5px; }
          .institution-details-tabs-print .screen table thead tr th {
            font-size: 0.944rem;
            font-weight: bold;
            color: #151515;
            padding: 5px 10px 10px 0; }
            .institution-details-tabs-print .screen table thead tr th:not(:first-of-type) {
              font-size: 0.944rem;
              font-weight: bold;
              color: #151515; }
        .institution-details-tabs-print .screen table tbody tr td {
          padding: 9px 10px 9px 0; }
          .institution-details-tabs-print .screen table tbody tr td .popover {
            background-color: #464646;
            color: #ffffff;
            max-width: 430px !important; }
            .institution-details-tabs-print .screen table tbody tr td .popover .arrow:after {
              border-right-color: #464646; }
            .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner {
              padding: 8px 5px; }
              .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content {
                max-height: 150px;
                overflow-y: auto;
                position: relative; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar {
                  width: 12px;
                  padding: 2px 5px 2px 0px; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-track {
                  background-color: #eaeaea;
                  border-left: 1px solid #ccc; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
                  background-color: #ccc; }
                .institution-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
                  background-color: #aaa; }
          .institution-details-tabs-print .screen table tbody tr td .definition-popover {
            font: "Roboto", sans-serif; }
            .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-title {
              font-size: 0.778rem;
              font-weight: bold;
              margin-bottom: 5px; }
            .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content {
              font-size: 0.722rem; }
              .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table {
                background-color: #464646;
                color: #fff;
                margin: 0; }
                .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead {
                  font-size: 0.778rem; }
                  .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr {
                    background-color: #464646;
                    border-bottom: #ffffff; }
                    .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr th {
                      font-weight: bold;
                      font-size: 0.722rem;
                      color: #fff;
                      text-transform: none; }
                .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody {
                  font-size: 0.722rem; }
                  .institution-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody tr {
                    background-color: #464646; }
        .institution-details-tabs-print .screen table tbody tr:nth-child(odd) {
          background-color: #eceef1; }
        .institution-details-tabs-print .screen table.special-table thead {
          border-bottom: 1px solid #ccc;
          text-transform: uppercase; }
          .institution-details-tabs-print .screen table.special-table thead tr th.subHeader {
            font-size: 0.778rem; }
        .institution-details-tabs-print .screen table.special-table .popover {
          max-width: 820px !important; }
          .institution-details-tabs-print .screen table.special-table .popover .arrow:after {
            border-left-color: #464646; }
          .institution-details-tabs-print .screen table.special-table .popover th, .institution-details-tabs-print .screen table.special-table .popover td {
            text-align: right;
            padding-right: 20px; }
          .institution-details-tabs-print .screen table.special-table .popover th:first-child, .institution-details-tabs-print .screen table.special-table .popover td:first-child, .institution-details-tabs-print .screen table.special-table .popover th:nth-child(2), .institution-details-tabs-print .screen table.special-table .popover td:nth-child(2) {
            text-align: left;
            padding-left: 0; }
      .institution-details-tabs-print .screen hr {
        width: 100%;
        color: #ccc;
        border: none;
        border-bottom: 1px solid #ccc; }
    .institution-details-tabs-print .additional-info {
      margin-top: 50px;
      display: block;
      padding: 23px 23px 25px 23px;
      background-color: #e1e1e1;
      font-size: 0.778rem;
      color: #151515; }
      .institution-details-tabs-print .additional-info ul {
        list-style: circle;
        padding-left: 18px;
        margin-bottom: 0; }
        .institution-details-tabs-print .additional-info ul li {
          margin-bottom: 10px; }
          .institution-details-tabs-print .additional-info ul li:last-child {
            margin-bottom: 0; }
      .institution-details-tabs-print .additional-info strong {
        font-weight: bold; }
      .institution-details-tabs-print .additional-info p {
        margin-bottom: 0; }
  .compare-details-head ul {
    list-style: none;
    margin: 2px 0 0 0;
    padding: 0.1px; }
    .compare-details-head ul li {
      font-family: "Roboto", sans-serif;
      font-size: 1.111rem;
      color: #007bb6;
      vertical-align: top;
      line-height: 1.5rem; }
      .compare-details-head ul li .opeid {
        margin-right: 10px; }
      .compare-details-head ul li i {
        color: #ffffff;
        display: inline-block;
        font-weight: bold;
        border-radius: 5px;
        text-align: center;
        height: 28px;
        width: 28px;
        font-size: 1.111rem;
        padding-left: 1px;
        margin: 2px 0 2px 0; }
        .compare-details-head ul li i.badge-counter-first {
          background-color: #cc672f; }
        .compare-details-head ul li i.badge-counter-second {
          background-color: #01b7bd; }
        .compare-details-head ul li i.badge-counter-third {
          background-color: #a9a543; }
        .compare-details-head ul li i.badge-counter-fourth {
          background-color: #2a455f; }
      .compare-details-head ul li .name {
        display: inline-block;
        font-weight: bold;
        margin-top: 4px; }
      .compare-details-head ul li .enroll {
        background-image: url("../images/icon_enrollment.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 23px;
        display: inline-block;
        height: 23px;
        width: 24px;
        vertical-align: text-bottom;
        margin: 4px 5px 0px 10px; }
  .compare-details-tabs ul.nav.nav-tabs {
    margin-top: 0;
    border-bottom: 2px solid #007bb6;
    text-align: justify;
    text-align-last: justify; }
    .compare-details-tabs ul.nav.nav-tabs li {
      display: inline-block;
      font-weight: bold;
      font-size: 0.833rem;
      text-transform: uppercase;
      color: #999;
      background-color: transparent;
      height: 44px;
      /*text-align: center;*/
      margin-bottom: 0 !important;
      border-radius: 5px 5px 0 0; }
      .compare-details-tabs ul.nav.nav-tabs li a {
        text-align: center;
        color: #999;
        box-shadow: none;
        text-decoration: none; }
      .compare-details-tabs ul.nav.nav-tabs li.active {
        color: #fff;
        background-color: #007bb6; }
        .compare-details-tabs ul.nav.nav-tabs li.active a {
          color: #fff; }
  .compare-details-tabs .screen {
    padding-top: 0.1px;
    margin-top: 50px; }
    .compare-details-tabs .screen:first-child {
      margin-top: 25px; }
    .compare-details-tabs .screen h5 {
      margin: 0;
      font-size: 1rem;
      font-weight: bold; }
      .compare-details-tabs .screen h5.open {
        color: #007bb6; }
        .compare-details-tabs .screen h5.open i {
          padding-right: 10px;
          padding-top: 10px;
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .compare-details-tabs .screen h5.closed i {
        padding-right: 10px;
        padding-top: 10px;
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
    .compare-details-tabs .screen i {
      display: inline-block;
      height: 14px;
      width: 14px;
      margin-right: 0px; }
    .compare-details-tabs .screen a {
      border-bottom: 1px dotted;
      text-decoration: none;
      cursor: pointer; }
    .compare-details-tabs .screen .closed i {
      background-image: url("../images/icon_open.png"); }
    .compare-details-tabs .screen table {
      margin-top: 10px;
      width: calc(100%);
      border-bottom: 1px solid #ccc; }
      .compare-details-tabs .screen table td:first-child, .compare-details-tabs .screen table th:first-child {
        padding-left: 24px; }
      .compare-details-tabs .screen table tbody tr:nth-child(odd) {
        background-color: #eceef1; }
      .compare-details-tabs .screen table tbody tr td {
        padding: 9px 10px 9px 0; }
        .compare-details-tabs .screen table tbody tr td .popover {
          background-color: #464646;
          color: #ffffff;
          max-width: 430px !important; }
          .compare-details-tabs .screen table tbody tr td .popover .arrow:after {
            border-right-color: #464646; }
          .compare-details-tabs .screen table tbody tr td .popover .popover-inner {
            padding: 8px 5px; }
            .compare-details-tabs .screen table tbody tr td .popover .popover-inner .popover-content {
              max-height: 150px;
              overflow-y: auto;
              position: relative;
              /*Custom Scroll bar 1*/ }
              .compare-details-tabs .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar {
                width: 12px;
                padding: 2px 5px 2px 0px; }
              .compare-details-tabs .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-track {
                background-color: #eaeaea;
                border-left: 1px solid #ccc; }
              .compare-details-tabs .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
                background-color: #ccc; }
              .compare-details-tabs .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
                background-color: #aaa; }
        .compare-details-tabs .screen table tbody tr td .definition-popover {
          font: "Roboto", sans-serif; }
          .compare-details-tabs .screen table tbody tr td .definition-popover .definition-title {
            font-size: 0.778rem;
            font-weight: bold;
            margin-bottom: 5px; }
          .compare-details-tabs .screen table tbody tr td .definition-popover .definition-content {
            font-size: 0.722rem; }
            .compare-details-tabs .screen table tbody tr td .definition-popover .definition-content table {
              background-color: #464646;
              color: #fff;
              margin: 0; }
              .compare-details-tabs .screen table tbody tr td .definition-popover .definition-content table thead {
                font-size: 0.778rem; }
                .compare-details-tabs .screen table tbody tr td .definition-popover .definition-content table thead tr {
                  background-color: #464646;
                  border-bottom: #ffffff; }
                  .compare-details-tabs .screen table tbody tr td .definition-popover .definition-content table thead tr th {
                    font-weight: bold;
                    font-size: 0.722rem;
                    color: #fff; }
              .compare-details-tabs .screen table tbody tr td .definition-popover .definition-content table tbody {
                font-size: 0.722rem; }
                .compare-details-tabs .screen table tbody tr td .definition-popover .definition-content table tbody tr {
                  background-color: #464646; }
        .compare-details-tabs .screen table tbody tr td span {
          margin-right: 5px; }
        .compare-details-tabs .screen table tbody tr td.subHead {
          font-weight: bold; }
      .compare-details-tabs .screen table thead tr {
        border: none; }
        .compare-details-tabs .screen table thead tr th {
          padding: 5px 10px 10px 0px; }
          .compare-details-tabs .screen table thead tr th:first-child {
            font-size: 0.944rem; }
          .compare-details-tabs .screen table thead tr th.number {
            color: #ffffff; }
            .compare-details-tabs .screen table thead tr th.number i {
              display: inline-block;
              border-radius: 5px;
              text-align: center;
              line-height: 1.22rem;
              height: 22px;
              width: 22px;
              font-size: 0.944rem;
              padding-left: 1px; }
              .compare-details-tabs .screen table thead tr th.number i.first {
                background: #cc672f; }
              .compare-details-tabs .screen table thead tr th.number i.second {
                background: #01b7b8; }
              .compare-details-tabs .screen table thead tr th.number i.third {
                background: #a9a543; }
              .compare-details-tabs .screen table thead tr th.number i.fourth {
                background: #2a455f; }
  .compare-details-tabs .additional-info {
    margin-top: 50px;
    display: block;
    padding: 15px;
    background-color: #e1e1e1;
    font-size: 0.833rem;
    color: #151515; }
    .compare-details-tabs .additional-info ul {
      list-style: circle;
      padding-left: 18px; }
    .compare-details-tabs .additional-info strong {
      font-weight: bold; }
  .compare-details-tabs-print ul.nav.nav-tabs {
    margin-top: 0;
    border-bottom: 2px solid #007bb6;
    text-align: justify; }
    .compare-details-tabs-print ul.nav.nav-tabs li {
      display: inline-block;
      font-weight: bold;
      font-size: 0.833rem;
      text-transform: uppercase;
      color: #999;
      background-color: transparent;
      height: 44px;
      margin-bottom: 0 !important;
      border-radius: 5px 5px 0 0; }
      .compare-details-tabs-print ul.nav.nav-tabs li a {
        text-align: center;
        color: #999;
        box-shadow: none;
        text-decoration: none; }
      .compare-details-tabs-print ul.nav.nav-tabs li.active {
        color: #fff;
        background-color: #007bb6; }
        .compare-details-tabs-print ul.nav.nav-tabs li.active a {
          color: #fff; }
  .compare-details-tabs-print .screen {
    padding-top: 0.1px;
    margin-top: 50px; }
    .compare-details-tabs-print .screen:first-child {
      margin-top: 25px; }
    .compare-details-tabs-print .screen h5 {
      margin: 0;
      font-size: 1rem;
      font-weight: bold; }
      .compare-details-tabs-print .screen h5.open {
        color: #007bb6; }
        .compare-details-tabs-print .screen h5.open i {
          padding-right: 10px;
          padding-top: 10px;
          background-image: url("../images/icon_close.png");
          background-repeat: no-repeat;
          background-position: left bottom; }
      .compare-details-tabs-print .screen h5.closed i {
        padding-right: 10px;
        padding-top: 10px;
        background-image: url("../images/icon_open.png");
        background-repeat: no-repeat;
        background-position: left bottom; }
    .compare-details-tabs-print .screen i {
      display: inline-block;
      height: 14px;
      width: 14px;
      margin-right: 0px; }
    .compare-details-tabs-print .screen a {
      border-bottom: 1px solid;
      text-decoration: none;
      cursor: pointer; }
    .compare-details-tabs-print .screen .closed i {
      background-image: url("../images/icon_open.png"); }
    .compare-details-tabs-print .screen table {
      margin-top: 10px;
      width: 100%;
      border-bottom: 1px solid #ccc; }
      .compare-details-tabs-print .screen table td:first-child, .compare-details-tabs-print .screen table th:first-child {
        padding-left: 24px; }
      .compare-details-tabs-print .screen table tbody tr:nth-child(odd) {
        background-color: #eceef1; }
      .compare-details-tabs-print .screen table tbody tr td {
        padding: 9px 10px 9px 0; }
        .compare-details-tabs-print .screen table tbody tr td .popover {
          background-color: #464646;
          color: #ffffff;
          max-width: 430px !important; }
          .compare-details-tabs-print .screen table tbody tr td .popover .arrow:after {
            border-right-color: #464646; }
          .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner {
            padding: 8px 5px; }
            .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content {
              max-height: 150px;
              overflow-y: auto;
              position: relative;
              /*Custom Scroll bar 1*/ }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar {
                width: 12px;
                padding: 2px 5px 2px 0px; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-track {
                background-color: #eaeaea;
                border-left: 1px solid #ccc; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb {
                background-color: #ccc; }
              .compare-details-tabs-print .screen table tbody tr td .popover .popover-inner .popover-content::-webkit-scrollbar-thumb:hover {
                background-color: #aaa; }
        .compare-details-tabs-print .screen table tbody tr td .definition-popover {
          font: "Roboto", sans-serif; }
          .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-title {
            font-size: 0.778rem;
            font-weight: bold;
            margin-bottom: 5px; }
          .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content {
            font-size: 0.722rem; }
            .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table {
              background-color: #464646;
              color: #fff;
              margin: 0; }
              .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead {
                font-size: 0.778rem; }
                .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr {
                  background-color: #464646;
                  border-bottom: #ffffff; }
                  .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table thead tr th {
                    font-weight: bold;
                    font-size: 0.722rem;
                    color: #fff; }
              .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody {
                font-size: 0.722rem; }
                .compare-details-tabs-print .screen table tbody tr td .definition-popover .definition-content table tbody tr {
                  background-color: #464646; }
        .compare-details-tabs-print .screen table tbody tr td span {
          margin-right: 5px; }
      .compare-details-tabs-print .screen table thead tr {
        border: none; }
        .compare-details-tabs-print .screen table thead tr th {
          padding: 5px 10px 10px 0px; }
          .compare-details-tabs-print .screen table thead tr th:first-child {
            font-size: 0.944rem; }
          .compare-details-tabs-print .screen table thead tr th.number {
            color: #ffffff; }
            .compare-details-tabs-print .screen table thead tr th.number i {
              display: inline-block;
              border-radius: 5px;
              text-align: center;
              line-height: 1.22rem;
              height: 22px;
              width: 22px;
              font-size: 0.944rem;
              padding-left: 1px; }
              .compare-details-tabs-print .screen table thead tr th.number i.first {
                background: #cc672f; }
              .compare-details-tabs-print .screen table thead tr th.number i.second {
                background: #01b7b8; }
              .compare-details-tabs-print .screen table thead tr th.number i.third {
                background: #a9a543; }
              .compare-details-tabs-print .screen table thead tr th.number i.fourth {
                background: #2a455f; }
  .compare-details-tabs-print .additional-info {
    margin-top: 50px;
    display: block;
    padding: 15px;
    background-color: #e1e1e1;
    font-size: 0.833rem;
    color: #151515; }
    .compare-details-tabs-print .additional-info ul {
      list-style: circle;
      padding-left: 18px; }
    .compare-details-tabs-print .additional-info strong {
      font-weight: bold; }
  table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Roboto", sans-serif;
    font-size: 0.833rem;
    color: #151515; }
    table thead tr {
      border-bottom: 2px solid #151515; }
      table thead tr:not(:only-child):first-child th {
        text-align: center; }
      table thead tr th {
        text-align: left;
        font-size: .667rem;
        padding-bottom: 4px; }
        table thead tr th.number {
          text-align: right; }
    table tbody tr.institution {
      font-weight: bold;
      cursor: pointer; }
    table tbody tr.selected td {
      background-color: #e6e6e6; }
    table tbody tr td {
      padding: 5px 0; }
      table tbody tr td:first-child {
        padding-left: 8px; }
      table tbody tr td button {
        border: none !important;
        background-color: transparent !important;
        width: 14px !important;
        height: 14px !important;
        padding: 0 !important;
        margin: 0 !important; }
      table tbody tr td.number {
        text-align: right; }
      table tbody tr td.remove {
        padding-left: 25px;
        padding-right: 8px;
        width: 14px; }
      table tbody tr td span {
        -ms-word-wrap: break-word;
        word-wrap: break-word; }
      table tbody tr td span.subHead {
        font-weight: bold; }
    table tbody tr.indent-row td .indent-mini-table tr td:first-child {
      width: 24px; }
    table tbody tr.indent-row td .indent-mini-table tr td:nth-child(2) {
      width: 545px; }
  .glossary-full {
    width: 1000px;
    background-color: #ffffff; }
    .glossary-full h1 {
      height: 70px;
      margin: 0;
      background-color: #00642D;
      color: #fff;
      font-size: 1.444rem;
      font-weight: bold;
      padding: 20px 0 10px 28px;
      position: relative;
      top: 0px;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px; }
    .glossary-full .padding-container {
      padding: 28px 30px 30px 30px; }
    .glossary-full .instructions {
      margin: 0;
      font-weight: bold;
      font-size: 1.111rem;
      color: #00642D; }
    .glossary-full .keyword-search {
      display: inline-block;
      height: 37px;
      min-width: 300px;
      padding-left: 9px;
      font-size: 1rem; }
    .glossary-full button {
      margin: auto auto;
      height: 37px;
      width: 125px;
      border: 2px solid #007bb6;
      font-family: "Roboto", sans-serif;
      font-weight: bold;
      font-size: 1rem;
      color: #007bb6;
      background-color: #fff;
      border-radius: 45px;
      text-align: center;
      padding: 0; }
    .glossary-full .search {
      margin-left: 15px; }
    .glossary-full form {
      margin-top: 6px; }
    .glossary-full .term-label {
      font-weight: bold;
      font-size: 1rem;
      color: #151515;
      text-transform: uppercase;
      margin: 0;
      margin-top: 35px; }
    .glossary-full .alphabet {
      list-style: none;
      margin: 0;
      padding: 0;
      margin-top: 3px;
      margin-bottom: 22px; }
      .glossary-full .alphabet li {
        display: inline-block;
        margin-right: 15px;
        font-size: 1rem;
        color: #151515; }
        .glossary-full .alphabet li a {
          text-decoration: underline;
          color: #151515; }
          .glossary-full .alphabet li a.selectedLetter {
            font-weight: bold;
            text-decoration: none; }
    .glossary-full hr {
      border: none;
      margin: 0; }
      .glossary-full hr.thick {
        height: 2px;
        color: #151515;
        background-color: #151515; }
    .glossary-full .definitions {
      margin-top: 15px;
      max-height: 300px;
      font-size: 0.778rem;
      color: #151515;
      overflow: auto; }
      .glossary-full .definitions dl {
        margin-top: 0;
        margin-bottom: 15px;
        padding: 0; }
      .glossary-full .definitions dt {
        padding: 0; }
      .glossary-full .definitions dfn {
        font-weight: bold;
        font-style: normal;
        padding: 0;
        font-size: 0.889rem; }
      .glossary-full .definitions dd {
        padding: 0;
        margin: 0;
        font-size: 0.889rem;
        line-height: 1.3; }
    .glossary-full#help-page .padding-container {
      font-size: 0.889rem;
      color: #151515; }
      .glossary-full#help-page .padding-container a {
        color: #151515; }
      .glossary-full#help-page .padding-container .colored-text {
        color: #1f88bd; }
      .glossary-full#help-page .padding-container h2 {
        font-weight: bold;
        font-size: 1.222rem; }
  .ngdialog.ngdialog-theme-default .ngdialog-content {
    width: 1000px;
    overflow: hidden;
    font-family: "Roboto", sans-serif; }
    .ngdialog.ngdialog-theme-default .ngdialog-content .loading {
      padding-top: 23px;
      padding-left: 20px;
      padding-right: 20px;
      /*padding-bottom: 50px;*/ }
      .ngdialog.ngdialog-theme-default .ngdialog-content .loading h1 {
        font-family: "Roboto", sans-serif;
        font-size: 1rem;
        color: #007bb6; }
  .ngdialog.ngdialog-theme-default .ngdialog-close {
    top: 20px;
    right: 17px;
    height: 26px;
    width: 26px;
    background-image: url("../images/icon_delete_glossary.png");
    background-position: center center;
    background-repeat: no-repeat; }
  .ngdialog.ngdialog-theme-default .ngdialog-close:before {
    content: none; }
  ::-webkit-input-placeholder {
    /* Safari, Chrome and Opera */
    font-family: "Roboto", sans-serif;
    font-size: 0.944rem;
    letter-spacing: 0.04em;
    color: #888; }
  :-moz-placeholder {
    /* Firefox 18- */
    font-family: "Roboto", sans-serif;
    font-size: 0.944rem;
    letter-spacing: 0.04em;
    color: #888; }
  ::-moz-placeholder {
    /* Firefox 19+ */
    font-family: "Roboto", sans-serif;
    font-size: 0.944rem;
    letter-spacing: 0.04em;
    color: #888; }
  :-ms-input-placeholder {
    /* IE 10+ */
    font-family: "Roboto", sans-serif;
    font-size: 0.944rem;
    letter-spacing: 0.04em;
    color: #888; }
  ::-ms-input-placeholder {
    /* Edge */
    font-family: "Roboto", sans-serif;
    font-size: 0.944rem;
    letter-spacing: 0.04em;
    color: #888; }
  :placeholder-shown {
    /* Standard one last! */
    font-family: "Roboto", sans-serif;
    font-size: 0.944rem;
    letter-spacing: 0.04em;
    color: #888; }
  /* The starting CSS styles for the enter animation */
  .view.ng-enter {
    transition: 0.2s linear all;
    opacity: 0; }
  /* The finishing CSS styles for the enter animation */
  .view.ng-enter.ng-enter-active {
    opacity: 1; }
  /* now the element will fade out before it is removed from the DOM */
  /*.view.ng-leave {
	transition: 0.1s linear all;
	opacity: 1;
}

.view.ng-leave.ng-leave-active {
	opacity: 0;
}*/
  /* there is no need to define anything inside of the destination
CSS class since the keyframe will take charge of the animation */
  /*.view.ng-leave {
	animation: my_fade_animation 0.1s linear;
	-webkit-animation: my_fade_animation 0.1s linear;
}

@keyframes my_fade_animation {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@-webkit-keyframes my_fade_animation {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}*/
  /*Loading spinner*/
  .circleLoader {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
    .circleLoader .spinner {
      animation: rotator 0.9s linear infinite; }
  @keyframes rotator {
    0% {
      transform: rotate(0deg); }
    100% {
      transform: rotate(270deg); } }
    .circleLoader .path {
      stroke-dasharray: 187;
      stroke-dashoffset: 0;
      transform-origin: center;
      animation: dash 0.9s ease-in-out infinite, colors 3.6s ease-in-out infinite; }
  @keyframes colors {
    0% {
      stroke: #007bb6; }
    100% {
      stroke: #007bb6; } }
  @keyframes dash {
    0% {
      stroke-dashoffset: 187; }
    50% {
      stroke-dashoffset: 46.75;
      transform: rotate(135deg); }
    100% {
      stroke-dashoffset: 187;
      transform: rotate(450deg); } } }
