html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif !important;
	transition: background-color .5s; 
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

::selection {
  background-color: #ADD8E6;
}

footer {
	font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif !important;
    background-color: #484848;
    color: #fff;
    text-align: center;
    padding: 0 0;
    margin-top: auto; /* Push the footer to the bottom */	
	  font-weight: 500;
    font-size: 14px;
    line-height: 1.42857143;
    letter-spacing: 0.005em;	
}

.ftr-flex-container {
    display: flex;
    justify-content: center; /* To create 3 columns */
    padding: 20px; /* Add padding for spacing */
    flex-direction: column;
}

.ftrcol {
    display: flex;
    padding: 0px 2px; /* Add padding for spacing within columns */
    text-align: center; /* Center the content horizontally */
    justify-content: center;    
}

.ftrcol h2 {
    color: #fff; /* Title text color */
	font-weight: 500;
    font-size: 1.0em;
    line-height: 1.42857143;
    letter-spacing: 0.005em;	    
	margin-bottom: 10px;
    text-align: center;
}

footer ul {
    list-style-type: none; /* Remove list bullet points */
    padding: 0; /* Remove default list padding */
	text-align: left;
    font-size: 0.9em;
}

footer li {
    margin: 0px 0; /* Add spacing between menu links */
}

footer a {
    text-decoration: none; /* Remove underline from links */
    color: #fff; /* Menu link text color */
    padding: 2px 12px; /* Add padding to menu links */
    border-radius: 5px; /* Add rounded corners to menu links */
    display: inline-block; /* Make menu links display as blocks */
}

footer a:hover {
    background-color: #007acc; /* Menu link background color on hover */
}

	 /* Hamburger menu styles */
	.menu-icon {
	  display: none; /* Hide by default */
	  position: relative;
	  cursor: pointer;
	  /*z-index: 5;*/
    z-index: 4;
	  font-size: 18px;	  
    margin-left: 0px;
    margin-right: 5px;
    padding-top: 3px;  
	  padding-bottom: 4px;
    padding-left: 15px;
    padding-right: 15px;
	}


  .mnuitminactive{
    color: #cacaca!important;
  }

	.drpdwn-menu{
		display: none;
		position: relative;	
	}

	.drpdwn-menu-content {
	  display: none;
		flex-direction: column;	
		font-size: 13px;
    background-color: #fff;
		min-width: 130px;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px; 
		z-index: 1;
		position: absolute;
		top: 19px;
    right: 0px;
    padding-top: 8px;
    padding-bottom: 8px;    
	}

	.drpdwn-menu-content a{
    font-size: 1.0em!important;
    font-weight: 500!important;    
		padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 8px;
    padding-right:14px;    
		text-decoration: none;
    color: #002D6B;
    text-align: end;
	}

  .drpdwn-menu-content a:last-child {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;    
  }



  .drpdwn-menu-content a:hover {background-color: #f1f1f1; opacity: 1.5!important; font-weight: 600!important;} /*#f1f1f1*/

	.menu-icon:hover .drpdwn-menu-content, .menu-icon:active .drpdwn-menu-content{
			display: inline-flex;    
	}

  

  .submenu{
	  position: relative;
	  display: inline-block;
    padding-top: 1px;
    margin-top: 2px;    
    z-index: 3;
    text-align: end;
    padding-left: 10px;
  }

  .submenu:hover .submenu-content{
    display: inline-flex;    
}

  .submenu-content {
	  display: none;
		flex-direction: column;	
		font-size: 13px;
		background-color: #f9f9f9;
		min-width: 150px;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		z-index: 1;
		position: absolute;
		top: 16px;
    left: -90px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;     
	}

  .submenu-content a:last-child {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;    
  }

	.dropbtn {
	  background-color: #4CAF50;
	  color: white;
	  padding: 16px;
	  font-size: 16px;
	  border: none;
	  cursor: pointer;
	}
	
	.dropdown {
	  position: relative;
	  display: inline-block;
    padding-top: 1px;
    margin-top: 2px;    
    /*z-index: 5;
    z-index: 2;
    z-index: 3;*/
	}	
  

	.dropdown-content {
	  display: none;
	  position: absolute;
	  font-size: 14px;
    font-weight: 600;
    background-color: #f9f9f9;
    color: #002D6B;
	  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	  z-index: 1;
	  right:0;
    margin-top: 8px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;    
	}

	.dropdown-content a {
    font-size: 0.9em!important;
    font-weight: 500!important;
	  padding: 12px 12px;
	  text-decoration: none;
	  display: block;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;   
    text-align: end;
    opacity: 1;  
	}

	.dropdown-content a:hover {background-color: #f1f1f1; opacity: 1.5!important; font-weight: 600!important;} /*#f1f1f1*/
	.dropdown:hover .dropdown-content {display: block;}
	.dropdown:hover .dropbtn {background-color: #3e8e41;}

.bkgrd-image {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: calc(100% - 2px);
  /*height: 300px;*/
  border: 0.05em solid #eaeaea;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;	
  /*
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;	
  */
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  margin-top: 2px;	
}

.headshot-container {
    /*display: flex;*/
    
	 display: none;
   flex-direction: column;
    color: #fff;
    justify-content: center;
    align-items: center;
    /* width: 230px;*/
    /*max-height: 230px;*/
    margin-left: auto;
    margin-right: auto;	
}

.headshot-photo {
	z-index: 1;
    width: 100%;
    height: auto;
    max-width:360px;
    /*max-height: 320px;*/
    /*max-height: 390px;*/
    max-height: 500px;
    border-radius: 10px;
    border: 3px solid white;
	  margin-top: 5px;
	  object-fit: cover;
}

.tmpcircle {  
  display: none; /*flex;*/
  width: 200px;
  height: 200px;
  border-radius: 10px;
  border: 3px solid #fff;
  padding: 2px;
  background-color: #ADD8E6;
  justify-content: center;
    align-items: center;
	  margin-left: auto;
    margin-right: auto;  
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;    
    z-index: 2;    
}

.tmpcircle i h3 {
  max-width: 100%;
  max-height: 100%;
}

.info_bkgrnd {
  display: block;
  width: 170px;
  height: 18px;
  line-height: 18px;
  border-radius: 5px;
  background-color: #ADD8E6;
  text-align: center;
  border: 2px solid #fff;
  opacity: 1.0;
  padding: 4px;
  font-size: 14px;
}  


.background-image-menu {
    position: absolute;
    bottom: -80px;
    left: -10px;
    z-index: 1;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}


.topbar{
  display: flex;
  align-items: center;  
	width: 100%;  
	background-color: #fff;
	color:rgb(0, 45, 107);
	padding-bottom:0px;
	display: inline-flex;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;		
	font-size:15px;
}	

.bottombar{
  display: flex;
  align-items: center;  
	width: 100%;
	background-color: #FFF;
	color:#002D6B;
	padding-bottom:0px;
	min-height:36px;
	display: inline-flex;
	font-size:15px;
  margin-top: 10px;
}	

#topmenu{
  display: inline-flex;
	cursor:pointer;
  width: 100%;
  justify-content: flex-end;
  align-items: baseline;
  padding-bottom: 5px;  
}

#topmenu a, #btmmenu a{
  text-decoration: none;
  color: #002D6B;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.42857143;
  letter-spacing: 0.005em;  
  background-color: transparent;
}


#topmenu a:hover, #btmmenu a:hover  {
  opacity: 0.4;
  cursor: pointer;
}

.stdmargin{
  margin-left: 24px;
}

#accfname{
      font-style: normal;
      color: rgb(0, 45, 107);
      padding-right: 1px;
      /*display: inline-block;*/
      display: none;
      /*font-size:15px;*/
      font-weight: 600;
}

.btnpallet{
  display: flex;    
  justify-content: center; 
  align-items: center;
  margin-top: -10px; 
  background-color: #f0f0f0;
  border: 1px solid #d0d0d0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  padding: 4px; min-width: 100px;
  border-radius: 5px; 
}

.memorialmain{
	display: flex;
	justify-content: center;
	/*align-items: center;*/
  align-items:flex-start;
	width: 100%;
  height: 80px;
	margin-top: 0px;
  margin-bottom: 10px;
	position: relative;
}	


.memorialmain h2, h3 {
  color: rgb(0, 45, 107);
  font-weight: 500;
}	

	.def a {
		color: #002D6B;
		text-decoration: none;
	}

	.def a:hover {
	  opacity: 0.7;
	}
	
	.def-active {
		/*border-bottom: solid 2px #fff;*/
    border-bottom: solid 2px #002D6B;
	}


	
.accslideoutcntr {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;  
}

#slideout_hdr {
width: 100%;  
}

#accslideout {
  /*display: none;*/
  flex-direction: column;
  background: #F5F5F5;
  color: #333;
  position: fixed;
  top: 0px;
  z-index: 9999;
  right: -380px;
  width: 100%;
  max-width: 380px;
  height: 100%;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

#accslideout form {
  display: block;
  padding: 14px;
}
#accslideout textarea {
  display:block;
  height: 100px;
  margin-bottom: 6px;
  width: 250px;
}

#accslideout.on {
  right: 0;
  display: flex;
}	

.accslideout_hdr {
	margin-top: 20px;
	margin-bottom: 24px;
	font-size: 16px;
	font-weight: 200;
	text-align: center;
	color: #16191c;
}

#overlay {
    position: fixed;
    display: none;
    height: 100%;
    width: 100%;
    background-color: #D3D3D3;
    opacity: 50%;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}

#overlay.on{
  display: block;
  overflow: hidden;	
}

.iframe-container {
    /*display: flex;*/
    display:none;
    align-items: center;  
	  flex-direction: column;
	  background: #F5F5F5;
	  color: #333;
	  position: fixed;
	  top: 35px;
    height: calc(100% - 35px);
    max-width: 380px;    
	  z-index: 9999;
    right: -380px;	  
	  -webkit-transition-duration: 0.3s;
	  -moz-transition-duration: 0.3s;
	  -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    }

  .iframeform {
    /* width: 370px; */
    width: 360px;
    height:100%;
    }

  .iframe-container.on {
    right: 0;
  }    
	
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
    }	
	
    .popup {
      position: fixed;
      width: 100%;
      height:100%;
      /*height: calc(100% - 70px);*/
      top: 15px;
      left: 50%;
      transform: translateX(-50%);
	    /*overflow: hidden;*/
      z-index: 4;
	    background-color: #41516C;
	    border-radius: 7px;	  
    }

    .popup-content {
      width: 100%;
     height: calc(100% - 36px); 
	  margin-top: 36px;  
    background-color: #fff;
    border-color: #fff;    
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;    
    }
	
	.popup-hdrTitle{
		margin: 0px 0px 0px 15px; /* top right bottom left */
		padding-top: 8px;
		color: #fff;
		font-size:14px;
		float:left;
	}
	

    .close-icon {
      color: #002D6B;
      position: absolute;
      right: 8px;
      cursor: pointer;
      vertical-align: 0em!important;
      line-height: 1em!important;
    }
  
    .close-iconOld {
      color: #fff;
    }    
    .close-icon:hover {
      opacity: 0.4;
      cursor: pointer;
    }		

/* form specific formatting */
 .form-group {
   display: flex;
   flex-direction: row;
   margin-bottom: 4px;
   /*padding-top: 10px;*/
 }
 
  .form-group-btns-right {
   display: flex;
   flex-direction: row;
   padding-top: 12px;
   justify-content: flex-end;
 }
 
 .form-group label {
   flex: none;
   display: block;
   width: 130px;
   font-weight: 600;
   font-size: 14px;
   padding-top: 8px;
   padding-left: 8px;
   padding-right: 8px;
   color: #686868;
 }
 
 .form-group label.right-inline {
   text-align: right;  
   padding-right: 8px;
   padding-left: 10px;
   padding-top: 10px;
   width: auto;
 }
 
 .form-group-right {
     text-align: right; 
     margin-top: 15px;	
     margin-bottom: 20px;		 
     padding-left: 20px;   
}   
 
 
 .form-group .input-control {
    color: #666;
    background-color: #fff;
    flex: 1 1 auto;
    display: block;
    /*margin-bottom: 10px;
    margin-right: 8px;*/
    padding: 6px 8px;
    /* margin-top: -4px;*/
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    border-radius: 3px; 
	/*width: 450px;*/
	max-width: 650px;
	font-size: 14px;
	line-height: 21px;
 }
 
 .input-control::placeholder {
  color: #bfbfbf; /* Set the desired placeholder color */
  background-color: #fff; /* Set the desired placeholder color */
} 

 .form-group .input-control input:focus {
  border-color: #1E90C9;
  outline: none; /* remove default outline on focus */
}

.form-group .input-control:focus .input-control:active {
  outline: none;
  border-color: red; /* Set the desired border color */
}

.input-control:focus-visible {
  outline: 2px solid #1E90C9;
  outline-offset: 0px;
}

.fieldinputgroup {
	display: flex;
	flex-direction: column;
	padding-bottom: 0px;
	margin-bottom:4px;
}

 input[type=email], input[type=text], input[type=number], input[type=password], input[type=reset], input[type=search], input[type=tel] {
    color: #666;
    padding: 0.64em;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    border-radius: 2px;
    background: #fafafa;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
 }
 
 textarea {
  resize: none;
  font-family: inherit;
}

.custom-select select {
    display: block;
    padding: 6px 10px;
    border: 1px solid #eaeaea;
    font-family: inherit;
    border-radius: 3px;
    font-size: 14px;
}

.custom-select select:focus-visible {
  outline: 2px solid #1E90C9;
  outline-offset: 0px;
}
 
 .sub_button {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 5px;
    margin-left: 20px;
    padding: 10px 16px;
    background: #1E90C9;
    border: none;
    color: #f2f2f2;
    text-transform: uppercase;
    letter-spacing: .09em;
    border-radius: 4px;
}

.sub_button:not(:disabled):hover {
	background: #59ABE3;
    border: none;
    color: #f2f2f2;
}


.sub_button:focus {
    background: #59ABE3;
    border: none;
    color: #f2f2f2;
}

.sub_button.active.focus {
    background: #59ABE3;
    border: none;
    color: #f2f2f2;
}

 
.errtext {
	color: red;
    font-size: 13px;
    margin-bottom: 4px;	
}

.tooltip2 {
	position: relative;
    display: inline-flex;	
}

.tooltip2:hover .tt2_txtr {
  visibility: visible;
  opacity: 1;
}

.tooltip2:hover .tt2_txtl {
  visibility: visible;
  opacity: 1;
}

.tooltip2 .tt2_txtr {
	visibility: hidden;
	position: absolute;
    top: -5px;
    left: 102%;
	
	width: 160px;
	padding:3px;
  font-size: 13px;	
	background-color: #FFF;
    color: #666;    
    border: 1px solid #eaeaea;	
    border-radius: 5px;
	  z-index: 5;
    opacity: 0;
    transition: opacity 0.5s;
}

.tt2_txtl {
	visibility: hidden;
	position: absolute;
  top: -5px;
  right: 25px;	
	width: 160px;
	padding:3px;
  font-size: 13px;
	text-align: center;
	background-color: #FFF;
    color: #666;    
    border: 1px solid #eaeaea;	
    border-radius: 5px;	
	z-index: 5;
  opacity: 0;
  transition: opacity 0.5s;
}


.tooltip3:hover .tt2_txtb {
  visibility: visible;
  opacity: 1;
}

.tt2_txtb {
	visibility: hidden;
	position: absolute;
    top: 165px;
    right: 25px;
	
	/*width: 160px;*/
	padding:3px;
    font-size: 13px;
	
	background-color: #FFF;
    color: #666;    
    border: 1px solid #eaeaea;	
    border-radius: 5px;
	
	z-index: 999999;

    opacity: 0;
    transition: opacity 0.5s;
}


/* SHOW DIALOG START*/

.showdialog-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent; /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
}

.showdialog-content {
    border-radius: 7px;
    background-color: #333;
    color: #fff;
	position: absolute;
	top: 60px;
}

.showdialog-buttons{
    margin-top: 5px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 6px 6px;
    background: #1E90C9;
    border: none;
    color: #f2f2f2;
    text-transform: uppercase;
    letter-spacing: .09em;
    border-radius: 4px;
	width: 110px;
}

.showdialog-buttons:not(:disabled):hover {
  /*.sub_button:hover {*/
   background: #59ABE3;
     border: none;
     color: #f2f2f2;
 }

.showdialog-buttons button {
  margin-left: 10px;
  margin-bottom: 10px;  
}

.showdialog_title {
  height: 50px;   
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
	color: rgba(255,255,255,1);
	display: flex;
	justify-content: center;
  text-align: center;
	align-items: center;	
}

.showdialog_msg {
    height: 62px;   
	margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
	color: rgba(255,255,255,.8);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	white-space: pre-line;	
  text-align: center;
}

/* SHOW DIALOG END*/

/* SHOW DIALOG 2 START */
.showdialog_hdr2{  
  background-color: #1E90C9;
  text-align: center;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  display: flex;
  height: 2.2em;
}

.showdialog_hdrh2{  
  color: #fff;
  margin:0;
  padding-top: 0.5em;
  font-weight: 500;
  padding-bottom: 0.5em;
  font-size: 1em;
}

.showdialog-content2 {
  border-radius: 7px;
  background-color: #fff;
  color: #333;
  position: absolute;
  top: 60px;
  display: flex;
  flex-direction: column;
}

.showdialog_title2 {
  margin-bottom: 20px;
  padding-left: 10px; /*Added*/
  padding-right: 10px;  /*Added*/
  font-weight: 400;
  line-height: 1.4;
  color: #333;
	display: flex;
	justify-content: center;
  text-align: center;
	align-items: center;	
  margin-block-start: 1em;  
}

.showdialog_msg2 {
  margin-bottom: 20px;
  /*font-size: 1.0em;*/
  font-weight: 400;
  line-height: 1.4;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  white-space: pre-line;	
  text-align: center;
  padding: 0px 10px;
  flex: 1;
  margin-block-start: 0.5em;
}

.showdialog_btn2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 0px;
  margin-bottom: 10px;
}


.cards {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 5px; /* 5px rounded corners */
  flex-basis: 12.5em;
  margin: 1.5rem 1.5em;
  position: relative;
}

.cardhdr {
  display: inline-flex;
  justify-content: center;
  line-height: 18px;
  height: 34px;
  align-items: center;
  background-color: #41516C;
  color:#fff;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  text-align: center;
  padding: 5px;
}

.card img{
	 vertical-align: middle;
}

.cardimg {
  width:100%;
  height:285px; 
  object-fit: cover;
  border-radius: 5px 5px 0 0;
  object-position: center top; /** NEW **/
}

.cardimgcntr {
  width:100%;
  height:285px; 
  border-radius: 5px 5px 0 0;
}

.usrImgOverlay {
    opacity: 0;
    transition: .3s ease;
    position: absolute;
    padding: 0px;
    right: 8px;
}

.usrImgOverlay .fa{
  color: #1E90C9;
}

.lihover:hover .usrImgOverlay {
  opacity: 1;
}


/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.cardcontainer {
  text-align: center;
  padding: 2px 10px;
}

.cardcontainer h4{
	font-size: 14px;
	font-weight: 500;
	margin-left:0px;
	margin-right:0px;
  display:flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  margin-bottom: 8px;  
}

.cardcontainer p{
	font-size: 14px;
	font-weight: 500;
}

/**** TIMELINE CARD START */
/* card */
.tlcard {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
  margin: 1.5em 1.5em;
}

.tlcardcntr {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 align-items: flex-start;
}

/* date */
.tlcard .date {
  --dateH: 1.8rem;
  height: var(--dateH);
  text-align: center;
  background-color: var(--accent-color);
  color: white;
  font-size: 1.0rem;
  font-weight: 600;
  display: grid;
  place-content: center;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.tlcard .hdr{
  display: inline-flex; 
  line-height: 28px;
  height: 34px; 
  align-items: center; 
}

.cardtitle{
  display:flex;
  align-items: stretch;
  justify-content: center; 
  font-weight: 500;
  font-size: 1.1em;
  color: rgb(0, 45, 107);
  margin-top: 10px;
}

.cardftr{
  /*position: relative;*/
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 0px;
  height: 30px;
  font-weight: 500;
  font-size: 1.1em;
  color: rgb(0, 45, 107);
  margin-block-start: 1em;
}

/* date flap */
.tlcard .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  position: absolute;
  top: 100%;
  right: 0;
}


/* title descr */
.tlcard .title,
.tlcard .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}
.tlcard .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}
.tlcard .descr {
  padding-block-end: 0.5rem;
  font-weight: 300;
}

/* shadows */
.tlcard .title::before
{
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
}
.tlcard .title::before {
  bottom: calc(100% + 0.125rem);
}

.tlcard .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}

/**** TIMELINE CARD END */
	.btn2
	 {
		margin-right: auto;
		margin-left: auto;
		padding: 10px 22px;
		background: #1E90C9;
		border: none;
		color: #f2f2f2;
		text-transform: capitalize;
		letter-spacing: .05em;
		border-radius: 5px;
    font-size: 1em;
	}	

  .btn2:not(:disabled):hover {
     background: #59ABE3;
       border: none;
       color: #f2f2f2;
   }

	.btn2.inactive {
		background: #fff;
		/*border: none;*/
    color: #A8A8A8;
    background-color: #fff;
    border: 1px solid #A8A8A8;    
	}

	.img-btncntnr {	
		position: relative;
		display: inline-block;

	}
	
	.img-btncntnr:hover {	
		position: relative;
		display: inline-block;
	}	

    .circle-icon {
      display: block;
      position: relative;
      width: 18px;
      height: 18px;
	    line-height: 18px;
      border-radius: 50%;
      background-color: #1E90C9;
      text-align: center;
	  border: 2px solid #fff;
	  opacity: 1.0;	
	  padding: 3px;
    }


    .circle-icon .fa{
		/* font-size: 0.8em;	*/
    font-size: 1.0em;
		color: #fff;
    }	
	

    .circle-icon i {
      line-height: 18px;
      /*padding-left: 0.05em;*/
    }

   .icon-help {
      display: inline-block;
      position: relative;      
      cursor: pointer;
    }

    .circle-icon:hover{
		  background-color: #87CEFA;
	}

    .icon-help:hover::after {
      justify-content: center;
      align-items: center;
      position: absolute;
      bottom: -37px;
        content: attr(data-text);
        font-size: 13px;      
        transform: translateX(-50%);
        padding: 6px 10px;
        background-color: #fff;
        border: 0.1em solid #1E90C9;
        border-radius: 5px;
        color: #333;
        white-space: nowrap;
        z-index: 5;	
      }
    
    .icon-help-loffset::after{
      left: 50px!important; 
    }

    .icon-help-roffset::after{
      right: -70px!important; 
    }

    .icon-help-r2offset::after{
      transform: translateX(-90%)!important;
    }

    .icon-help-r2offsetfull::after{
      transform: translateX(-100%)!important;
    }    
    
    .icon-help-leftoffset::after{
      left: 50%;
    }

    .icon-info::after{
      bottom: -42px!important;
    }

    .icon-help-rightoffset::after{
      float: right;
      transform: translateX(-67%)!important;
    }
    
    .icon-help-access:hover::after {
      white-space: pre-wrap;
      width: 200px;
      transform: translate(-6%, 120%);
    }
    
	
	#fileloader_error p {
		color: red;
		margin: 0px;
		padding-top: 2px;
		padding-bottom: 1px;
		font-size: 13px;
	}	


	.circle-btn-overlay {
		opacity: 0;
		transition: .3s ease;
		padding: 0px;
	}

	.card:hover .circle-btn-overlay, .card:active .circle-btn-overlay {
		opacity: 1;
	}


  .usrImgCntr {
    position: relative;
    margin-bottom: 12px;
    /*NEW 091103*/
    display: flex;
    flex-direction: column;
    margin-left: 7px;
    margin-top: 7px;
    /*NEW 091103*/
}

.usrImgCntr:hover {
  cursor: grab;
}

	.usrImgCntr:hover .usrImgOverlay{
	  opacity: 1;
	}

  .imageactual {
    max-width :100%;
    max-height: 100%;
  } 

  .imagesummary {
    max-width :140px;
    max-height :140px;
    margin-right: 10px;    
  } 

.entryimgcntnr {
  padding-top: 4px;
  padding-right: 4px;
  padding-left: 4px;
  padding-bottom: 5px;
  background: #fff;
  border-radius: 4px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


.entrydistimgselect {
    border: none;
    text-align: center;
    background-color: rgb(255, 255, 255);
    min-width: 200px;
    display: block;
}

	
.cart-cntr {
  position: relative;  
  top: 0;
  right: 12px;
  width: 113px;
  border: 2px solid rgb(0, 45, 107);
  border-radius: 5px;
  margin: 0.1em;
  
}

.cartcountrow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.cartitmrow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-left: 2px;
  margin-top: 12px;
  border-bottom: 1px solid #eaeaea;
  padding-top:2px;
  padding-bottom:5px;
}

.cart-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto; 
  justify-content: center;
}

.cart-icon-col-cntr {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0.15em;
  
}

.cart-total-col-cntr {
  padding-right: 6px;
  color: #fff;
  font-weight: 600;
}

.cartbtns{
  color:#337ab7;
  margin-left:0px;
  margin-right:8px;
  margin-top:0px;
  margin-bottom:5px;
  vertical-align: 0em;
}

  span.cartitmcnt-cntr {
  position: relative;  
  top: 1px;  
  right: -117px;
    z-index: 1;
	background: #bd161c;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	color: white;
	display: inline-block;
	font-weight: bold;
	width: 18px;
	height: 18px;
	line-height: 18px;
	margin-right: 5px;
	text-align: center;
	font-size: 11px;
  }	

  .crncy {
    color: #333;
    min-width: 68px;
    line-height: 17px;
    margin-right: 10px;
   }
     
   .crncy::before {
     font-size: 14px;
     font-weight: 500;
     content: "$" attr(data-value);
   }
   
   .crncy::after {
     content: "." attr(data-decimal);
     font-size: 11px;
   }
    
  .slideoutcntr {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;  
  }

  #slideout_hdr {
  width: 100%;  
  }

  #slideout {
    /* display: none; */
    flex-direction: column;
    background: #F5F5F5;
    color: #333;
    position: fixed;
    top: 0px;
    z-index: 9999;
    right: -520px;
    /*width: 415px;*/
    width: 375px;
    height: 100%;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;    
    /*transition: transform 0.8s ease;    */
  }
  #slideout form {
    display: block;
    padding: 20px;
  }
  #slideout textarea {
    display:block;
    height: 100px;
    margin-bottom: 6px;
    width: 250px;
  }

  #slideout.on {
    right: 0;
    display: flex!important;
  }

  .slideoutclosecntr{
    position: absolute;
    left: 53px;
    top: 2px;
  }

   .qtycontainer {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;  
    margin-top: 5px;  
  }
  
  .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: auto;
    
  }
  .quantity__minus,
  .quantity__plus {
      display: block;
      width: 28px;
      line-height: 18px;
      padding-top: 2px;
      padding-bottom: 2px;
      margin: 0;
      background: #1E90C9;
      text-decoration: none;
      text-align: center;      
    color: #fff;
  }


  .quantity__disabled{
      background: #eaeaea;
  }
  
  .quantity__minus:hover,
  .quantity__plus:hover {
    background: #59ABE3;
    color: #fff;
  } 
  .quantity__minus {
     border-radius: 5px 0 0 5px;
  }
  .quantity__plus {
     border-radius: 0 5px 5px 0;
  }
  
  .quantity__input {
    color: #666;
      padding: 0.64em;
      height: 22px !important;
      border-width: 1px;
      border-style: solid;
      border-color: #eaeaea;
      border-radius: 0px !important;
      background: #fafafa;
      box-shadow: none;
      box-sizing: border-box;
      transition: all .2s linear;
      width: 60px;
      margin: 0;
      text-align: center;    
      cursor: not-allowed;
      pointer-events: none;
  }

  .quantity__input input[type=text]{
    color: #666;
    padding: 0.64em;
    height: 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    border-radius: 2px;
    background: #fafafa;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
    width: 60px;
    margin: 0;
    text-align: center;  
  }
  .quantity__minus:link,
  .quantity__plus:link {
    color: #8184a1;
  } 
  .quantity__minus:visited,
  .quantity__plus:visited {
    color: #fff;
  }

  
.cartoutercntr {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center; 
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;   	
	width:494px;		
}

.cartcntr {
	display: flex;
	justify-content: right; 
  align-items: center;
	flex-direction: column;
}
			
.cartrow {
	display: flex;
	flex-direction: row;
	justify-content: right; 
	align-content: center;
	flex-wrap: nowrap;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 5px;
	width: 100%;
}
			
.cartrowcol {
	display: flex;
	justify-content: center; 
    align-items: center;
	height: 32px;	
	font-size: 14px;
	color: #43484D;
	font-weight: 400;	
}

.cart-totals {
    margin-top: 15px;
	font-size: 14px;
    color: #43484D;
    font-weight: 400;	
  }	

  .cart-totals-item {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;    
    margin-bottom: 5px; 
    line-height: 17px;   
  }	
    
	.cart-subtotal-label {
	  float: left;
	  clear: both;
	  width: calc(100% - 82px);;
	  text-align: right;
    margin-right: 10px;
	}

  .cart-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-column-right{
    align-items: flex-end;
    justify-content: space-between;    
  }

  .cart-qtyInp {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0px;
    padding-bottom: 3px;
    width: 230px;	
    line-height: 17px;
    margin-left:10px;
  }

  .cart-qtyInp p{
      height: 5vh;
    padding-top: 0px;
    padding-bottom: 3px;
    margin-top: 0px;
    margin-bottom: 2px;
    text-align: center;
    font-size: 13px;

    display: flex;
    align-items: flex-start;
    justify-content: center;    
  }

	.cart-totals-value {
	  float: right;
	  width: 15%;
	  text-align: right;
	}

  
  .cart-totals-item-total {
	 font-weight: bold;
  }

  .cartlastrow {
    margin-top: auto;
    padding-bottom: 0px;
  }

  #cartItmCntr {
    background: white;
    border-left: 1px solid #eaeaea;
  }
  
  .cartItm_img {
    padding-left: 2px;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 50px;
  }


  .cart_crncy {
    color: rgb(0, 45, 107);
      min-width: 68px;
      line-height: 17px;
      margin-right: 0px;
  }

  .cart_crncy::before {
    font-size: 16px;
    font-weight: 500;
    content: "$" attr(data-value);
  }
  
  .cart_crncy::after {
    content: "." attr(data-decimal);
    font-size: 12px;
  }

  .notification-status-bar {
    position: fixed;
    bottom:0px;
    line-height: 10px;
    left: 0;
    width: 100%;
    transition: background-color .5s;
    color: white;
    padding-top: 6px;
    padding-bottom: 6px;
    text-align: center;
    font-size:13px;
    display: none; /* Initially hide the error status bar */
  }

  #notificationbar-close-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
  }

/* Add some padding inside the card container */
.cardcontainer-trb {
  text-align: center;
  padding: 2px 10px;
  overflow: hidden;
  transition: height 0.3s ease;	  
  width: 340px;
  margin-top: 15px;
  margin-bottom: 0px;
  max-height:260px; /*ADDED */
  min-height: 260px;
}

.cardcontainer-trb h4{
	font-weight: 500;
	margin-left:0px;
	margin-right:0px;
}

.cardcontainer-trb p{
	font-weight: 500;
}	

.cardtext {
  font-size: 0.8em;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-bottom: 10px;
  white-space: pre-line;
}

header {
	font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif !important;
    background-color: white;
    color: rgb(0, 45, 107);
    padding-top: 5px;
	  padding-bottom: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	border-bottom: 1px solid #E8E8E8;
}

header a:hover {
    opacity: 0.5;
}

.logo {
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif !important;
    font-size: 19px;
    font-weight: 600;
    margin-left: 6px;
    min-width: 200px;
    display: flex;
    align-items: center;    
}

.logo img {
  width: 42px;
}


nav ul {
    list-style: none;    
    display: flex;
    align-items: flex-end;
    margin-top: 0;
    margin-bottom: 0px;
    padding-inline-start:20px;
}

nav li {
    margin: 0 15px;
}

nav a {
    text-decoration: none!important;
    color: #002D6B;
    font-style: normal!important;
    font-weight: 600;
	  font-size: 15px;
	  line-height: 1.42857143;
	  letter-spacing: 0.005em;
}

/* Styles applied when the screen width is 600px or smaller */
@media (max-width: 740px) {
  #topmenu a{
    font-size: 14px;
  }
  
  #topmenu a:not(:first-child) , #btmmenu a:not(:first-child)  {
    margin-left: 23px;
  }  

  #accfname {
    font-size: 14px;
  }
  
  .logo {
    font-size: 16px;
  }
}

/* Styles applied when the screen width is 700px or smaller */
@media (max-width: 700px) {
  #topmenu {
    display: none; 	/* Hide regular menu */
  }

  .menu-icon {
    display: inline-block; 	/* Show hamburger menu icon */
  }	
}

/* Styles applied when the screen width is 420px or smaller */
@media (max-width: 440px) {
  /* Add your styles here */

  .bkgrd-image {
    background-image: none;
  }

  .headshot-photo {
    border: unset;
  }

  .galdrag-area img, .usrAVCntr video {
    max-width: 100%;
  }

  .btn_large{
    font-size: 0.85em;
    line-height: 1.2em;
  }  

  .btn2{
    font-size: 0.85em;
    line-height: 1.2em;
  }  

  .myGallery img {
    margin-top: 2px!important;
    margin-left: 2px!important;  
  }

  .pndngImgHdr {
    margin-left: 2px!important;  
  }

  .usrImgCntr {
    margin-left: 2px!important;
  }

  .galdrag-area img {
    width: calc(100% - 4px)!important;
  }  

  .c1 {
    padding: 10px 15px 10px !important;
  }

  .c1 h1{
  margin-bottom: 20px!important;
  }

  .popup {
    top: 0px;
  }

  .showdialog-content2{
    max-width: 360px!important;
  }  

  .showdialog_msg2, .showdialog_title2, .showdialog_hdr2{
    font-size: 0.9em!important;
  }  
}

.galdrag-area {
  height: 100%;
  border: 2px dashed #eaeaea;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 3px;
  margin-bottom: 0px;
  margin-right: 3px;
}

.formContainerRow {
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
}

.myGallery {
  display: flex;
  flex-wrap: wrap;
}

.myGallery img {
  margin-top: 7px;
  margin-left: 7px;  
  float: left;
}

.galdrag-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 7px;
}


/* Styles applied when the screen width is 421px or larger */
@media (min-width: 441px) {
  .galdrag-area img {
    max-width: 240px;
  }

  .usrAVCntr video {
    max-width: 320px;
  }  

  .btn_large{
    font-size: 0.9em;
    line-height: 1.5em;
  }  

  .btn2{
    font-size: 0.9em;
    line-height: 1.2em;
  }    

  .showdialog_msg2, .showdialog_title2, .showdialog_hdr2{
    font-size: 1.0em!important;
  }  
}

.entryttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.0;
  color: rgb(0, 45, 107);
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.5em;
  width: 100%;
}

.entryttl li{
  padding-left: 5px;margin-bottom: 10px;  color: #777;
}

.btn_large {
  margin-right: auto;
  margin-left: auto;
  background: #fff;
  border: 1px solid #002D6B;
  color: #002D6B;
  
  letter-spacing: .002em;
  border-radius: 5px;
  height: 40px;
  line-height: 1.1;
  padding-inline: 4px;
}

.btn_large:hover {
  background-color:unset; 
  border: 2px solid #002D6B;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn_large.inactive {
  background: #D3D3D3;
  color: #fff;
  border: none;
}

.galscrollcntr{
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 200px;
  margin-right: 1px;
  justify-content: center;
}

.cardStatusCntr{
  position: absolute;
  left: 6px;
  top: 6px;
  color: #fff;
}

.bannerAdCtnr {
  max-height: 200px;
  position: relative;
  margin: auto;
}

.bannerSlide {
  display: none;
}

.bannerSlide img{
	max-height:190px;
	border: 1px solid #eaeaea;
    border-radius: 10px;  
}

.bannerSlide-prev, .bannerSlide-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 8px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.bannerSlide-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.bannerSlide-prev:hover, .bannerSlide-next:hover {
  background-color: #59ABE3;
}

.bannerIndxCtnr {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.bannerIndxCtnr-dot {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 1px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .bannerIndxCtnr-dot:hover {
  background-color: #1E90C9;
}

.bannerSlide-fade {
  animation-name: fade;
  animation-duration: 1.5s;
}