<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS Template</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
  box-sizing: border-box;
}

table.price{
	
padding-left:20px;
border-collapse: separate;
}	
img.righty {
  float: right;
  clear: both;
  border-radius: 10px;
   border: 2px solid #25346c;
      margin: 0 0 5px 10px;
 
}
img.lilrighty {
  float: right;
  clear: both;
  border-radius: 10px;
   border: 2px solid #25346c;
      margin: 0 0 5px 10px;
	  width: 25%;
 
}
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0px;
  text-align: left;
}
/*Style the menu*/
.navbar {
  overflow: hidden;
  background-color: #b1b0ab;
}

.navbar a {
  float: left;
  font-size: 3vmin;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 3vmin;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #b33535;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #b33535;
}

.dropdown:hover .dropdown-content {
  display: block;
}



.header {
  background-image: url("images/headerback.jpg");
  background-repeat: repeat-x;
 padding: 5px;
  text-align: center;
  /*font-size: 20px;*/
  background-color:#b1b0ab;
  color:#25346c;
  font-size: 2.75vmin;
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
  text-align: left;
  text-justify: auto;
  background-color:#b1b0ab;
   }
   

/* Create three equal columns that sits next to each other */
.singlecolumn {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
 padding: 0px 20px 0 20px;
  column-gap: 10px;
  background-color:#b1b0ab;
  color:#25346c;
  text-align: justify;
  
}
.column {
  -
 
  webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0px 20px 0 20px;
  column-gap: 10px;
  border-right: 2px solid #b43535;
  background-color:#b1b0ab;
  color:#25346c;
  font-size:16px;
  
  

}
.lastcolumn {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0px 20px 0 20px;
  column-gap: 10px;
  background-color:#b1b0ab;
  color:#25346c;
  font-size:16px;
 

}


/*Column Headers*/
.h1{
 font-size:20px;
 color:#25346c;
}
.h2{
 font-size:16px;
 color:#25346c;
 padding: 0px 0px 0 0px;
 margin:0px;
}  
.h6{
 font-size:8px;
 color:#25346c;
  padding: 0px 0px 0 0px;
  margin:0px;
}  
 
/* Style the footer */
.footer {
  background-color: #b1b0ab;
  padding: 10px;
  text-align: center;
  color:#25346c;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other 
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
*/
</style>