/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* Style the header */
.header {

  padding: 10px;
  text-align: center;
}         

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style white on black text */
.whiteonblack {        
  border-width : 0px;
  color: white;
  background-color: black;
 }
  
 

/* Style justified paragraph in body */
.justtext  {        
  text-indent: 40px;   
  text-align: justify;
}
    
/* Style centered italics bold in body */
.cib  {        
  font-style: italic; 
  font-weight: 700;  
  text-align: center;
}           

/* Style centered normal bold in body */
.cin  {        
  font-style: normal; 
  font-weight: 700;  
  text-align: center;
}          
    
/* Style cursive text at end */
.fancy  {        
  font-family: "Lucida Handwriting","Brush Script MT",cursive; 
  font-weight: 700;  
  font-size: large;
  text-align: center;
}  
/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

/* Left and right column */
.column.side {
  width: 25%;
}

/* Middle column */
.column.middle {
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
}



/* style for centering left column */
.left_center {      
  background-color: #f1f1f1;
  text-align: center; 
  font-weight: bold;
  }
   
            

/* style for centering center column */
.center_center {
  text-align: center;
  }

/* style for centering tables */  
  table.center {
  margin-left: auto; 
  margin-right: auto;
}