	body {
		background-color: #E6E6FA;
		text-align: center;

		-webkit-text-size-adjust: none;

		
	}

	a  
{   
 text-decoration:none;   
 color: blue;
 text-decoration-color: blue;
}  



	select {
		width: 280px;
		height: 35px;
		font-size: 20px;
		text-align-last:center;
	}
	button {
		font-size: 20px;
		height: 50px;
	}
	button.borrar {
		font-size: 12px;
		height: 20px;
	}
	button.activar2 {
		font-size: 18px;
		height: 35px;
	}
	
  input[type=checkbox]
{
  /* Double-sized Checkboxes */
  -ms-transform: scale(1.5); /* IE */
  -moz-transform: scale(1.5); /* FF */
  -webkit-transform: scale(1.5); /* Safari and Chrome */
  -o-transform: scale(1.5); /* Opera */
  padding: 10px;
}


@media only screen {
	img { max-width: 100%; }











/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 27px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 2;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}




table, th, td {
	border-collapse: collapse;
	border: 1px solid black;
	text-align: center;
}

td {

	padding: 8px;

}