@charset 'UTF-8';
@import url('http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600');


html {
    font-family: 'Source Sans Pro', sans-serif;
    color: #777;
    font-weight: 400;
    height: auto;
}

table {
    table-layout:fixed;
    width: 100% !important;
    overflow-x: hidden;
}

th {
	padding: 10px 8px;
	border-bottom: 2px solid #777;
    border-top: 2px solid #777;
}

td {
	border-bottom: 1px solid #ccc;
	padding: 6px 8px;
}

tr:hover td {
    background-color: aliceblue;
}

#centro {
    background-color: white;
    border: 2px solid black;
    text-align: center;
    border-radius: 5px;
    padding: 30px;
    width: auto;
    max-width: 900px;
    margin: 0 auto;
}

input {
    -webkit-appearance: none;
    display: block;
    width: 94%;
    border: solid 2px #e4e4e4;
    background: #fafafa;
    padding: 0.75em;
    font-size: 1em;
    font-family: 'Source Sans Pro', sans-serif;
    color: #777;
    font-weight: 400;
    border-radius: 4px;
    outline: 0;
}

#popup {
    position: absolute;
    left: 25%;
    right: 25%;
    top: 35%;
    display:block;
    vertical-align: middle;
    background: #fff;
    border-radius: 6px;
    text-align: center;
    padding: 2.5em;
    margin: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    z-index: 1002;
    box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.25);
}

.oscuridad {
    display: block;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1001;
    -moz-opacity: 0.85;
    opacity: .85;
    filter: alpha(opacity=85);
}