@charset "utf-8";
/* CSS Document */
html {
  margin-left: calc(100vw - 100%);
  margin-right: 0;
 }

body {
	padding: 0px;
    margin: 0px 0px 0px 0px;
    font-family: "Open Sans";
}

header {
    width: 100%;
	height:20%;
}

nav {
    margin: auto;
    max-width: 95%;
    padding-top: 15px;
}
a {
    font-weight: 600;
    text-decoration: none;
    color: #333;
    font-size: 17px;
}
section {
    margin: 0 auto;
    max-width: 90%;
}
article{
	overflow: auto;
	width:calc(100vw *0.26);
	height:340px;
	float:left;
	background-color:rgb(245,245,245);
	padding: calc(100vw *0.01);
	padding-top: calc(100vw *0.002);
	vertical-align:top;
	border: solid #05557A 1px;
	border-top-width: 10px;
	margin-bottom: 20px;
	
}
h2 {
	font-family:"Open Sans Extrabold";
	font-size:20px;
	color: dimgray;
}
h3 {
	font-family:"Open Sans Extrabold";
	font-size:18px;
	color: dimgray;
}

#logo {
    position:absolute; 
    top:10px; 
    left:10px;
    margin-top: 0px;
}
#sesion {
    width: 100%;
    text-align: right;
    padding-bottom: 0px;
    float: right;
}
a.enlace_sesion {
    color: #FFF;
    display: inline-block;
    padding: 7px;
    background-color: #999;
    border-radius: 5px;
	text-decoration: none;
}

a.enlace_sesion:hover {
    color: #FFF;
    background-color: #033;
	cursor: pointer;
}
#menu {
    float: right;
    max-width: 100%;
    margin-top: 0px;
}
#menu ul {
    display: inline;
    visibility: visible;
    list-style: none;
    padding: 0;
    text-align: right;
}

#menu li {
    margin-top: 20px;
    padding-left: 25px;
    float: left;
    max-width: 100%;
}
.columnas {
	height:340px;
	float:left;
	width:1.2%;
	background-color:#FFFFFF;
}


/* Efecto_subrayado_centro en menú nav */
.efecto_subrayado_centro {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.efecto_subrayado_centro:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #2098D1;
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.efecto_subrayado_centro:hover:before,
.efecto_subrayado_centro:active:before {
    left: 0;
    right: 0;
}

/* Fin Efecto_subrayado_centro */

.titulo_principal{
	margin: 0 auto;
	width:100%;
	font-size: 28px;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
	margin-bottom:20px;
}


.articlecompleto{
	overflow: auto;
	margin-top: 20px;
	width: calc(100vw *0.873);
	height:340px;
	float:left;
	padding: calc(100vw *0.01);
	padding-top: calc(100vw *0.002);
	vertical-align:top;
}


table {
	background: #f5f5f5;
	border-collapse: separate;
	box-shadow: inset 0 1px 0 #fff;
	font-size: 12px;
	line-height: 24px;
	margin: 30px auto;
	text-align: center;
	width: 800px;
}	

th {
	background: rgb(5,85,122);
	border-left: 1px solid #555;
	border-right: 1px solid #777;
	border-top: 1px solid #555;
	border-bottom: 1px solid #333;
	box-shadow: inset 0 1px 0 #999;
	color: #fff;
  font-weight: bold;
	padding: 10px 15px;
	position: relative;
	text-shadow: 0 1px 0 #000;	
}

th:first-child {
	border-left: 1px solid #777;	
	box-shadow: inset 1px 1px 0 #999;
}

th:last-child {
	box-shadow: inset -1px 1px 0 #999;
}

td {
	border-right: 1px solid #fff;
	border-left: 1px solid #e8e8e8;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #e8e8e8;
	padding: 10px 15px;
	position: relative;
	transition: all 300ms;
}

td:first-child {
	box-shadow: inset 1px 0 0 #fff;
}	

td:last-child {
	border-right: 1px solid #e8e8e8;
	box-shadow: inset -1px 0 0 #fff;
}	

tr {
	background:rgb(228, 233, 237);	
}

tr:nth-child(odd) td {
	background: rgb(191, 191, 191);	
}

tr:last-of-type td {
	box-shadow: inset 0 -1px 0 #fff; 
}

tr:last-of-type td:first-child {
	box-shadow: inset 1px -1px 0 #fff;
}	

tr:last-of-type td:last-child {
	box-shadow: inset -1px -1px 0 #fff;
}	


