
			<script type="text/javascript">
	
				jQuery(document).ready(function($) { 		
				
					var map_id = 'initial';
					
					if(typeof _CSPM_DONE === 'undefined' || _CSPM_DONE[map_id] === true) 
						return;
					
					_CSPM_DONE[map_id] = false;
					_CSPM_MAP_RESIZED[map_id] = 0;
					
					/**
					 * Start displaying the Progress Bar loader */
					 
					if(typeof NProgress !== 'undefined'){
						
						NProgress.configure({
						  parent: 'div#codespacing_progress_map_div_'+map_id,
						  showSpinner: true
						});				
						
						NProgress.start();
						
					}
					
					/**
					 * @map_layout, Will contain the layout type of the current map.
					 * This variable was first initialized in "progress_map.js"!
					 * @since 2.8 */
										
					map_layout[map_id] = 'mu-cd';

					/**
					 * @infobox_xhr, Will store the ajax requests in order to test if an ajax request ... 
					 * ... will overide "an already sent and non finished" request */
					
					var infobox_xhr; 
					
					/**
					 * @cspm_bubbles, Will store the marker bubbles (post_ids) in the viewport of the map */
					 
					cspm_bubbles[map_id] = []; 
					
					/**
					 * @cspm_child_markers, Will store the status of markers in order to define secondary markers from parent markers */
					 					 
					cspm_child_markers[map_id] = []; 
					
					/**
					 * Will store all the current ajax request (for infoboxes) in order to execute them when they all finish */
					
					cspm_requests[map_id] = []; 
									
					/**
					 * @post_ids_and_categories, Will store the markers categories in order to use with faceted search and to define the marker icon */
					 
					post_ids_and_categories[map_id] = {}; 
					
					/** 
					 * @post_lat_lng_coords, Will store the markers coordinates in order to use them when rewriting the map & the carousel */
					 
					post_lat_lng_coords[map_id] = {}; 
					
					/**
					 * @post_ids_and_child_status, Will store the markers and their child status in order to use when rewriting the carousel */
					 
					post_ids_and_child_status[map_id] = {}; 
					
					/**
					 * @json_markers_data, Will store the markers objects */
					 
					var json_markers_data = [];

					/**
					 * init plugin map */
					 
					var plugin_map_placeholder = 'div#codespacing_progress_map_div_'+map_id;
					var plugin_map = $(plugin_map_placeholder);
					
					/**
					 * Load Map options */
					 
											var map_options = cspm_load_map_options(false, null, 12);
										
					/**
					 * Activate the new google map visual */
					 
					google.maps.visualRefresh = true;				

					/**
					 * The initial map style */
					 
					var initial_map_style = "custom_style";
					
					/**
					 * Enhance the map option with the map type id of the style */
					 
					 
											
						/**
						 * The initial style */
						 
						var map_type_id = cspm_initial_map_style(initial_map_style, true);
			
						/**
						 * Map type control option */
						 
						var mapTypeControlOptions = {mapTypeControlOptions: {
														position: google.maps.ControlPosition.TOP_RIGHT,
														mapTypeIds: [google.maps.MapTypeId.ROADMAP,
																	 google.maps.MapTypeId.SATELLITE,
																	 google.maps.MapTypeId.TERRAIN,
																	 google.maps.MapTypeId.HYBRID,
																	 "custom_style"]				
													}};
													
						var map_options = $.extend({}, map_options, map_type_id, mapTypeControlOptions);
						
									
	
										
					/**
					 * The carousel dimensions & style */
					 
										
						var item_width = parseInt(454);										
						var item_height = parseInt(150);
						var item_css = "";
						var items_background  = "#fff";
						
										
					 var light_map = false; 	
					var infobox_div = $('div.cspm_infobox_container.cspm_infobox_'+map_id);			
					var show_infobox = 'true';
					var infobox_type = 'cspm_type1';
					var infobox_display_event = 'onhover';
					var useragent = navigator.userAgent;
					var infobox_loaded = false;
					var clustering_method = false;
					var remove_infobox_on_mouseout = 'false';
											
					/**
					 * [@polyline_values] - will store an Object of all available Polylines	
					 * [@polygon_values] - will store an Object of all available Polygons					 					 
					 * @since 2.7 */
					 
					var polyline_values = [];
					var polygon_values = [];
					
										
								
					/**
					 * Build the map */
					 				
					plugin_map.gmap3({	
						map:{
							options: map_options,							
							onces: {
								tilesloaded: function(map){
																		
									var carousel_output = []; 

									plugin_map.gmap3({ 										
										marker:{
											values: json_markers_data,
											callback: function(markers){
												 
																								
												/**
												 * Build the carousel items */
												 
												if(!light_map){
													
													for(var i = 0; i < markers.length; i++){	

														var post_id = markers[i].post_id;
														var is_child = markers[i].is_child;
														var marker_position = markers[i].position;
														
														/**
														 * Convert the LatLng object to array */
														 
														var lat = marker_position.lat();
														var lng = marker_position.lng();											
													
														/**
														 * Create carousel items */
														 
														carousel_output.push('<li id="'+map_id+'_list_items_'+post_id+'" class="'+post_id+' carousel_item_'+(i+1)+'_'+map_id+' cspm_border_radius cspm_border_shadow" data-map-id="'+map_id+'" data-is-child="'+is_child+'" name="'+lat+'_'+lng+'" value="'+(i+1)+'" data-post-id="'+post_id+'" style="width:'+item_width+'px; height:'+item_height+'px; background-color:'+items_background+'; '+item_css+'">');
															carousel_output.push('<div class="cspm_spinner"></div>');							
														carousel_output.push('</li>');
														
														if(i == markers.length-1){
															$('ul#codespacing_progress_map_carousel_'+map_id).append(carousel_output.join(''));	
															cspm_init_carousel(null, map_id);
														}
														
													}																						
																																					
												}	
												
																																													
												
											},											
											events:{
												mouseover: function(marker, event, elements){
													
													/**
													 * Display the single infobox */
													 
													if(show_infobox == 'true' && infobox_display_event == 'onhover')
														infobox_xhr = cspm_draw_single_infobox(plugin_map, map_id, infobox_div, infobox_type, marker, infobox_xhr, 'yes');
													
																										
														/**
														 * Apply the style for the active item in the carousel */
														 
														if(!light_map){	
															
															var post_id = marker.post_id;
															var is_child = marker.is_child;	
															var i = $('li[id='+map_id+'_list_items_'+post_id+'][data-is-child="'+is_child+'"]').attr('value');	
															
															cspm_call_carousel_item($('ul#codespacing_progress_map_carousel_'+map_id).data('jcarousel'), i);
															cspm_carousel_item_hover_style('li.carousel_item_'+i+'_'+map_id, map_id);
														
														}
													
																										
												},	
												mouseout: function(marker, event, elements){

													/**
													 * Hide the infobox */
													 
													if(show_infobox == 'true' && (infobox_display_event == 'onhover' || infobox_display_event == 'onclick') && remove_infobox_on_mouseout == 'true'){
														
														infobox_div.addClass('cspm_animated fadeOutUp');					
														infobox_div.hide().removeClass('cspm_animated fadeOutUp');
														
													}
													
												},
												click: function(marker, event, elements){
													
													var latLng = marker.position;											

													/**
													 * Center the map on that marker */
													
													map.panTo(latLng);
													
													cspm_pan_map_to_fit_infobox(plugin_map, map_id, infobox_div);													
															
													/**
													 * Display the single infobox */
													 
													if(json_markers_data.length > 0 && show_infobox == 'true' && infobox_display_event == 'onclick'){
														setTimeout(function(){																										
															infobox_xhr = cspm_draw_single_infobox(plugin_map, map_id, infobox_div, infobox_type, marker, infobox_xhr, 'yes');
														}, 400);
													}
													
																			
													
														/**
														 * Apply the style for the active item in the carousel */
														 
														if(!light_map){	
															
															var post_id = marker.post_id;
															var is_child = marker.is_child;
															var i = $('li[id='+map_id+'_list_items_'+post_id+'][data-is-child="'+is_child+'"]').attr('value');
														
															cspm_call_carousel_item($('ul#codespacing_progress_map_carousel_'+map_id).data('jcarousel'), i);
															cspm_carousel_item_hover_style('li.carousel_item_'+i+'_'+map_id, map_id);
														
														}
													
																										
																										
												}
											}
										}
									});									
									
																			clustering_method = true;
										var clusterer = cspm_clustering(plugin_map, map_id, light_map);										$('div.codespacing_map_zoom_in_'+map_id+', div.codespacing_map_zoom_out_'+map_id).show(); 									
									/**
									 * Draw infoboxes (onload event) */
									 
									if(json_markers_data.length > 0 && clustering_method == true && show_infobox == 'true' && infobox_display_event == 'onload'){			
										
										google.maps.event.addListenerOnce(clusterer, 'clusteringend', function(cluster) {																	
											setTimeout(function(){
												cspm_draw_multiple_infoboxes(plugin_map, map_id, '<div class="cspm_infobox_container cspm_border_shadow cspm_infobox_multiple cspm_infobox_initial cspm_type1" style="width:380px; height:120px;" data-move-carousel="true" data-infobox-link-target="new_window"><div class="blue_cloud"></div><div class="cspm_arrow_down cspm_type1"></div></div>', infobox_type, 'yes');
												infobox_loaded = true;
											}, 1000);																
										});	
										
									}else if(json_markers_data.length > 0 && clustering_method == false && show_infobox == 'true' && infobox_display_event == 'onload'){
										
										setTimeout(function(){
											cspm_draw_multiple_infoboxes(plugin_map, map_id, '<div class="cspm_infobox_container cspm_border_shadow cspm_infobox_multiple cspm_infobox_initial cspm_type1" style="width:380px; height:120px;" data-move-carousel="true" data-infobox-link-target="new_window"><div class="blue_cloud"></div><div class="cspm_arrow_down cspm_type1"></div></div>', infobox_type, 'yes');
											infobox_loaded = true;
										}, 1000);
										
									}else if(json_markers_data.length > 0 && show_infobox == 'true' && infobox_display_event != 'onload'){
										
										infobox_loaded = true;
											
									}
									
									/**
									 * End the Progress Bar Loader */
									 	
									if(typeof NProgress !== 'undefined')
										NProgress.done();
									
								}
								
							},
							events:{
								click: function(){

									/**
									 * Remove single infobox on map click (onclick, onhover events) */
									 
									if(json_markers_data.length > 0 && show_infobox == 'true' && infobox_display_event != 'onload'){										
										infobox_div.hide();
										infobox_div.one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){
											infobox_div.hide().removeClass('cspm_animated fadeOutUp');
										});
									}
									
								},
								idle: function(){								
									if(infobox_loaded && !cspm_is_panorama_active(plugin_map)){
										setTimeout(function(){
											if(json_markers_data.length > 0 && show_infobox == 'true' && infobox_display_event == 'onload'){								
												cspm_draw_multiple_infoboxes(plugin_map, map_id, '<div class="cspm_infobox_container cspm_border_shadow cspm_infobox_multiple cspm_infobox_initial cspm_type1" style="width:380px; height:120px;" data-move-carousel="true" data-infobox-link-target="new_window"><div class="blue_cloud"></div><div class="cspm_arrow_down cspm_type1"></div></div>', infobox_type, 'yes');
											}
										}, 200);
									}
								},				
								bounds_changed: function(){
									if(json_markers_data.length > 0){
										if(json_markers_data.length > 0 && show_infobox == 'true' && infobox_display_event != 'onload'){
											cspm_set_single_infobox_position(plugin_map, infobox_div);
										}else $('div.cspm_infobox_container').hide();
									}
								},
								drag: function(){
									if(json_markers_data.length > 0){
										if(show_infobox == 'true' && infobox_display_event != 'onload'){
											cspm_set_single_infobox_position(plugin_map, infobox_div);
										}else $('div.cspm_infobox_container').hide();
									}
								},
								center_changed: function(){
									setTimeout(function() {
										$('div[class^=cluster_posts_widget]').removeClass('flipInX');
										$('div[class^=cluster_posts_widget]').addClass('cspm_animated flipOutX');
										setTimeout(function() {
											if(typeof $('div.cluster_posts_widget_'+map_id).mCustomScrollbar === 'function'){
												$('div.cluster_posts_widget_'+map_id).mCustomScrollbar("destroy");
											}
										}, 500);
									}, 500);
								}
							}
						},					
						
												
												
												 
												
												 
						 
														
							styledmaptype:{
								id: "custom_style",
								options:{
									name: "Simple Labels",
									alt: "Show Simple Labels"
								},
								styles: [{"featureType":"road","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"poi","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"transit","elementType":"labels.text","stylers":[{"visibility":"off"}]}]							},
							
												 
							
										
					});		
					
					/**
					 * Hide/Show UI Controls depending on the streetview visibility */
					
					var mapObject = plugin_map.gmap3('get');
					
					if(typeof mapObject.getStreetView === 'function'){
												
						var streetView = mapObject.getStreetView();
					
						google.maps.event.addListener(streetView, "visible_changed", function(){
							
							if(this.getVisible()){
								
																	$('div.codespacing_map_zoom_in_'+map_id+', div.codespacing_map_zoom_out_'+map_id).hide();
																 
																 
																 
																
								$('div.cspm_infobox_container').hide();
								 
														
							}else{
								 
																	$('div.codespacing_map_zoom_in_'+map_id+', div.codespacing_map_zoom_out_'+map_id).show();
																 
																 
																 
																 
														
								if(json_markers_data.length > 0 && infobox_loaded){
									setTimeout(function(){
										if(show_infobox == 'true' && infobox_display_event == 'onload'){								
											cspm_draw_multiple_infoboxes(plugin_map, map_id, '<div class="cspm_infobox_container cspm_border_shadow cspm_infobox_multiple cspm_infobox_initial cspm_type1" style="width:380px; height:120px;" data-move-carousel="true" data-infobox-link-target="new_window"><div class="blue_cloud"></div><div class="cspm_arrow_down cspm_type1"></div></div>', infobox_type, 'yes');
										}
									}, 200);
								}
							}
								
						});
						
					}
					 		
										
															
						/**
						 * Call zoom-in function */
						 
						cspm_zoom_in($('div.codespacing_map_zoom_in_'+map_id), plugin_map);
					
						/**
						 * Call zoom-out function */
						 
						cspm_zoom_out($('div.codespacing_map_zoom_out_'+map_id), plugin_map); 					
										 
											
						/**
						 * Store the window width */
						
						var windowWidth = $(window).width();
	
						$(window).resize(function(){
							
							/**
							 * Check window width has actually changed and it's not just iOS triggering a resize event on scroll */
							 
							if ($(window).width() != windowWidth) {
					
								/**
								 * Update the window width for next time */
								 
								windowWidth = $(window).width();
			
								setTimeout(function(){
									
									var latLng = new google.maps.LatLng (43.327854, -1.034582);							
								
									var map = plugin_map.gmap3("get");	
									
									if(typeof map.panTo === 'function')
										map.panTo(latLng);
									
									if(typeof map.setCenter === 'function')
										map.setCenter(latLng);
										
								}, 500);
								
							}
							
						});

					 
					 
										 
											
					_CSPM_DONE[map_id] = true;
	
				});
			
			</script> 
			
			{"id":1829,"date":"2017-04-05T18:14:00","date_gmt":"2017-04-05T16:14:00","guid":{"rendered":"http:\/\/www.hotellapaix.com\/autour-de-vous\/"},"modified":"2017-09-14T11:43:08","modified_gmt":"2017-09-14T09:43:08","slug":"actividades","status":"publish","type":"page","link":"https:\/\/www.hotellapaix.com\/es\/actividades\/","title":{"rendered":"Actividades"},"content":{"rendered":"<p>[vc_row bg_type=\u00bbbg_color\u00bb bg_color_value=\u00bb#f5f5f5&#8243;][vc_column]<div class=\"ult-spacer spacer-69fc528ae1212\" data-id=\"69fc528ae1212\" data-height=\"40\" data-height-mobile=\"40\" data-height-tab=\"\" data-height-tab-portrait=\"50\" data-height-mobile-landscape=\"40\" style=\"clear:both;display:block;\"><\/div><div class=\"ult-animation  ult-animate-viewport  ult-no-mobile \" data-animate=\"bounceIn\" data-animation-delay=\"0.3\" data-animation-duration=\"1\" data-animation-iteration=\"1\" style=\"opacity:0;\" data-opacity_start_effect=\"100\"><div id=\"ultimate-heading-454669fc528ae1314\" class=\"uvc-heading ult-adjust-bottom-margin ultimate-heading-454669fc528ae1314 uvc-1001 set_max_width\" data-hspacer=\"icon_only\"  data-halign=\"center\" style=\"text-align:center\"><div class=\"uvc-heading-spacer icon_only\" style=\"margin-bottom:10px;\"><div class=\"ult-just-icon-wrapper  \"><div class=\"align-icon\" style=\"text-align:center;\">\n<div class=\"aio-icon none \"  style=\"font-size:26px;display:inline-block;\">\n\t<i class=\"icomoon-8\"><\/i>\n<\/div><\/div><\/div><\/div><div class=\"uvc-main-heading ult-responsive\"  data-ultimate-target='.uvc-heading.ultimate-heading-454669fc528ae1314 h2'  data-responsive-json-new='{\"font-size\":\"desktop:25px;\",\"line-height\":\"\"}' ><h2 style=\"font-family:'Poppins';font-weight:600;color:#3d3935;\">Descubra algunas actividades alrededor de nosotros. <\/h2><\/div><div class=\"uvc-sub-heading ult-responsive\"  data-ultimate-target='.uvc-heading.ultimate-heading-454669fc528ae1314 .uvc-sub-heading '  data-responsive-json-new='{\"font-size\":\"\",\"line-height\":\"\"}'  style=\"font-family:'Poppins';font-weight:normal;color:#9c9c9c;margin-top:6px;\"><\/p>\n<p style=\"text-align: center;\">Ya sea para una corta o larga estancia, Saint Palais y su comarca le proponen una amplia gama de actividades para toda la familia.<\/p>\n<p><\/div><\/div><\/div><div class=\"ult-spacer spacer-69fc528ae1328\" data-id=\"69fc528ae1328\" data-height=\"73\" data-height-mobile=\"73\" data-height-tab=\"73\" data-height-tab-portrait=\"\" data-height-mobile-landscape=\"50\" style=\"clear:both;display:block;\"><\/div><div class=\"arrowpress-container container \"><div id=\"ult-carousel-81801848769fc528ae1457\" class=\"ult-carousel-wrapper  slider_type1 ult_horizontal\" data-gutter=\"0\" data-rtl=\"false\" ><div class=\"ult-carousel-51955737169fc528ae1413 \" ><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-3388254111\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/Chistera.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Partido de pelota<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Durante el verano, venga a disfrutar cada mi\u00e9rcoles de un partido de pelota en el front\u00f3n situado a 150 m del hotel. Aproveche la ocasi\u00f3n para descubrir los tradicionales \u00ab\u00a0talo\u00a0\u00bb<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-1413659245\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/initiation-danse-basque.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Baile vasco<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Cuando hace buen tiempo, instalado en la terraza puede admirar una muestra de baile vasco cada jueves a las 9 de la tarde. Aproveche para practicar el \u00ab\u00a0Euskal Dantza\u00a0\u00bb<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-2908391277\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/19237867_1457846920944961_3453772363376083913_o.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Mercado de Saint Palais<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Desde hace siglos el mercado de ganado, \u00ab\u00a0au gras\u00a0\u00bb, y toda clase de productos se encuentran cada viernes por la ma\u00f1ana.<br \/>\nEs un momento de encuentro tradicional de la habitantes del \u00ab\u00a0Pa\u00eds de Amikuze\u00a0\u00bb con quesos locales, pan, fruta y verdura, ropa, flores\u2026<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-1938291262\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/saintpalais4.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Fuerza Vasca<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Una cita importante del verano es la semana de las fiestas de Saint Palais a finales de julio. Toda la ciudad viste de azul y blanco.<br \/>\nEl domingo despu\u00e9s del 15 de agosto se celebrael Festival de Fuerza Vasca.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-4194457460\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/image.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Capucinade<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Descubra la caza de la paloma torcaz de Lannes en Baretous, Lantabat\u2026 pru\u00e9belas flameadas al \u00ab\u00a0capucin\u00a0\u00bb, t\u00e9cnica de cocci\u00f3n de la paloma torcaz t\u00edpica de Saint Palais<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-2958163776\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/foire2.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Feria de Garris<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Feria de caballos y feria de ganado vacuno de Garris en julio y agosto.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-3591161026\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/DSC_0035.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Feria de las alpargatas<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Las alpargatas son un s\u00edmbolo de Mauleon. Una f\u00e1brica est\u00e1 instalada en la plaza y se pueden ver todas las \u00e9tapas necesarias en la creaci\u00f3n de estas zapatillas de cuerda.<br \/>\nUn mercado de productores granjeros, animaciones de baile y canto, partidas de pelota vasca forman parte de esta fiesta.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-1129023739\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/Chistera-1.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Poteo<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Animaci\u00f3n y canciones tradicionales en Saint Palais<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><div class=\"ult-item-wrap\" data-animation=\"animated fadeInRight\"><div class=\"banner-container \" id=\"arp_banner-1595436461\"> \n\t<div class=\"banner-content banner-type-2 \n\t\t \n\t\t\t\ttext-left\t\t \n\t\t\" data-animation-delay=\"500\" data-animation=\"\">\n\t\t<div class=\"img-banner\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/uploads\/2017\/04\/piscine.jpg\" alt=\"img\">\n\t\t\t\t\t<\/div>\n\t\t<div class=\"banner-desc \" >\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t<h2 >Piscine de Saint Palais<\/h2>\n\t\t\t\t\t\n\t\t\t<p>Abierta todos los d\u00edas del verano.<\/p>\n\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\t<\/div>\n<\/div>\n<\/div><\/div><\/div>\t\t\t<script type=\"text\/javascript\">\n\t\t\t\tjQuery(document).ready(function ($) {\n\t\t\t\t\t$('.ult-carousel-51955737169fc528ae1413').slick({dots: true,autoplay: true,autoplaySpeed: 5000,speed: 300,infinite: true,arrows: true,nextArrow: '<button type=\"button\" role=\"button\" aria-label=\"Next\" style=\"color:#333333; font-size:20px;\" class=\"slick-next default\"><i class=\"ultsl-arrow-right\"><\/i><\/button>',prevArrow: '<button type=\"button\" role=\"button\" aria-label=\"Previous\" style=\"color:#333333; font-size:20px;\" class=\"slick-prev default\"><i class=\"ultsl-arrow-left\"><\/i><\/button>',slidesToScroll:1,slidesToShow:1,swipe: true,draggable: true,touchMove: true,pauseOnHover: true,responsive: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t  breakpoint: 1025,\n\t\t\t\t\t\t\t  settings: {\n\t\t\t\t\t\t\t\tslidesToShow: 1,\n\t\t\t\t\t\t\t\tslidesToScroll: 1,  \n\t\t\t\t\t\t\t  }\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t  breakpoint: 769,\n\t\t\t\t\t\t\t  settings: {\n\t\t\t\t\t\t\t\tslidesToShow: 1,\n\t\t\t\t\t\t\t\tslidesToScroll: 1\n\t\t\t\t\t\t\t  }\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t  breakpoint: 481,\n\t\t\t\t\t\t\t  settings: {\n\t\t\t\t\t\t\t\tslidesToShow: 1,\n\t\t\t\t\t\t\t\tslidesToScroll: 1\n\t\t\t\t\t\t\t  }\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t],pauseOnDotsHover: true,customPaging: function(slider, i) {\n                   return '<i type=\"button\" style=\"color:#333333;\" class=\"ultsl-record\" data-role=\"none\"><\/i>';\n                },});\n\t\t\t\t});\n\t\t\t<\/script>\n\t\t\t<\/div>\n<div class=\"ult-spacer spacer-69fc528ae2322\" data-id=\"69fc528ae2322\" data-height=\"126\" data-height-mobile=\"70\" data-height-tab=\"\" data-height-tab-portrait=\"\" data-height-mobile-landscape=\"70\" style=\"clear:both;display:block;\"><\/div>[\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text]<div class=\"codespacing_progress_map_area\" data-map-id=\"initial\" data-show-infobox=\"true\" data-infobox-display-event=\"onhover\" style=\"width:100%; height:620px;\"><input type=\"hidden\" name=\"cspm_map_page_id_initial\" id=\"cspm_map_page_id_initial\" value=\"1829\" \/><div class=\"row\" style=\"margin:0; padding:0;\"><div class=\"col-lg-12 col-xs-12 col-sm-12 col-md-12\" style=\"position:relative; overflow:hidden; margin:0; padding:0;\"><div id=\"pulsating_holder\" class=\"initial_pulsating\"><div class=\"dot\"><\/div><\/div><div class=\"cspm_infobox_container cspm_border_shadow cspm_infobox_single cspm_infobox_initial cspm_type1\" style=\"width:380px; height:120px;\" data-move-carousel=\"true\" data-infobox-link-target=\"new_window\"><div class=\"blue_cloud\"><\/div><div class=\"cspm_arrow_down cspm_type1\"><\/div><\/div><div class=\"codespacing_zoom_container\"><div class=\"codespacing_map_zoom_in_initial cspm_zoom_in_control cspm_border_shadow cspm_border_top_radius\" title=\"Zoom in\"><img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/plugins\/codespacing-progress-map\/img\/addition-sign.png\" \/><\/div><div class=\"codespacing_map_zoom_out_initial cspm_zoom_out_control cspm_border_shadow cspm_border_bottom_radius\" title=\"Zoom out\"><img decoding=\"async\" src=\"https:\/\/www.hotellapaix.com\/wp-content\/plugins\/codespacing-progress-map\/img\/minus-sign.png\" \/><\/div><\/div><div class=\"cluster_posts_widget_initial cspm_border_shadow\"><div class=\"blue_cloud\"><\/div><\/div><div id=\"codespacing_progress_map_div_initial\" style=\"height:442px;\"><\/div><\/div><\/div><div class=\"row\" style=\"margin:0; padding:0\"><div id=\"codespacing_progress_map_carousel_container\" data-map-id=\"initial\" class=\"col-lg-12 col-xs-12 col-sm-12 col-md-12\" style=\"margin:0; padding:0; height:auto;\"><ul id=\"codespacing_progress_map_carousel_initial\" class=\"jcarousel-skin-default\" style=\"height:158px;\"><\/ul><\/div><\/div><\/div>[\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row bg_type=\u00bbbg_color\u00bb bg_color_value=\u00bb#f5f5f5&#8243;][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1829","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.hotellapaix.com\/es\/wp-json\/wp\/v2\/pages\/1829","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hotellapaix.com\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.hotellapaix.com\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.hotellapaix.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hotellapaix.com\/es\/wp-json\/wp\/v2\/comments?post=1829"}],"version-history":[{"count":2,"href":"https:\/\/www.hotellapaix.com\/es\/wp-json\/wp\/v2\/pages\/1829\/revisions"}],"predecessor-version":[{"id":1831,"href":"https:\/\/www.hotellapaix.com\/es\/wp-json\/wp\/v2\/pages\/1829\/revisions\/1831"}],"wp:attachment":[{"href":"https:\/\/www.hotellapaix.com\/es\/wp-json\/wp\/v2\/media?parent=1829"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}