* {
	padding: 0;
	margin: 0;
}

header {
	width: 100%;
	background: #104789;
}

header nav {
	width: 95%;
	background: #104789;
}

nav {
	display:block;
/*	float:none; */
	text-align:left;
	border-bottom:1px solid rgba(255,255,255,.3);
	position: relative;
	z-index: 100;
	overflow: auto;
}

.menu_bar {
	display: none;
}

/*
.ir-arriba{
	display:none;
	background-repeat:no-repeat;
	font-size:20px;
	color:#0F4788;
	cursor:pointer;
	position:fixed;
	bottom:10px;
	right:10px;
	z-index:80;
}
*/

.ir-arriba{
  background-repeat: no-repeat;
  font-size: 1.25rem;
  background-color: #0F4788; /* Color de fondo */
  color: white;    /* Color de la flecha */
  border-radius: 50%; /*****/
  cursor: pointer;
  position: fixed;
  bottom: 2.5rem;
  right: 1.875rem;
  /* display: block;  /* O 'none' si prefieres mostrarlo con JS */
  display: none;
  z-index: 1000;   /* Asegura que esté por encima de otros elementos */
  text-decoration: none;
  padding: .5rem;
}
/*
.ir-arriba {
  position: fixed; /* Mantiene el botón fijo   ******************
  bottom: 2.5rem;    /* Distancia desde abajo   ******************
  right: 1.875rem;    /* Distancia desde la derecha   ******************
  background-color: #0F4788; /* Color de fondo *
  color: white;    /* Color de la flecha *
  padding: .5rem;
  border-radius: 50%;
  text-decoration: none;
  /*display: block;   O 'none' si prefieres mostrarlo con JS *
  display: none;
  z-index: 1000;   /* Asegura que esté por encima de otros elementos *
}
*/
header nav ul {
	list-style: none;
	overflow: auto;
}

header nav ul li {
	float: left;
}

header nav ul li span {
	margin-right: 10px;
}

header nav ul li .subt {
/* display: block; */
	padding: 0px;
	margin-left: 0px;
	margin-right: 0px;
	float: right;
}

header nav ul li {
	display: block;
	padding: 4px;
	color: #ffffff;
	text-decoration: none;
	font-family: Verdana;
	font-size: 12px;
	font-weight: bold;
}

header nav ul li a {
	display: block;
	padding: 4px;
	color: #ffffff;
	text-decoration: none;
	font-family: Verdana;
	font-size: 12px;
	font-weight: bold;
}

header nav ul li a:hover {
	background: #037E8C;
	color: #fada04;
	font-family: Verdana;
	font-size: 12px;
	font-weight: bold;
}

section {
	padding: 0px;
}


@media screen and (max-width:800px) {
	
header nav {
	width: 80%;
	height: 100%;
	margin: 0;
	position: fixed;
	left: -100%;
	/*top: 0px;*/
	overflow: auto;
}

.subt  {
	float: none;
	padding: 2px;
	display: block;
	font-size: 18px;
}

.menu_bar {
	display: block;
	width: 100%;
	background: #ccc;
	z-index:99;
	position: sticky;
}

.menu_bar .bt-menu {
	display: block;
	padding: 20px;
	-webkit-box-sizing:border-box; /* si es bordes de opciones hay que quitarlo */
	-moz-box-sizing:border-box; /* si es bordes de opciones hay que quitarlo */
	box-sizing:border-box;
	background:#104789;
	overflow: hidden;
	font-family:Verdana;
	font-size:12px;
	font-weight:bold;
	color:#ffffff;
	text-decoration:none;
	z-index:99;
	position: sticky;
}

.menu_bar span {
	float:right;
	font-size:40px;
}

header nav ul li {
	display:block;
	float:none;
	text-align:left;
	border-bottom:1px solid rgba(255,255,255,.3); /* si es bordes de opciones hay que quitarlo */
}



}