<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* main site css */
/* get bootstrap icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");


/* Begin CSS for making page use full screen */
/* necessary to get bod to cover whole page */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;       /* body takes whole viewport's height */
}

/* Necessary to make main container expand to fill space */
main {
  flex: 1;                 /* this will make the container take the free space */
}
/* End CSS for making page use full screen */





/* begin navbar css / css overrides */
/* Begin - logo area */
.navbar-dark .navbar-brand {
  color: rgba(255,255,255, 1);
  border: solid 1px rgb(37,55,118);
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  border: solid 1px rgba(255,255,255,.5);
}
/* End - logo area */


.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255, 1);
}
.navbar-dark .navbar-nav .nav-item:hover, .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  /*color: rgba(37,55,118,1);*/
  color: rgba(255,255,255,1);
  background-color: rgba(0,37,64,.3);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(37,55,118, 0.1);
}
.navbar-dark .navbar-nav .show &gt; .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: rgba(0,180,238, 1);
}
.navbar-dark .navbar-toggler {
  color: rgba(37,55,118, 0.55);
  border-color: rgba(255,255,255, 0.95);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(37,55,118, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: rgba(37,55,118, 0.9);
}

.bg-dark {
  background-color: rgba(37,55,118, 1) !important;
}



.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: rgb(37,55,118) !important;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

/* navbar tool search instructions */
#sinst {
  font-weight: bold;
  position: fixed;
  top: 51px;
  right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  color: rgb(255,255,255);
  text-align: right;
  background-color: rgb(37,55,118);
  z-index: 1030;
  width: auto;
}


/* navbar tool search instructions */
#sinst1 {
  position: fixed;
  top: 51px;
  left: 10px;
  padding-top: 10px;
  padding-bottom: 4px;
  padding-left: 15px;
  padding-right: 15px;
  color: rgb(255,255,255);
  text-align: left;
  background-color: rgb(37,55,118);
  z-index: 1030;
  width: auto;
  font-size: .9rem;
}








#navbar-divemeets {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .navbar-pipe {
    border-right: solid 1px rgba(0,0,0,.1);
  }

  #sinst {
    text-align: left;
    width: 370px;
  }

  #userinfo {
  display: none;
  }


}

@media (max-width: 992px) {
  #sinst {
  display: none;
  }

  #sinst1 {
  display: none;
  }

  #userinfo {
  display: inline;
  }

  #userinfo :hover {
  background-color: rgb(37,55,118);
  }


}


/* end top navbar css*/

/* set some standard divemeets colors userd in bottom navbar */
.bg-divemeets-dark {
  background-color: rgb(37,55,118);
  }

.bg-divemeets-dark-dark {
  background-color: rgb(0,37,64);
  }

.bg-divemeets-light {
  background-color: rgb(0,180,238);
  }


/* autocomplete / hint */

/*the container must be positioned relative:*/
.autocompleteBS {
  position: relative;
  /*display: inline-block;*/
}

.autocompleteBS-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 1050 !important;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocompleteBS-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}


/*when hovering an item:*/
.autocompleteBS-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocompleteBS-active {
  background-color:  #d4d4d4 !important;
  color: #ffffff;
}

/* Container for the top of pages without carousel */
.container-top {
  padding-top: 100px;
}



.btn-dark {
  color: rgb(255,255,255);
  background-color: rgb(37,55,118);
  border-color: rgb(37,55,118);
 }

 .btn-dark:hover {
  color: rgb(255,255,255);
  background-color: rgba(37,55,118,.8);
  border-color: rgba(37,55,118,.8);
 }

 .btn-dark:focus {
  color: rgb(255,255,255);
  background-color: rgba(37,55,118,.8);
  border-color: rgba(37,55,118,.8);
  box-shadow:0 0 0 .25rem rgba(37,55,118,.8)
  }

.bg-lb {
  background-color: rgb(175, 245, 255);
}

.page-padding {
  padding-left: 25px;
  padding-right: 25px;
}

.main-fullpage {
  display: flex;
}</pre></body></html>