
<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;
}

.header h1 {
  font-size: 30px;
  
  
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #FE0D08;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  size:5px;
  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: left;
  width: 74%;

}

.leftcolumnfull {   
 float: left-side;
  width: 80%;
 padding-left:120px;

 

}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background-color: #f1f1f1;
  padding-left: 10px;
  
  
   
}

/* Fake image */
.fakeimg {
  /*background-color: Midnightblue;*/
  width: 100%;
  padding: 20px;
 
    
}

/* Add a card effect for articles */
.card {
  background-color: #b3d1ff;

   /*background-image: url('kits.jpg');*/
    background-position: center;
  /*background-repeat: no-repeat;*/
  /*background-size: cover;*/
  position: relative;



  padding: 20px;
  margin-top: 20px;
  border: 1px solid red;
   border-radius: 5px;
    box-shadow: 3px  5px 18px #888888;
}
.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, .leftcolumnfull {   
    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%;
  }
}

table, thead, tbody, th, td, tr{  
    border: 1px solid black;  
    border-collapse: collapse;  
	/*mine
	width: 100%;*/
    
}  

th {  
        
   /*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;  
}  
p {
   font-family: "Times New Roman", Times, serif;
}

ul {

  font-size:1vw;
}

/* 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";
}

.imglogo {
  float: left;
  position: relative;
  left: 50px;
}

.imglogo2 {
  float: right;
  position: relative;
  right: 20px;
}

img { 
   
    height: 100px; 
    width: 100px;
    border: 1px solid red;
    border-radius: 10px;
    box-shadow: 3px  5px 18px #888888;
	
}

.imgborder
{
}


.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;
}


</style>
