<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
       
        body {
            user-select: none; 
            -webkit-user-select: none; 
            -moz-user-select: none; 
            -ms-user-select: none; 
        }

		 .sticky-nav {
			  position: fixed;
			  bottom: 12%; /* Position it 1/5 from the bottom */
			  right: 10px;
			  background-color: #f1f1f1;
			  padding: 5px;
			  border-radius: 5px;
			  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
			  z-index: 1000; /* Ensure it's on top of other content */
			}

			.sticky-nav a {
			  display: block;
			  padding: 5px;
			  font-size: 8px;
			  text-decoration: none;
			  color: #333;
			}

			.sticky-nav a:hover {
			  background-color: #e6e6e6;
			}

			.sticky-nav a.prev {
			  border-bottom: 1px solid #ccc;
			}

/*Modal For Video*/
.custom-modal-size {
  max-width: 51%;
  -webkit-box-shadow: 2px 2px 16px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 16px 0px rgba(0,0,0,0.75);
box-shadow: 2px 2px 16px 0px rgba(0,0,0,0.75);
}

.custom-close-btn {
  background: none;
  border: none;
  color: #0072c0;
  cursor: pointer;
}

.custom-close-btn span {
  display: inline-block;
  font-size: 2.25rem;
}
.modal-title
{
  color: #0072c0;
  font-weight: 700;
}


/* Footer - Social Media Links */
.social-media-links {
  display: flex;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 5px;
  text-decoration: none;
  color: white;
  font-size: 12px;
  transition: all 0.3s ease;
}


.facebook {
  background-color: #4A5BB9;
  color:white;
  text-shadow: 2px 2px 2px black;
}

.linkedin {
 color:white;
 text-shadow: 2px 2px 2px black;
 background-color: #4CA0F5;
}</pre></body></html>