* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

html {
  font-family: "Lucida Sans", sans-serif;
}

.header {
  background-color: #0099cc;
  color: #ffffff;
  padding: 1px;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5;
  color: #ffffff;
  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: #0099cc;
}

.aside {
  background-color: #33b5e5;
  padding: 15px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.etiq {
  text-align: center;
  vertical-align: text-top;
  font-weight: bold;
}
.etiqs {
  text-align: left;
  vertical-align: text-top;
}
.etiqB {
  background-color: #000000;
  text-align: center;
  font-weight: bold;
  align: bottom;
  color: #ffffff;
}
.footer {
  background-color: #0099cc;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 5px;
}
/* For desktop: */
.col-1 {width: 50%;}
.col-2 {width: 33%;}
.col-3 {width: 25%;}
.col-4 {width: 66%;}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}

a:link {
  color: black;
  text-decoration: none;
}
/* visited link */
a:visited {
  color: black;
  text-decoration: none;
  	outline-style: none;
	outline-width: 0;
	outline-color: white;
}
/* mouse over link */
a:hover {
  color: blue;
  text-decoration: underline;
}
/* selected link */
a:active {
  color: black;
  text-decoration: none;
}

