* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="bloque"] {
  float: left;
  padding: 15px;
}

html {
  font-family: "Verdana";
}

.header {
  background-color: #0000cc;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
}

.miDiv {
  
  background-color: #3333ff;
  color: #ffffff;    
  padding: 15px;
}

.solDiv {
  
  background-color: #ffffff;
  color: #000000;    
  padding: 15px;
}

select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid blue;
  border-radius: 4px;
  font-size: 16px;
  color: #000000;
  background-color: #f1f1f1;
}

input[type=text] {
  width: 100%;
  padding: 16px 20px;
  margin: none;
  box-sizing: border-box;
  border: 2px solid blue;
  border-radius: 4px;
  font-size: 16px;
}


.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  /*background-color: #6666ff;*/
}

.menu li a {
  display: block;
  border-radius: none;
  background-color: #6666ff;
  color: #ffffff;
  padding: 8px 16px;
  margin-bottom: 7px;
  text-decoration: none;
}

.menu li a.active {
  background-color: #3333ff;
  color: white;
}

.menu li a:hover:not(.active) {
  background-color: #6699ff;
  color: white;
}

a.bluelight:link {
	color: #0000FF;
	font-family: Verdana;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}
a.bluelight:visited {
	color: #A000B4;
	font-family: verdana;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}
a.bluelight:hover {
	color: #FF0000;
	font-family: verdana;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	text-decoration: underline;
}
a.bluelight:active {
	color: #0000FF;
	font-family: verdana;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}

.aside {
  background-color: #6666ff;
  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);
}

.footer {
  background-color: #6666ff;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 15px;
}

/* For mobile phones: */
[class*="bloque"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .bloqueM {width: 25%;}
  .bloqueC {width: 75%;}
  .bloqueL {width: 75%; float: right;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .bloqueM {width: 25%;}
  .bloqueC {width: 50%;}
  .bloqueL {width: 25%;} 
}