
        /* Reset some default styles for better consistency */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

	p {margin-bottom: 20px;}
	h2,h3 {margin-bottom: 30px;}
	h1 {
		font-weight: normal; 
		font-size: 200%; 
		color: #8b0100; 
		text-align: center;
		margin: 40px auto 40px auto;
		}
		
	h1.banner-text {
		font-weight: normal; 
		font-size: 400%; 
		color: #000000; 
		text-align: center;
		margin: 0px auto 0px 25%;
		padding: 60px 0 0 0;
		
		}

        /* Global styles */
        
             
        
        body {
      
            font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
            background-color: #000000;
            
        }

    .pagewrap { max-width: 1200px;
    		margin: 0 auto;
    }    
        
  /* Other Fonts and colors */
        
        .red {color: #8b0100;}
       
       .bold {font-weight: bold;}
		.blurb160 {font-size: 160%; text-align: center;}
		.blurb120 {font-size:120%;}
		.topblurb {margin: 0px 0 35px 40px;}
		
		.aclonica {
  font-family: "Aclonica", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.clearboth {clear: both;}


/* Links */

a:link {color: #8b0100;}
a:visited {color: #555555;}
a:hover {color: #000000; }
a:active {color: #dd0000;} 


/* Fancy Links */
 
a.fancy {
	color: #8b0100;
  position: relative;
  text-decoration: underline 2px dotted #8b0100;
}

a.fancy::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #18272F;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

a.fancy:hover::before {
  transform-origin: left;
  transform: scaleX(1);
} 
 
 
a.fancy:visited {color: #555555; text-decoration: underline dotted  2px #555555;} 
a.fancy:active {color: #dd0000;} 



/* ****** Details accordian *******/

details {
  padding: 10px;
  background-color: #cccccc;
  border: 1px solid black;
  border-radius: 5px;
  color: black;
}




summary {
  padding: 10px;
  padding-left: 20px;
  background-color: #cccccc;
  cursor: pointer;
  list-style: none;
  color: #000000;
  font-weight: bold;
}

summary::-webkit-details-marker {
  display: none;
}


summary {
  display: flex;
}

summary::before {
  content: '';
  width: 35px;
  height: 35px;
  background: url(images/chevronsblack35.png);
  background-position: top left;
  background-repeat: no-repeat;
  margin-right: 10px;
  transition: 0.4s;
}

details[open] > summary::before {
  transform: rotate(180deg);
}




     
/* ****** Section styles  ******* */


 

/****** Header ******/

        .header {
        	position: relative;
            height: 200px;
            margin-bottom: 0;
            background-color: #ffffff;
        }
        
#logo {
		position: absolute;
		top:0; left: 3%;
		width: 30%;
		}
		
		
.logoimg { width: 100%;} /* width of container div is set above -  now fill it.*/




 /* Navigation styles */
        nav {
        	
            background-color: #000000;
            padding: 0px;
            padding-top: 0px;
            display: flex;
            justify-content: center;
        }


        #flexnav {   /*nav is a flexbox in order to position the ul*/
  display: flex;
  justify-content: right;
  
}

  #flexnav ul { /*ul is a flexbox, line items are its children*/
    display: flex;
    flex-flow: row wrap;
	list-style: none;
	margin: 0 15% 0 0;
	padding: 0px;
}

/* li nav effects*/

 #flexnav ul li {
	
	flex: 0 1 auto;

	background-image: linear-gradient(to bottom, transparent 50%, #dddddd 50% 96%,  #8b0100 96%);
	
	background-size: 100% 200%;
	background-position: top center; /* transparent half of background showing*/
	display: block;
	text-align: center;
	text-decoration: none;
	transition: all .20s ease-in-out; 

	}

#flexnav ul li:hover {
	
	background-position: bottom center; /* non-transparent half of background showing*/
	}
	


/* highlight current page menu item*/
li.current
 {
	background-position: bottom center!important; /* non-transparent half of background showing*/
	
}

/* color current page menu item*/
li.current a { color: black!important;}


/*li a nav effects*/


#flexnav ul li a {
	color: #FFFFFF;
	font-size: 120%;
	text-decoration: none;
	display: block;
	padding: 1em 1.5em;	
	
}


/*the hover,  and lines*/
	
	

#flexnav ul li a:hover {
	color: black;
	
	}	


/* page jump menu */


ul.jumpnav {
	text-align: center;
	margin-bottom: 30px;
	
	}

ul.jumpnav li {
	display: inline-block;
	margin-right: 30px;
	}



/* Main content container */


            .container {
            
            margin: 0px auto 0px auto;
            background-color: #f1f1f1;
  			border-top: 1px solid #b0b0b0;
        }
        
        
		
        
        /* Content area styles */
        
        .content {
            font-size: 120%;
            line-height: 1.4;
            padding: 0px 15% 100px 15%; 
            background-image: 
        }
        
        .float-right {
        display: block;
        width: 30%;
        float: right;
        margin: 30px 0 30px 30px;
        }
        
        
        .float-left {
        display: block;
        width: 30%;
        float: left;
        margin: 30px 30px 30px 0px;
        }
        
       .centered45 {
        display: block;
        width: 45%;
        margin: 30px auto 30px auto;
        }
     
     
      /*flex container-merch page */     
 
   
     /* set up a row of divs in a flex container*/
     
    .flexrow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

   /* style the divs */
   
	.flexcolumn {
	flex: 1 1 35%;
	
  	padding: 20px 10px 0 10px;
  	margin: 20px;
  	border: 1px solid #888888;
  	background-color: #e9e9e9;
  	border-radius: 20px;
}

   /*make those divs also contain flex containers, with vertically stacked children*/

  .flexcolumninside {
  
  display: flex;
  flex-direction: column;
  align-items:center;
  padding: 10px 30px 30px 30px;
  font-size: 100%;
  color: #8b0100;
  }
  
   .flexcolumninside a:link {
   padding:5px 0;
   }
   
   
.flexcolumninside a:visited {
 color:black;
 background-color: none;
 }
 
 .flexcolumninside a:hover {
 color:red;
 background-color: #ffffff;
 }



.top20 {margin-top: 20px;}


  /* make the divs stack on small screens*/

@media screen and (max-width: 800px) {
  .flexcolumn {
    flex: 1 0 100%;
   font-size: 110%;
  }
} 
     
     
     
     
     
     
        
        

     /* Card styles */
     
     div.card1 {
     display: block;
     overflow: auto
     width: 100%;
    
     margin: 0 auto 40px auto;
     padding: 20px 20px 20px 20px;
     border: 1px solid #888888;
     border-radius: 10px;
     background-color: #e9e9e9;
     
     }
      
      .card-img-left {
        display: block;
        width: 100px;
        float: left;
        margin: 20px 30px 10px 10px;
        } 
        
        
        
      .video-embed {
  		display: block;
  		aspect-ratio: 16 / 9;
 		 width: 90%;
 		 margin: 0 auto;
 		 border-radius: 10px;
		}
      
      
        /* ***** Footer styles ***** */
        
        .footer1 {margin-bottom: -6px;}
        
        footer {
            height: auto;
            background-color: #000000; 
             
            color: #fff;
            text-align: right;
            padding: 30px 100px 20px 70px;
            
        }

		
   /* ******* responsive styles ******* */
   
   
   @media only screen and (max-width: 840px) {

   h1.banner-text {display: none;} /* the logo shows the name */
   
   
   #logo {
		position: relative;
		width: 50%;
		top:0; left: 25%;
		}                     /* enlarge and center the logo*/
   
   
   .header { 
		height: auto; 
   		padding-bottom: 30px;
   		} /*make the header tall enough to contain the logo */
   		
   		 #flexnav { justify-content: center;} /* instead of right- the menu does not need to leave room for the logo anymore */
   		 
   		 #flexnav ul {
	margin: 0 auto 0 auto;
	padding: 0px;
}
   
   }
   
   
   
    @media only screen and (max-width: 575px) {
   
    nav { border-top: 2px solid black;} /* separate the nav from the header*/
  
   #flexnav ul {
	margin: 0 auto 0 auto;
	padding: 0px;
}
   
   #flexnav ul li { 
   	width: 100%;
   	font-size: 130%;
   	border-top: 2px solid #dddddd;
   } /* menu items go to full width and get dividers */
   
   

    footer { 
    text-align: center;
    font-size: 130%;
    
    }
    
    .float-left, .float-right {
        display: block;
        width: 70%;
        float: none;
        margin: 30px auto 30px auto;
        }
    
    
    
    }
    
    
    
 }  
   
