* {
    box-sizing: border-box;
}
/* For mobile phones: */
[class*="col-"] {
    width: 100%;
    float: left;
    padding: 15px;
    //border: 1px solid red;
}
@media only screen and (min-width: 768px) {
    /* For desktop: */
	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.col-3 {width: 25%;}
	.col-4 {width: 33.33%;}
	.col-5 {width: 41.66%;}
	.col-6 {width: 50%;}
	.col-7 {width: 58.33%;}
	.col-8 {width: 66.66%;}
	.col-9 {width: 75%;}
	.col-10 {width: 83.33%;}
	.col-11 {width: 91.66%;}
	.col-12 {width: 100%;}
}
.row::after {
    content: "";
    clear: both;
    display: table;
}
//.row {
//	border-color: #fff; border-style: solid;
//}
html {
	font-family: "Arial", sans-serif;
	font-size: 18px;
	background-color: #222;
	color: #eee;
}
a {
	color: #fff;
	text-decoration: none;
}
a:link {
	color: #fff;
	text-decoration: none;
}
a:visited {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #fa3;
	text-decoration: underline;
}
A IMG           { border-color: #fff; border-style: solid; }
A:Hover IMG     { border-color: #fa3; }

.textlarge {
	font-size: 30px;
}

img {
    max-width: 100%;
    height: auto;
    border: 1px solid #fff;
}
.image_section img{
    display: block;
}
.image_section iframe{
    display: block;
}
@media (max-width:768px){
    .image_section img:first-child{
        display:none;
    }
    .image_section iframe:first-child{
        display:none;
    }
}
.header {
    background-color: #333;
    color: #eee;
    padding: 15px;
}
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu li {
    padding: 8px;
    margin-bottom: 7px;
    background-color :#555;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li:hover {
    background-color: #666;
}
.footer {
	font-size: 10px;
	background-color: #333;
	padding: 5px;
}
.banner {
	font-size: 20px;
	background-color: #333;
	//padding: 5px;
}
.main {
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.ship_div {
    width: 600px;
    height: 338px;
    overflow: hidden;
    //margin: 10px;
    position: relative;
	border-width: 1px;
	border-style: solid;
	border-color: #fff;
}
.ship_large {
   // Nothing, by default
}
@media only screen and (min-width: 900px) {
    /* For desktop: */
	.ship_large {
		width: 800px;
		height: 450px;
	}
}
.ship_div:hover {
	border-width: 1px;
	border-style: solid;
	border-color: #fa3;
}
.ship_img {
	border: none;
    position: absolute;
    margin: auto; 
    min-height: 100%;
    min-width: 100%;
    /* For the following settings we set 100%, but it can be higher if needed 
    See the answer's update */
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
}
.ship_text a:link {
	text-decoration: underline;
}
.icon_div {
    width: 200px;
    height: 100px;
    overflow: hidden;
    //margin: 10px;
    position: relative;
	border-width: 1px;
	border-style: solid;
	border-color: #fff;
}
.icon_div:hover {
	border-width: 1px;
	border-style: solid;
	border-color: #fa3;
}
.padding5 {
        padding: 5px;
}
.padding10 {
        padding: 10px;
}
.padding15 {
        padding: 15px;
}
.padding20 {
        padding: 20px;
}
.borderless {
    max-width: 100%;
    height: auto;
    border: none;
}

 /* Style buttons */
.btn {
  background-color: #03C;
  border: none;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
}

/* different  background on mouse-over */
.btn:hover {
  background-color: #00F;
} 
