
<style>
* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  background: #f1f1f1;
}

/* Header/Blog Title */
.header {
  padding: 15px;
  text-align: center;
  background-image: url("kitswfiles/header_bg.jpg");
  /*background: #240E71;*/
  color: white;
    border-radius: 5px;
    
}

/* Footer */
.footer1 {
  padding: 1px;
  text-align: center;
  
  margin-top: 5px;
  color: white;
    border-radius: 5px;
}

.header h1 {
  font-size: 34px;
  
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #FE0D08;
  
  /*
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  */
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: right;
  width: 70%;
  padding-right: 100px;

}

.leftcolumnfull {   
  float: right;
  width: 100%;

}

/* Right column */
.rightcolumn {
  float: right;
  
  width: 15%;
  margin-top: 5px;
  padding-right: 10px;
  background-color: navy;
  position:fixed;
   
}

/* Right vaccinationcolumn */
.vaccinecolumn {
  float: right;
  
  width: 10%;
  margin-top: 5px;
  padding-right: 10px;
  
  position:fixed;
   
}


/* Notice Board */
.nboard {
  /*padding: 1px;
  text-align: center;
  margin: auto;
  float: right;
  width: 40%;  
  color: white;
  border-radius: 5px;
*/
    padding: 3px;
  margin-top: 15px;
  background: #ececf9;
  border: 2px solid black;
  border-radius: 25px;	
}


/* Fake image */
.fakeimg {
  /*background-color: Midnightblue;*/
  width: 100%;
  padding: 20px;
 
    
}

/* Add a card effect for articles */
.card {
  background-color: white;
  padding: 10px;
  margin-top: 20px;
  
  border: 1px solid red;
   border-radius: 5px;
}
.card2 {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  border: 1px solid red;
   border-radius: 5px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 1px;
  text-align: center;
  background: navy;
  margin-top: 5px;
  color: white;
    border-radius: 5px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn, .ul {   
    width: 100%;
    padding: 0;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}

a.two:link, a.two:visited {
  border-radius: 25px;
  background-color: #000099;
  color: white;
  padding: 2px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
a.two:hover, a.two:active {
  background-color: #ff0000;
}
a.three:link, a.three:visited {
  border-radius: 25px;
  background-color: lime;
  color: white;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
a.three:hover, a.three:active {
  background-color: yellow;
}
a.four:link, a.three:visited {
  border-radius: 6px;
  background-color: #ff9900;
  color: white;
  padding: 2px 30px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
a.four:hover, a.three:active {
  background-color: #000099;
}


table, th, td {  
    border: 1px solid black;  
    border-collapse: collapse;  
	/*mine
	width: 100%;*/
}  
th, td {  
    padding: 10px; 
   /*mine
	width: 50%;*/	
	
}  
table#alter tr:nth-child(even) {  
    background-color: #eee;  
}  
table#alter tr:nth-child(odd) {  
    background-color: #fff;  
}  
table#alter th {  
    color: white;  
    background-color: gray;  
}  

table2 {
	border: none;
}

table3, th {
background-color: #ff6600;
  color: white;
}
table3, tr {
background-color: white;
}

p {
   font-family: "Times New Roman", Times, serif;
 
   
}

ul {
  list-style-type: none;
  margin: 10;
  
  padding: 0;
  width: 210px;
    background-color: white;
  border: 1px solid #555;
}
li a {
  display: block;
  color: #000;
  
  padding: 8px 16px;
  text-decoration: none;
}

li {
  text-align: center;
  font-size: 12px;
  border-bottom: 1px solid #555;
}

li:last-child {
  border-bottom: none;
}

li a.active {
  background-color: #FE0D08;
  color: white;
}

li a:hover:not(.active) {
  background-color: #FE0D08;
  color: white;
}


/* accordian */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.imglogo {
  float: left;
  position: relative;
  left: 50px;
}

.imglogo2 {
  float: right;
  position: relative;
  right: 20px;
}
img { 
    max-width: 100%; 
    height: auto; 
	
}
.photo { 
   
    height: 100px; 
    width: 100px;
    border: 1px solid red;
    border-radius: 10px;
    box-shadow: 3px  5px 18px #888888;
	
}
.imgborder
{
	border: 1px solid red;
}
.dark-mode {
  background-color: black;
  color: white;
}
hr {
  border: 1px solid red;
}



.btn {
  display: block;
  width: 100%;
  border: none;
  background-color: #4CAF50;
  color: white;
  padding: 4px 2px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  
}
.btn:hover {
  background-color: #ddd;
  color: black;
}
.btn3:hover {
  background-color: #ddd;
  color: black;
}

.btn2 {
  display: block;
  width: 100%;
  border: none;
  background-color: Tomato;
  color: white;
  padding: 4px 2px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  
}



.btn3 {
  display: block;
  width: 100%;
  border: none;
  background-color: Red;
  color: white;
  padding: 4px 2px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  
}
.btn4 {
  display: block;
  width: 20%;
  border: none;
  background-color: Red;
  color: white;
  padding: 4px 2px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  
}



.blinking{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
    0%{     color: #ff2d00;    }
    49%{    color: #ff2d00; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #ff2d00;    }
}


.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  font-size: 12px; 
  position: absolute;
  background-color: #f9f9f9;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
    color: white;
  background-color: #240E71;
}

.dropdown:hover .dropdown-content {
  display: block;
}


/* glow text starts */
.glow {
  font-size: 40px;
  color: #fe6c00;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #FFFACD, 0 0 40px #FFFACD, 0 0 50px #FFFACD, 0 0 60px #FFFACD, 0 0 70px #FFFACD;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #F0E68C, 0 0 40px #F0E68C, 0 0 50px #F0E68C, 0 0 60px #F0E68C, 0 0 70px #F0E68C, 0 0 80px #F0E68C;
  }
}
/* glow text ends */








/*Information alert message*/
.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  
  margin-bottom: 0px;
}

.alert.success {background-color: #4CAF50;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}


.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}









</style>