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

.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: #E6344A;
 color: white;
} 
.contform{
	width: 1100px;
	border-radius: 5px;
	background-color:#CCC;
	padding: 20px;
	border: 1px solid #023859;
	margin-bottom: 5px;
 }

.containerlogin {
	width: 300px;
	background:#CCCCCC;
	font-size: 16px;
	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-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:16px;
	color: white;
	padding: 10px;
	margin: 5px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	height: 50px;
}

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



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);
}