@charset "utf-8";
/* CSS Document */

 
  
  
   /* Create three equal columns that floats next to each other for lower nav*/
 
* {
  box-sizing: border-box;
}

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

.left {
	width: 27%;
	padding-right: 20px;
}
 .right {
  width: 28%;
}

.middle {
	width: 44.5%;
	text-align: center;  
	padding-left: 50px;
}
.center {
	width: 45%;
	text-align: left;
}


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