@charset  "utf-8";

/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
/* CSS Document */
#contenedor {
	position: relative;
	left: 5px;
	width: 100%;
	top: 5px;
	overflow: visible;
}

table.tabla1 {
	border-bottom: 1px solid #000000;
	border-bottom-width: 2px;
	border-bottom-color: #F07F15;
}

table.tabla2 {
	width: auto;
	border: 1px solid white;
	margin-bottom: 15px;
	border-collapse: separate;
	border-spacing: 2px;
}

.hr {
	border-top: 1px solid #EFEFEF;
	margin: 30px 0;
}

table.builder {
	width: auto;
	border: 1px solid white;
	margin-bottom: 15px;
	border-collapse: separate;
	border-spacing: 2px;
}

table.check {
	border-collapse: collapse;
	text-align: left;
	border-spacing: 0;
	border: 3px solid #aeb3b6;
}

th.tabla2 {
	width: auto;
}

td.tabla2 {
	width: auto;
}

.col1 {
	background: #C0C0C0;
}

.col2 {
	background: #C0C0C0;
}

td.celda2 {
	border-style: inherit;
	border-width: thin;
	border-color: #FFFFFF;
	border-collapse: collapse;
	padding: 20px;
}

td.tablebuilder {
	font-style: normal;
	font-family: Helvetica;
	font-size: 24px;
	background-color: black;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
}

td.check {
	padding: 0;
	margin: 0;
	font-style: normal;
	font-family: Helvetica;
	font-size: 14px;
	text-align: left;
	font-weight: bold;
	text-decoration: none;
}

#titulo1 {
	font-family: Arial;
	font-size: 24px;
	color: #F07F15;
	font-weight: bold;
	text-decoration: none;
}

#titulo2 {
	font-family: Arial;
	font-size: 18px;
	color: #464749;
	text-decoration: none;
}

p.parrafo {
	font-family: Arial;
	font-size: 13px;
	color: #464749;
	font-weight: bold;
	text-decoration: none;
}

p.parrafo2 {
	font-family: Arial;
	font-size: 12px;
	color: #464749;
	font-weight: normal;
	text-decoration: none;
}

p.parrafo3 {
	font-family: Arial;
	font-size: 14px;
	color: #F07F15;
	font-weight: bold;
	text-decoration: none;
}

p.parrafo4 {
	font-family: Arial;
	font-size: 18px;
	color: #666666;
	font-weight: bold;
	text-decoration: none;
}

p.slide-description-button {
	background-color: transparent;
}

div.slide-description {
	background-color: transparent;
}

div.content-inner {
	background-color: transparent;
}

li.lista1 {
	list-style-type: square;
	font-family: Arial;
	background-position: left bottom;
	background-repeat: no-repeat;
	padding-left: 15px;
	font-size: 12px;
	color: #464749;
}

td {
	font-family: verdana, arial;
	font-size: 8pt;
}

.estilotabla {
	background-color: ffffff;
	border-style: solid;
	border-color: #666666;
	border-width: 1px;
	border-spacing: 1px;
}

.estilocelda {
	background-color: #C0C0C0;
	color: #333333;
	font-weight: bold;
	font-size: 10pt;
}

h1.entry-title {
	font-family: Sansita One, Arial, sans-serif;
}

.tabs {
/* es el rectángulo contenedor */
	margin: 0 auto;
	min-height: 200px;
	position: relative;
	width: 550px;
}

.tab {
/* cada una de las pestañas */
	float: left;
}

.tab label {
/* la parte superior con el título de la pestaña */
	background-color: #456;
	border-radius: 5px 5px 0 0;
	box-shadow: -3px 3px 2px #678 inset;
	color: #DDD;
	cursor: pointer;
	left: 0;
	margin-right: 1px;
	padding: 5px 15px;
	position: relative;
	text-shadow: 1px 1px #000;
}

/* el control input sólo lo necesitamos para que las pestañas permanezcan abiertas así que lo ocultamos */
.tab [type=radio] {
	display: none;
}

/* el contenido de las pestañas */
.cont {
	background-color: #678;
	bottom: 0;
	left: 0;
	overflow: hidden;
	padding: 20px;
	position: absolute;
	right: 0;
	top: 40px;
}

/* y un poco de animación */
.cont > * {
	opacity: 0;
	-moz-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	-moz-transition: all .6s ease;
	-webkit-transition: all .6s ease;
	-o-transition: all .6s ease;
}

/* controlamos la pestaña activa */
[type="radio"]:checked ~ label {
	background-color: #678;
	box-shadow: 0 3px 2px #89A inset;
	color: #FFF;
	z-index: 2;
}

[type=radio]:checked ~ label ~ .cont {
	z-index: 1;
}

[type=radio]:checked ~ label ~ .cont > * {
	opacity: 1;
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-o-transform: translateX(0);
	-ms-transform: translateX(0);
}