@font-face {
	font-family: Gotham_Book;
	src: url("../fonts/gotham_book.otf") format("opentype");
}
@font-face {
	font-family: Museo_300;
	src: url("../fonts/museo300.otf") format("opentype");
}
@font-face {
	font-family: Museo_700;
	src: url("../fonts/museo700.otf") format("opentype");
}

/*Quitamos márgenes por defecto del navegador para todo*/
*{
	margin: 0; 
	padding: 0; 
	/*font-family: 'Sniglet', cursive;*/
	/* font-family: Arial, Helvetica, sans-serif; */
	font-family: Gotham_Book;
	--colorPetcoAzul: #00AAE7;
}

/*Tablas*/
table {
	text-align: center;
}

.header{
	width: 100%;
	overflow: hidden;
	background: var(--colorPetcoAzul);
	height: auto;
}

/*Clase para mantener fijo el encabezado*/
.headerFijo{
	position: fixed;
}
/*Nos permite centrar todo*/
.centrado{
	width: 90%;
	max-width: 1000px;
	margin: auto;
	overflow: hidden;
}

.menu{
	font-size: 20px;
	float: left;
}

.opciones{
	font-size: 10px;
	line-height: 45px;
	float: right;
}

.link{
	display: inline-block; /*Uno al lado del otro*/
	color: white;
	padding: 5px 40px;
	line-height: normal;
	margin-top: 7px;
	margin-right: 10px;
	-webkit-transition: all 500ms ease; /* Animación de click */
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border-radius: 30px; /* Redondeado */
	font-size: 14px;
	text-decoration: none;
}
.link:hover{
	background: #13A6D5;
	text-decoration: none;
	color: white;
}

.vista{
	font-size: 25px;
	color: white;
	margin-left: 40px;
	line-height: auto;
	margin-top: 8px;
}

/* SideBar */
.sideBar{
	position: absolute;
	width: 250px;
	height: 100%;
	background: #333;
}

.fixed{
	position: absolute;
}

.sideBar ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.sideBar li{
	height: 60px;
	transition: border 0.2s;
}
.sideBar li:hover{
	background: #2a2a2a;
	border-left: 5px solid white;
	text-decoration: none;
	color: white;
}

.sideBar a{
	display: block;
	color: white;
	text-decoration: none;
	padding: 10px;
}

.sideBar a:hover{
	color: var(--colorPetcoAzul);
}

/*Para el contenido de la página web*/
.contenido{
	width: 100%;
	height: 100%;
	transition: all 0.4s;
	overflow-x:hidden;
}

.contenidoDesplazado{
	max-width: 80%;
	height: 100%;
	transition: all 0.2s;
	transform: translateX(255px);
	overflow-x:hidden;
}


/*SECCIÓN DE BOTONES*/


/**JQuery Validation**/
/*#field{margin-left:.5em;float:left}
#field label{float:left; font-family: Arial, Helvetica, sans-serif;}
input{border:1px solid #000;margin-bottom:.5em}
input .error{border:1px solid red}
label .error{color: #EE3422;padding-left:16px;margin-left:.3em}
label .valid{color: blue;display:block;width:16px;height:16px}*/

