
            body {
                background-color:#ffffff ;
            }

            h1 {
                color: #000000;
                text-align: center;
				font-family: 'BOEING-style';
				font-size: 60px;
            }

            p {
                font-family: verdana;
                font-size: 20px;
            }
			
	   ul {
	   list-style-type: none;	
	   margin: 0;
	   padding: 0;
	   overflow: hidden;
	   background-color: #0033a1;
	   }

	   li {
	   float: left;
	   }

	   li a {
	   display: block;
	   color: white;
	   text-align: center;
	   padding: 14px 16px;
	   text-decoration: none;
	   }

	   li a:hover {
 	   background-color: #111;
 	   }
	
	
	* {
	box-sizing: border-box;		
	}


	.column1 {
	float: left;
	width: 20%;
	padding: 10px;
		}
		
		.column2 {
	float: left;
	width: 60%;
	padding: 10px;
	background-color: #ffffff;
		}
		
		.column3 {
	float: left;
	width: 20%;
	padding: 10px;
		}
		
		.column4 {
	float: left;
	width: 100%;
	padding: 10px;
	background-color: #0033a1;
		}


	.row:after {
	content: "";
	display: table;
	clear: both;
	}
	
	
	@media screen and (max-width: 900px) {
	.column  {
	width: 50%;
	}
	}


	@media screen and (max-width: 600px) {
	.column  {
	width: 100%;
	}
		}
		
		
		
* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
	
	
	
            		@font-face {
    font-family: 'BOEING-style';
    src:url('BOEING-style.ttf.woff') format('woff'),
        url('BOEING-style.ttf.svg#BOEING-style') format('svg'),
        url('BOEING-style.ttf.eot'),
        url('BOEING-style.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}


* {box-sizing: border-box}
body {font-family: "Lato", sans-serif;}

/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
  height: 300px;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: inherit;
  color: #0033a1;
  padding: 22px 16px;
  width: 100%;
  border: 4px;
  outline: 5px;
  text-align: left;
  cursor: pointer;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #cc0000;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  border: 3px solid #0033a1;
  width: 70%;
  border-left: none;
  height: 500px;
  display: none;
}

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