@font-face {
  font-family: 'Gotham';
  src: url('fonts/Gotham.eot'); /* IE9 Compat Modes */
  src: url('fonts/Gotham.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
     url('fonts/Gotham.woff') format('woff'), /* Modern Browsers */
     url('fonts/Gotham.ttf')  format('truetype'), /* Safari, Android, iOS */
     url('fonts/Gotham.svg#svgFontName') format('svg'); /* Legacy iOS */
   font-weight: 400;
   font-style: normal;
 }

.cab{
	background-color: #4d4d4d;
	width: 100%;
	height: 110px

}
body{
font-family: 'Gotham';

}
h1{
	color: #0000FF;
	text-align: center;
	font-size: 25px;

}
h2{
		color: #4d4d4d;
	text-align: center;
	font-size: 20px;
}
table{
    padding-left: 0;
    padding-top: 10px;
    width: 1183px;

}

th{
	background-color: #dbdbdb;
    border: 1px solid #dbdbdb;
    border-radius: 0;
    font-size: 13px;
    height: 30px;
    text-align: left;
    padding-left: 10px;
    border-collapse: collapse;
}
td{
	 border: 1px solid #dbdbdb;
	text-align: left;
	border-radius: 1px;
	border-collapse: collapse;
    padding-left: 15px;
     font-size: 12px;
}
td:hover{
	background-color: #eeeeee;
	cursor: pointer;

}
a{
	text-decoration: none;
}
embed{
	height: 1105px;
    padding-left: 149px;
    width: 75%;
}
.top{
	padding-left: 340px;
	 padding-top: 6px;
}
.ftop{
	background-color: #dbdbdb;
	 height: 120px;
	 line-height: 50%;
}
#contenedor {
    margin: 40px auto;
    width: 1220px;  /* Ancho del contenedor */
box-sizing: border-box;
-moz-box-sizing: border-box;
}

#contenedor input {
height: 32px;
visibility: hidden;
}

#contenedor label {
float: left;
cursor: pointer;
font-size: 15px;  /* Tamaño del texto de las pestañas */
line-height: 40px;
height: 40px;
padding: 0 20px;
display: block;
color: #888;  /* Color del texto de las pestañas */
text-align: center;
border-radius: 5px 5px 0 0;
background: #ffffff;  /* Fondo de las pestañas */
margin-right: 5px;
}

#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: #dedefd;  /* Fondo de las pestañas al presionar */
color: #444; /* Color de las pestañas al presionar */
z-index: 6;
line-height: 45px;
height: 45px;
position: relative;
top: -5px;
-webkit-transition: .1s;
-moz-transition: .1s;
-o-transition: .1s;
-ms-transition: .1s;
}

.content {
  /* Fondo del contenido */
position: relative;
width: 100%;
height: 350px;  /* Alto del contenido */
padding: 30px;
z-index: 5;
border-radius: 0 5px 5px 5px;
}

.content div {
position: absolute;
z-index: -100;
opacity: 0;
transition: all linear 0.1s;
}

#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 {
    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;
}