html {
    height: 100%;
}

body {
	 background-image: url(/images/RedWhiteBlue.jpg);
	 min-height: 100%;
     min-width: 100%;
     background-size: contain;
/*     background-repeat: repeat;  */
}

/* Provides a link with no underscore and centered */
a {
    text-align: center;
 	height: 1em;
    font-size:15pt;
    text-decoration: none;
}

#a {
    text-align: center;
 	height: 80pt;
    font-size:15pt;
}

.ulstd {
     font-family: "Times New Roman",serif;    
	 font-size:20pt;
}

.lg-font {
     font-family: Arial,Helvetica,sans-serif;    
     font-size: 30pt;
}

.lg-font-i {
     font-family: Arial,Helvetica,sans-serif;    
     font-size: 30pt;
     font-style: italic;
}

.med-font {
     font-family: Arial,Helvetica,sans-serif;    
     font-size: 20pt;
}

.med-font-i {
     font-family: Arial,Helvetica,sans-serif;    
     font-size: 20pt;
     font-style: italic;
 }

.reg-font {
     font-family: Arial,Helvetica,sans-serif;    
     font-size: 15pt;
}

.reg-font-i {
     font-family: Arial,Helvetica,sans-serif;    
     font-size: 15pt;
     font-style: italic;
}

.sm-font-t {
     font-family: "Times New Roman",serif;    
     font-size: 10pt;
}

.no_line {
       text-decoration: none;
}

.ctr {
    text-align: center;
}

.wdth {
    width: 60%;
}

.right {
    float: right;   
    font-size:1.5em;
}

.left {
    float: left;
	 font-size:1.5em;
}

.s1-black {
    font-size: 1em;
    color: black;
}

.s1-5-black {
    font-size: 1.5em;
    color: black;
}

.s1-5-italic-blue {
    font-size: 1.5em;
    font-style: italic;
    color: blue;
}

.s1-5-blue {
    font-size: 1.5em;
    color: blue;
    text-align: center;
}

.s2-black {
    font-size: 2em;
    color: black;
    text-align: center;
    margin: 0 0 0 0;
}

#dkhimg { 
    width:50%;
 	height: 80pt;
	padding: 0;
	margin: auto;
}

#tablist { 
    width:50%;
	padding: 0;
	margin: auto;
}

#pic {
    margin: auto;
}

table {
    width:60%;
	border: none;
	margin: auto;
    border-spacing: 0;
    font-size: 3em;
}

th { 
    color: black;
    font-size: 2em;
	border: none;
    border-spacing: 20pt;
 	padding: 0 20pt 0 20pt;
}

td { 
    color: black;
    font-size: 2em;
	border: none;
    border-spacing: 20pt;
 	padding: 0 20pt 0 20pt;
}

.table2 {
    width:100%;
	border: none;
	margin: auto;
    border-spacing: 0;
    padding-bottom: 30px;    
    }

.td2 { 
    color: black;
    font-size: 1em;
    text-align: center;
	border: none;
    border-spacing: 20pt;
 	padding: 0 20pt 0 20pt;
}

h1 { font-family:"Times New Roman",serif;    
	    font-size:30pt;
	    text-align: center;
}

h2 { font-family:"Times New Roman",serif;    
	    font-size:20pt;
	    text-align: center;
}

#text { font-family:"Lucida Calligraphy",noserif;
        text-align: center;
        font-size: 15pt;
        width:60%;
    }

#text2 { font-family:"Times New Roman",serif;    
	    font-size:20pt;
	    text-align: center;
}

/* 1. CENTER THE MAIN MENU BAR WITH GRID */
.navbar {
    display: grid;
    border-radius: 5px;
   	justify-content: center;  /*Centers the menu block horizontally */
    width: 100%;    
    background-color: rgba(255, 255, 255, 0.07);
}

/* 2. LAYOUT THE MAIN MENU ITEMS IN A ROW */
.menu-items {
    display: grid;
    border-radius: 5px;
    grid-auto-flow: column;  /* Automatically places items in horizontal columns */
    list-style: none;
	background-color: rgba(255, 255, 255, 0.07);
    background-image: url(/images/RedWhiteBlue.jpg);
    background-size: contain;
	width: 100%;
}

.menu-items > li {
    position: relative; /* Context for absolute positioning the dropdown */
}

/* font-size here define the menu size.  */
.menu-items a {
    border-radius: 5px;
    display: block;
    color: black;
    padding: 0 0;
    text-decoration: none;
    font-size: 2em;
    text-align: left;
    margin: 0 0 0 0;
    background-color: rgba(255, 255, 255, 0.07);
}

.menu-items a:hover {
	background: linear-gradient(to bottom, #FFFFF0, #E0E0E0);
}

/* 3. THE DROPDOWN SUBMENU */
.dropdown {
    display: none; /* Hide by default */
    position: absolute;
    top: 100%; /* Position right below the parent tab */
	background-color: rgba(255, 255, 255, 0.07);
    width: max-content;
	list-style: none;
    z-index: 100;
	padding-left: 5px; 
	padding-right: 5px; 

  
/* Optional: Center the dropdown container under its own parent link 
/*    left: 10%; 
    transform: translateX(0%);  */
}

/* Dropdown links */
.dropdown a {
    color: black; 
    text-align: left;
	background-color: palegreen;
	padding-left: 5px; 
	padding-right: 5px; 

}

.dropdown a:hover {
	background-color: white;
	padding-right: 5px;}

/* Show dropdown on hover */
.menu-items > li:hover .dropdown {
    display: block;
	background-color: palegreen;
}

.grid-container {
	display: grid;
	background-color: rgba(255, 255, 255, 0.07);
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  
/* CRITICAL: Allows the grid to start at full screen but grow larger */
	min-height: 100vh; 
  
/* CRITICAL: Rows automatically scale to fit their individual content */
	grid-template-rows: auto; 
	gap: 0;
	right-padding: 5;
	box-sizing: content-box;  
}


/* 2. The Following Div */
.following-box {
/* Stays in normal layout flow and gets naturally pushed down */
	padding: 0;
	text-align: center;
}

/* Visual placeholder for grid content */
.card {
  padding: 0;
  border-radius: 8px;
/*  box-shadow: 0 4px 6px rgba(0,0,0,0.1);   */
}

#sig { font-family:"Lucida Calligraphy";
        text-align: center;
        font-size: 25pt;
    }

#reverse {
    background-color: White;
    color: black;
    width: 15%;
    font-size: 15pt;
    border-radius: 50px;
    text-align: center;
    margin: auto;
}

/*	Places content at the bottom of the page */
.bottom-line {
    position: fixed;   /* Sticks the line relative to the browser window */
    width: 200px;
    text-align: center;
    justify-content: center;
    border-radius: 5px;
    bottom: 5pt;         /* Places it exactly at the very bottom edge */
    left: 45%;
      background-color: white; /* Sets the line color (e.g., white) */
    color: black;
    z-index: 9999;     /* Keeps the line visible on top of other content */
}
    
.cpyr {
    position: fixed;    /* or absolute */
    bottom: 5pt;
    width: 100%;
    font-family:"Times New Roman",serif;    
    font-size:15pt;
    text-align: center;
} 
