- published: 10 Dec 2014
- views: 3858230
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Sarah Brightman (born 14 August 1960) is an English classical crossover soprano, actress, songwriter and dancer. She has sung in many languages, including English, Spanish, French, Latin, German, Turkish, Italian, Russian, Mandarin Chinese, Japanese and Catalan.
Brightman began her career as a member of the dance troupe Hot Gossip and released several disco singles as a solo performer. In 1981, she made her West End musical theatre debut in Cats and met composer Andrew Lloyd Webber, whom she married. She went on to star in several West End and Broadway musicals, including The Phantom of the Opera, where she originated the role of Christine Daaé. The Original London Cast Album of the musical was released in CD format in 1987 and sold 40 million copies worldwide, making it the biggest-selling cast album of all time.
After retiring from the stage and divorcing Lloyd Webber, Brightman resumed her music career with former Enigma producer Frank Peterson, this time as a classical crossover artist. She is often credited as the creator of this genre and remains among the most prominent performers, with worldwide sales of more than 30 million records and 2 million DVDs, establishing herself as the world's best-selling soprano of all time.
Sarah or Sara (/ˈsɛərə/;Hebrew: שָׂרָה, Modern Sara, Tiberian Śārā ISO 259-3 Śarra; Latin: Sara; Arabic: سارا or سارة Sāra;) was the wife and half–sister of Abraham and the mother of Isaac as described in the Hebrew Bible and the Quran. Her name was originally Sarai. According to Genesis 17:15, God changed her name to Sarah as part of a covenant after Hagar bore Abraham his first son, Ishmael.
The Hebrew name Sarah indicates a woman of high rank and is translated as "princess" or "noblewoman".
Sarah was the wife of Abraham, as well as being his half-sister, the daughter of his father Terah. Sarah was approximately ten years younger than her husband.
She was considered beautiful to the point that Abraham feared that when they were near more powerful rulers she would be taken away and given to another man. Twice he purposely identified her as being only his sister so that he would be "treated well" for her sake. No reason is given why Sarah remained barren (childless) for a long period of time. She was originally called "Sarai", which is translated "my princess". Later she was called "Sarah", i.e., "princess".
Sarah (alternatively spelled Sara) is a Jewish feminine given name found in many different areas of the world. Sarah is a consistently popular given name across Europe and North America, as well as in the Middle East—being commonly used as a female first name by Jews, Christians and Muslims alike, and remaining popular also among non-religious members of cultures influenced by these religions.
Frequently, the name refers to Sarah, the wife of Abraham in the Hebrew Bible, the Christian Old Testament, and the Islamic Quran. In Arabic, Hebrew, and Persian, it means woman of high rank, often simply translated as "Princess". In Modern Hebrew, "sarah" (שרה) is the word for "woman minister".
In the United States, Sarah has been counted among the top 150 given names since 1880, when name popularity statistics were first recorded in the United States. Sarah ranked among the top 10 names from 1978 to 2002, reaching a plateau of popularity from the early 1980s to 1988. Every year since and including 1989 it has fallen in popularity, but it remained the 30th most popular name for newborn girls in 2010. Its most common variant spelling, Sara, was number 121.
Sarah is a biblical matriarch and the wife of Abraham.
Sarah may also refer to:
Passion or the Passion or Passion or The Passions may refer to:
Lima is a restaurant in London, United Kingdom, which serves Peruvian cuisine. The chef patron is Virgilio Martínez Véliz. In 2014, it was awarded a Michelin star, the first time a restaurant serving this cuisine had been awarded a star in Europe.
Lima is owned by Gabriel and Jose Luis Gonzalez, in conjunction with Peruvian chef Virgilio Martínez Véliz. The front of house is run by maître d’ Bunmi Okolosi, formerly of Dinner by Heston Blumenthal. In the kitchen, Roberto Ortiz is the head chef of the restaurant as overseen by chef patron Virgilio Martínez Véliz. Martínez Véliz is the chef at Central Restaurante in Lima, Peru, which was named 15th in the 2014 The World's 50 Best Restaurants.
The interior of Lima was designed by Erik Munro, and features a mural whilst the rest of the restaurant is beige. The restaurant is small and narrow, and mirrors are used to give the impression of greater space. A skylight lights the rear of the restaurant, the remainder of which is lit by candles and industrial-style lamps. The kitchen is open to the dining area of the restaurant.
In ancient Roman religion, the indigitamenta were lists of deities kept by the College of Pontiffs to assure that the correct divine names were invoked for public prayers. These lists or books probably described the nature of the various deities who might be called on under particular circumstances, with specifics about the sequence of invocation. The earliest indigitamenta, like many other aspects of Roman religion, were attributed to Numa Pompilius, second king of Rome.
The books of the Pontiffs are known only through scattered passages preserved throughout Latin literature. Varro is assumed to have drawn on direct knowledge of the lists in writing his now-fragmentary theological books, which were used as a reference by the Church Fathers for their mocking catalogues of minor deities. As William Warde Fowler noted,
Georg Wissowa, however, asserted that Varro's lists were not indigitamenta, but di certi, gods whose function could still be identified with certainty, since by the late Republic some of the most archaic deities of the Roman pantheon were not widely cultivated and understood. Another likely source for the patristic catalogues is the lost work De indigitamentis of Granius Flaccus, Varro's contemporary.
Provided to YouTube by Virgin Music Group Sarah · Tyler the Creator Bastard ℗ 2014 F.M.F. Entertainment Released on: 2009-12-25 Writer: Derrick Johnson Auto-generated by YouTube.
In this episode of SRS, Sarah Adams exposes the hidden realities behind global security threats and government inaction. She discusses alarming intelligence gaps, Taliban funding, Al Qaeda’s evolving strategies, and the unsettling roles of China and Russia in shaping terrorist activities. Drawing from historical events like Benghazi, the conversation challenges listeners to rethink what’s being overlooked in today’s geopolitical landscape. The discussion also highlights Hamza bin Laden’s influence, the challenges faced by abandoned allies, and the evolving nature of terrorist tactics. Through detailed analysis and candid reflections, Adams provides a nuanced perspective on the complexities of global and domestic security. Sign the Petition - https://change.org/shawnryanshow Join this ch...
artist - min khant zaw (sarah) title - မုိး Editing - Nu Aye San
Provided to YouTube by Republic of Music Sarah · Alex G Trick ℗ Lucky Number Music Limited Released on: 2012-11-05 Producer: Alex G Composer: Alex Giannascoli Auto-generated by YouTube.
Siti Sarah - Kesetiaan (Official Music Video) Subscribe to NAR Records channel here : https://bit.ly/NARRecords Stream 'Kesetiaan' now: https://bfan.link/sitisarah. Artist : Siti Sarah Composer : Ajai (Universal Music Publishing) Author : Musrad Record Label : NAR Records Sdn Bhd #SitiSarah #Kesetiaan #NARRecords *LIRIK KESETIAAN* Kesetiaan menghalangi Ku pindah ke lain hati Dan tak ingin ku melukai Mendambakan cinta ini hanya kekalnya denganmu Tapi kudrat tak di tanganku Padamu ku alunkan rinduku Sayang jadi sendu Tinggalkan lara putus cintaku Di akhir kali pertemuan pilu Tahu kau meninggalkanku Kau palitkan kesal menunggumu Kesalahan kau pautkan di jiwaku Kau nampakkan keangkuhanmu Ku relai cinta tak suci ini pergi Ku hayunkan langkah kaki Meraih cinta yang suci Moga ada insan yang...
THE DOCKET 0:00 Welcome 8:10 Road So Far 13:32 Technical Difficulties 17:45 Sarah Boone Unredacted Letter to the Court 30:49 🟢CODE GREEN🟢 1:19:00 Judge Kraynick Segment 1:25:45 🚨CODE RED🚨 2:00:15 Summary 2:08:16 Q&A Get Our FREE App: https://www.lawnerdapp.com Or get our Email Alerts: https://www.LawNerdAlert.com Mailing Address: Emily D. Baker 2000 Mallory Ln. St. 130-185, Franklin TN 37067 Business Inquiries: [email protected] LAW NERD MERCH! https://www.LawNerdShop.com Help with the Law Nerd Shop go to https://www.lawnerdshop.com/pages/contact LONG-FORM CONTENT https://www.youtube.com/@TheEmilyDBaker The Emily Show Podcast on YouTube: https://emilydbaker.com/TheEmilyShowPlaylist Apple Podcasts: https://emilydbaker.com/AppleTheEmilyShow Spotify Podcasts: https://emi...
#lawyeryouknow #sarahboone #suitcasemurder Watch the entire Sarah Boone playlist here: https://www.youtube.com/playlist?list=PLTjIJ7zrQ_sr7GAVo26Da5WeB6L9p7SS- 🔴 Do you or someone you know need to speak to a real lawyer about a wrongful death or personal injury case? Please reach out to our firm and we will make sure to answer your questions or find someone who can. Our consultations are always free and confidential. You can call our firm at (727)441-9030 or email us at [email protected]. ✅ For business inquiries contact me at [email protected] ✅ Let's connect: https://www.tragoslaw.com/ Twitter - @LawyerYouKnow Instagram - @tragoslaw Facebook - @LawyerYouKnow TikTok - @LawyerYouKnow ✅ Join our email list here - https://bit.ly/33lV3Mb ✅ Get your Lawyer...
You're watching the official music video for Starship - "Sara" from the 1985 album 'Knee Deep in the Hoopla' - upgraded to HD! Subscribe to the Rhino Channel! https://Rhino.lnk.to/YouTubeSubID Performers: Craig Chaquico, Pete Sears, Mickey Thomas, Grace Slick, Donny Baldwin Songwriters: Ina Wolf, Peter Wolf Check Out Our Favorite Playlists: Classic Rock https://Rhino.lnk.to/YTClassicRockID 80s Hits https://Rhino.lnk.to/YT80sHitsID 80s Hard Rock https://Rhino.lnk.to/YT80sHardRockID 80s Alternative https://Rhino.lnk.to/YT80sAlternativeID 90s Hits https://Rhino.lnk.to/YT90sHitsID Stay connected with RHINO on... Facebook https://www.facebook.com/RHINO/ Instagram https://www.instagram.com/rhino_records Twitter https://twitter.com/Rhino_Records https://www.rhino.com/ Lyrics: Go now Don't lo...
Sara Sharif's father Urfan Sharif and stepmother Beinash Batool have been found guilty of her murder at the Old Bailey on Wednesday. • Subscribe to ITV News on YouTube: http://bit.ly/2lOHmNj • Get breaking news and more stories at http://www.itv.com/news Follow ITV News on Facebook: https://www.facebook.com/itvnews/ Follow ITV News on Twitter: https://twitter.com/itvnews Follow ITV News on Instagram: https://www.instagram.com/itvnews/
Sarah Brightman (born 14 August 1960) is an English classical crossover soprano, actress, songwriter and dancer. She has sung in many languages, including English, Spanish, French, Latin, German, Turkish, Italian, Russian, Mandarin Chinese, Japanese and Catalan.
Brightman began her career as a member of the dance troupe Hot Gossip and released several disco singles as a solo performer. In 1981, she made her West End musical theatre debut in Cats and met composer Andrew Lloyd Webber, whom she married. She went on to star in several West End and Broadway musicals, including The Phantom of the Opera, where she originated the role of Christine Daaé. The Original London Cast Album of the musical was released in CD format in 1987 and sold 40 million copies worldwide, making it the biggest-selling cast album of all time.
After retiring from the stage and divorcing Lloyd Webber, Brightman resumed her music career with former Enigma producer Frank Peterson, this time as a classical crossover artist. She is often credited as the creator of this genre and remains among the most prominent performers, with worldwide sales of more than 30 million records and 2 million DVDs, establishing herself as the world's best-selling soprano of all time.
(feat. Fernando Lima)
Sueńas con un amor
Puro, sin condición
Fuerte, eterno como el sol
Con el que se dibuja una pasión
Sueńas con un amor
Limpio, con devoción
Libre, sacar las alas del corazón
Y Volar a dónde anida la pasión
[Chorus:]
La pasión, es como un viento inquieto
Que se convierte en libertad
Es saber que hay alguien más que vive
Deseando poderte encontrar
Es viajar sin miedo entre las estrellas y la inmensidad
Es atravesar el fuego, caminar sobre las aguas
Convertir un sueńo en realidad
La pasión es ésa fuerza inmensa
Que mueve a toda la creación
Es saber que alguien te está esperando
Mas allá dónde se oculta el sol
Es borrar por siempre de tí la palabra soledad
Son dos almas que se unen llegando así a la eternidad
Nunca te faltará
Alguien en quien confiar
Un ángel que de la mano te llevará
A descubrir un mundo de pasión
[Repeat chorus]
Vives con un amor
Fuerte y sin condición
Libre y ponerle alas al corazón
Volar adónde anida la pasión