@charset "utf-8";
/* CSS Document */

body{
    background: #f1f1f1;
	color: #333;
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 20px;
	margin:0;
   padding: 10;
}


.button {
	width: 30%;
	background-color: #023859;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
} 
button:hover { 
 background-color: #333;
 color: fff;
} 
.contform{
	width: 1100px;
	border-radius: 5px;
	background-color:#CCC;
	padding: 20px;
	border: 1px solid #fff;
	margin-bottom: 5px;
 }

.containerlogin {
	width: 300px;
	font-size: 20px;
	color:#333;
	border-top-width: 0.5px;
	border-right-width: 0.5px;
	border-bottom-width: 0.5px;
	border-left-width: 0.5px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #023859;
	border-right-color: #023859;
	border-bottom-color: #023859;
	border-left-color: #023859;
	border-radius: 5px;
	padding: 15px;
	margin-top: 16px;
	margin-right: auto;
	margin-bottom: 16px;
	margin-left: auto;
}

.input {
	box-sizing: border-box;
	display: block;
	width: 100%;
	border-radius: 25px;
	outline: 0;
	font-family: inherit;
	font-size: 0.95em;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #023859;
	border-right-color: #023859;
	border-bottom-color: #023859;
	border-left-color: #023859;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 10px;
	margin-left: 10px;
}
input[type=submit] {
	width: 80%;
	background-color: #023859;
	font-size:20px;
	color: white;
	padding: 10px;
	margin: 5px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	height: 50px;
}

input[type=submit]:hover {
	color:#fff;
    background-color: #333;
}



table {
    font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color: #000;
    font-size: 14px;
    margin: 15px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0 1px 2px #d1d1d1;
    -webkit-box-shadow: 0 1px 2px #d1d1d1;
    box-shadow: 0 1px 2px #d1d1d1;
}
table th {


}
table tr {
    text-align: center;
    padding-left: 20px;
}
table td {
	color: #fff;
    padding: 18px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
    background: #333;

}
table tr.even td {
    font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color: #000;
    font-size: 14px;
    background:#CCC;

}
table tr:hover td {

}

/*fin estilos visuales de la tabla*/

.table-container
{
    width: 100%;
    overflow-y: auto;
    _overflow: auto;
    margin: 0 0 1em;
}
/* añadimos las barras para dispositivos IOS */

.table-container::-webkit-scrollbar
{
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
}
.table-container::-webkit-scrollbar-thumb
{
    border-radius: 8px;
    border: 2px solid #fff;
    background-color: rgba(0, 0, 0, .3);
}

.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}