body
{
padding-top: 75px;
margin-top:0px;
margin-left:0px;
height:100%;
width:100%; 
background-size: 100%;
background-color: #f1f1f1;
}

.colorB
{
color: #114C8D;
}

.colorw
{
    color: #FFFFff;
}

.image1
{
	height:25%;
	width:25%;
}

.image2
{
    width:100%; 
    height:100%;
}

head:first-child+body tbody[class].tablebody
{
	display:inline-block;
	overflow-y: auto;
	width:100%; 
	height:135px;
}

head:first-child+body tbody[class].tablebodyd
{
	display:inline-block;
	overflow-y: auto;
	width:100%; 
	height:350px;
}

#contenedor 
{
    width: 400px;  /* Ancho del contenedor */
	height: 200px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#contenedor input 
{
	height: 24px; /* Separacion entre el contenido y las pestañas */
	visibility: hidden;
}

#contenedor label 
{
	float: left; /* Posicion de las pestañas */
	cursor: pointer; /* Puntero cuando pasa sobre pestaña */
	font-size: 15px;  /* Tamaño del texto de las pestañas */
	line-height: 30px; /* Posicion del texto en las pestañas */
	height: 30px; /* Tamaño de las pestañas */
	padding: 0 1%; 
	display: inline;
	color: black;  /* Color del texto de las pestañas */
	text-align: center;
	border-radius: 5px 5px 0 0;
	background:#69C;  /* Fondo de las pestañas */
	margin-right: 1px; /* Separacion de las pestañas */
}

#contenedor input:hover + label 
{
	background: #ddd;  /* Fondo de las pestañas al pasar el cursor por encima */
	color: #666;  /* Color del texto de las pestañas al pasar el cursor por encima */
}

#contenedor input:checked + label 
{
	background: white;  /* Fondo de las pestañas al presionar */
	color:black; /* Color de las pestañas al presionar */
	z-index: 6;
	line-height: 45px;
	height: 40px;
	position: relative;
	top: 0px;
	-webkit-transition: .1s;
	-moz-transition: .1s;
	-o-transition: .1s;
	-ms-transition: .1s;
}

.content 
{
	background:white;  /* Fondo del contenido */
	position:static;
	width: 100%;
	height: 95%;  /* Alto del contenido */
	padding: 13%;
	z-index: 5;
	border-radius: 0 5px 5px 5px;
}

.content div 
{
	position: absolute;
	z-index: -100;
	opacity: 0;
	transition: all linear 0.1s;
	left: 13px;
	width: 480px;
	height: 50px;
}

#contenedor input.tab-selector-1:checked ~ .content .content-1,
#contenedor input.tab-selector-2:checked ~ .content .content-2,
#contenedor input.tab-selector-3:checked ~ .content .content-3,
#contenedor input.tab-selector-4:checked ~ .content .content-4,
#contenedor input.tab-selector-5:checked ~ .content .content-5,
#contenedor input.tab-selector-6:checked ~ .content .content-6,
#contenedor input.tab-selector-7:checked ~ .content .content-7 
{
    z-index: 100;
    opacity: 1;
    -webkit-transition: all ease-out 0.2s 0.1s;
	-moz-transition: all ease-out 0.2s 0.1s;
	-o-transition: all ease-out 0.2s 0.1s;
	-ms-transition: all ease-out 0.2s 0.1s;
}

#archivo
{
   width: 0.1px;
   height: 0.1px;
   opacity: 0;
   overflow: hidden;
   position: absolute;
   z-index: -1;
}

.card {
    transition: ease-in-out all .15s;
    border-radius: 2px;
    border: 1px solid #ddd;
    background: white;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
}

.cardrt {
    transition: ease-in-out all .15s;
    border-radius: 2px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
    background-color: blue;
}