
        /* Dropdown Button */


        .slant_tab {
            position: fixed;
            top: 1;
            left: 0;
            line-height: 1rem;
            background-color: lightgrey;
            border: none;      
	height: 25.5px;
            font-size: .80rem;
    font-weight: bold;
    color: #25262e; /* Gray color for a distinct look */


            margin-right: 8px;
            width: 100px;

                        z-index: 2500; /* Ensure dropdown is above sidebar */
        
        }


        .slant_tab i {   padding: 0.5rem;}

.slant_tab:after {
      display: block;
      content:" ";
      position: absolute;
      transform:skewX(-45deg);
      -ms-transform:skewX(-45deg);
      -webkit-transform:skewX(-45deg);
      z-index: -1;
      background-color: lightgrey;
      background:lightgrey;
      height: 25.5px;
      top: -.15px;

      border: none;

      width: 30px;
      right: -14px;
  }


        .slant_tab_inner {
            border: none;
            padding: 4px 20px 4px 8px;
            margin-right: -20px;
            cursor: pointer;

        }

        .slant_tab_inner i {
            font-size: 1rem;
            color: black;
        }

        /* Unified Navigation */
        #subnav {
            background-color: #007bff;
            height: 22px; /* Set the height of the navigation bar */
            color: white;
            position: fixed;
            top: 1;
            z-index: 2500; /* Ensure it's above other elements */
            width: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 0;
            transition: left 0.3s ease;
        }

        #subnav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        #subnav ul li {
            padding: 3px 10px;
        }

        #subnav ul li a {
            text-decoration: none;
            color: white;
            font-size: .65rem;
            font-weight: bold;
        }


        /* Desktop View */
        @media (min-width: 769px) {
            #subnav {
                display: flex;
                justify-content: center;
                align-items: center;

            }

            #subnav ul {
                display: flex;
                justify-content: flex-start;
    		justify-content: center; /* Center horizontally */
    		align-items: center; /* Center vertically */
            }

            #subnav ul li {
                margin-right: 20px;
            }

                    #subnav ul li a:hover {
            color: #E0E0E0;
             }

        }

.slant_tab, .subpgtitle {display: none; /* Hidden by default (shown in mobile view) */

}
        /* Mobile View (Sidebar) */
        @media (max-width: 900px) {





            #subnav {
                background-color: #f0f0f0;
                left: -250px; /* Initially hidden */
                height: 100%;
                padding-top: 40px;
                z-index: 2300; /* Below dropdown button */
                width: 250px;
            }


            .subpgtitle {
              display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #666; /* Gray color for a distinct look */
    cursor: default; /* Indicate it’s not clickable */
    padding: 10px 0; /* Add spacing */
    margin: 0;
    list-style: none; /* Ensure no bullet is displayed */
}

            #subnav.active {
                left: 0; /* Slide into view */
            }

            #subnav ul {
                flex-direction: column;
                display: flex;
                justify-content: flex-start;
    		justify-content: left; 
    		align-items: left; 
            }


            #subnav ul li {
                margin: 5px 0;
            }

            #subnav ul li a {
            text-decoration: none;
            color: black;
            font-size: 1rem;
            font-weight: bold;
    	    }
                #subnav ul li a:hover {
            color: #007bff;
  	      }


            
        
            .slant_tab {
                display: flex; /* Show the dropdown button on mobile */
                top:50px; /* tab vert position */
            }
        }

        #subnav {display: block; /* Ensure visibility for mobile */ }


        }


        /* Page Content */
#page_content {
            top:200px;
        }


       .hero {
            background: #f4f4f4;
            padding: 3rem;
            text-align: center;
  	line-height: 1.125;
        }
        .content-section {
            padding: 2rem;
            border-bottom: 1px solid #ddd;
	line-height: 1.125;
        }
        .content-section h2 {
            color: #007bff;
        }
        .back-to-top {
            display: block;
            margin-top: 1rem;
            text-align: right;
        }
        .back-to-top a {
            color: #007bff;
            text-decoration: none;
        }