* {
    margin: .25em;
   font-family: 'roboto', sans-serif;
}

/* HEADER  */

body header div{
    font-weight: bold;
    font-size: 0.5em;
    text-align: center;
    align-content: center;
    align-items: center;
    padding: 1em;
}


header {
    background-color: #414141;
    display: flex;
    justify-content:space-between;

    
   }
body header nav ul li a{
    color: #D7D7D7;
    font-size: bolder;
    margin-bottom: 0.2em;
    margin-left: 0.5em;
    
}
body header nav ul p {
    color: dimgray;
    font-weight: bolder;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: 0.5em;
}
body header img {
    height: 50px;
}
body header nav ul hr{
    height: 0.1em;
    background-color: dimgrey;
    color: dimgray;
}
.sesion{
    font-weight: bold;
    background-color: #7A9972;
}
.home{
    font-weight: bold;
    color: #7A9972; 
}

/*SLIDE*/

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
    display: flex;
    margin-top: 1rem;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin-top:1rem;
  margin-right: 2px;
  margin-left: px;
  background-color: #C1D4BC;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #7A9972;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/*TITULOS*/
.titulos{
    text-align: center; 
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    font-size: 0.6em;
    font-weight: bold;
    
}


/* SUSCRIBIRME */

.suscribirme{
    margin-left: 2em;
    color: #99B78D;
    font-size: 0.8em;
    
    
}



.cupon{
    color: white;
    text-decoration: none;
    
}


/* NOMBRE EVENTOS */
.nombreeventos h3{
    color: #99B78D;
    margin-left: 1.5em;
    padding: 1em;
}

/* RESPONSIVE */
@media all and ( min-width:67em){
    .nombreeventos h3{
        text-align: center;
    }
    
}




/* INFO EVENTOS */
.infoeventos{
    padding: 0.5em;
    color: white;
}


/* BAJADA */
.bajada{
    text-align: justify;
}

/* PARRAFOS */

body  p{
    margin-left: 2em;
    margin-right:2em;
    
    /* RESPONSIVE */
    @media all and ( min-width:67em){
        body p{
            margin-left: 40%;
            margin-right: 40%;
        }
        
    }
    
    
    
    
}

/*SUBTITULOS*/
.subtitulos{
    text-align: center;
    font-weight: regular;
    font-style: italic;
}

/*TITULOS VERDES*/
.titulosverde{
    text-align: center; 
    color: #7FA273;
    font-size: .75em;
    font-style: bold;
    margin-top: 1.5em;
	margin-bottom: 1em;
    }

/* MENU SUPERIOR 1 */ 
.menusuperior ul{
    list-style-type: none;
    background-color:#7FA273;
    display: flex;
    flex-direction: row;
    justify-content: center;
    }

.menusuperior ul li{ 
    padding: 1em 1em;
    }

.menusuperior a{ 
    color:#ffffff;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
}

/* MENU SUPERIOR 2 */ 

#ms2 ul{
    background-color: #DCA34D;
}

/* MENU SUPERIOR 3 */ 
#ms3 ul{
    background-color:#F87144;
    }

/* MENU SUPERIOR 4 */ 
#ms4 ul{
    background-color:#A55D45;
    }

/* MENU SUPERIOR DEPORTES */ 
.menusuperiordep ul{
    list-style-type: none;
    background-color:#DCA34D;
    display: flex;
    justify-content: center;
    padding: .5em;
    }

.menusuperiordep a{ 
    color:#ffffff;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    padding: 1em;
}

/* MENU SUPERIOR EVENTOS */ 
#eventosmenu ul{
    background-color:#E3E3E3;
    margin-bottom: 1em;
    }

#eventosmenu li{ 
   padding: .25em;
}

/* HORARIOS */

.horario{
    margin-left: 2em;
    margin-right: 2em;
}

.horario img{
    max-width: 100%;
    margin-top: 1em;
}

.horario h3{
    color: #828282;
    font-size: 25px;
    }

.horario p{
    margin-left: 1.5em;
    margin-right: 1.5em;
    margin-top: 1em;
}

.horario h6{
    color: #828282;
    margin-left: 2em;
    margin-right: 1.5em;
    margin-bottom: 1em;
    
}

body h6{
    margin-left: 3em;
    margin-top: 1em;
    color: grey;
    font-weight: lighter;
}

/* RESPONSIVE */
@media all and ( min-width:67em){
    .horario{
        display: flex;
        justify-content: center;
        padding: 1em;
    }

    .infoclasestenis h3{
        margin-left: 1em;
    }
    
}




/* GALERIA */

.grid {
  display: grid;
  grid-template-rows: 
    repeat(4, 180px);
  grid-template-columns: 
    repeat(3, 1fr);
  grid-gap: 5px;
}

.item:nth-child(1) {
  grid-row: 1 / 4;
}

.item:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}

.item:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 3 / 5;
}

.item:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.item:nth-child(5) {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
}

/* styling code */

.grid {
  margin:20px auto;
  max-width:1000px;
}

.grid > .item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* DESCRIPCION */ 

.descripcion{
    margin-left: 2em;
    margin-right: 2em;
    }
body div h3{
    color: dimgray;
}
body div hr{
    margin-bottom: 0.5em;
}

/* TITULOS GRISES */ 

.titulosgrises {
    background-color: #E3E3E3;
    box-sizing: border-box;
    color: #828282;
    padding: 1em;
    margin-bottom: .5em;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    height: 2.5em;
    text-align: center;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
    
}


@media all and ( min-width:67em){
    .titulosgrises{
        height: 4em;

    }
}





#per {
    background-color: #E3E3E3;
    color: #828282;
    padding: .25em;
    margin-bottom: .5em;
    display: flex;
    display: block;
    }

#per h2{
    margin-left: 2em;
    margin-right: 2em;
    font-size: 1em;
    }

/* PERFIL EVENTOS */ 

.descripcion p{
    font-style: light;
    font-size: .75em;    
}

.descripcion h3{
    font-size: 1em;
    padding-bottom: 1em;
    padding-top: 1em;
}

hr{
    height: 2px;
}

/* VIDEO CONTENEDOR */ 
.video{
    display: flex;
    justify-content: center;
    margin-bottom: 1.5em;

}

.bingo{
    max-width: 100%;
    box-sizing: border-box;
}
/* MAPA */ 
.mapa{
    display: flex;
    justify-content: center;
    margin-left: 2em;
    margin-right: 2em;
}
/* EVENTOS */ 
.evento{
    background-color: #DAEAD3;
    display: flex;
    margin-left: 2em;
    margin-right: 2em;
    border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
border: 0px solid #000000;
    }

.evento img{
    margin: 1em;
    }

.evento h5{
    margin: 1em;
    font-style: normal;
}

.evento p{
    margin: 1em;
    font-style: bold;
}

#e2{
    background-color: #CDA34D;
}
    
#e3{
    background-color: #F87144;
}

#e4{
    background-color: #A55D45;
}

/* RESPONSIVE */
@media all and ( min-width:67em){
    .evento{
        margin-left: 20%;
        margin-right: 20%;
    }
    
    
}






/* PERFIL */

.perfil {
    background: #E6BF86;
    margin-right: 2em;
    margin-left:2em;
 border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
border: 0px solid #000000;
}

.agustin{
    height: 10em;
    border-radius: 50%;
    margin-top: 1.5em;
}

.perfil .datos {
    text-align: center;
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}

.perfil {
    position: relative;
    z-index: 1;
    text-align: center;
}

.perfil .datos h2 {
    font-weight: bold;
    line-height: 22px;
    font-size: 1.2em;
    color: white;
}

.perfil .datos h3 {
    font-size: 14px;
    margin-bottom: 1em;
    color: white;
}

.perfil .datos p {
    font-size: 0.8em;
    line-height: 18px;
    color: white;
    padding-bottom: 1.5em;
}


/* RESPONSIVE */
@media all and ( max-width:22.500em){
        .perfil{
            margin-left: 0em;
            margin-right: 0em;
        
}  
}




@media all and ( min-width:67em) {
    
    .perfil{
        margin-left: 20%;
        margin-right: 20%;  
    }

}
    

    
    
    
    
   
/*BOTONERA EDADES*/

.ch-item {
	width: 100%;
	height: 100%;
	border-radius: 30%;
	position: relative;
	cursor: default;
	box-shadow: 
		inset 0 0 0 0 rgba(127,162,115,0.6),
		inset 0 0 0 8px rgba(255,255,255,0.6),
		0 1px 2px rgba(0,0,0,0.1);
		
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.ch-img-1 { 
	background-image: url("imagenes/nenes.jpg");
    
}

.ch-img-2 { 
	background-image: url("imagenes/jovenes.jpg");
}

.ch-img-3 { 
	background-image: url("imagenes/adultos.jpg");
}

.ch-img-4 { 
	background-image: url("imagenes/adultosm.jpg");
}

.ch-info {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0;
	
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
    
	
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	
	-webkit-backface-visibility: hidden; /*for a smooth font */

}

.ch-info h3 {
	color: #fff;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 1px;
	font-size: 16px;
	margin: 0 10px;
	padding: 35px 0 0 0;
	height: 60px;
    font-style: bold;
	}

.ch-info p {
	color: #fff;
	font-size: 16px;
	padding: 10px 5px;
	font-style: italic;
}


.ch-item:hover {
	box-shadow: 
		inset 0 0 0 110px rgba(127,162,115,0.6),
		inset 0 0 0 8px rgba(255,255,255,0.8),
		0 1px 2px rgba(0,0,0,0.1);
}

.ch-item:hover .ch-info {
	opacity: 1;
	
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);	
}

.ch-grid {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
}

.ch-grid:after,
.ch-item:before {
	content: '';
    display: table;
}

.ch-grid:after {
	clear: both;
}

.ch-grid li {
	width: 150px;
	height: 150px;
	display: inline-block;
	margin: 10px;
}





/* UNITE */ 

.Unite{
    background-color: #7FA273;
    opacity: 0.8;
    border-radius: 50%;
    box-shadow: 0 0.15em 0.1em rgba(0,0,0,.215);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    width: 4rem;
    height: 4rem;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    font-weight: bolder;
}

.Unite a{
    color: white;
    text-decoration: none;

}

/* RESPONSIVE */
@media all and ( min-width:67em){
    
    .Unite{
        bottom: 4rem;
        right: 4rem;
        width: 6em;
        height: 6em;
        
    }
}

/* RESERVA */ 

.reserva {
    background-color: #D0DFCA;
border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
border: 0px solid #000000;
    color: white;
    font-size: 1rem;
    width: 40%;
    padding: .25em;
    font-size: 1rem;
    margin-top: 1em;
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
    }

.reserva a{
    color: white;
    text-decoration: none;
}

/* CANCHA */ 

.cancha {
    background-color:#ADBFA7;
border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
border: 0px solid #000000;
    color: white;
    display: block;
    font-size: 1em;
        margin-top: 1em;
        margin-bottom: 1em;
        margin-left: 2em;
        margin-right: 2em;
    padding: .5em;
    }

.cancha h5{
    text-align: center;
    padding: 1em;
}

.cancha a{
        justify-content: center;
    border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
border: 0px solid #000000;
    background-color: #E3E3E3;
    color: #7FA273;
    text-decoration: none;
    padding: .5em;
    font-style: bold;
    text-align: center;

    }

.cancha p{
    text-align: center;}

/* RESPONSIVE */
@media all and ( max-width:22.500em){
        .perfil{
            margin-left: 0em;
            margin-right: 0em;
        
}  
}

/* RESPONSIVE */
@media all and ( min-width:67em) {
    
        .cancha{
        margin-left: 30%;
        margin-right: 30%;
    }
.eventosmedia ul {
    display: flex;
    justify-content: center; 
}
}




/* MENU DESPLEGABLE */ 

.nav-bar { display: none; }



header nav ul { list-style: none; }

header nav ul li {
  float: left;
  position: relative;
}

header nav:after {
  content: "";
  display: block;
  clear: both;
}

header nav ul li a {
  color: #fff;
  display: block;
  padding: 4px 30px 4px 10px;
  text-decoration: none;
  font-size: 16px;
  text-align: left;
}

header nav ul li i { margin-right: 10px; }

header nav ul li:hover .children { display: block; }

header nav ul li .children {
  display: none;
  background: #009045;
  position: absolute;
  width: 100%;
  z-index: 1000;
  padding: 0px; 
}

header nav ul li .children span { display: none; }

.fa-angle-down:before {
    display: none;
}

header nav ul li .children li {
  display: block;
  width: 100%;

}

header nav ul li .children li a { margin-left: 5px; }

header nav ul li .fa-angle-down {
  position: relative;
  top: 3px;
}


	
/* MENU SUPERIOR 1 */ 
.menusuperior ul{
    list-style-type: none;
    background-color:#7FA273;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 1em;
    }

.menusuperior ul li{ 
    padding: 1em 1em;
    }

.menusuperior a{ 
    color:#ffffff;
    font-weight: bold;
    font-size: 0.8em;
    text-align: center;
    text-decoration: none;
}

/* MENU SUPERIOR 2 */ 

#ms2 ul{
    background-color: #DCA34D;
}


/* MENU SUPERIOR DEPORTES */ 
.menusuperiordep ul{
    padding: .5em;
    background-color: #EBC387;
    }

.menusuperiordep a{ 
    color:#ffffff;
    font-weight: bold;
    font-size: 0.8em;
    text-align: center;
    text-decoration: none;

}	
	
	
}
	
.toggle{
    font-size: 18px;
}

.toggle-content{
    display: none;
    margin: 1em;
    font-size: 14px;
}


/* FOOTER */

footer p {
    font-size: 0.8em;
    margin-top: 0.4em;
}
footer {
    width: 100%;
    padding: 12px 0;
    background: #E3E3E3;
    color: #737373;
    text-align: center;
    margin-top: 2em;

}
footer div{
    display: flex;
    justify-content: center;
}
footer hr{
    margin-left:2em;
    margin-right: 2em;
}

footer img{
    width: 1.3em;
    height: 1.3em;
}
footer div figure{
    margin-left: 1em;
}
footer div h2{
    margin-bottom: 0.2em;
    font-size: 1em;
    font-weight: bolder;
}

/* Carousel */

.tips-galeria {
    overflow: hidden;
    margin-top: 15px;
    background: #fff;
    padding-bottom: 10px;
}

section.tips-otros {
    padding-bottom: 60px;
    background: #fff;
}

.carousel:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

.carousel-cell {
    width: 50%;
    margin-right: 10px;
    border-radius: 5px;
    counter-increment: carousel-cell;
}

.flickity-viewport {
    /* height: 260px !important; */
}

.tips-galeria h4,
.tips-otros h4 {
    margin-top: 0px;
}

.tips-galeria h3,
.tips-otros h3 {
    margin-top: 5px;
    font-weight: 500;
    font-size: 14px;
}

.tips-galeria img {
    display: block;
    overflow: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    height: 135px;
    object-fit: cover;
}

.tips-otros article a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.tips-otros h2 {
    border-top: 1px solid #e4e4e4;
    padding-top: 15px;
    text-align: left;
    color: #516471;
    text-decoration: underline;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
}

.tips-otros img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 20px;
}

/* Login y Registro*/

.registro-btn {
    background-color:#ADBFA7;
border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
border: 0px solid #000000;
    color: white;

    font-size: 1em;
    text-align: center;
        margin-top: 1em;
        margin-bottom: 1em;
        margin-left: 2em;
        margin-right: 2em;
    padding: .5em;
    }
.registro-btn h6{
    text-align: center;
    padding: 1em;
    font-weight: lighter;
}

.registro-btn a{
        justify-content: center;
    border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
border: 0px solid #000000;
    background-color: #E3E3E3;
    color: #7FA273;
    text-decoration: none;
    padding: .5em;
    font-style: bold;
    text-align: center;
}

@media all and ( min-width:67em){
    
    .bg-registro{ 
        margin-left: 20%;
        margin-right: 20%;
    }
}

/* RESPONSIVE */
@media all and ( max-width:22.500em){
    .registro-btn{
        margin-left: 0em;
        margin-right: 0em;
        
    }
    
}








/* 
.titulo-pagina {
    width: 100%;
    text-align: center;
}


.login h2,
.registro h2 {
    color: #fff;
    margin: 20px 0;
}
*/

section.login,
section.registro {
    padding-top: 20px;
    margin: 0 auto;
    text-align: center;
}

.login input,
.registro input {
    display: block;
    margin: 0 auto;
    border: 1px solid #e2e2e2;
    padding: 15px 20px;
    font-weight: 300;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 2px;
    margin-bottom: 5px;
}

.sexo{
    display:flex;
    flex-direction: row;
    justify-content: center;
    color: grey;
    font-weight: 300;
    font-size: 14px;
    
}

.login input:first-child,
.registro input:first-child {
    border-bottom: 0;
}

input[type="submit"] {
    border: 0;
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
    background-color: #EAB463;
}

.login input[type="submit"] {
    background: #DCA34D;
}

.contenedor-login {
    padding: 0 40px;
}

.aclaracion{
    background-color: #E3E3E3;
    color: #828282;
    padding: 1em;
    margin-bottom: .5em;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    height: 4em;
    text-align: center;
    font-size: 0.8em;
    font-weight:normal;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
    
}


.login a,
.registro a {
    color: #DCA34D;
    font-size: 12px;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    font-weight: 300;
}

a.boton-registro {
    font-size: 16px;
    display: block;
    color: #7FA273;
    text-decoration: none;
    margin-top: 10px;
}

/* BENEFICIOS */ 
body ul li{
    list-style: none;
}
.beneficios {
    margin-top: 2em;
    background-color: #E3E3E3;
    display: flex;
    border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
border: 0px solid #000000;
    }

.beneficios img{
    max-width: 8em;
    margin: 1em;
    }

.beneficios p{
    color: #737373;
    align-self: center;
    font-size: 20px;
}


/* RESPONSIVE */
@media all and ( min-width:67em){
    
    .beneficios{
        margin-left: 20%;
        margin-right: 20%;
        
    }
}





/* RESPONSIVE */

/*responsive nav style*/




@media all and (max-width: 1000px) {
 

header nav ul li a {
	margin-top: px;
	}	
	
.fa-angle-down:before {
    display: block;
}
.fa-ellipsis-h:before {
	vertical-align: middle;
	margin-left: 10px;
}	

body header img {
    height: 30px;
	vertical-align: middle;
	padding: 0px;
}
	
* {
    margin: 0px;
	padding: 0px;
}	
	
.nav-bar {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  background: #414141;
  z-index: 9999;
  max-height: 3em;
}

header nav {
    background: #414141;
    z-index: 1000;
    width: 100%;
    margin: auto;
	padding-top: 25px;
}
	
header a {
    
	text-decoration: none;
	text-transform: uppercase;
	vertical-align: middle;
	color: white;
	font-size: 20px;
	}

.nav-bar span {
  float: right;
  font-size: 20px;
  color: #fff;
}

.nav-bar .fa-ellipsis-h {
  color: #fff;
  overflow: hidden;
  font-size: 30px;
  text-decoration: none;
  float: left;
}

header nav {
  width: 50%;
  height: auto;
  position: fixed;
  right: 100%;
  top : 36px;
  overflow: hidden;
  height: 100%;
}

header nav ul li {
  display: block;
  width: 100%;
}

header ul li a { display: block; }

header nav ul li .children {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: none;
  background: #414141;
  margin-left: 10px;
  border-bottom: none;
}

header nav ul li:hover .children { display: none;  background: #414141; }

header nav ul li .children li a span {
	float: right;
	position: relative;
	top:3px;
	margin-right:0;
	margin-left:10px;
}
	    
}
  
	

header nav ul li .children a {
  margin-left: 10px;
}

header nav ul li .fa-angle-down {
  position: relative;
  top: 3px;
}
    
body header nav ul li a{
    font-size: 13px;
}


}
    


    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    