<!DOCTYPE html><html class="v2" dir="ltr" lang="en-US" xmlns="http://www.w3.org/1999/xhtml" xmlns:b="http://www.google.com/2005/gml/b" xmlns:data="http://www.google.com/2005/gml/data" xmlns:expr="http://www.google.com/2005/gml/expr"><head><meta charset="UTF-8"/>
<script data-ezscrex='false' data-cfasync='false' data-pagespeed-no-defer>var __ez=__ez||{};__ez.stms=Date.now();__ez.evt={};__ez.script={};__ez.ck=__ez.ck||{};__ez.template={};__ez.template.isOrig=true;__ez.queue=(function(){var count=0,incr=0,items=[],timeDelayFired=false,hpItems=[],lpItems=[],allowLoad=true;var obj={func:function(name,funcName,parameters,isBlock,blockedBy,deleteWhenComplete,proceedIfError){var self=this;this.name=name;this.funcName=funcName;this.parameters=parameters===null?null:(parameters instanceof Array)?parameters:[parameters];this.isBlock=isBlock;this.blockedBy=blockedBy;this.deleteWhenComplete=deleteWhenComplete;this.isError=false;this.isComplete=false;this.isInitialized=false;this.proceedIfError=proceedIfError;this.isTimeDelay=false;this.process=function(){log("... func = "+name);self.isInitialized=true;self.isComplete=true;log("... func.apply: "+name);var funcs=self.funcName.split('.');var func=null;if(funcs.length>3){}else if(funcs.length===3){func=window[funcs[0]][funcs[1]][funcs[2]];}else if(funcs.length===2){func=window[funcs[0]][funcs[1]];}else{func=window[self.funcName];}
if(typeof func!=='undefined'&&func!==null){func.apply(null,this.parameters);}
if(self.deleteWhenComplete===true)delete items[name];if(self.isBlock===true){log("----- F'D: "+self.name);processAll();}}},file:function(name,path,isBlock,blockedBy,async,defer,proceedIfError){var self=this;this.name=name;this.path=path;this.async=async;this.defer=defer;this.isBlock=isBlock;this.blockedBy=blockedBy;this.isInitialized=false;this.isError=false;this.isComplete=false;this.proceedIfError=proceedIfError;this.isTimeDelay=false;this.process=function(){self.isInitialized=true;log("... file = "+name);var scr=document.createElement('script');scr.src=path;if(async===true)scr.async=true;else if(defer===true)scr.defer=true;scr.onerror=function(){log("----- ERR'D: "+self.name);self.isError=true;if(self.isBlock===true){processAll();}};scr.onreadystatechange=scr.onload=function(){var state=scr.readyState;log("----- F'D: "+self.name);if((!state||/loaded|complete/.test(state))){self.isComplete=true;if(self.isBlock===true){processAll();}}};document.getElementsByTagName('head')[0].appendChild(scr);}},fileLoaded:function(name,isComplete){this.name=name;this.path="";this.async=false;this.defer=false;this.isBlock=false;this.blockedBy=[];this.isInitialized=true;this.isError=false;this.isComplete=isComplete;this.proceedIfError=false;this.isTimeDelay=false;this.process=function(){};}};function init(){window.addEventListener("load",function(){setTimeout(function(){timeDelayFired=true;log('TDELAY -----');processAll();},5000);},false);}
function addFile(name,path,isBlock,blockedBy,async,defer,proceedIfError,priority){var item=new obj.file(name,path,isBlock,blockedBy,async,defer,proceedIfError);if(priority===true){hpItems[name]=item}else{lpItems[name]=item}
items[name]=item;checkIfBlocked(item);}
function setallowLoad(settobool){allowLoad=settobool}
function addFunc(name,func,parameters,isBlock,blockedBy,autoInc,deleteWhenComplete,proceedIfError,priority){if(autoInc===true)name=name+"_"+incr++;var item=new obj.func(name,func,parameters,isBlock,blockedBy,deleteWhenComplete,proceedIfError);if(priority===true){hpItems[name]=item}else{lpItems[name]=item}
items[name]=item;checkIfBlocked(item);}
function addTimeDelayFile(name,path){var item=new obj.file(name,path,false,[],false,false,true);item.isTimeDelay=true;log(name+' ... '+' FILE! TDELAY');lpItems[name]=item;items[name]=item;checkIfBlocked(item);}
function addTimeDelayFunc(name,func,parameters){var item=new obj.func(name,func,parameters,false,[],true,true);item.isTimeDelay=true;log(name+' ... '+' FUNCTION! TDELAY');lpItems[name]=item;items[name]=item;checkIfBlocked(item);}
function checkIfBlocked(item){if(isBlocked(item)===true||allowLoad==false)return;item.process();}
function isBlocked(item){if(item.isTimeDelay===true&&timeDelayFired===false){log(item.name+" blocked = TIME DELAY!");return true;}
if(item.blockedBy instanceof Array){for(var i=0;i<item.blockedBy.length;i++){var block=item.blockedBy[i];if(items.hasOwnProperty(block)===false){log(item.name+" blocked = "+block);return true;}else if(item.proceedIfError===true&&items[block].isError===true){return false;}else if(items[block].isComplete===false){log(item.name+" blocked = "+block);return true;}}}
return false;}
function markLoaded(filename){if(!filename||0===filename.length){return;}
if(filename in items){var item=items[filename];if(item.isComplete===true){log(item.name+' '+filename+': error loaded duplicate')}else{item.isComplete=true;item.isInitialized=true;}}else{items[filename]=new obj.fileLoaded(filename,true);}
log("markLoaded dummyfile: "+items[filename].name);}
function logWhatsBlocked(){for(var i in items){if(items.hasOwnProperty(i)===false)continue;var item=items[i];isBlocked(item)}}
function log(msg){var href=window.location.href;var reg=new RegExp('[?&]ezq=([^&#]*)','i');var string=reg.exec(href);var res=string?string[1]:null;if(res==="1")console.debug(msg);}
function processAll(){count++;if(count>200)return;log("let's go");processItems(hpItems);processItems(lpItems);}
function processItems(list){for(var i in list){if(list.hasOwnProperty(i)===false)continue;var item=list[i];if(item.isComplete===true||isBlocked(item)||item.isInitialized===true||item.isError===true){if(item.isError===true){log(item.name+': error')}else if(item.isComplete===true){log(item.name+': complete already')}else if(item.isInitialized===true){log(item.name+': initialized already')}}else{item.process();}}}
init();return{addFile:addFile,addDelayFile:addTimeDelayFile,addFunc:addFunc,addDelayFunc:addTimeDelayFunc,items:items,processAll:processAll,setallowLoad:setallowLoad,markLoaded:markLoaded,logWhatsBlocked:logWhatsBlocked,};})();__ez.evt.add=function(e,t,n){e.addEventListener?e.addEventListener(t,n,!1):e.attachEvent?e.attachEvent("on"+t,n):e["on"+t]=n()},__ez.evt.remove=function(e,t,n){e.removeEventListener?e.removeEventListener(t,n,!1):e.detachEvent?e.detachEvent("on"+t,n):delete e["on"+t]};__ez.script.add=function(e){var t=document.createElement("script");t.src=e,t.async=!0,t.type="text/javascript",document.getElementsByTagName("head")[0].appendChild(t)};__ez.dot={};__ez.vep=(function(){var pixels=[],pxURL="/detroitchicago/grapefruit.gif";function AddPixel(vID,pixelData){if(__ez.dot.isDefined(vID)&&__ez.dot.isValid(pixelData)){pixels.push({type:'video',video_impression_id:vID,domain_id:__ez.dot.getDID(),t_epoch:__ez.dot.getEpoch(0),data:__ez.dot.dataToStr(pixelData)});}}
function Fire(){if(typeof document.visibilityState!=='undefined'&&document.visibilityState==="prerender"){return;}
if(__ez.dot.isDefined(pixels)&&pixels.length>0){while(pixels.length>0){var j=5;if(j>pixels.length){j=pixels.length;}
var pushPixels=pixels.splice(0,j);var pixelURL=__ez.dot.getURL(pxURL)+"?orig="+(__ez.template.isOrig===true?1:0)+"&v="+btoa(JSON.stringify(pushPixels));__ez.dot.Fire(pixelURL);}}
pixels=[];}
return{Add:AddPixel,Fire:Fire};})();</script><script data-ezscrex='false' data-cfasync='false' data-pagespeed-no-defer>__ez.pel=(function(){var pixels=[],pxURL="/porpoiseant/army.gif";function AddAndFirePixel(adSlot,pixelData){AddPixel(adSlot,pixelData,0,0,0,0,0);Fire();}
function AddAndFireOrigPixel(adSlot,pixelData){AddPixel(adSlot,pixelData,0,0,0,0,0,true);Fire();}
function GetCurrentPixels(){return pixels;}
function AddPixel(adSlot,pixelData,revenue,est_revenue,bid_floor_filled,bid_floor_prev,stat_source_id,isOrig){if(!__ez.dot.isDefined(adSlot)||__ez.dot.isAnyDefined(adSlot.getSlotElementId,adSlot.ElementId)==false){return;}
var ad_position_id=parseInt(__ez.dot.getTargeting(adSlot,'ap'));var impId=__ez.dot.getSlotIID(adSlot),adUnit=__ez.dot.getAdUnit(adSlot,isOrig);var compId=parseInt(__ez.dot.getTargeting(adSlot,"compid"));var lineItemId=0;var creativeId=0;var ezimData=getEzimData(adSlot);if(typeof ezimData=='object'){if(ezimData.creative_id!==undefined){creativeId=ezimData.creative_id;}
if(ezimData.line_item_id!==undefined){lineItemId=ezimData.line_item_id;}}
if(__ez.dot.isDefined(impId,adUnit)&&__ez.dot.isValid(pixelData)){if(impId!=="0"&&adUnit!==""){pixels.push({type:"impression",impression_id:impId,domain_id:__ez.dot.getDID(),unit:adUnit,t_epoch:__ez.dot.getEpoch(0),revenue:revenue,est_revenue:est_revenue,ad_position:ad_position_id,ad_size:"",bid_floor_filled:bid_floor_filled,bid_floor_prev:bid_floor_prev,stat_source_id:stat_source_id,country_code:__ez.dot.getCC(),pageview_id:__ez.dot.getPageviewId(),comp_id:compId,line_item_id:lineItemId,creative_id:creativeId,data:__ez.dot.dataToStr(pixelData),is_orig:isOrig||__ez.template.isOrig,});}}}
function AddPixelById(impFullId,pixelData,isOrig){var vals=impFullId.split('/');if(__ez.dot.isDefined(impFullId)&&vals.length===3&&__ez.dot.isValid(pixelData)){var adUnit=vals[0],impId=vals[2];pixels.push({type:"impression",impression_id:impId,domain_id:__ez.dot.getDID(),unit:adUnit,t_epoch:__ez.dot.getEpoch(0),pageview_id:__ez.dot.getPageviewId(),data:__ez.dot.dataToStr(pixelData),is_orig:isOrig||__ez.template.isOrig});}}
function Fire(){if(typeof document.visibilityState!=='undefined'&&document.visibilityState==="prerender")return;if(__ez.dot.isDefined(pixels)&&pixels.length>0){var allPixels=[pixels.filter(function(pixel){return pixel.is_orig}),pixels.filter(function(pixel){return!pixel.is_orig})];allPixels.forEach(function(pixels){while(pixels.length>0){var isOrig=pixels[0].is_orig||false;var j=5;if(j>pixels.length){j=pixels.length;}
var pushPixels=pixels.splice(0,j);var pixelURL=__ez.dot.getURL(pxURL)+"?orig="+(isOrig===true?1:0)+"&sts="+btoa(JSON.stringify(pushPixels));if(typeof window.isAmp!=='undefined'&&isAmp&&typeof window._ezaq!=='undefined'&&_ezaq.hasOwnProperty("domain_id")){pixelURL+="&visit_uuid="+_ezaq['visit_uuid'];}
__ez.dot.Fire(pixelURL);}})}
pixels=[];}
function getEzimData(adSlot){if(typeof _ezim_d=="undefined"){return false}
var adUnitName=__ez.dot.getAdUnitPath(adSlot).split('/').pop();if(typeof _ezim_d==='object'&&_ezim_d.hasOwnProperty(adUnitName)){return _ezim_d[adUnitName];}
for(var ezimKey in _ezim_d){if(ezimKey.split('/').pop()===adUnitName){return _ezim_d[ezimKey];}}
return false;}
return{Add:AddPixel,AddAndFire:AddAndFirePixel,AddAndFireOrig:AddAndFireOrigPixel,AddById:AddPixelById,Fire:Fire,GetPixels:GetCurrentPixels,};})();</script>
<link href="https://www.blogger.com/static/v1/widgets/1529571102-css_bundle_v2.css" rel="stylesheet" type="text/css"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async="async" src="https://www.googletagmanager.com/gtag/js?id=UA-153507832-2"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-153507832-2');
</script>

<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
<meta content="blogger" name="generator"/>
<link href="http://www.thewiseliving.com/favicon.ico" rel="icon" type="image/x-icon"/>
<link href="http://www.thewiseliving.com/" rel="canonical"/>
<link rel="alternate" type="application/atom+xml" title="The Wise Living - Atom" href="http://www.thewiseliving.com/feeds/posts/default"/>
<link rel="alternate" type="application/rss+xml" title="The Wise Living - RSS" href="http://www.thewiseliving.com/feeds/posts/default?alt=rss"/>
<link rel="service.post" type="application/atom+xml" title="The Wise Living - Atom" href="https://www.blogger.com/feeds/201243307485764502/posts/default"/>
<!--[if IE]><script type="text/javascript" src="https://www.blogger.com/static/v1/jsbin/2287435483-ieretrofit.js"></script>
<![endif]-->
<meta content="The Wise Living is a personal finance, business, lifestyle and self development website for 20-somethings." name="description"/>
<meta content="http://www.thewiseliving.com/" property="og:url"/>
<meta content="The Wise Living" property="og:title"/>
<meta content="The Wise Living is a personal finance, business, lifestyle and self development website for 20-somethings." property="og:description"/>
<!--[if IE]> <script> (function() { var html5 = ("abbr,article,aside,audio,canvas,datalist,details," + "figure,footer,header,hgroup,mark,menu,meter,nav,output," + "progress,section,time,video").split(','); for (var i = 0; i < html5.length; i++) { document.createElement(html5[i]); } try { document.execCommand('BackgroundImageCache', false, true); } catch(e) {} })(); </script> <![endif]-->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic&amp;subset=latin,latin-ext" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700,700i" rel="stylesheet" type="text/css"/>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<title>The Wise Living</title>
<!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]-->
<style id="page-skin-1" type="text/css"><!--
/*
-----------------------------------------------
Template Name  : Chooko Lite
Author         : NewBloggerThemes.com
Author URL     : https://newbloggerthemes.com/
Theme URL      : https://newbloggerthemes.com/chooko-lite-blogger-template/
Created Date   : Thursday, September 7, 2017
License        : GNU General Public License v2 (GPLv2)
This template is free for both personal and commercial use, But to satisfy the 'attribution' clause of the license, you are required to keep the footer links intact which provides due credit to its authors.
----------------------------------------------- */
/* Variable definitions
====================
*/
/* Use this with templates/template-twocol.html */
.section,.widget{margin:0;padding:0;}
.section,.widget{margin:0;padding:0;line-height:1.6;}
.widget ul,.widget li{margin:0;padding:0;line-height:1.6;}
.clearfix:before,.clearfix:after{content:" ";display:table;}
.clearfix:after{clear:both;}
article,aside,details,figcaption,figure,footer,header,hgroup,label,legend,menu,nav,section{display:block;}
#navbarnbt,#slider-wrap,.containernbt{width:990px;}
#sidebarnbt .widget*,.clear,.clearfix:after,.containernbt,.containernbt:after,.row:after,hr{clear:both;}
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;}
fieldset,form,ol,table,ul{margin-bottom:20px;}
body{line-height:1;-ms-word-wrap:break-word;word-wrap:break-word;}
blockquote,q{quotes:none;}
blockquote:after,blockquote:before,q:after,q:before{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}
ul{list-style:none;}
ol{list-style:decimal;}
ol,ul.circle,ul.disc,ul.square{margin-left:40px;}
ul.square{list-style:square;}
ul.circle{list-style:circle;}
ul.disc{list-style:disc;}
ol ol,ol ul,ul ol,ul ul{margin:4px 0 5px 30px;}
ol ol li,ol ul li,ul ol li,ul ul li{margin-bottom:6px;}
li{margin-bottom:12px;}
li p,ul.large li{}
img.scale-with-grid{max-width:100%;height:auto;}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}
input[type=text],input[type=password],input[type=email],select,textarea{border:1px solid #ccc;padding:6px 4px;outline:0;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;font:13px 'Pt Sans',HelveticaNeue,"Helvetica Neue",Helvetica,Arial,sans-serif;color:#777;margin:0 0 20px;width:190px;max-width:100%;display:block;background:#fff;}
select{padding:0;width:220px;}
input[type=text]:focus,input[type=password]:focus,input[type=email]:focus,textarea:focus{-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);}
textarea{min-height:60px;}
label,legend{font-weight:700;font-size:13px;}
input[type=checkbox]{display:inline;}
label span,legend span{font-weight:400;font-size:13px;color:#444;}
.site-title{font-weight:700;}
sub,sup{font-size:xx-small;line-height:100%;}
sub{vertical-align:sub;}
sup{vertical-align:super;}
code,kbd,tt,var{font-family:'Courier new',Courier,Monospace;}
#navbarnbt,h1.entry-title{text-transform:uppercase;font-family:"PT Sans",Helvetica,Arial,Verdana,sans-serif;}
del,strike{text-decoration:line-through;}
ins{text-decoration:underline;}
abbr,acronym{border-bottom:1px dotted;}
big{font-size:140%;}
.containernbt{position:relative;margin:0 auto;padding:0;}
#footernbt .containernbt .widget,#sidebar-containernbt{margin-left:20px!important;margin-right:20px!important;}
#page-containernbt{width:920px;padding:0 20px;margin:0 0 40px;}
#footernbt .containernbt ul,#page-containernbt{font-size:1px;letter-spacing:-1px;word-spacing:-1px;}
#page-containernbt.with-sidebarnbt.rightnbt,#sidebar-containernbt.rightnbt{float:right;}
#page-containernbt.with-sidebarnbt.leftnbt,#sidebar-containernbt.leftnbt{float:left;}
#footernbt .containernbt .widget{display:inline-block;margin-bottom:40px;vertical-align:top;float:none;width:200px;}
#page-containernbt div h1,#page-containernbt div h2,#page-containernbt div h3,#page-containernbt div h4,#page-containernbt div h5,#page-containernbt div h6{margin-top:0;}
#page-containernbt.with-sidebarnbt{width:680px;padding:0 20px;}
#sidebar-containernbt{width:200px;}
#logonbt{float:none;text-align:center;}
.taglinenbt,.site-title{line-height:120%;font-style:italic;}
.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden;}
#sub-footernbt .containernbt,.comments_nav,.post-contentsnbt,.post-excerpt{overflow:auto;}
.screen-reader-text:focus{clip:auto!important;display:block;height:auto;left:5px;top:5px;width:auto;z-index:100000;}
#headernbt{padding:40px 0;}
#logonbt{max-width:100%;box-sizing:border-box;}
.taglinenbt{padding:5px 0 0 0;color:#6B5344;font-size:14px;}
.site-title{color:#FFC2C2;font-size:42px;text-shadow:2px 2px #FFF,2px -2px #FFF,-2px 2px #FFF,-2px -2px #FFF,3px 3px 5px rgba(0,0,0,.5);margin:0 0 10px 0;}
#main-wrap{background:#fff;width:960px;margin:0 auto;}
#navbarnbt,#navbarnbt ul{font-size:1px;letter-spacing:-1px;}
#navbarnbt ul>*,#navbarnbt>*{font-size:13px;letter-spacing:normal;word-spacing:normal;}
#navbarnbt>.menu-containernbt{width:960px;background-color:#eb9f9f;}
#navbarnbt ul{margin-bottom:0;min-height:30px;}
#navbarnbt ul li{display:inline-block;margin:0;min-height:30px;line-height:30px;position:relative;}
#navbarnbt ul li a{padding:10px 20px;}
#navbarnbt .current-menu-item,#navbarnbt ul li:focus,#navbarnbt ul li:hover{background-color:#ffc2c2;}
#navbarnbt ul li,#navbarnbt ul li a{transition:all .5s;-moz-transition:all .5s;-webkit-transition:all .5s;-o-transition:all .5s;}
#navbarnbt ul li a,#navbarnbt ul li a:visited{display:block;color:#fff;width:100%;height:100%;}
#navbarnbt ul li:focus a,#navbarnbt ul li:hover a{color:#fff;text-decoration:none;}
#navbarnbt .current-menu-item a,#navbarnbt .current-menu-item a:visited{color:#fff;}
#navbarnbt ul li ul{display:none;position:absolute;width:230px;top:100%;left:0;padding:0;margin:0;z-index:9999;}
.commentlist .pingback .comment-body,.commentlist .trackback .comment-body,.search-formnbt{position:relative;}
#navbarnbt ul li ul li,#navbarnbt ul li ul li:hover ul,#navbarnbt ul li:hover ul{display:block;}
#navbarnbt ul li ul li{background-color:#6b5344;min-height:20px;line-height:20px;text-transform:none;font-size:13px;}
#navbarnbt ul li ul li a{color:#fff;}
#navbarnbt ul li:hover ul li ul{display:none;}
#navbarnbt ul li ul li ul{left:40px;top:100%;}
#navbarnbt select{display:none;margin:auto;}
#header-imagenbt{margin-bottom:40px;}
#main-content.no-header-imagenbt{margin-top:40px;}
h1.entry-title{font-size:26px;line-height:1.5;border-bottom:3px dashed #EEE;padding-bottom:10px;margin-bottom:15px;}
#page-containernbt>h1:first-child,#page-containernbt>h2:first-child,#page-containernbt>h3:first-child,#page-containernbt>h4:first-child,#page-containernbt>h5:first-child,#page-containernbt>h6:first-child{margin-top:0;}
#page-containernbt.page .editlink{display:block;float:left;font-size:13px;}
.post-contentsnbt{width:680px;}
h3.entry-title{color:#6b5344;font-size:24px;margin-bottom:10px;}
.single-post .post-contentsnbt{float:none;width:680px;margin-bottom:0;}
.single-post .tags{margin-top:20px;}
#sidebarnbt{word-break:break-word;}
#sidebarnbt li{margin-bottom:0px;}
#sidebarnbt .widget{margin-bottom:30px;}
#sidebarnbt .widget a{color:#6b5344;}
#sidebarnbt .widget a:hover{color:#ffc2c2;text-decoration:none;}
#sidebarnbt ul ul{margin:10px 0;}
#sidebarnbt .widget h2{color:#6b5344;font-size:19px;margin-top:0;margin-bottom:10px;min-height:27px;line-height:27px;padding:0;}
.search-formnbt{margin:15px 0;}
.search-formnbt .search-fieldnbt{width:160px;}
.search-formnbt .search-submitnbt{height:30px;width:30px;margin:0;position:absolute;font-size:0;top:0;left:170px;border:none;border-radius:0;text-shadow:none;color:#333;background-color:#6b5344;background-image:url(https://3.bp.blogspot.com/-XBsFbLOMbkU/Wa_3WdeOlXI/AAAAAAAASJE/1B2hezS8f4MWtTdmELLq_elEZbipCENiwCLcBGAs/s1600/search-icon.png);}
.search-formnbt .search-fieldnbt::-webkit-input-placeholder{color:#fff;}
.search-formnbt .search-fieldnbt::-moz-placeholder{color:#fff;}
.search-formnbt .search-fieldnbt:-ms-input-placeholder{color:#fff;}
.search-formnbt .search-fieldnbt:-moz-placeholder{color:#fff;}
.search-formnbt .search-fieldnbt:focus::-webkit-input-placeholder{color:transparent;}
.search-formnbt .search-fieldnbt:focus::-moz-placeholder{color:transparent;}
.search-formnbt .search-fieldnbt:focus:-ms-input-placeholder{color:transparent;}
.search-formnbt .search-fieldnbt:focus:-moz-placeholder{color:transparent;}
#footernbt,#footernbt .containernbt ul>*,#footernbt .widget h2 a,#footernbt .widget h2 a:visited{color:#fff;}
#footernbt .search-formnbt,#sidebarnbt .search-formnbt{padding-top:0;}
#searchform label{position:relative;}
#sidebarnbt ul.menu{margin-left:0;}
#footernbt input[type=search],#footernbt input[type=text],#footernbt input[type=password],#footernbt input[type=email],#footernbt textarea,#sidebarnbt input[type=search],#sidebarnbt input[type=text],#sidebarnbt input[type=password],#sidebarnbt input[type=email],#sidebarnbt textarea{width:90%;}
#footernbt{font-size:13px;background-color:#6b5344;border-top:6px solid #eb9f9f;padding-top:30px;}
#footernbt .containernbt{padding-top:20px;margin-bottom:0;width:960px;}
#footernbt .containernbt>ul{margin-bottom:0;margin-left:0;}
#footernbt ul ul{margin-left:0;}
#footernbt ul ul ul{margin:10px 0;}
#footernbt li{margin-bottom:10px;}
#footernbt>li{margin-bottom:30px;}
#footernbt .widget h2{font-size:20px;line-height:30px;color:#fff;margin-top:0;margin-bottom:30px;}
#sub-footernbt p,.sub-footer-right .menu li,blockquote p{margin-bottom:0;}
#footernbt .containernbt ul li ul li{font-size:14px;}
#footernbt .containernbt .widget a,#footernbt .containernbt .widget a:visited{color:#eb9f9f;transition:all .5s;-moz-transition:all .5s;-webkit-transition:all .5s;-o-transition:all .5s;}
#footernbt .containernbt .widget a:focus,#footernbt .containernbt .widget a:hover{color:#ffc2c2;}
#footernbt table{color:#333;}
#footernbt table caption{color:#fff;}
#footernbt ul.menu{margin-left:0;}
.sub-footer-left p,dl dd{padding-left:20px;}
#footernbt .tagcloud a:hover{background-color:#eb9f9f;}
tfoot tr:nth-child(even),tfoot tr:nth-child(odd),th{background-color:#6b5344;}
#sub-footernbt{background:#000;color:#666;padding:20px 0;}
.sub-footer-left{float:none;max-width:100%;text-align:center;}
.sub-footer-right{float:right;max-width:49%;}
.sub-footer-right .menu,.sub-footer-right .menu ul{margin-bottom:0;padding-right:20px;}
.sub-footer-right .menu li{display:inline-block;margin-left:15px;}
.sub-footer-right .menu li a{color:#666;transition:all .5s;-moz-transition:all .5s;-webkit-transition:all .5s;-o-transition:all .5s;}
.sub-footer-right .menu li a:focus,.sub-footer-right .menu li a:hover{color:#eb9f9f;}
#footernbt .containernbt .widget_rss ul li,#footernbt .containernbt ul>*,#footernbt p,#page-containernbt>div,#page-containernbt>dl,#page-containernbt>ol,#page-containernbt>p,#page-containernbt>span,#page-containernbt>table,#page-containernbt>ul,#sidebarnbt .widget_rss ul li,#sidebarnbt p,body{font:13px/20px 'Roboto Slab',Helvetica,Arial,Verdana,sans-serif;text-transform:none;letter-spacing:normal;word-spacing:normal;}
button,input,select,textarea{font-family:inherit;}
cite,em{font-style:italic;}
#footernbt .containernbt ul>*,#page-containernbt>*{letter-spacing:normal;word-spacing:normal;}
body{background:#fff;color:#333;-webkit-text-size-adjust:100%;}
h1,h2,h3,h4,h5,h6{color:#6b5344;font-family:"PT Sans",Helvetica,Arial,Verdana,sans-serif;margin-top:24px;margin-bottom:24px;}
h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{font-weight:inherit;}
dl dt,strong,th{font-weight:700;}
h1{font-size:21px;line-height:31px;}
h2{font-size:18px;line-height:28px;}
h3{font-size:16px;line-height:29px;}
h4{font-size:14px;line-height:25px;}
h5{font-size:13px;line-height:24px;}
h6{font-size:12px;line-height:22px;}
p{margin:0 0 20px;}
p img{margin:0;}
p.lead{font-size:21px;line-height:27px;color:#777;}
small{font-size:80%;}
cite::after,cite::before,q::after,q::before{content:'"';}
cite cite::after,cite cite::before,q q::after,q q::before{content:"'";}
img{max-width:100%;height:auto;}
@media \0screen{img{width:auto;}}
blockquote,blockquote p{font-size:17px;line-height:24px;color:#777;font-style:italic;}
blockquote{margin:0 40px 20px;padding:10px 20px;border-left:3px solid #DDD;}
blockquote cite{display:block;font-size:13px;color:#555;}
blockquote cite:before{content:"\2014 \0020";}
blockquote cite:after{content:"";}
blockquote cite a,blockquote cite a:visited{color:#555;}
blockquote.center{text-align:center;}
blockquote.leftnbt{text-align:left;}
blockquote.rightnbt{text-align:right;}
hr{border:dashed #eee;border-width:3px 0 0;margin:20px 0 40px;height:0;}
th{text-transform:uppercase;font-size:11px;text-align:center;color:#fff;}
address,pre{font-size:14px;}
tr:nth-child(even){background:#EEE;}
tr:nth-child(odd){background:#DDD;}
td{padding:5px 20px;}
tfoot tr:nth-child(even),tfoot tr:nth-child(even) a,tfoot tr:nth-child(odd),tfoot tr:nth-child(odd) a{color:#fff!important;}
#page-containernbt ul>li{}
#page-containernbt ol ul>li,#page-containernbt ul ul li,#page-containernbt ul ul>li{margin-left:0;}
dl{margin-bottom:20px;}
dl dt{margin-bottom:5px;}
dl dd{margin-bottom:10px;}
address{font-family:'Courier new',Courier,Monospace;padding:0 0 20px 20px;}
pre{display:block;font-family:'Courier New',Courier,Monospace;padding:15px;word-wrap:break-word;}
label{color:#6b5344;font-size:16px;line-height:30px;}
input[type=search],input[type=text],input[type=password],input[type=email],textarea{background-color:#ffc2c2;color:#fff;border:none;border-radius:0;box-shadow:none;display:block;font-size:15px;margin:0 0 10px;padding:0 5px;transition:all .5s;-moz-transition:all .5s;-webkit-transition:all .5s;-o-transition:all .5s;}
input[type=search]:focus,input[type=text]:focus,input[type=password]:focus,input[type=email]:focus,textarea:focus{background-color:#eb9f9f;color:#fff;border:none;box-shadow:none;outline:0;}
input[type=search],input[type=text],input[type=password],input[type=email]{height:30px;}
textarea{width:90%;padding:5px;}
input[type=submit],input[type=reset],input[type=button]{background-color:#6b5344;border:none;display:inline-block;text-transform:capitalize;font-size:14px;text-decoration:none;text-shadow:none;cursor:pointer;margin:0 0 20px;height:30px;padding:0 15px;color:#fff;transition:all .5s;-moz-transition:all .5s;-webkit-transition:all .5s;-o-transition:all .5s;}
.clear,.containernbt:after{display:block;visibility:hidden;height:0;}
input[type=submit]:hover,input[type=reset]:hover,input[type=button]:hover{color:#fff;background-color:#ffc2c2;}
a,a:visited{color:#eb9f9f;text-decoration:none;outline:0;transition:all .5s;-moz-transition:all .5s;-webkit-transition:all .5s;-o-transition:all .5s;}
a:focus,a:hover{color:#ffc2c2;text-decoration:none;}
p a,p a:visited{line-height:inherit;}
#page-containernbt h3.entry-title a,h1 a,h1 a:visited,h2 a,h2 a:visited,h3 a,h3 a:visited,h4 a,h4 a:visited,h5 a,h5 a:visited,h6 a,h6 a:visited{color:#6b5344;}
#page-containernbt h1 a:hover,#page-containernbt h2 a:hover,#page-containernbt h3 a:hover,#page-containernbt h3.entry-title a:hover,#page-containernbt h4 a:hover,#page-containernbt h5 a:hover,#page-containernbt h6 a:hover,h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{text-decoration:none;color:#ffc2c2;}
button:hover,input[type=submit]:hover,input[type=reset]:hover,input[type=button]:hover{background-color:#ffc2c2;text-decoration:none;}
.containernbt:after{content:"\0020";}
.clearfix:after,.clearfix:before,.row:after,.row:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
.clearfix,.row{zoom:1;}
.clear{overflow:hidden;width:0;}
.menu-primary-responsive-container{display: none;margin: 10px;}
.menu-primary-responsive{width: 100%;padding: 5px;border: 1px solid #ddd;}
@media only screen and (max-width: 767px) {
.sitemenu-container {float: none;margin-left: 0;margin-right: 0;display: none;}
.menu-primary-responsive-container{display: block;}
}
@media only screen and (min-width:768px) and (max-width:959px) {
#main-wrap{width:768px!important;}
#footernbt .containernbt .widget,#page-containernbt>a,#page-containernbt>div,#page-containernbt>h1,#page-containernbt>h2,#page-containernbt>h3,#page-containernbt>h4,#page-containernbt>h5,#page-containernbt>h6,#page-containernbt>img,#page-containernbt>p,#page-containernbt>span{margin-left:15px!important;margin-right:15px!important;margin-bottom:20px;}
.containernbt{width:768px;}
#page-containernbt{width:766px;padding:0;}
#footernbt .containernbt .widget{width:161px;}
#page-containernbt.with-sidebarnbt{width:576px;padding:0;}
#sidebar-containernbt{margin-left:0!important;margin-right:0!important;width:172px;}
#logonbt{padding:40px 15px;}
#navbarnbt,#slider-wrap{width:768px;}
h1.entry-title{width:546px;}
#navbarnbt>.menu-containernbt{width:768px;}
.search-formnbt .search-submitnbt{left:122px;}
.search-formnbt .search-fieldnbt{width:131px;}
#sidebarnbt .search-formnbt .search-fieldnbt{width:122px;}
.post-contentsnbt,.single-post .post-contentsnbt{width:546px;}
#sidebar-containernbt.rightnbt{width:161px;margin-right:15px!important;}
#sidebar-containernbt.leftnbt{width:161px;margin-left:15px!important;}
#footernbt .containernbt{width:768px;}
}
@media only screen and (max-width:767px) {
#main-wrap,.containernbt{width:300px!important;}
#logonbt,#sub-footernbt div{text-align:center;}
#footernbt .containernbt .widget,#page-containernbt>a,#page-containernbt>div,#page-containernbt>h1,#page-containernbt>h2,#page-containernbt>h3,#page-containernbt>h4,#page-containernbt>h5,#page-containernbt>h6,#page-containernbt>img,#page-containernbt>p,#page-containernbt>span{margin-left:10px!important;margin-right:10px!important;margin-bottom:20px;}
#page-containernbt{width:298px;padding:0;}
#footernbt .containernbt .widget{width:280px;}
#page-containernbt.with-sidebarnbt{width:298px;padding:0;}
#sidebar-containernbt{width:300px;margin:0 0 20px!important;}
#sidebarnbt{width:300px;}
#navbarnbt>div{padding:20px 0;}
#navbarnbt select{display:block;width:90%;}
#main-wrap.boxed{width:310px;margin:20px auto;}
#navbarnbt>.menu-containernbt{width:300px;}
#sidebarnbt .search-formnbt .search-fieldnbt{width:255px;}
#sidebarnbt .search-formnbt .search-submitnbt{left:255px;}
#sidebarnbt .partner-thumb{width:275px;}
h1.entry-title{margin:0 10px 40px;width:260px;}
.post-contentsnbt,.single-post .post-contentsnbt{width:280px;}
#sub-footernbt div{width:280px;margin:auto;float:none;max-width:100%;}
#sub-footernbt .sub-footer-left{margin-bottom:10px;}
.sub-footer-left p{padding:0;}
}
@media only screen and (min-width:480px) and (max-width:767px) {
#main-wrap,.containernbt{width:420px!important;}
#footernbt .containernbt .widget,#page-containernbt>a,#page-containernbt>div,#page-containernbt>h1,#page-containernbt>h2,#page-containernbt>h3,#page-containernbt>h4,#page-containernbt>h5,#page-containernbt>h6,#page-containernbt>img,#page-containernbt>p,#page-containernbt>span{margin-left:10px!important;margin-right:10px!important;margin-bottom:20px;}
#page-containernbt{width:420px;}
#footernbt .containernbt .widget{width:400px;}
#page-containernbt.with-sidebarnbt{width:420px;}
#sidebar-containernbt{width:400px;margin:0 10px 20px!important;}
#sidebarnbt{width:400px;}
#main-wrap.boxed{width:440px;margin:20px auto;}
#navbarnbt>.menu-containernbt{width:420px;}
#sidebarnbt .search-formnbt .search-fieldnbt{width:370px;}
#sidebarnbt .search-formnbt .search-submitnbt{left:370px;}
#calendar_wrap td{padding:5px 20px;}
h1.entry-title{margin:0 10px 40px;width:400px;}
.post-contentsnbt,.single-post .post-contentsnbt{width:400px;}
#sub-footernbt div{width:400px;margin:auto;}
}
h2.date-header{margin:10px 0;display:none;}
.main .widget{margin:0 0 5px;padding:0 0 2px;}
.main .Blog{border-bottom-width:0;}
#header .description{}
#comments{padding:10px;margin-bottom:20px;}
#comments h4{font-size:22px;margin-bottom:10px;}
#comments ol{margin-left:0;}
.deleted-comment{font-style:italic;color:gray;}
#blog-pager-newer-link{float:left;}
#blog-pager-older-link{float:right;}
#blog-pager{text-align:center;padding:5px;margin:10px 0;}
.feed-links{clear:both;}
#navbarnbt-iframe{height:0;visibility:hidden;display:none;}
.author-profile{background:#f6f6f6;border:1px solid #eee;margin:10px 0 10px 0;padding:8px;overflow:hidden;}
.author-profile img{border:1px solid #ddd;float:left;margin-right:10px;}
.post-iconspbt{margin:5px 0 0 0;padding:0;}
.post-locationpbt{margin:5px 0;padding:0;}
.related-postbwrap{margin:10px auto 0;}
.related-postbwrap h4{font-size:20px;font-weight:bold;margin:20px 0 10px !important;}
.related-post-style-2,.related-post-style-2 li{list-style:none;margin:0;padding:0;}
.related-post-style-2 li{border-top:1px solid #eee;overflow:hidden;padding:10px 0;}
.related-post-style-2 li:first-child{border-top:none;}
.related-post-style-2 .related-post-item-thumbnail{width:80px;height:80px;max-width:none;max-height:none;background-color:transparent;border:none;float:left;margin:2px 10px 0 0;padding:0;}
.related-post-style-2 .related-post-item-title{font-weight:bold;font-size:100%;}
.related-post-style-2 .related-post-item-summary{display:block;}
.related-post-style-3,.related-post-style-3 li{margin:0;padding:0;list-style:none;word-wrap:break-word;overflow:hidden;}
.related-post-style-3 .related-post-item{display:block;float:left;width:100px;height:auto;padding:10px;border-left:0 solid #eee;margin-bottom:-989px;padding-bottom:999px;}
.related-post-style-3 .related-post-item:first-child{border-left:none;}
.related-post-style-3 .related-post-item-thumbnail{display:block;margin:0 0 10px;width:100px;height:auto;max-width:100%;max-height:none;background-color:transparent;border:none;padding:0;}
.related-post-style-3 .related-post-item-title{font-weight:normal;text-decoration:none;}
.pbtsharethisbutt{overflow:hidden;padding:10px 0 5px;margin:0;float:left;}
.pbtsharethisbutt a {padding-left:5px;padding-right:5px;}
.separator a[style="margin-left: 1em; margin-right: 1em;"] {margin-left: auto!important;margin-right: auto!important;}
.separator a[style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"] {clear: none !important; float: none !important; margin-bottom: 0em !important; margin-right: 0em !important;}
.separator a[style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"] img {float: left !important; margin: 0px 10px 10px 0px;}
.separator a[style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"] {clear: none !important; float: none !important; margin-bottom: 0em !important; margin-left: 0em !important;}
.separator a[style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"] img {float: right !important; margin: 0px 0px 10px 10px;}
.PopularPosts .widget-content ul li{padding:6px 0;}
.reaction-buttons table{border:none;margin-bottom:5px;}
.reaction-buttons table,.reaction-buttons td{border:none !important;}
.pbtthumbimg{float:left;margin:0 10px 5px 0;padding:4px;border:0 solid #eee;background:none;width:200px;height:auto;}
.entry-metanbt{margin:0 0 15px 0;line-height:1;}
article.post.hentry{margin:0 0 30px 0;}
.post-body{line-height:1.7;}
@media only screen and (max-width: 479px) {
.pbtthumbimg{float:none;margin:0 0 10px 0;padding:0;border:0 solid #eee;background:none;width:100%;height:auto;display:block;}
}
.blog-posts {margin-right:-30px}
--></style>
<style id="template-skin-1" type="text/css"><!--
body#layout ul{list-style-type:none;list-style:none;}
body#layout ul li{list-style-type:none;list-style:none;}
body#layout #skiplinks{display:none;}
body#layout .widget_searchnbt{display:none;}
body#layout #footernbt .containernbt .widget{display:block;width:auto;margin-bottom:20px;float:none;}
body#layout div.section{background:transparent;margin:0 0 15px 0;padding:0 10px;border:0;box-sizing:border-box;}
body#layout .add_widget,body#layout .widget-content{padding:12px;}
body#layout .add_widget a{margin-left:0;font-size:14px;}
body#layout div.layout-title{font-size:14px;}
body#layout div.layout-widget-description{font-size:12px;}
body#layout .editlink{color:#FFFFFF !important;background:#BBB;border-radius:15px;padding:4px 6px;}
body#layout .section h4{font-size:13px;font-weight:normal;text-transform:uppercase;}
--></style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[

/*! jQuery Migrate v1.4.1 | (c) jQuery Foundation and other contributors | jquery.org/license */
"undefined"==typeof jQuery.migrateMute&&(jQuery.migrateMute=!0),function(a,b,c){function d(c){var d=b.console;f[c]||(f[c]=!0,a.migrateWarnings.push(c),d&&d.warn&&!a.migrateMute&&(d.warn("JQMIGRATE: "+c),a.migrateTrace&&d.trace&&d.trace()))}function e(b,c,e,f){if(Object.defineProperty)try{return void Object.defineProperty(b,c,{configurable:!0,enumerable:!0,get:function(){return d(f),e},set:function(a){d(f),e=a}})}catch(g){}a._definePropertyBroken=!0,b[c]=e}a.migrateVersion="1.4.1";var f={};a.migrateWarnings=[],b.console&&b.console.log&&b.console.log("JQMIGRATE: Migrate is installed"+(a.migrateMute?"":" with logging active")+", version "+a.migrateVersion),a.migrateTrace===c&&(a.migrateTrace=!0),a.migrateReset=function(){f={},a.migrateWarnings.length=0},"BackCompat"===document.compatMode&&d("jQuery is not compatible with Quirks Mode");var g=a("<input/>",{size:1}).attr("size")&&a.attrFn,h=a.attr,i=a.attrHooks.value&&a.attrHooks.value.get||function(){return null},j=a.attrHooks.value&&a.attrHooks.value.set||function(){return c},k=/^(?:input|button)$/i,l=/^[238]$/,m=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,n=/^(?:checked|selected)$/i;e(a,"attrFn",g||{},"jQuery.attrFn is deprecated"),a.attr=function(b,e,f,i){var j=e.toLowerCase(),o=b&&b.nodeType;return i&&(h.length<4&&d("jQuery.fn.attr( props, pass ) is deprecated"),b&&!l.test(o)&&(g?e in g:a.isFunction(a.fn[e])))?a(b)[e](f):("type"===e&&f!==c&&k.test(b.nodeName)&&b.parentNode&&d("Can't change the 'type' of an input or button in IE 6/7/8"),!a.attrHooks[j]&&m.test(j)&&(a.attrHooks[j]={get:function(b,d){var e,f=a.prop(b,d);return f===!0||"boolean"!=typeof f&&(e=b.getAttributeNode(d))&&e.nodeValue!==!1?d.toLowerCase():c},set:function(b,c,d){var e;return c===!1?a.removeAttr(b,d):(e=a.propFix[d]||d,e in b&&(b[e]=!0),b.setAttribute(d,d.toLowerCase())),d}},n.test(j)&&d("jQuery.fn.attr('"+j+"') might use property instead of attribute")),h.call(a,b,e,f))},a.attrHooks.value={get:function(a,b){var c=(a.nodeName||"").toLowerCase();return"button"===c?i.apply(this,arguments):("input"!==c&&"option"!==c&&d("jQuery.fn.attr('value') no longer gets properties"),b in a?a.value:null)},set:function(a,b){var c=(a.nodeName||"").toLowerCase();return"button"===c?j.apply(this,arguments):("input"!==c&&"option"!==c&&d("jQuery.fn.attr('value', val) no longer sets properties"),void(a.value=b))}};var o,p,q=a.fn.init,r=a.find,s=a.parseJSON,t=/^\s*</,u=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/,v=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/g,w=/^([^<]*)(<[\w\W]+>)([^>]*)$/;a.fn.init=function(b,e,f){var g,h;return b&&"string"==typeof b&&!a.isPlainObject(e)&&(g=w.exec(a.trim(b)))&&g[0]&&(t.test(b)||d("$(html) HTML strings must start with '<' character"),g[3]&&d("$(html) HTML text after last tag is ignored"),"#"===g[0].charAt(0)&&(d("HTML string cannot start with a '#' character"),a.error("JQMIGRATE: Invalid selector string (XSS)")),e&&e.context&&e.context.nodeType&&(e=e.context),a.parseHTML)?q.call(this,a.parseHTML(g[2],e&&e.ownerDocument||e||document,!0),e,f):(h=q.apply(this,arguments),b&&b.selector!==c?(h.selector=b.selector,h.context=b.context):(h.selector="string"==typeof b?b:"",b&&(h.context=b.nodeType?b:e||document)),h)},a.fn.init.prototype=a.fn,a.find=function(a){var b=Array.prototype.slice.call(arguments);if("string"==typeof a&&u.test(a))try{document.querySelector(a)}catch(c){a=a.replace(v,function(a,b,c,d){return"["+b+c+'"'+d+'"]'});try{document.querySelector(a),d("Attribute selector with '#' must be quoted: "+b[0]),b[0]=a}catch(e){d("Attribute selector with '#' was not fixed: "+b[0])}}return r.apply(this,b)};var x;for(x in r)Object.prototype.hasOwnProperty.call(r,x)&&(a.find[x]=r[x]);a.parseJSON=function(a){return a?s.apply(this,arguments):(d("jQuery.parseJSON requires a valid JSON string"),null)},a.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a.browser||(o=a.uaMatch(navigator.userAgent),p={},o.browser&&(p[o.browser]=!0,p.version=o.version),p.chrome?p.webkit=!0:p.webkit&&(p.safari=!0),a.browser=p),e(a,"browser",a.browser,"jQuery.browser is deprecated"),a.boxModel=a.support.boxModel="CSS1Compat"===document.compatMode,e(a,"boxModel",a.boxModel,"jQuery.boxModel is deprecated"),e(a.support,"boxModel",a.support.boxModel,"jQuery.support.boxModel is deprecated"),a.sub=function(){function b(a,c){return new b.fn.init(a,c)}a.extend(!0,b,this),b.superclass=this,b.fn=b.prototype=this(),b.fn.constructor=b,b.sub=this.sub,b.fn.init=function(d,e){var f=a.fn.init.call(this,d,e,c);return f instanceof b?f:b(f)},b.fn.init.prototype=b.fn;var c=b(document);return d("jQuery.sub() is deprecated"),b},a.fn.size=function(){return d("jQuery.fn.size() is deprecated; use the .length property"),this.length};var y=!1;a.swap&&a.each(["height","width","reliableMarginRight"],function(b,c){var d=a.cssHooks[c]&&a.cssHooks[c].get;d&&(a.cssHooks[c].get=function(){var a;return y=!0,a=d.apply(this,arguments),y=!1,a})}),a.swap=function(a,b,c,e){var f,g,h={};y||d("jQuery.swap() is undocumented and deprecated");for(g in b)h[g]=a.style[g],a.style[g]=b[g];f=c.apply(a,e||[]);for(g in b)a.style[g]=h[g];return f},a.ajaxSetup({converters:{"text json":a.parseJSON}});var z=a.fn.data;a.fn.data=function(b){var e,f,g=this[0];return!g||"events"!==b||1!==arguments.length||(e=a.data(g,b),f=a._data(g,b),e!==c&&e!==f||f===c)?z.apply(this,arguments):(d("Use of jQuery.fn.data('events') is deprecated"),f)};var A=/\/(java|ecma)script/i;a.clean||(a.clean=function(b,c,e,f){c=c||document,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,d("jQuery.clean() is deprecated");var g,h,i,j,k=[];if(a.merge(k,a.buildFragment(b,c).childNodes),e)for(i=function(a){return!a.type||A.test(a.type)?f?f.push(a.parentNode?a.parentNode.removeChild(a):a):e.appendChild(a):void 0},g=0;null!=(h=k[g]);g++)a.nodeName(h,"script")&&i(h)||(e.appendChild(h),"undefined"!=typeof h.getElementsByTagName&&(j=a.grep(a.merge([],h.getElementsByTagName("script")),i),k.splice.apply(k,[g+1,0].concat(j)),g+=j.length));return k});var B=a.event.add,C=a.event.remove,D=a.event.trigger,E=a.fn.toggle,F=a.fn.live,G=a.fn.die,H=a.fn.load,I="ajaxStart|ajaxStop|ajaxSend|ajaxComplete|ajaxError|ajaxSuccess",J=new RegExp("\\b(?:"+I+")\\b"),K=/(?:^|\s)hover(\.\S+|)\b/,L=function(b){return"string"!=typeof b||a.event.special.hover?b:(K.test(b)&&d("'hover' pseudo-event is deprecated, use 'mouseenter mouseleave'"),b&&b.replace(K,"mouseenter$1 mouseleave$1"))};a.event.props&&"attrChange"!==a.event.props[0]&&a.event.props.unshift("attrChange","attrName","relatedNode","srcElement"),a.event.dispatch&&e(a.event,"handle",a.event.dispatch,"jQuery.event.handle is undocumented and deprecated"),a.event.add=function(a,b,c,e,f){a!==document&&J.test(b)&&d("AJAX events should be attached to document: "+b),B.call(this,a,L(b||""),c,e,f)},a.event.remove=function(a,b,c,d,e){C.call(this,a,L(b)||"",c,d,e)},a.each(["load","unload","error"],function(b,c){a.fn[c]=function(){var a=Array.prototype.slice.call(arguments,0);return"load"===c&&"string"==typeof a[0]?H.apply(this,a):(d("jQuery.fn."+c+"() is deprecated"),a.splice(0,0,c),arguments.length?this.bind.apply(this,a):(this.triggerHandler.apply(this,a),this))}}),a.fn.toggle=function(b,c){if(!a.isFunction(b)||!a.isFunction(c))return E.apply(this,arguments);d("jQuery.fn.toggle(handler, handler...) is deprecated");var e=arguments,f=b.guid||a.guid++,g=0,h=function(c){var d=(a._data(this,"lastToggle"+b.guid)||0)%g;return a._data(this,"lastToggle"+b.guid,d+1),c.preventDefault(),e[d].apply(this,arguments)||!1};for(h.guid=f;g<e.length;)e[g++].guid=f;return this.click(h)},a.fn.live=function(b,c,e){return d("jQuery.fn.live() is deprecated"),F?F.apply(this,arguments):(a(this.context).on(b,this.selector,c,e),this)},a.fn.die=function(b,c){return d("jQuery.fn.die() is deprecated"),G?G.apply(this,arguments):(a(this.context).off(b,this.selector||"**",c),this)},a.event.trigger=function(a,b,c,e){return c||J.test(a)||d("Global events are undocumented and deprecated"),D.call(this,a,b,c||document,e)},a.each(I.split("|"),function(b,c){a.event.special[c]={setup:function(){var b=this;return b!==document&&(a.event.add(document,c+"."+a.guid,function(){a.event.trigger(c,Array.prototype.slice.call(arguments,1),b,!0)}),a._data(this,c,a.guid++)),!1},teardown:function(){return this!==document&&a.event.remove(document,c+"."+a._data(this,c)),!1}}}),a.event.special.ready={setup:function(){this===document&&d("'ready' event is deprecated")}};var M=a.fn.andSelf||a.fn.addBack,N=a.fn.find;if(a.fn.andSelf=function(){return d("jQuery.fn.andSelf() replaced by jQuery.fn.addBack()"),M.apply(this,arguments)},a.fn.find=function(a){var b=N.apply(this,arguments);return b.context=this.context,b.selector=this.selector?this.selector+" "+a:a,b},a.Callbacks){var O=a.Deferred,P=[["resolve","done",a.Callbacks("once memory"),a.Callbacks("once memory"),"resolved"],["reject","fail",a.Callbacks("once memory"),a.Callbacks("once memory"),"rejected"],["notify","progress",a.Callbacks("memory"),a.Callbacks("memory")]];a.Deferred=function(b){var c=O(),e=c.promise();return c.pipe=e.pipe=function(){var b=arguments;return d("deferred.pipe() is deprecated"),a.Deferred(function(d){a.each(P,function(f,g){var h=a.isFunction(b[f])&&b[f];c[g[1]](function(){var b=h&&h.apply(this,arguments);b&&a.isFunction(b.promise)?b.promise().done(d.resolve).fail(d.reject).progress(d.notify):d[g[0]+"With"](this===e?d.promise():this,h?[b]:arguments)})}),b=null}).promise()},c.isResolved=function(){return d("deferred.isResolved is deprecated"),"resolved"===c.state()},c.isRejected=function(){return d("deferred.isRejected is deprecated"),"rejected"===c.state()},b&&b.call(c,c),c}}}(jQuery,window);

//]]>
</script>
<script type="text/javascript">
//<![CDATA[

/**
 * jQuery Mobile Menu 
 * Turn unordered list menu into dropdown select menu
 * version 1.0(31-OCT-2011)
 * 
 * Built on top of the jQuery library
 *   http://jquery.com
 * 
 * Documentation
 *   http://github.com/mambows/mobilemenu
 */
(function($){
$.fn.mobileMenu = function(options) {
    
    var defaults = {
            defaultText: 'Navigate to...',
            className: 'select-menu',
            containerClass: 'select-menu-container',
            subMenuClass: 'sub-menu',
            subMenuDash: '&ndash;'
        },
        settings = $.extend( defaults, options ),
        el = $(this);
    
    this.each(function(){
        // ad class to submenu list
        el.find('ul').addClass(settings.subMenuClass);

        // Create base menu
        $('<div />',{
            'class' : settings.containerClass
        }).insertAfter( el );
        
        // Create base menu
        $('<select />',{
            'class' : settings.className
        }).appendTo( '.' + settings.containerClass );

        // Create default option
        $('<option />', {
            "value"     : '#',
            "text"      : settings.defaultText
        }).appendTo( '.' + settings.className );

        // Create select option from menu
        el.find('a').each(function(){
            var $this   = $(this),
                    optText = '&nbsp;' + $this.text(),
                    optSub  = $this.parents( '.' + settings.subMenuClass ),
                    len         = optSub.length,
                    dash;
            
            // if menu has sub menu
            if( $this.parents('ul').hasClass( settings.subMenuClass ) ) {
                dash = Array( len+1 ).join( settings.subMenuDash );
                optText = dash + optText;
            }

            // Now build menu and append it
            $('<option />', {
                "value" : this.href,
                "html"  : optText,
                "selected" : (this.href == window.location.href)
            }).appendTo( '.' + settings.className );

        }); // End el.find('a').each

        // Change event on select element
        $('.' + settings.className).change(function(){
            var locations = $(this).val();
            if( locations !== '#' ) {
                window.location.href = $(this).val();
            };
        });

    }); // End this.each

    return this;

};
})(jQuery);

//]]>
</script>
<script type="text/javascript">
//<![CDATA[

jQuery(document).ready(function($) {

$('.sitemenu-container').mobileMenu({
    defaultText: 'Menu',
    className: 'menu-primary-responsive',
    containerClass: 'menu-primary-responsive-container',
    subMenuDash: '&ndash;'
});

});

//]]>
</script>
<script type="text/javascript">
//<![CDATA[

function showrecentcomments(json){for(var i=0;i<a_rc;i++){var b_rc=json.feed.entry[i];var c_rc;if(i==json.feed.entry.length)break;for(var k=0;k<b_rc.link.length;k++){if(b_rc.link[k].rel=='alternate'){c_rc=b_rc.link[k].href;break;}}c_rc=c_rc.replace("#","#comment-");var d_rc=c_rc.split("#");d_rc=d_rc[0];var e_rc=d_rc.split("/");e_rc=e_rc[5];e_rc=e_rc.split(".html");e_rc=e_rc[0];var f_rc=e_rc.replace(/-/g," ");f_rc=f_rc.link(d_rc);var g_rc=b_rc.published.$t;var h_rc=g_rc.substring(0,4);var i_rc=g_rc.substring(5,7);var j_rc=g_rc.substring(8,10);var k_rc=new Array();k_rc[1]="Jan";k_rc[2]="Feb";k_rc[3]="Mar";k_rc[4]="Apr";k_rc[5]="May";k_rc[6]="Jun";k_rc[7]="Jul";k_rc[8]="Aug";k_rc[9]="Sep";k_rc[10]="Oct";k_rc[11]="Nov";k_rc[12]="Dec";if("content" in b_rc){var l_rc=b_rc.content.$t;}else if("summary" in b_rc){var l_rc=b_rc.summary.$t;}else var l_rc="";var re=/<\S[^>]*>/g;l_rc=l_rc.replace(re,"");if(m_rc==true)document.write('On '+k_rc[parseInt(i_rc,10)]+' '+j_rc+' ');document.write('<a href="'+c_rc+'">'+b_rc.author[0].name.$t+'</a> commented');if(n_rc==true)document.write(' on '+f_rc);document.write(': ');if(l_rc.length<o_rc){document.write('<i>&#8220;');document.write(l_rc);document.write('&#8221;</i><br/><br/>');}else{document.write('<i>&#8220;');l_rc=l_rc.substring(0,o_rc);var p_rc=l_rc.lastIndexOf(" ");l_rc=l_rc.substring(0,p_rc);document.write(l_rc+'&hellip;&#8221;</i>');document.write('<br/><br/>');}}}

function rp(json){document.write('<ul>');for(var i=0;i<numposts;i++){document.write('<li>');var entry=json.feed.entry[i];var posttitle=entry.title.$t;var posturl;if(i==json.feed.entry.length)break;for(var k=0;k<entry.link.length;k++){if(entry.link[k].rel=='alternate'){posturl=entry.link[k].href;break}}posttitle=posttitle.link(posturl);var readmorelink="(more)";readmorelink=readmorelink.link(posturl);var postdate=entry.published.$t;var cdyear=postdate.substring(0,4);var cdmonth=postdate.substring(5,7);var cdday=postdate.substring(8,10);var monthnames=new Array();monthnames[1]="Jan";monthnames[2]="Feb";monthnames[3]="Mar";monthnames[4]="Apr";monthnames[5]="May";monthnames[6]="Jun";monthnames[7]="Jul";monthnames[8]="Aug";monthnames[9]="Sep";monthnames[10]="Oct";monthnames[11]="Nov";monthnames[12]="Dec";if("content"in entry){var postcontent=entry.content.$t}else if("summary"in entry){var postcontent=entry.summary.$t}else var postcontent="";var re=/<\S[^>]*>/g;postcontent=postcontent.replace(re,"");document.write(posttitle);if(showpostdate==true)document.write(' - '+monthnames[parseInt(cdmonth,10)]+' '+cdday);if(showpostsummary==true){if(postcontent.length<numchars){document.write(postcontent)}else{postcontent=postcontent.substring(0,numchars);var quoteEnd=postcontent.lastIndexOf(" ");postcontent=postcontent.substring(0,quoteEnd);document.write(postcontent+'...'+readmorelink)}}document.write('</li>')}document.write('</ul>')}

//]]>
</script>
<script type="text/javascript">
summary_noimg = 400;
summary_img = 300;
img_thumb_height = 150;
img_thumb_width = 200; 
</script>
<script type="text/javascript">
//<![CDATA[

function removeHtmlTag(strx,chop){ 
    if(strx.indexOf("<")!=-1)
    {
        var s = strx.split("<"); 
        for(var i=0;i<s.length;i++){ 
            if(s[i].indexOf(">")!=-1){ 
                s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length); 
            } 
        } 
        strx =  s.join(""); 
    }
    chop = (chop < strx.length-1) ? chop : strx.length-2; 
    while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++; 
    strx = strx.substring(0,chop-1); 
    return strx+'...'; 
}

function createSummaryAndThumb(pID, url){
    var div = document.getElementById(pID);
    var posturl = url;
    var imgtag = "";
    var img = div.getElementsByTagName("img");
    var summ = summary_noimg;
    if(img.length>=1) { 
        imgtag = '<a href="'+posturl+'" class="pbtthumblink"><img src="'+img[0].src+'" class="pbtthumbimg"/></a>';
        summ = summary_img;
    }
    var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
    div.innerHTML = summary;
}

//]]>
</script>
<script type="text/javascript">
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
      ga('create', 'UA-25504490-1', 'auto', 'blogger');
      ga('blogger.send', 'pageview');
    </script>
<link href="http://demo.iceablethemes.com/chooko-lite/wp-content/cache/autoptimize/7/css/autoptimize_6fc00c11d037653e0c59ac09cef8d6c9.css" media="all" rel="stylesheet" type="text/css"/>
<!-- MailerLite Universal -->
<script>
(function(m,a,i,l,e,r){ m['MailerLiteObject']=e;function f(){
var c={ a:arguments,q:[]};var r=this.push(c);return "number"!=typeof r?r:f.bind(c.q);}
f.q=f.q||[];m[e]=m[e]||f.bind(f.q);m[e].q=m[e].q||f.q;r=a.createElement(i);
var _=a.getElementsByTagName(i)[0];r.async=1;r.src=l+'?v'+(~~(new Date().getTime()/1000000));
_.parentNode.insertBefore(r,_);})(window, document, 'script', 'https://static.mailerlite.com/js/universal.js', 'ml');

var ml_account = ml('accounts', '992122', 'a7t5q4j9l3', 'load');
</script>
<!-- End MailerLite Universal -->
<link href="https://www.blogger.com/dyn-css/authorization.css?targetBlogID=201243307485764502&amp;zx=87fee8b2-5aa4-4d56-b8b1-d4c2e91d2fec" media="none" onload="if(media!=&#39;all&#39;)media=&#39;all&#39;" rel="stylesheet"/><noscript><link href='https://www.blogger.com/dyn-css/authorization.css?targetBlogID=201243307485764502&amp;zx=87fee8b2-5aa4-4d56-b8b1-d4c2e91d2fec' rel='stylesheet'/></noscript>
<meta name="google-adsense-platform-account" content="ca-host-pub-1556223355139109"/>
<meta name="google-adsense-platform-domain" content="blogspot.com"/>

<!-- data-ad-client=ca-pub-3223790346648113 -->

<script type="text/javascript">var ezouid = "1";</script><base href="http://www.thewiseliving.com/"><script type='text/javascript'>
var ezoTemplate = 'old_site_noads';
if(typeof ezouid == 'undefined')
{
    var ezouid = 'none';
}
var ezoFormfactor = '1';
var ezo_elements_to_check = Array();
</script><!-- START EZHEAD -->
<script data-ezscrex="false" type='text/javascript'>
var soc_app_id = '0';
var did = 152083;
var ezdomain = 'thewiseliving.com';
var ezoicSearchable = 1;
</script>
<!--{jquery}-->
<!-- END EZHEAD -->
<script data-ezscrex="false" type="text/javascript" data-cfasync="false">var _ezaq = {"ad_cache_level":0,"ad_lazyload_version":0,"ad_load_version":0,"city":"Council Bluffs","country":"US","days_since_last_visit":-1,"domain_id":152083,"domain_test_group":20210310,"engaged_time_visit":0,"ezcache_level":1,"ezcache_skip_code":11,"form_factor_id":1,"framework_id":1,"is_return_visitor":false,"is_sitespeed":0,"last_page_load":"","last_pageview_id":"","lt_cache_level":0,"metro_code":652,"page_ad_positions":"","page_view_count":0,"page_view_id":"1cc2bdac-b0d5-45a4-74c0-ede39a1c6c74","position_selection_id":0,"postal_code":"51502","pv_event_count":0,"response_size_orig":180314,"response_time_orig":195,"serverid":"44.198.165.36:27624","state":"IA","t_epoch":1643898846,"template_id":120,"time_on_site_visit":0,"url":"http://www.thewiseliving.com/","user_id":0,"weather_precipitation":0,"weather_summary":"","weather_temperature":0,"word_count":4934,"worst_bad_word_level":0};var _ezExtraQueries = "&ez_orig=1";</script>
<script data-ezscrex='false' data-pagespeed-no-defer data-cfasync='false'>
function create_ezolpl(pvID, rv) {
    var d = new Date();
    d.setTime(d.getTime() + (365*24*60*60*1000));
    var expires = "expires="+d.toUTCString();
    __ez.ck.setByCat("ezux_lpl_152083=" + new Date().getTime() + "|" + pvID + "|" + rv + "; " + expires, 3);
}
function attach_ezolpl(pvID, rv) {
    if (document.readyState === "complete") {
        create_ezolpl(pvID, rv);
    }
    if(window.attachEvent) {
        window.attachEvent("onload", create_ezolpl, pvID, rv);
    } else {
        if(window.onload) {
            var curronload = window.onload;
            var newonload = function(evt) {
                curronload(evt);
                create_ezolpl(pvID, rv);
            };
            window.onload = newonload;
        } else {
            window.onload = create_ezolpl.bind(null, pvID, rv);
        }
    }
}

__ez.queue.addFunc("attach_ezolpl", "attach_ezolpl", ["1cc2bdac-b0d5-45a4-74c0-ede39a1c6c74", "false"], false, ['/detroitchicago/boise.js'], true, false, false, false);
</script>
<script type="text/javascript">var _audins_dom="thewiseliving_com",_audins_did=152083;__ez.queue.addFile('/detroitchicago/cmbv2.js', '/detroitchicago/cmbv2.js?gcb=195-2&cb=04-1y02-5y06-12y07-1y19-5y0b-5y0d-14y13-3y17-4y1c-2y21-3y53-1&cmbcb=20&sj=x04x02x06x07x19x0bx0dx13x17x1cx21x53', true, [], true, false, true, false);</script>
<script type="text/javascript" defer>__ez.queue.addFile('/detroitchicago/cmbdv2.js', '/detroitchicago/cmbdv2.js?gcb=195-2&cb=03-5y0c-5y18-4&cmbcb=20&sj=x03x0cx18', true, ['/detroitchicago/cmbv2.js'], true, false, true, false);</script></head>
<body>
<div class="clearfix" id="headernbt">
<div class="containernbt">
<div id="logonbt">
<div class="siteheadersec section" id="siteheadersec" name="Header"><div class="widget Header" data-version="1" id="Header1">
<div id="header-inner">
<a href="http://www.thewiseliving.com/" style="display: block">
<img alt="The Wise Living" height="720px; " id="Header1_headerimg" src="https://1.bp.blogspot.com/-fOXtr4RQ-Fs/WiNg4HtrSgI/AAAAAAAAFcQ/zWJJeoPq9vkoo5u71LvyUNjCXBDCkhpmgCK4BGAYYCw/s1600/11.png" style="display:block;padding:0;margin:0 auto;" width="1280px; " />
</a>
</div>
</div></div>
</div>
</div>
</div>
<div class="clearfix" id="main-wrap">
<div class="containernbt clearfix" id="navbarnbt">
<div class="menu-containernbt">
<div class="sitemenu-container">
<ul class="">
<li><a href="http://www.thewiseliving.com/">Home</a></li>
<li><a href="http://www.thewiseliving.com/p/about-wise-living.html">About</a>
<ul class="sub-menu">
</ul>
</li>
<li><a href="https://www.subscribepage.com/y6z5x3">Free Ebook Here</a>
<ul class="sub-menu">
</ul>
</li>
<li><a href="http://www.thewiseliving.com/2016/02/sun-maxilink-prime-3-reasons-why-my-ofw.html">2-in-1 Insurance + Investment Plan</a>
<ul class="sub-menu">
</ul>
</li>
<li><a href="http://www.thewiseliving.com/p/free-financial-planning-seminars.html">Schedule FREE Financial Planning Seminar</a>
</li>
</ul>
</div>
</div>
</div>
<div class="containernbt no-header-imagenbt clearfix" id="main-content">
<div class="leftnbt with-sidebarnbt" id="page-containernbt">
<div class="mainblogsec section" id="mainblogsec" name="Blog Area"><div class="widget Blog" data-version="1" id="Blog1">
<div class="blog-posts hfeed">

          <div class="date-outer">
        

          <div class="date-posts">
        
<div class="post-outer">
<article class="post hentry">
<meta content="https://1.bp.blogspot.com/-nPm24_KqiPc/X6U3QRL3L0I/AAAAAAAAGPQ/JLgAMPgBThgcJ5EYwkS8OtWHrgkVxv9qQCLcBGAsYHQ/s16000/savings%2Baccount%2B%25281%2529.png" itemprop="image"/>
<a name="8919486369738352271"></a>
<header class="entry-header">
<h1 class="post-title entry-title" itemprop="headline">
<a href="http://www.thewiseliving.com/2020/11/which-is-best-type-of-bank-account-for.html">Which is the Best Type of Bank Account for You?</a>
</h1>
<div class="entry-metanbt">
<span class="post-author vcard"><i class="fa fa-user"></i> <span class="fn" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"><span itemprop="name">Lianne</span></span></span>   
<i class="fa fa-calendar"></i> <meta content="http://www.thewiseliving.com/2020/11/which-is-best-type-of-bank-account-for.html" itemprop="url"/><a class="timestamp-link" href="http://www.thewiseliving.com/2020/11/which-is-best-type-of-bank-account-for.html" rel="bookmark" title="permanent link"><span class="published updated" itemprop="datePublished" title="2020-11-05T20:00:00+08:00">Thursday, November 05, 2020</span></a>   
<i class="fa fa-folder-open"></i> <a href="http://www.thewiseliving.com/search/label/Personal%20Finance" rel="tag">Personal Finance</a>   
<span class="item-control blog-admin pid-248285059">
<a href="https://www.blogger.com/post-edit.g?blogID=201243307485764502&amp;postID=8919486369738352271&amp;from=pencil" title="Edit Post">
<img alt="" class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18"/>
</a>
</span>
</div>
</header>
<div class="post-header-line-1"></div>
<div class="post-body entry-content" id="post-body-8919486369738352271">
<div id="summary8919486369738352271"><p class="MsoNormal">Not all bank accounts are made equal. Opening an account with
your preferred bank will present you with a selection of bank account types.
These types come with their own pros and cons, and these will affect how you
can access your funds in the future. </p><p class="MsoNormal">Let&#39;s take a closer look at your options to see
which best suits your needs, shall we?</p><p class="MsoNormal"></p><h2 style="text-align: left;"><b style="mso-bidi-font-weight: normal;">Savings Account</b></h2>

<p class="MsoNormal">The savings account is the simplest type of <a href="https://www.robinsonsbank.com.ph/accounts/" target="_blank">bank account</a>. It’s easy to
set up, so it’s no wonder that most young professionals open their own savings
account as soon as they start earning money on their own.</p><p class="MsoNormal">A savings account is
a safe space where you can store your money. The money stored in the account
will earn interest between 0.5% to 2% annually.</p>

<p class="MsoNormal">Convenience may be the biggest advantage of having a savings
account. You can deposit and withdraw money from your account at any
time. Plus, you can also link your savings account to lots of digital wallets so it&#39;s easier to shop and pay your bills online. </p><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-nPm24_KqiPc/X6U3QRL3L0I/AAAAAAAAGPQ/JLgAMPgBThgcJ5EYwkS8OtWHrgkVxv9qQCLcBGAsYHQ/s620/savings%2Baccount%2B%25281%2529.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="300" data-original-width="620" src="https://1.bp.blogspot.com/-nPm24_KqiPc/X6U3QRL3L0I/AAAAAAAAGPQ/JLgAMPgBThgcJ5EYwkS8OtWHrgkVxv9qQCLcBGAsYHQ/s16000/savings%2Baccount%2B%25281%2529.png"/></a></div>

<p class="MsoNormal">Most savings account require you to present an ID, proof of address and an initial deposit. Once the account has
been opened, you’ll need to keep a maintaining balance for 30 days. </p><p class="MsoNormal"><b>Note: </b>If the
balance in the account dips below maintaining, then the bank may charge
you with a penalty fee. Also, your bank may impose transaction limits
and charge additional fees if you use a different bank’s ATM to withdraw money
from your account.</p>

<p class="MsoNormal">Opening a savings account is the best option if you want to
enjoy a quick and easy application process. It
doesn’t take a lot of effort or money to keep a savings account, so you can
open one under your name even if you’re still starting out in your career or
you don’t have stable employment yet. </p><p class="MsoNormal">A savings account is also the best place
for <a href="http://www.thewiseliving.com/2012/09/5-easy-ways-to-save-for-emergency-fund.html">building an emergency fund</a>, as you have full access to your money anytime
you need it. </p>

<p class="MsoNormal">The downside? It&#39;s super easy to
splurge and spend if you can access your savings with a few clicks. Also, most
savings account programs also yield little in terms of interest, so it’s not
the best choice if you want to <a href="http://www.thewiseliving.com/2014/03/5-shocking-money-facts-thatll-make-you.html">invest and grow your money</a>. </p>

<h2 style="text-align: left;"><b style="mso-bidi-font-weight: normal;">Checking Account</b></h2>

<p class="MsoNormal">Also known as current account, a checking account offers all
the benefits of a savings account plus the ability to issue checks. Checking
account owners get to use paper checks and debit cards to access their money. Compared
to savings accounts, checking accounts require higher initial deposits and
maintenance fees. </p><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-WJeCAyRhvAU/X6U5AjEOVUI/AAAAAAAAGPk/2pA1QWNNQLIgTr9Tktli7IYR9LxvrHPvwCLcBGAsYHQ/s620/checking%2Baccount.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="300" data-original-width="620" src="https://1.bp.blogspot.com/-WJeCAyRhvAU/X6U5AjEOVUI/AAAAAAAAGPk/2pA1QWNNQLIgTr9Tktli7IYR9LxvrHPvwCLcBGAsYHQ/s16000/checking%2Baccount.png"/></a></div>

<p class="MsoNormal">On the upside, checking accounts are not as restricted as
savings accounts are in terms of transaction limits. This means checking
account owners don’t have to worry about exceeding a certain amount of money
every day or month. </p><p class="MsoNormal">Checking accounts are also an ideal option for people who
regularly deal with bigger financial transactions. With checks or post-dated
checks, you can easily arrange automatic payments that involve bigger amounts
of money. Using a checking account also leaves a paper trail, which can be quite
useful if you need to double-check your transactions. </p>

<h2 style="text-align: left;"><b style="mso-bidi-font-weight: normal;">Time Deposit</b></h2>

<p class="MsoNormal">If you want to invest your savings, you can open a time
deposit. The money in a time deposit can’t be touched for a fixed period of
time, which can be between 30 days to 7 years. At the end of this pre-agreed
term, the fund can earn anywhere from 1% to 3.5%  in interest — higher than
what you can get out of a regular savings account. </p>

<p class="MsoNormal">When setting up a time deposit account, it’s important to
assess exactly when you will need the money. While it’s possible to withdraw
the money in your time deposit account before its maturity, doing so comes with
a lot of penalties. </p><div class="separator" style="clear: both; text-align: center;"><a href="https://1.bp.blogspot.com/-GS9Nx4OunCs/X6U3e98K0dI/AAAAAAAAGPU/edp4Wz8obOY8rdDG0m6ebH30uChi5w9FgCLcBGAsYHQ/s620/time%2Bdeposit%2B%25281%2529.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="300" data-original-width="620" src="https://1.bp.blogspot.com/-GS9Nx4OunCs/X6U3e98K0dI/AAAAAAAAGPU/edp4Wz8obOY8rdDG0m6ebH30uChi5w9FgCLcBGAsYHQ/s16000/time%2Bdeposit%2B%25281%2529.png"/></a></div>

<p class="MsoNormal">Time deposits are a great option for conservative investors
and people who have money that they won’t use for some time. Remember, though,
that while time deposits offer higher interest rates compared to regular
savings accounts, it’s still likely that this fixed interest rate won’t be able
to keep up with the <a href="http://www.thewiseliving.com/2014/07/4-important-points-on-investing-what.html">inflation rate</a>.</p>

<p class="MsoNormal">These bank account types offer a wide range of benefits that
will suit different lifestyles. There’s no objective &#34;best&#34; option here; the
important thing is that you end up with a bank account type that complements
how you earn and spend money. </p><p class="MsoNormal">Take a good look at your relationship with your
finances, and you’ll have an easier time deciding if a savings account,
checking account, or time deposit will help you achieve your current and future
financial goals.</p><p></p></div>
<script type="text/javascript">createSummaryAndThumb("summary8919486369738352271","http://www.thewiseliving.com/2020/11/which-is-best-type-of-bank-account-for.html");</script>
<div class="pbtsharethisbutt">
Share: <a href="https://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.thewiseliving.com/2020/11/which-is-best-type-of-bank-account-for.html&amp;t=Which is the Best Type of Bank Account for You?" onclick="window.open(this.href,&#34;sharer&#34;,&#34;toolbar=0,status=0,width=626,height=436&#34;); return false;" rel="nofollow" target="_blank" title="Share this on Facebook"><i class="fa fa-facebook"></i></a><a href="https://twitter.com/home?status=Which is the Best Type of Bank Account for You? -- http://www.thewiseliving.com/2020/11/which-is-best-type-of-bank-account-for.html" rel="nofollow" target="_blank" title="Tweet This!"><i class="fa fa-twitter"></i></a><a href="https://plus.google.com/share?url=http://www.thewiseliving.com/2020/11/which-is-best-type-of-bank-account-for.html" onclick="javascript:window.open(this.href,   &#34;&#34;, &#34;menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600&#34;);return false;" rel="nofollow" target="_blank" title="Share this on Google+"><i class="fa fa-google-plus"></i></a><a class="social-iconnbt" href="https://pinterest.com/pin/create/button/?source_url=&amp;media=https://1.bp.blogspot.com/-nPm24_KqiPc/X6U3QRL3L0I/AAAAAAAAGPQ/JLgAMPgBThgcJ5EYwkS8OtWHrgkVxv9qQCLcBGAsYHQ/s16000/savings%2Baccount%2B%25281%2529.png&amp;description=Which is the Best Type of Bank Account for You?" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a><a href="https://www.linkedin.com/shareArticle?mini=true&amp;title=Which is the Best Type of Bank Account for You?&amp;url=http://www.thewiseliving.com/2020/11/which-is-best-type-of-bank-account-for.html" rel="nofollow" target="_blank" title="Share this on Linkedin"><i class="fa fa-linkedin"></i></a>
</div>
<div style="float:right;padding-right:0;margin-top:10px;">
<a class="readmorenbt" href="http://www.thewiseliving.com/2020/11/which-is-best-type-of-bank-account-for.html">Read More</a>
</div>
<div style="clear: both;"></div>
</div>
</article>
<div style="clear: both;"></div>
</div>

          </div></div>
        

          <div class="date-outer">
        

          <div class="date-posts">
        
<div class="post-outer">
<article class="post hentry">
<a name="5153311630646049876"></a>
<header class="entry-header">
<h1 class="post-title entry-title" itemprop="headline">
<a href="http://www.thewiseliving.com/2020/09/know-about-refinancing-personal-loans.html">4 Things You Should Know About Refinancing Personal Loans</a>
</h1>
<div class="entry-metanbt">
<span class="post-author vcard"><i class="fa fa-user"></i> <span class="fn" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"><span itemprop="name">Lianne</span></span></span>   
<i class="fa fa-calendar"></i> <meta content="http://www.thewiseliving.com/2020/09/know-about-refinancing-personal-loans.html" itemprop="url"/><a class="timestamp-link" href="http://www.thewiseliving.com/2020/09/know-about-refinancing-personal-loans.html" rel="bookmark" title="permanent link"><span class="published updated" itemprop="datePublished" title="2020-09-29T08:50:00+08:00">Tuesday, September 29, 2020</span></a>   
<i class="fa fa-folder-open"></i> <a href="http://www.thewiseliving.com/search/label/Personal%20Finance" rel="tag">Personal Finance</a>   
<span class="item-control blog-admin pid-248285059">
<a href="https://www.blogger.com/post-edit.g?blogID=201243307485764502&amp;postID=5153311630646049876&amp;from=pencil" title="Edit Post">
<img alt="" class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18"/>
</a>
</span>
</div>
</header>
<div class="post-header-line-1"></div>
<div class="post-body entry-content" id="post-body-5153311630646049876">
<div id="summary5153311630646049876"><span id="docs-internal-guid-81cbb3e8-7fff-cb68-28e3-216b91515569"><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">The current pandemic has led most people into skipping personal loan repayments. </span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br/></span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Loss of jobs affected millions of Filipinos such that the state-run <a href="https://www.creditinfo.gov.ph/philstar-banks-urged-not-declare-loan-defaults-during-ecq" rel="nofollow" target="_blank">Credit Information Corp (CIC)</a> continuously urges banks and lenders not to tag missed payments as delinquent. </span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br/></span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">The government further enacts the Bayanihan 2 into law extending debt relief programs with 60-day grace periods. </span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br/></span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">But things could be different if your loans are raking high-interest rates. You end up enjoying the debt relief grace periods but your debts remain unsettled for a long time.        </span></p><br/><h3 dir="ltr" style="line-height: 1.2; margin-bottom: 4pt; margin-top: 14pt;"><span style="font-family: Calibri, sans-serif; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">What is personal loan refinancing?</span></h3><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Personal loan refinancing is the same concept as debt consolidation. You apply and take out a new loan to pay off your existing loan. Debt consolidation could cover all your existing balances including credit card debts, car loans, and home loans. For personal loan refinancing, you can opt to cover loans of your choice. </span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br/></span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">The goal is for you to end in a personal loan that offers<b> better interest </b>and repayment schemes.</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Loan refinancing is a choice most borrowers make to get a more affordable loan. For example, a personal loan taken 12 months ago was offered a 12% interest per annum. Today, the same loan is offered at 8-10% per annum. If that is the case, then refinancing an old loan with a more affordable one is a practical decision.</span></p><br/><h3 dir="ltr" style="line-height: 1.2; margin-bottom: 4pt; margin-top: 14pt;"><span style="font-family: Calibri, sans-serif; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">When should you refinance a loan?</span></h3><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">You can apply for a new personal loan as long as you have a good credit score. That is if you have been consistently paying your installments in full and on time. However, you should always <b>think twice when taking out a loan</b> because there are certain situations you should consider before applying.</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"></p><ul style="text-align: left;"><li><span id="docs-internal-guid-81cbb3e8-7fff-cb68-28e3-216b91515569"><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Refinance an existing loan if the offer will have a <b>lower annual percentage rate </b>over your old loan. You can also consider switching from a variable rate loan to a fixed-rate loan so you can take advantage of consistent installments each month.      </span></p></span></li></ul><div><span style="color: #0e101a; font-family: Calibri, sans-serif;"><span style="font-size: 14.6667px; white-space: pre-wrap;"><br/></span></span></div><ul style="text-align: left;"><li><span id="docs-internal-guid-81cbb3e8-7fff-cb68-28e3-216b91515569"><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">It is time for refinancing when your income has decreased and you can no longer afford your existing installments. Banks offer loan refinancing in connection to the massive loss of jobs that occurred during the pandemic. Refinancing can let you choose a loan that requires a repayment <b>you can afford.</b></span></p></span></li></ul><div><br/></div><ul style="text-align: left;"><li><span id="docs-internal-guid-81cbb3e8-7fff-cb68-28e3-216b91515569"><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Refinance an existing loan if the loan offer will prevent your debts from piling up. Some refinancing may have <b>hidden charges</b> which you may not be aware of. Having said that, you should not only focus on the interest rates but also on the cost of processing and other fees entailed with the new loan.</span></p></span></li></ul><p></p><br/><h3 dir="ltr" style="line-height: 1.2; margin-bottom: 4pt; margin-top: 14pt;"><span style="font-family: Calibri, sans-serif; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">What are the pros and cons of refinancing?</span></h3><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Not all financial facility works best for borrowers. If you </span><a href="https://www.gobear.com/ph/personal-loan" style="text-decoration-line: none;" target="_blank"><span style="color: #1155cc; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;">compare personal loans online</span></a><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;">,</span><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"> you will see how to offer doffer from one lender to another that will affect the impact of refinancing your existing loan. Here are a few advantages and disadvantages you should be aware of:</span></p><h3 dir="ltr" style="line-height: 1.2; margin-bottom: 4pt; margin-top: 14pt;"><span style="font-family: Calibri, sans-serif; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Advantages:</span></h3><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;">1. Lower interest</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Most lenders offer dropped rates especially in times of crisis. Refinancing has the potential to reduce your debts and save more money on interest and fees.</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;">2. Extend your loan tenor</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">With a refinancing, you are refreshing an existing loan while also extending its tenor. This will make everything more manageable considering that you can reduce your debt while allowing more time for you to acquire money for repayment.</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;">3. Payment stability</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Most loan refinancing offer a change from a variable rate to a fixed rate. That means more stability in terms of the repayment amount. This can help you plan your finances ahead of time.</span></p><h3 dir="ltr" style="line-height: 1.2; margin-bottom: 4pt; margin-top: 14pt;"><span style="font-family: Calibri, sans-serif; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Disadvantages:</span></h3><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;">1. Extra costs</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Certainly, the annual percentage rate for new loans can seem lower but some lenders may impose <b>other fees</b>. Processing fees can be a one-time charge which could be higher than the interest charges you’re paying for the old loan.</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;">2. Early repayment charges</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">Some lenders charge early repayment fees when closing off loans ahead of the term. If the charges are much lower than the total cost of your new loan, then refinancing can be right for you. On the other hand, if all fees entailed closing an old loan and opening a new one, then you might want to consider staying with your current lender.</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 700; vertical-align: baseline; white-space: pre-wrap;">3. Higher interest</span></p><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">This might seem confusing but a new loan may cost <b>much higher interest </b>in the long run. Refinancing will let you apply for a loan at a much longer-term. Over time, an extended loan will be equal to higher interest costs. More often than not, a new loan will have a much longer-term than your existing loan.</span></p><br/><h3 dir="ltr" style="line-height: 1.2; margin-bottom: 4pt; margin-top: 14pt;"><span style="font-family: Calibri, sans-serif; font-size: 14pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">What to consider before refinancing?</span></h3><br/><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">The advantages and disadvantages are important factors to consider when deciding whether to refinance a personal or not. </span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br/></span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;">On the personal side, you should also check your income and your credit profile. Your income is important in calculating how much could you spare for loan repayments. It will help decide which loan to take especially when you’re up to reducing the monthly installments. Moreover, your credit profile is an essential consideration, especially for lenders. </span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br/></span></p><p dir="ltr" style="line-height: 1.2; margin-bottom: 0pt; margin-top: 0pt;"><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br/></span></p><div><span style="color: #0e101a; font-family: Calibri, sans-serif; font-size: 11pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br/></span></div></span></div>
<script type="text/javascript">createSummaryAndThumb("summary5153311630646049876","http://www.thewiseliving.com/2020/09/know-about-refinancing-personal-loans.html");</script>
<div class="pbtsharethisbutt">
Share: <a href="https://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.thewiseliving.com/2020/09/know-about-refinancing-personal-loans.html&amp;t=4 Things You Should Know About Refinancing Personal Loans" onclick="window.open(this.href,&#34;sharer&#34;,&#34;toolbar=0,status=0,width=626,height=436&#34;); return false;" rel="nofollow" target="_blank" title="Share this on Facebook"><i class="fa fa-facebook"></i></a><a href="https://twitter.com/home?status=4 Things You Should Know About Refinancing Personal Loans -- http://www.thewiseliving.com/2020/09/know-about-refinancing-personal-loans.html" rel="nofollow" target="_blank" title="Tweet This!"><i class="fa fa-twitter"></i></a><a href="https://plus.google.com/share?url=http://www.thewiseliving.com/2020/09/know-about-refinancing-personal-loans.html" onclick="javascript:window.open(this.href,   &#34;&#34;, &#34;menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600&#34;);return false;" rel="nofollow" target="_blank" title="Share this on Google+"><i class="fa fa-google-plus"></i></a><a href="https://www.linkedin.com/shareArticle?mini=true&amp;title=4 Things You Should Know About Refinancing Personal Loans&amp;url=http://www.thewiseliving.com/2020/09/know-about-refinancing-personal-loans.html" rel="nofollow" target="_blank" title="Share this on Linkedin"><i class="fa fa-linkedin"></i></a>
</div>
<div style="float:right;padding-right:0;margin-top:10px;">
<a class="readmorenbt" href="http://www.thewiseliving.com/2020/09/know-about-refinancing-personal-loans.html">Read More</a>
</div>
<div style="clear: both;"></div>
</div>
</article>
<div style="clear: both;"></div>
</div>

          </div></div>
        

          <div class="date-outer">
        

          <div class="date-posts">
        
<div class="post-outer">
<article class="post hentry">
<meta content="https://1.bp.blogspot.com/-lUyPytz5SOU/XogS6Oxo2FI/AAAAAAAAGJY/yA0nPw3aAxE49fugecsApMAw5NhU_ALQwCLcBGAsYHQ/s640/car-rubicon-7d7e.jpg" itemprop="image"/>
<a name="4406716218878328498"></a>
<header class="entry-header">
<h1 class="post-title entry-title" itemprop="headline">
<a href="http://www.thewiseliving.com/2020/04/2-reasons-why-getting-auto-loan-in.html">2 Reasons Why Getting An Auto Loan in the Philippines May Be A Good Idea</a>
</h1>
<div class="entry-metanbt">
<span class="post-author vcard"><i class="fa fa-user"></i> <span class="fn" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"><span itemprop="name">Lianne</span></span></span>   
<i class="fa fa-calendar"></i> <meta content="http://www.thewiseliving.com/2020/04/2-reasons-why-getting-auto-loan-in.html" itemprop="url"/><a class="timestamp-link" href="http://www.thewiseliving.com/2020/04/2-reasons-why-getting-auto-loan-in.html" rel="bookmark" title="permanent link"><span class="published updated" itemprop="datePublished" title="2020-04-03T18:00:00+08:00">Friday, April 03, 2020</span></a>   
<i class="fa fa-folder-open"></i> <a href="http://www.thewiseliving.com/search/label/Personal%20Finance" rel="tag">Personal Finance</a>   
<span class="item-control blog-admin pid-248285059">
<a href="https://www.blogger.com/post-edit.g?blogID=201243307485764502&amp;postID=4406716218878328498&amp;from=pencil" title="Edit Post">
<img alt="" class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18"/>
</a>
</span>
</div>
</header>
<div class="post-header-line-1"></div>
<div class="post-body entry-content" id="post-body-4406716218878328498">
<div id="summary4406716218878328498"><div dir="ltr" style="text-align: left;" trbidi="on">
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">Nowadays, a lot of people prefer
buying cars in cash instead of applying for a<span style="background: white;">n auto-loan.</span> </span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">This is acceptable, if you have enough savings to tide you over, but if not, your entire life savings may get depleted and you won&#39;t have anything left for your emergency fund. </span><br/>
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/-lUyPytz5SOU/XogS6Oxo2FI/AAAAAAAAGJY/yA0nPw3aAxE49fugecsApMAw5NhU_ALQwCLcBGAsYHQ/s1600/car-rubicon-7d7e.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="400" data-original-width="600" height="425" src="https://1.bp.blogspot.com/-lUyPytz5SOU/XogS6Oxo2FI/AAAAAAAAGJY/yA0nPw3aAxE49fugecsApMAw5NhU_ALQwCLcBGAsYHQ/s640/car-rubicon-7d7e.jpg" width="640"/></a></div>
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">Sometimes, to get a car as soon as possible, people also buy pre-loved cars -- but if you don&#39;t have enough knowledge, time, or help from an expert to check the car, you may end up paying more than what you&#39;ve bargained for. </span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">In the Philippines, all commercial
banks offer auto-loans. The good thing is that despite loans seemingly being
expensive, they really have lower interest rates compared to other types of loans. </span></span><br/>
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></span>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/-7Phxg68tOSw/XogTGoe_goI/AAAAAAAAGJc/dEtt0WacCycV_txI5D5Fv5yPs5lf_nD1gCLcBGAsYHQ/s1600/carloandefault-1-37af.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="324" data-original-width="600" height="344" src="https://1.bp.blogspot.com/-7Phxg68tOSw/XogTGoe_goI/AAAAAAAAGJc/dEtt0WacCycV_txI5D5Fv5yPs5lf_nD1gCLcBGAsYHQ/s640/carloandefault-1-37af.jpg" width="640"/></a></div>
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">Here are two reasons why getting an auto loan in the Philippines is a good idea:</span><br/>
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></div>
<h2 style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<b style="mso-bidi-font-weight: normal;"><span lang="EN-PH"><span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><span style="color: #fe267c; font-family: &#34;verdana&#34; , sans-serif; font-size: x-large;">1. Car loans are flexible</span></span></span></b></h2>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">No matter how much your lump sum
is, you can afford an auto-loan in the country. Most banks offer an auto-loan
for as little as 20% down payment.</span></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">For a car or SUV that is worth P1,000,000, you only have to shell out P200,000 plus around P20,000 for taxes, documentation and other miscellaneous charges.</span></span><br/>
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></span>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/--OHtVkpgQqY/XogTVROKo5I/AAAAAAAAGJk/9oKSZKpQ_0UX2rY441tRCuBJu_aRZ3DXwCLcBGAsYHQ/s1600/car-driving.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="293" data-original-width="390" height="480" src="https://1.bp.blogspot.com/--OHtVkpgQqY/XogTVROKo5I/AAAAAAAAGJk/9oKSZKpQ_0UX2rY441tRCuBJu_aRZ3DXwCLcBGAsYHQ/s640/car-driving.gif" width="640"/></a></div>
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: verdana, sans-serif; font-size: large;">It will take you some time to save up for the 20% down payment, but it&#39;s faster than saving up for a higher percentage down payment. And if your car is to be used as an income source, the opportunity cost alone is enough reason to get an auto-loan so you can start making money with your car. </span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></span>
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">If you can afford to pay the monthly amortization of the car for
five years, then all it takes is roughly two years to save up for your 20% down
payment.</span></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: verdana, sans-serif; font-size: large;">The average interest rate for auto-loans is between 4% to 30% -- but since we&#39;re under the assumption that you&#39;re buying a car to use it as a source of income, this is much better than getting a personal loan which doesn&#39;t have any goal behind it. </span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<b style="mso-bidi-font-weight: normal;"><span lang="EN-PH"><span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><span style="color: #fe267c; font-family: &#34;verdana&#34; , sans-serif; font-size: x-large;">2. Accessibility of car loans</span></span></span></b></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">All commercial banks in the
country offer <span style="background: white; mso-highlight: white;">auto-loans. </span>The
interest rates may vary so you can go with the best bank that meets your specific needs. </span></span><br/>
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></span>
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">All banks also offer flexible terms: you can buy a car for
20%, 30%, 40%, or 50% down payment. </span></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">For you to get started with the process, research for the starting price of your target car. Then, to save time and resources, you can also check online to compare car loan offers of different banks. </span></span><br/>
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></span>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/-fQ-F9nrD4vw/XogT_HnKEqI/AAAAAAAAGJw/wKvN8LeznGIb2MRZ3PEOQmtfiVc6Q6rtACLcBGAsYHQ/s1600/source.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="600" data-original-width="800" height="240" src="https://1.bp.blogspot.com/-fQ-F9nrD4vw/XogT_HnKEqI/AAAAAAAAGJw/wKvN8LeznGIb2MRZ3PEOQmtfiVc6Q6rtACLcBGAsYHQ/s320/source.gif" width="320"/></a></div>
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></span>
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></span>
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><span style="background: white; mso-highlight: white;">Once you&#39;ve decided, you need to dedicate a day when you will contact the bank (either online or in the branch) so you can </span>receive the list of documents required from you. </span></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;"><br/></span></div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<h2>
<b style="mso-bidi-font-weight: normal;"><span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: medium;"><span style="font-size: x-large;">Tip</span></span></span></b></h2>
</div>
<div class="MsoNormal" style="line-height: normal; margin-bottom: .0001pt; margin-bottom: 0in; text-align: justify;">
<span lang="EN-PH"><span style="font-family: &#34;verdana&#34; , sans-serif; font-size: large;">If you want to shop for a loan,
you can use a tool ca<span style="background: white; mso-highlight: white;">lled </span><a href="https://upfinance.com/" target="_blank"><span style="background: white; color: #1155cc;">UpFinance</span></a><span style="background: white; mso-highlight: white;">. I</span>t is an online tool that can help you compare
loans between financial institutions. With this, it will be easier for you to
decide which bank you want to do business with.</span></span></div>
</div>
</div>
<script type="text/javascript">createSummaryAndThumb("summary4406716218878328498","http://www.thewiseliving.com/2020/04/2-reasons-why-getting-auto-loan-in.html");</script>
<div class="pbtsharethisbutt">
Share: <a href="https://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.thewiseliving.com/2020/04/2-reasons-why-getting-auto-loan-in.html&amp;t=2 Reasons Why Getting An Auto Loan in the Philippines May Be A Good Idea" onclick="window.open(this.href,&#34;sharer&#34;,&#34;toolbar=0,status=0,width=626,height=436&#34;); return false;" rel="nofollow" target="_blank" title="Share this on Facebook"><i class="fa fa-facebook"></i></a><a href="https://twitter.com/home?status=2 Reasons Why Getting An Auto Loan in the Philippines May Be A Good Idea -- http://www.thewiseliving.com/2020/04/2-reasons-why-getting-auto-loan-in.html" rel="nofollow" target="_blank" title="Tweet This!"><i class="fa fa-twitter"></i></a><a href="https://plus.google.com/share?url=http://www.thewiseliving.com/2020/04/2-reasons-why-getting-auto-loan-in.html" onclick="javascript:window.open(this.href,   &#34;&#34;, &#34;menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600&#34;);return false;" rel="nofollow" target="_blank" title="Share this on Google+"><i class="fa fa-google-plus"></i></a><a class="social-iconnbt" href="https://pinterest.com/pin/create/button/?source_url=&amp;media=https://1.bp.blogspot.com/-lUyPytz5SOU/XogS6Oxo2FI/AAAAAAAAGJY/yA0nPw3aAxE49fugecsApMAw5NhU_ALQwCLcBGAsYHQ/s640/car-rubicon-7d7e.jpg&amp;description=2 Reasons Why Getting An Auto Loan in the Philippines May Be A Good Idea" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a><a href="https://www.linkedin.com/shareArticle?mini=true&amp;title=2 Reasons Why Getting An Auto Loan in the Philippines May Be A Good Idea&amp;url=http://www.thewiseliving.com/2020/04/2-reasons-why-getting-auto-loan-in.html" rel="nofollow" target="_blank" title="Share this on Linkedin"><i class="fa fa-linkedin"></i></a>
</div>
<div style="float:right;padding-right:0;margin-top:10px;">
<a class="readmorenbt" href="http://www.thewiseliving.com/2020/04/2-reasons-why-getting-auto-loan-in.html">Read More</a>
</div>
<div style="clear: both;"></div>
</div>
</article>
<div style="clear: both;"></div>
</div>

          </div></div>
        

          <div class="date-outer">
        

          <div class="date-posts">
        
<div class="post-outer">
<article class="post hentry">
<meta content="https://1.bp.blogspot.com/-Gy9DWwuTyoM/XoA06SODXnI/AAAAAAAAGJI/hwYiM1cxZQoNlL-bjp8n1JFcNJFebISaQCLcBGAsYHQ/s400/home-yoga-practice.jpg" itemprop="image"/>
<a name="1299742371954115322"></a>
<header class="entry-header">
<h1 class="post-title entry-title" itemprop="headline">
<a href="http://www.thewiseliving.com/2020/03/mybankhero-here-are-3-things-bdo-did-to.html">#MyBankHero: Here Are 3 Things BDO Did To Show Their Reliability And Compassion During COVID-19 Crisis </a>
</h1>
<div class="entry-metanbt">
<span class="post-author vcard"><i class="fa fa-user"></i> <span class="fn" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"><span itemprop="name">Lianne</span></span></span>   
<i class="fa fa-calendar"></i> <meta content="http://www.thewiseliving.com/2020/03/mybankhero-here-are-3-things-bdo-did-to.html" itemprop="url"/><a class="timestamp-link" href="http://www.thewiseliving.com/2020/03/mybankhero-here-are-3-things-bdo-did-to.html" rel="bookmark" title="permanent link"><span class="published updated" itemprop="datePublished" title="2020-03-28T09:00:00+08:00">Saturday, March 28, 2020</span></a>   
<i class="fa fa-folder-open"></i> <a href="http://www.thewiseliving.com/search/label/Personal%20Finance" rel="tag">Personal Finance</a>   
<span class="item-control blog-admin pid-248285059">
<a href="https://www.blogger.com/post-edit.g?blogID=201243307485764502&amp;postID=1299742371954115322&amp;from=pencil" title="Edit Post">
<img alt="" class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18"/>
</a>
</span>
</div>
</header>
<div class="post-header-line-1"></div>
<div class="post-body entry-content" id="post-body-1299742371954115322">
<div id="summary1299742371954115322"><div dir="ltr" style="text-align: left;" trbidi="on">
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">In a way, the COVID-19 crisis has been an eye-opener for Filipinos. </span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">It has enabled the people of the Philippines to prioritize their health and well-being. </span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/-Gy9DWwuTyoM/XoA06SODXnI/AAAAAAAAGJI/hwYiM1cxZQoNlL-bjp8n1JFcNJFebISaQCLcBGAsYHQ/s1600/home-yoga-practice.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="796" data-original-width="1404" height="226" src="https://1.bp.blogspot.com/-Gy9DWwuTyoM/XoA06SODXnI/AAAAAAAAGJI/hwYiM1cxZQoNlL-bjp8n1JFcNJFebISaQCLcBGAsYHQ/s400/home-yoga-practice.jpg" width="400"/></a></div>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">It has made us all realize the true nature of the politicians we voted -- if they were helpful or not during this crisis. </span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/-c44MYedxU5o/XoA1FGceLcI/AAAAAAAAGJM/3DM6nwhPlDwztUh-J0S7m7HvZCDCI6w0QCLcBGAsYHQ/s1600/Bayanihan-is-exemplified-in-relief-operations-during-natural-disasters-Image-from.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="528" data-original-width="705" height="298" src="https://1.bp.blogspot.com/-c44MYedxU5o/XoA1FGceLcI/AAAAAAAAGJM/3DM6nwhPlDwztUh-J0S7m7HvZCDCI6w0QCLcBGAsYHQ/s400/Bayanihan-is-exemplified-in-relief-operations-during-natural-disasters-Image-from.png" width="400"/></a></div>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">And it has also let us know which companies really cared enough for its customers to help them during their times of need. </span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">Personally, I&#39;m happy to have a <b>BDO </b>Gold credit card, because I find BDO to be helpful during COVID-19 crisis. Here are three things they did to help <i>Pinoys -- </i>they found ways <i>talaga.</i></span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><i><br/></i></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><i><br/></i></span>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/-hyaS7_tGdQI/XoA0XyzbSkI/AAAAAAAAGJA/-SKtlo7GZ6g85sm39IDod83SfoYTf4dQgCLcBGAsYHQ/s1600/i%2Blove%2Bmy%2Blife%2B_%2529.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="630" data-original-width="1200" height="336" src="https://1.bp.blogspot.com/-hyaS7_tGdQI/XoA0XyzbSkI/AAAAAAAAGJA/-SKtlo7GZ6g85sm39IDod83SfoYTf4dQgCLcBGAsYHQ/s640/i%2Blove%2Bmy%2Blife%2B_%2529.png" width="640"/></a></div>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><i><br/></i></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><b>1. Payment Extension for 60 Days </b></span><br/>
<br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">During the Enhanced Community Quarantine announced to flatten the curve for COVID-19, other banks <u>didn&#39;t make any announcements</u> about payment extensions.</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">Other banks announced a 30-day payment extension.</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">BDO decided to take it one step further and announce a <u>60-day payment extension.</u> </span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<iframe allow="encrypted-media" allowtransparency="true" frameborder="0" height="631" scrolling="no" src="https://www.facebook.com/plugins/post.php?href=https%3A%2F%2Fwww.facebook.com%2FBDOUnibank%2Fposts%2F2543297682553051&amp;width=500" style="border: none; overflow: hidden;" width="500"></iframe>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">I considered this announcement as a sign of the company&#39;s reliability. They know that because of the quarantine, a lot of people were strapped for cash, so they gave their customers a two-month adjustment period to catch up. </span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: arial, helvetica, sans-serif;">Such a #MyBankyahinan move, don&#39;t you think?</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><b><br/></b></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><b>2. Safer way to bank with BDO Online Banking </b></span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><span style="font-size: small;"><br/></span></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">While banks remain open to service the banking needs of clients amidst the enhanced</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">community quarantine prevailing in Luzon, BDO Unibank encourages the heightened</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">use of online banking service to protect the public from the spread of the pandemic.</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">“We urge our online banking users to share and teach their family and friends how to</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">sign up and use BDO Online Banking so they can bank safely from home,” the Bank</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">said in a statement.</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">BDO has provided steps to guide its customers on how to sign-up for online banking.</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">These are found on its official website <a href="https://www.bdo.com.ph/personal/ebanking/online-banking" target="_blank">www.bdo.com.ph.</a></span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">They also posted the instructions on their official Facebook Page. </span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<iframe allow="encrypted-media" allowtransparency="true" frameborder="0" height="745" scrolling="no" src="https://www.facebook.com/plugins/post.php?href=https%3A%2F%2Fwww.facebook.com%2FBDOUnibank%2Fposts%2F2541550816061071&amp;width=500" style="border: none; overflow: hidden;" width="500"></iframe>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">For those who are visual learners, you can follow their instructions via their </span><span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">BDO Youtube channel as well.</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<iframe allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="315" src="https://www.youtube.com/embed/ADlUo8NWbtU" width="560"></iframe><br/>
<br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">With BDO Online Banking, customers can perform transactions such as Send Money,</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">Pay Bills, Reload and more. </span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">Apart from online banking, BDO’s network of ATMs and Cash Accept Machines is</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">always available for cash withdrawal, bills payment and deposit. It&#39;s very convenient, since you can do basic transactions without lining up in the bank branch anymore.</span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><b><br/></b></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><b></b></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><b>3. Option to lock cards online </b></span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><span style="font-size: small;"><br/></span></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><span style="font-size: small;">I don&#39;t know about you, but I&#39;ve experienced credit card fraud with another bank before. </span></span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><span style="font-size: small;"><br/></span></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><span style="font-size: small;">One day, I decided to check my online account and I saw around P26,000+ debited from my credit card -- these were purchases made from my account, purchases that I did <i>not </i>make! </span></span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: medium;"><span style="font-size: large;"><span style="font-size: small;"><br/></span></span></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: medium;"><span style="font-size: large;"><span style="font-size: small;">In panic, I tried calling my bank&#39;s hotline. It took me around 2 hours just to speak with an officer. </span></span></span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: medium;"><span style="font-size: large;"><span style="font-size: small;"><br/></span></span></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: medium;"><span style="font-size: large;"><span style="font-size: small;">That&#39;s why I&#39;m thankful that BDO allows you to lock your credit card online. This way, no one can use your card while you&#39;re settling your account and waiting for the results of the investigation. </span></span></span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: medium;"><span style="font-size: large;"><span style="font-size: small;"><br/></span></span></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: medium;"><span style="font-size: large;"><span style="font-size: small;">You can do this in less than 3 steps:</span></span></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif; font-size: large;"><b><br/></b></span>
<iframe allow="encrypted-media" allowtransparency="true" frameborder="0" height="651" scrolling="no" src="https://www.facebook.com/plugins/post.php?href=https%3A%2F%2Fwww.facebook.com%2FBDOUnibank%2Fposts%2F2550161648533321&amp;width=500" style="border: none; overflow: hidden;" width="500"></iframe>
<br/>
<br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">In addition to these, BDO Unibank also makes sure to protect the health of their employees by encouraging the customers to put their masks on when entering their branches. </span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;">Considering that <b><a href="https://cnnphilippines.com/lifestyle/2020/3/27/bank-workers-also-at-the-frontlines-amid-coronavirus-crisis.html" target="_blank">employees of banks like BDO are also considered front-liners</a></b> during the COVID-19 crisis, I urge every reader of The Wise Living to kindly pray for these amazing individuals and give them the appreciation they rightfully deserve. </span><br/>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span>
<span style="font-family: &#34;arial&#34; , &#34;helvetica&#34; , sans-serif;"><br/></span></div>
</div>
<script type="text/javascript">createSummaryAndThumb("summary1299742371954115322","http://www.thewiseliving.com/2020/03/mybankhero-here-are-3-things-bdo-did-to.html");</script>
<div class="pbtsharethisbutt">
Share: <a href="https://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.thewiseliving.com/2020/03/mybankhero-here-are-3-things-bdo-did-to.html&amp;t=#MyBankHero: Here Are 3 Things BDO Did To Show Their Reliability And Compassion During COVID-19 Crisis " onclick="window.open(this.href,&#34;sharer&#34;,&#34;toolbar=0,status=0,width=626,height=436&#34;); return false;" rel="nofollow" target="_blank" title="Share this on Facebook"><i class="fa fa-facebook"></i></a><a href="https://twitter.com/home?status=#MyBankHero: Here Are 3 Things BDO Did To Show Their Reliability And Compassion During COVID-19 Crisis  -- http://www.thewiseliving.com/2020/03/mybankhero-here-are-3-things-bdo-did-to.html" rel="nofollow" target="_blank" title="Tweet This!"><i class="fa fa-twitter"></i></a><a href="https://plus.google.com/share?url=http://www.thewiseliving.com/2020/03/mybankhero-here-are-3-things-bdo-did-to.html" onclick="javascript:window.open(this.href,   &#34;&#34;, &#34;menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600&#34;);return false;" rel="nofollow" target="_blank" title="Share this on Google+"><i class="fa fa-google-plus"></i></a><a class="social-iconnbt" href="https://pinterest.com/pin/create/button/?source_url=&amp;media=https://1.bp.blogspot.com/-Gy9DWwuTyoM/XoA06SODXnI/AAAAAAAAGJI/hwYiM1cxZQoNlL-bjp8n1JFcNJFebISaQCLcBGAsYHQ/s400/home-yoga-practice.jpg&amp;description=#MyBankHero: Here Are 3 Things BDO Did To Show Their Reliability And Compassion During COVID-19 Crisis " rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a><a href="https://www.linkedin.com/shareArticle?mini=true&amp;title=#MyBankHero: Here Are 3 Things BDO Did To Show Their Reliability And Compassion During COVID-19 Crisis &amp;url=http://www.thewiseliving.com/2020/03/mybankhero-here-are-3-things-bdo-did-to.html" rel="nofollow" target="_blank" title="Share this on Linkedin"><i class="fa fa-linkedin"></i></a>
</div>
<div style="float:right;padding-right:0;margin-top:10px;">
<a class="readmorenbt" href="http://www.thewiseliving.com/2020/03/mybankhero-here-are-3-things-bdo-did-to.html">Read More</a>
</div>
<div style="clear: both;"></div>
</div>
</article>
<div style="clear: both;"></div>
</div>

          </div></div>
        

          <div class="date-outer">
        

          <div class="date-posts">
        
<div class="post-outer">
<article class="post hentry">
<a name="5191097675737768960"></a>
<header class="entry-header">
<h1 class="post-title entry-title" itemprop="headline">
<a href="http://www.thewiseliving.com/2020/01/cheapest-ways-to-transfer-money-from.html">Cheapest Ways to Transfer Money from the Philippines and from Overseas to Philippines</a>
</h1>
<div class="entry-metanbt">
<span class="post-author vcard"><i class="fa fa-user"></i> <span class="fn" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"><span itemprop="name">Lianne</span></span></span>   
<i class="fa fa-calendar"></i> <meta content="http://www.thewiseliving.com/2020/01/cheapest-ways-to-transfer-money-from.html" itemprop="url"/><a class="timestamp-link" href="http://www.thewiseliving.com/2020/01/cheapest-ways-to-transfer-money-from.html" rel="bookmark" title="permanent link"><span class="published updated" itemprop="datePublished" title="2020-01-08T20:40:00+08:00">Wednesday, January 08, 2020</span></a>   
<i class="fa fa-folder-open"></i> <a href="http://www.thewiseliving.com/search/label/Personal%20Finance" rel="tag">Personal Finance</a>   
<span class="item-control blog-admin pid-248285059">
<a href="https://www.blogger.com/post-edit.g?blogID=201243307485764502&amp;postID=5191097675737768960&amp;from=pencil" title="Edit Post">
<img alt="" class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18"/>
</a>
</span>
</div>
</header>
<div class="post-header-line-1"></div>
<div class="post-body entry-content" id="post-body-5191097675737768960">
<div id="summary5191097675737768960"><div dir="ltr" style="text-align: left;" trbidi="on">
<span style="font-size: large;">It&#39;s no secret that the congenial manners, impeccable English and reasonable rates of Filipino professionals have made them indispensable to the global workforce. Personally, I&#39;m proud to say that my parents were OFWs as well. :)<br/><br/>Their value to corporations and small businesses can be immense. In fact, some companies in the BPO industry compensate their employees with a salary up to $700/month – <a href="https://www.latimes.com/business/la-fi-philippines-economy-20150202-story.html">more than some doctors make</a>. As such, there is no shortage of skilled workers waiting for entrepreneurs to hire them.<br/><br/>Filipinos are also multi-talented and educated experts who can perform a variety of tasks professionally: from accounting, virtual assisting, writing, coding, customer support and even graphic designing, you can depend on them to do a job well done. <br/><br/>As a result, countless businesses hire Filipinos as remote employees. Want to join the party? To do so, you’ll need to send <a href="https://internationalmoneytransfers.org/philippines/">money to a Philippines bank account from abroad</a> every month. Sure, this task may sound simple enough, but if you don&#39;t do it right the first time, it may cost your business thousands in losses. <br/><br/>In today&#39;s blog post, you&#39;ll find out why sending money via bank transfer or Paypal is actually hurting your company. To remedy this, you&#39;ll also learn about the best way to do money transfer cheaply and conveniently. </span><br/>
<div style="text-align: left;">
<span style="font-size: large;"><b>How much does it cost to send money to the Philippines?</b></span></div>
<div style="text-align: left;">
<span style="font-size: large;"><br/></span></div>
<div style="text-align: left;">
<span style="font-size: large;">Paying $300/month to your Filipino employee sounds straightforward enough. But because of the costs associated with money transfer, you need to consider that you need to pay more than that. </span></div>
<br/>
<span style="font-size: large;"><br/>How much more, you ask? Well, if you&#39;re sending the money electronically via banks like Wells Fargo, it&#39;ll cost you $35/transfer: almost 12% of the money you&#39;re transferring.  <br/><br/>And the unnecessary charges don&#39;t stop there. You&#39;re also subjected to bank&#39;s own exchange rate.  <br/><br/>Their USD/PHP rate – 48.5509 – is <a href="https://remittanceprices.worldbank.org/en/corridor/United-States/Philippines?order=field_cc1_fx_margin_calc&amp;sort=asc#tab-1">4.4% off the interbank rate</a> of 50.7854. To pay your remote employee the $300 you owe them, you’ll need to send roughly $350/month to pay for the money transfer costs. An extra $50/month translates to $600/year that&#39;s wasted on ridiculously high transfer fees. <br/><br/>PayPal isn’t any better. When receiving funds outside the US, a 4.4% withdrawal fee applies, too.<br/><br/><b>Moving to the Philippines? </b></span><br/>
<span style="font-size: large;"><b><br/></b>You may be ahead of the game when it comes to outsourcing to the Philippines. If you already have an organization there, you may be heading there to manage the team.<br/><br/>If you’re about to move to the Philippines, you’ll have to move assets abroad to avoid double taxation. <br/><br/>Let’s assume you’re moving $30,000 to BDO Bank in Manila. <br/><br/>When setting up the transfer, Wells Fargo will offer what they say is a “reasonable” rate. Usually, their USD/PHP price will be 2% off interbank – in this case, it would be 49.7697. This means you’ll end up with Php 1,493,090. <br/><br/>So, great news for you, right?<br/><br/>Not really. It&#39;d be better if you could trade at the interbank rate. If you moved your assets at USD/PHP price of 50.7894, you’d get Php 1,523,680.<br/><br/>That&#39;s a difference of P30,000 or $600 – and imagine what better things you could do with this amount of money, instead of paying your bank just to click some buttons and maybe type a little bit on their keyboards.  <br/><br/>Don&#39;t lose hope just yet, though. Times are changing. Companies such as Transferwise, and Currencies Direct can get you far closer to interbank than you ever thought possible.<br/><br/><b>Which money transfer firms are best for moving cash to the Philippines?</b></span><br/>
<span style="font-size: large;"><b><br/></b>According to InternationalMoneyTransfers.org, Transferwise is the best choice for small transfers. They charge the interbank rate for cash shipments of ANY size. To make money, they charge a nominal fee on transfer amounts. <br/><br/>For example, to send $300, you just need to pay an extra $4.50 (1.5% of the transfer amount). Shelling out $304.50 compared to $350 is a much better deal for you, don&#39;t you think? <br/><br/>What about if you’re moving funds to the Philippines? <br/><br/>Then, a firm like OFX is well-recommended. This company has decades of experience working with businesses, traders, and high net-worth individuals. </span></div>
</div>
<script type="text/javascript">createSummaryAndThumb("summary5191097675737768960","http://www.thewiseliving.com/2020/01/cheapest-ways-to-transfer-money-from.html");</script>
<div class="pbtsharethisbutt">
Share: <a href="https://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.thewiseliving.com/2020/01/cheapest-ways-to-transfer-money-from.html&amp;t=Cheapest Ways to Transfer Money from the Philippines and from Overseas to Philippines" onclick="window.open(this.href,&#34;sharer&#34;,&#34;toolbar=0,status=0,width=626,height=436&#34;); return false;" rel="nofollow" target="_blank" title="Share this on Facebook"><i class="fa fa-facebook"></i></a><a href="https://twitter.com/home?status=Cheapest Ways to Transfer Money from the Philippines and from Overseas to Philippines -- http://www.thewiseliving.com/2020/01/cheapest-ways-to-transfer-money-from.html" rel="nofollow" target="_blank" title="Tweet This!"><i class="fa fa-twitter"></i></a><a href="https://plus.google.com/share?url=http://www.thewiseliving.com/2020/01/cheapest-ways-to-transfer-money-from.html" onclick="javascript:window.open(this.href,   &#34;&#34;, &#34;menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600&#34;);return false;" rel="nofollow" target="_blank" title="Share this on Google+"><i class="fa fa-google-plus"></i></a><a href="https://www.linkedin.com/shareArticle?mini=true&amp;title=Cheapest Ways to Transfer Money from the Philippines and from Overseas to Philippines&amp;url=http://www.thewiseliving.com/2020/01/cheapest-ways-to-transfer-money-from.html" rel="nofollow" target="_blank" title="Share this on Linkedin"><i class="fa fa-linkedin"></i></a>
</div>
<div style="float:right;padding-right:0;margin-top:10px;">
<a class="readmorenbt" href="http://www.thewiseliving.com/2020/01/cheapest-ways-to-transfer-money-from.html">Read More</a>
</div>
<div style="clear: both;"></div>
</div>
</article>
<div style="clear: both;"></div>
</div>

          </div></div>
        

          <div class="date-outer">
        

          <div class="date-posts">
        
<div class="post-outer">
<article class="post hentry">
<meta content="https://4.bp.blogspot.com/-_oE46cPtvF8/WqXqd_Xnk8I/AAAAAAAAFko/-hUDydBM9Nooo7owNsUVRLmp3Rcb3bLuwCLcBGAs/s640/cheap%2Bflights%2Bto%2Bparis.PNG" itemprop="image"/>
<a name="2735803038887007303"></a>
<header class="entry-header">
<h1 class="post-title entry-title" itemprop="headline">
<a href="http://www.thewiseliving.com/2018/03/5-reasons-why-im-saving-up-for-paris.html">5 Reasons Why I&#39;m Saving Up For Paris Next Year </a>
</h1>
<div class="entry-metanbt">
<span class="post-author vcard"><i class="fa fa-user"></i> <span class="fn" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"><span itemprop="name">Lianne</span></span></span>   
<i class="fa fa-calendar"></i> <meta content="http://www.thewiseliving.com/2018/03/5-reasons-why-im-saving-up-for-paris.html" itemprop="url"/><a class="timestamp-link" href="http://www.thewiseliving.com/2018/03/5-reasons-why-im-saving-up-for-paris.html" rel="bookmark" title="permanent link"><span class="published updated" itemprop="datePublished" title="2018-03-11T16:49:00+08:00">Sunday, March 11, 2018</span></a>   
<i class="fa fa-folder-open"></i> <a href="http://www.thewiseliving.com/search/label/Travel%20%26%20Events" rel="tag">Travel &amp; Events</a>   
<span class="item-control blog-admin pid-248285059">
<a href="https://www.blogger.com/post-edit.g?blogID=201243307485764502&amp;postID=2735803038887007303&amp;from=pencil" title="Edit Post">
<img alt="" class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18"/>
</a>
</span>
</div>
</header>
<div class="post-header-line-1"></div>
<div class="post-body entry-content" id="post-body-2735803038887007303">
<div id="summary2735803038887007303"><div dir="ltr" style="text-align: left;" trbidi="on">
<div style="text-align: justify;">
<span style="font-family: Verdana, sans-serif;">In the past, I treated Paris like a standard item that needs to be checked in my <b><a href="https://livefreewithlianne.com/about/freedom-list/" target="_blank">(not-so) bucket list</a></b> just so I could say I truly lived. </span></div>
<div style="text-align: justify;">
<i><span style="font-family: Verdana, sans-serif;"><br/></span></i></div>
<div style="text-align: justify;">
<span style="font-family: Verdana, sans-serif;"><i>Everyone </i>says you <i>need </i>to go to Europe. </span></div>
<div style="text-align: justify;">
<span style="font-family: Verdana, sans-serif;"><br/></span></div>
<div style="text-align: justify;">
<span style="font-family: Verdana, sans-serif;"><i>All </i>the movies I&#39;ve watched romanticized the idea of Paris, the fashion, the culture, the people - the food! </span></div>
<div style="text-align: justify;">
<span style="font-family: Verdana, sans-serif;"><br/></span></div>
<div style="text-align: justify;">
<span style="font-family: Verdana, sans-serif;">Ask <i>every millenial </i>where they&#39;d want to go to, if they had a chance, and there&#39;s a 75.99% possibility that they&#39;d include Paris in that list. </span></div>
<div style="text-align: justify;">
<span style="font-family: Verdana, sans-serif;"><br/></span></div>
<div style="text-align: justify;">
<span style="font-family: Verdana, sans-serif;"><br/></span></div>
<div style="text-align: justify;">
<span style="font-family: Verdana, sans-serif;"></span></div></div></div>
<script type="text/javascript">createSummaryAndThumb("summary2735803038887007303","http://www.thewiseliving.com/2018/03/5-reasons-why-im-saving-up-for-paris.html");</script>
<div class="pbtsharethisbutt">
Share: <a href="https://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.thewiseliving.com/2018/03/5-reasons-why-im-saving-up-for-paris.html&amp;t=5 Reasons Why I&#39;m Saving Up For Paris Next Year " onclick="window.open(this.href,&#34;sharer&#34;,&#34;toolbar=0,status=0,width=626,height=436&#34;); return false;" rel="nofollow" target="_blank" title="Share this on Facebook"><i class="fa fa-facebook"></i></a><a href="https://twitter.com/home?status=5 Reasons Why I&#39;m Saving Up For Paris Next Year  -- http://www.thewiseliving.com/2018/03/5-reasons-why-im-saving-up-for-paris.html" rel="nofollow" target="_blank" title="Tweet This!"><i class="fa fa-twitter"></i></a><a href="https://plus.google.com/share?url=http://www.thewiseliving.com/2018/03/5-reasons-why-im-saving-up-for-paris.html" onclick="javascript:window.open(this.href,   &#34;&#34;, &#34;menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600&#34;);return false;" rel="nofollow" target="_blank" title="Share this on Google+"><i class="fa fa-google-plus"></i></a><a class="social-iconnbt" href="https://pinterest.com/pin/create/button/?source_url=&amp;media=https://4.bp.blogspot.com/-_oE46cPtvF8/WqXqd_Xnk8I/AAAAAAAAFko/-hUDydBM9Nooo7owNsUVRLmp3Rcb3bLuwCLcBGAs/s640/cheap%2Bflights%2Bto%2Bparis.PNG&amp;description=5 Reasons Why I&#39;m Saving Up For Paris Next Year " rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a><a href="https://www.linkedin.com/shareArticle?mini=true&amp;title=5 Reasons Why I&#39;m Saving Up For Paris Next Year &amp;url=http://www.thewiseliving.com/2018/03/5-reasons-why-im-saving-up-for-paris.html" rel="nofollow" target="_blank" title="Share this on Linkedin"><i class="fa fa-linkedin"></i></a>
</div>
<div style="float:right;padding-right:0;margin-top:10px;">
<a class="readmorenbt" href="http://www.thewiseliving.com/2018/03/5-reasons-why-im-saving-up-for-paris.html">Read More</a>
</div>
<div style="clear: both;"></div>
</div>
</article>
<div style="clear: both;"></div>
</div>

          </div></div>
        

          <div class="date-outer">
        

          <div class="date-posts">
        
<div class="post-outer">
<article class="post hentry">
<meta content="https://2.bp.blogspot.com/-nF6YWedUH5k/WaT0Z71pksI/AAAAAAAAFSk/rXsUz7ylax4Gley3FROBd9MB5ZACrPwswCLcBGAs/s640/For%2BMillenials%2B26%2BWays%2Bto%2BSave%2BMore%2BMoney%2BToday.jpg" itemprop="image"/>
<a name="3329029273286624376"></a>
<header class="entry-header">
<h1 class="post-title entry-title" itemprop="headline">
<a href="http://www.thewiseliving.com/2017/07/15-unexpected-ways-to-save-more-money.html">15 Unexpected Ways to Save More Money Today </a>
</h1>
<div class="entry-metanbt">
<span class="post-author vcard"><i class="fa fa-user"></i> <span class="fn" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"><span itemprop="name">Lianne</span></span></span>   
<i class="fa fa-calendar"></i> <meta content="http://www.thewiseliving.com/2017/07/15-unexpected-ways-to-save-more-money.html" itemprop="url"/><a class="timestamp-link" href="http://www.thewiseliving.com/2017/07/15-unexpected-ways-to-save-more-money.html" rel="bookmark" title="permanent link"><span class="published updated" itemprop="datePublished" title="2017-12-01T09:22:00+08:00">Friday, December 01, 2017</span></a>   
<i class="fa fa-folder-open"></i> <a href="http://www.thewiseliving.com/search/label/Personal%20Finance" rel="tag">Personal Finance</a>   
<span class="item-control blog-admin pid-248285059">
<a href="https://www.blogger.com/post-edit.g?blogID=201243307485764502&amp;postID=3329029273286624376&amp;from=pencil" title="Edit Post">
<img alt="" class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18"/>
</a>
</span>
</div>
</header>
<div class="post-header-line-1"></div>
<div class="post-body entry-content" id="post-body-3329029273286624376">
<div id="summary3329029273286624376"><div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on">
<div style="text-align: justify;">
<span style="color: salmon; font-family: inherit; font-size: x-large;"><b><i>Save your money. One day, it&#39;ll save you.  </i></b></span></div>
<div style="text-align: justify;">
<span style="font-family: inherit;"><br/></span></div>
<div style="text-align: justify;">
<span style="font-family: inherit;">Tired of personal finance tips that advise you to save money, without actually telling you <i>how </i>to save money in the first place?</span><br/>
<span style="font-family: inherit;"><br/></span>
<br/>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://2.bp.blogspot.com/-nF6YWedUH5k/WaT0Z71pksI/AAAAAAAAFSk/rXsUz7ylax4Gley3FROBd9MB5ZACrPwswCLcBGAs/s1600/For%2BMillenials%2B26%2BWays%2Bto%2BSave%2BMore%2BMoney%2BToday.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><span style="font-family: inherit;"><img border="0" data-original-height="1190" data-original-width="1600" height="474" src="https://2.bp.blogspot.com/-nF6YWedUH5k/WaT0Z71pksI/AAAAAAAAFSk/rXsUz7ylax4Gley3FROBd9MB5ZACrPwswCLcBGAs/s640/For%2BMillenials%2B26%2BWays%2Bto%2BSave%2BMore%2BMoney%2BToday.jpg" width="640"/></span></a></div>
<span style="font-family: inherit;"><br/></span>
<span style="font-family: inherit;"><br/></span>
<span style="font-family: inherit;">In this short but packed blog post, we talk about 15 ways on how you, my fellow millenial, can save more money, starting today:</span><br/>
<div class="separator" style="clear: both; text-align: center;">
</div>
<span style="font-family: inherit;"><br/></span></div>
<div style="text-align: justify;">
<div class="separator" style="clear: both; text-align: center;">
<span style="font-family: inherit;"></span></div>
</div></div></div></div></div></div></div></div></div></div></div></div></div></div>
<script type="text/javascript">createSummaryAndThumb("summary3329029273286624376","http://www.thewiseliving.com/2017/07/15-unexpected-ways-to-save-more-money.html");</script>
<div class="pbtsharethisbutt">
Share: <a href="https://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.thewiseliving.com/2017/07/15-unexpected-ways-to-save-more-money.html&amp;t=15 Unexpected Ways to Save More Money Today " onclick="window.open(this.href,&#34;sharer&#34;,&#34;toolbar=0,status=0,width=626,height=436&#34;); return false;" rel="nofollow" target="_blank" title="Share this on Facebook"><i class="fa fa-facebook"></i></a><a href="https://twitter.com/home?status=15 Unexpected Ways to Save More Money Today  -- http://www.thewiseliving.com/2017/07/15-unexpected-ways-to-save-more-money.html" rel="nofollow" target="_blank" title="Tweet This!"><i class="fa fa-twitter"></i></a><a href="https://plus.google.com/share?url=http://www.thewiseliving.com/2017/07/15-unexpected-ways-to-save-more-money.html" onclick="javascript:window.open(this.href,   &#34;&#34;, &#34;menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600&#34;);return false;" rel="nofollow" target="_blank" title="Share this on Google+"><i class="fa fa-google-plus"></i></a><a class="social-iconnbt" href="https://pinterest.com/pin/create/button/?source_url=&amp;media=https://2.bp.blogspot.com/-nF6YWedUH5k/WaT0Z71pksI/AAAAAAAAFSk/rXsUz7ylax4Gley3FROBd9MB5ZACrPwswCLcBGAs/s640/For%2BMillenials%2B26%2BWays%2Bto%2BSave%2BMore%2BMoney%2BToday.jpg&amp;description=15 Unexpected Ways to Save More Money Today " rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a><a href="https://www.linkedin.com/shareArticle?mini=true&amp;title=15 Unexpected Ways to Save More Money Today &amp;url=http://www.thewiseliving.com/2017/07/15-unexpected-ways-to-save-more-money.html" rel="nofollow" target="_blank" title="Share this on Linkedin"><i class="fa fa-linkedin"></i></a>
</div>
<div style="float:right;padding-right:0;margin-top:10px;">
<a class="readmorenbt" href="http://www.thewiseliving.com/2017/07/15-unexpected-ways-to-save-more-money.html">Read More</a>
</div>
<div style="clear: both;"></div>
</div>
</article>
<div style="clear: both;"></div>
</div>

          </div></div>
        

          <div class="date-outer">
        

          <div class="date-posts">
        
<div class="post-outer">
<article class="post hentry">
<meta content="https://2.bp.blogspot.com/-JmHWBN-0EeM/Wb4xIbOi2CI/AAAAAAAAFUg/KeiDSoc3HrE-rbBBbbOc_pMAxq3YZ_7ZACLcBGAs/s640/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" itemprop="image"/>
<a name="4826733348692954909"></a>
<header class="entry-header">
<h1 class="post-title entry-title" itemprop="headline">
<a href="http://www.thewiseliving.com/2017/09/how-to-be-financial-advisor-5-reasons.html">How To Be A Financial Advisor: 5 Reasons Why Being A Financial Advisor is Perfect For You</a>
</h1>
<div class="entry-metanbt">
<span class="post-author vcard"><i class="fa fa-user"></i> <span class="fn" itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"><span itemprop="name">Lianne</span></span></span>   
<i class="fa fa-calendar"></i> <meta content="http://www.thewiseliving.com/2017/09/how-to-be-financial-advisor-5-reasons.html" itemprop="url"/><a class="timestamp-link" href="http://www.thewiseliving.com/2017/09/how-to-be-financial-advisor-5-reasons.html" rel="bookmark" title="permanent link"><span class="published updated" itemprop="datePublished" title="2017-09-10T16:30:00+08:00">Sunday, September 10, 2017</span></a>   
<i class="fa fa-folder-open"></i> <a href="http://www.thewiseliving.com/search/label/Personal%20Finance" rel="tag">Personal Finance</a>, <a href="http://www.thewiseliving.com/search/label/Sun%20Life%20Awards" rel="tag">Sun Life Awards</a>   
<span class="item-control blog-admin pid-248285059">
<a href="https://www.blogger.com/post-edit.g?blogID=201243307485764502&amp;postID=4826733348692954909&amp;from=pencil" title="Edit Post">
<img alt="" class="icon-action" height="18" src="https://resources.blogblog.com/img/icon18_edit_allbkg.gif" width="18"/>
</a>
</span>
</div>
</header>
<div class="post-header-line-1"></div>
<div class="post-body entry-content" id="post-body-4826733348692954909">
<div id="summary4826733348692954909"><div dir="ltr" style="text-align: left;" trbidi="on">
<h3 style="background-color: white; color: #484f5e; font-size: 24px; line-height: 1.1; margin: 0px 0px 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">A few years ago, I never thought I’d become a financial advisor.</span></h3>
<div style="background-color: white; color: #5c5c5c; font-size: 13px; line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">I’m an introvert with no experience in sales – how could I join this career?</span></div>
<div style="background-color: white; color: #5c5c5c; font-size: 13px; line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">But then last 2012, something devastating happened to our family. My <em style="margin: 0px; outline: none; padding: 0px;">lolo </em>suffered his 2nd heart attack and still insisted to be taken to a public hospital far away from our house just because he didn’t want us to spend a lot of money.</span></div>
<div style="background-color: white; color: #5c5c5c; font-size: 13px; line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">And even though I was already working and earning money, I didn’t have the confidence to tell him, <em style="margin: 0px; outline: none; padding: 0px;">“Ok lang yan, ako na po bahala magbayad…” </em>because even though I had an income, I didn’t manage it properly so I didn’t have any savings of my own!</span><br/>
<span style="font-family: inherit;"><span style="font-family: &#34;georgia&#34; , &#34;times new roman&#34; , serif;"><br/></span>
<span style="font-family: &#34;georgia&#34; , &#34;times new roman&#34; , serif;"><a href="https://2.bp.blogspot.com/-JmHWBN-0EeM/Wb4xIbOi2CI/AAAAAAAAFUg/KeiDSoc3HrE-rbBBbbOc_pMAxq3YZ_7ZACLcBGAs/s1600/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em; text-align: center;"><span style="font-family: &#34;georgia&#34; , &#34;times new roman&#34; , serif;"><img border="0" data-original-height="269" data-original-width="520" height="330" src="https://2.bp.blogspot.com/-JmHWBN-0EeM/Wb4xIbOi2CI/AAAAAAAAFUg/KeiDSoc3HrE-rbBBbbOc_pMAxq3YZ_7ZACLcBGAs/s640/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" width="640"/></span></a></span></span></div>
<div style="background-color: white; color: #5c5c5c; font-size: 13px; line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">It wasn’t until my lolo <em style="margin: 0px; outline: none; padding: 0px;">Tatang </em>passed away that I realize something: I <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">wanted </span>to be a financial advisor because I’m passionate to <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">share my story </span>to other Filipinos. It was a heart-breaking experience. I don’t want you to experience the same thing.</span></div>
<div style="background-color: white; color: #5c5c5c; font-size: 13px; line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">Now, if YOU desire to teach Filipinos about:</span></div>
<ul style="background-color: white; color: #5c5c5c; font-size: 13px; margin: 0px 0px 1.5em; outline: none; padding: 0px;">
<li style="margin: 0px 0px 0px 1.5em; outline: none; padding: 0px;"><span style="font-family: inherit;"> How to <b>manage their money properly</b> – so when they encounter an emergency, they have funds to use for it,</span></li>
<li style="margin: 0px 0px 0px 1.5em; outline: none; padding: 0px;"><span style="font-family: inherit;"> How to <b>protect their income </b>– so that whatever happens to the breadwinner, their family is taken cared of financially,</span></li>
<li style="margin: 0px 0px 0px 1.5em; outline: none; padding: 0px;"><span style="font-family: inherit;"> How to <b>achieve a comfortable retirement</b> – so when they finally stop working, they can enjoy their “golden years”,</span></li>
<li style="margin: 0px 0px 0px 1.5em; outline: none; padding: 0px;"><span style="font-family: inherit;"> How to <b>start investing their hard-earned money</b>, so they can get <b>higher returns than banks…</b></span></li>
</ul>
<div style="background-color: white; color: #5c5c5c; font-size: 13px; line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">Then YOU may also be interested about how to be a financial advisor, don’t you think?</span><br/>
<span style="font-family: inherit;"><span style="font-family: &#34;georgia&#34; , &#34;times new roman&#34; , serif;"><br/></span>
</span><br/>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/-YEwqe56eyHM/Wb4zAJ7-yQI/AAAAAAAAFU0/xbr9oj_KPMwnqDOOxtl-qpizYvpfGqTVACLcBGAs/s1600/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><span style="font-family: inherit;"><img border="0" data-original-height="1024" data-original-width="858" height="640" src="https://1.bp.blogspot.com/-YEwqe56eyHM/Wb4zAJ7-yQI/AAAAAAAAFU0/xbr9oj_KPMwnqDOOxtl-qpizYvpfGqTVACLcBGAs/s640/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" width="536"/></span></a></div>
<span style="font-family: inherit;"><br/></span>
<div class="separator" style="clear: both; text-align: center;">
<span style="font-family: inherit;"><br/></span></div>
<span style="font-family: inherit;"><span style="font-weight: 700;">Ready to be a financial advisor and change people’s lives for the better? Email me your updated CV/resume at <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="a7cbcec6c9c9c2cac6d5d3cfc6cacbc6d5c8dec6e7c0cac6cecb89c4c8ca">[email&#160;protected]</a> or add me on Facebook at </span><a href="https://www.facebook.com/LianneMarthaLaroya" style="background-color: transparent; color: salmon; font-weight: 700; margin: 0px; outline: none; padding: 0px;">https://www.facebook.com/LianneMarthaLaroya</a><span style="font-weight: 700;"> today.</span></span><br/>
<span style="font-family: inherit;"><span style="font-weight: 700;"><span style="font-family: &#34;georgia&#34; , &#34;times new roman&#34; , serif;"><br/></span></span>
</span><br/>
<h3 style="color: #484f5e; font-size: 24px; line-height: 1.1; margin: 0px 0px 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">5 Reasons Why You Should Be A Financial Advisor</span></h3>
<h4 style="color: #484f5e; font-size: 20px; font-weight: 400; line-height: 1.1; margin: 0px 0px 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">1. You want <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">Time Freedom</span>.</span></h4>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">You’ll work, yes, but you can also <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">enjoy more time with your families. </span></span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">When you become a financial advisor, you DON’T need to go to the office from 8 am – 5 pm. You work at your own time.</span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">Have children you’d love to spend more time bonding with? Wouldn’t it be nice if you can make them breakfast <em style="margin: 0px; outline: none; padding: 0px;">and </em>help them with their homework, too? You can do this when you become a financial advisor.</span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">My friend who’s a single mother and also an amazing financial advisor works from 7 am – 2 pm only. She gets to help Filipino families improve their financial lives <em style="margin: 0px; outline: none; padding: 0px;">and she still has time to </em>pick up her son from school everyday.</span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">Have aging parents you’d love to take care of? Or do you have a spouse/life partner you’d love to enjoy life with together more?</span></div>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://4.bp.blogspot.com/-RgBVA0gJT2c/Wb4xiWY2Q8I/AAAAAAAAFUk/cyanr6XaXx4AKcgyEdB69nMUZptHu_GQACLcBGAs/s1600/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><span style="font-family: inherit;"><img border="0" data-original-height="1024" data-original-width="693" height="640" src="https://4.bp.blogspot.com/-RgBVA0gJT2c/Wb4xiWY2Q8I/AAAAAAAAFUk/cyanr6XaXx4AKcgyEdB69nMUZptHu_GQACLcBGAs/s640/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" width="432"/></span></a></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;"><br/></span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">What if you want to go to Japan for your honeymoon? Or you want to go to South Korea to celebrate your father’s 60th birthday? You <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">don’t need to file for leaves. </span>Just manage your own working time properly. Whether you work from 6 am – 12 noon, or 3 pm – 9 pm, or 8 am – 1 pm or whatever other working schedule you’d like, <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">it’s all up to you. </span></span></div>
<h4 style="color: #484f5e; font-size: 20px; font-weight: 400; line-height: 1.1; margin: 0px 0px 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">2. You want <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">Location Freedom</span>.</span></h4>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">When you become a financial advisor, it’s like a mini-adventure everyday. One day, you may be meeting your clients at a coffee shop in Ortigas City. The next day, you may be meeting clients at their offices all throughout BGC Taguig City. Or maybe next week you’ll meet your client at their home based in Laguna. Or what if next week you choose not to work for three days? It’s all possible.</span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">You can <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">dictate where you want to work. </span></span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">Just last June, my family and I went to Tagaytay to have a staycation for my birthday. At the same time, I met with two of my clients based in Tagaytay so I can service them personally. That’s working hard <em style="margin: 0px; outline: none; padding: 0px;">and </em>playing hard – at your own time and at your chosen place!</span></div>
<h4 style="color: #484f5e; font-size: 20px; font-weight: 400; line-height: 1.1; margin: 0px 0px 20px; outline: none; padding: 0px;">
</h4>
<h4 style="color: #484f5e; font-size: 20px; font-weight: 400; line-height: 1.1; margin: 0px 0px 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">3. You want to <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">improve the lives of your family and friends. </span></span></h4>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">Aside from choosing when to work and where to work, I’m sure you’re interested to be a financial advisor because you want to secure a better and brighter future for your family, your relatives and of course, your friends, right?</span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">As a financial advisor, <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">you can make a positive difference </span>in the lives of your friends and families.</span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">After all, you’re teaching them to how <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">secure their income</span> and <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">invest their hard-earned money</span> <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">for college fund of their kids or for their own retirement fund</span> in the future! You’re there to help them and their families, in sickness, in disabilities and even during, God forbid, death.</span></div>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/--oAGngMYnes/Wb4x6IQUQYI/AAAAAAAAFUo/hsa82P65nk4oZqbyMgRGbfZMAaYFL9_lQCLcBGAs/s1600/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><span style="font-family: inherit;"><img border="0" data-original-height="239" data-original-width="497" height="306" src="https://1.bp.blogspot.com/--oAGngMYnes/Wb4x6IQUQYI/AAAAAAAAFUo/hsa82P65nk4oZqbyMgRGbfZMAaYFL9_lQCLcBGAs/s640/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" width="640"/></span></a></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;"><br/></span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">Being a financial advisor is a career that you can be proud of. Through this, you get to give practical and doable financial advice that your clients can use to manage their income properly.</span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">You get to help families <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">achieve the brighter life that they desire</span> – it’s a <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">noble profession! </span></span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;"><span style="font-family: inherit;">Ready to be a financial advisor and change people’s lives for the better? Email me your updated CV/resume at <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="6c00050d020209010d1e18040d01000d1e03150d2c0b010d0500420f0301">[email&#160;protected]</a> or add me on Facebook at <a href="https://www.facebook.com/LianneMarthaLaroya" style="background-color: transparent; color: salmon; margin: 0px; outline: none; padding: 0px; text-decoration-line: none;">https://www.facebook.com/LianneMarthaLaroya</a> today. </span></span></div>
<h4 style="color: #484f5e; font-size: 20px; font-weight: 400; line-height: 1.1; margin: 0px 0px 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">4. You want <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">unlimited income.</span></span></h4>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">When you become a financial advisor and join my team, you <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">write your own pay check.</span> There is<span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;"> no limit</span> on how much you can earn because you’ll receive fair compensation for all your hard work – and only <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">you can dictate how much money you’ll receive</span> in your bank account every 15 days.</span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">Because of Sun Life, being a financial advisor helps me send my brother to college, purchase multiple lands in our province, start several life insurance and investment accounts, buy my first car (this 2017!) and travel to local and overseas destinations with my loved ones.</span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;"><br/></span></div>
<h4 style="color: #484f5e; font-size: 20px; font-weight: 400; line-height: 1.1; margin: 0px 0px 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">5. You love getting <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">awards </span>and being <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">recognized for your hard work</span><span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">.</span></span></h4>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">If you’re driven to succeed and you’re passionate in receiving recognition for all the meaningful work that you do, then you deserve to be a financial advisor.</span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<div class="separator" style="clear: both; text-align: center;">
<a href="https://2.bp.blogspot.com/-yZCeKym3Nsk/Wb4yRxP515I/AAAAAAAAFUs/bMFvI8tQHLQk5b3U1iEW4PgDvfyrj7NuwCLcBGAs/s1600/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><span style="font-family: inherit;"><img border="0" data-original-height="741" data-original-width="539" height="640" src="https://2.bp.blogspot.com/-yZCeKym3Nsk/Wb4yRxP515I/AAAAAAAAFUs/bMFvI8tQHLQk5b3U1iEW4PgDvfyrj7NuwCLcBGAs/s640/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" width="464"/></span></a></div>
<span style="font-family: inherit;"><br/></span></div>
<h4 style="color: #484f5e; font-size: 20px; font-weight: 400; line-height: 1.1; margin: 0px 0px 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">BONUS:</span></h4>
<ul style="margin: 0px 0px 1.5em; outline: none; padding: 0px;">
<li style="margin: 0px 0px 0px 1.5em; outline: none; padding: 0px;"><span style="font-family: inherit;">Since Sun Life is committed to helping you become the best financial advisor you could be, you can attend Sun Life’s <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">free training sessions</span> regularly – you’re learning and earning at the same time.</span></li>
</ul>
<div>
<span style="font-family: inherit;"><br/></span></div>
<ul style="margin: 0px 0px 1.5em; outline: none; padding: 0px;">
<li style="margin: 0px 0px 0px 1.5em; outline: none; padding: 0px;"><span style="font-family: inherit;">Additionally, if you become a financial advisor and join my team, Sun Life provides you with a <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">Retirement Plan</span> that you can enjoy when you reach your <em style="margin: 0px; outline: none; padding: 0px;">own </em>golden years!</span></li>
</ul>
<div>
<span style="font-family: inherit;"><br/></span></div>
<ul style="margin: 0px 0px 1.5em; outline: none; padding: 0px;">
<li style="margin: 0px 0px 0px 1.5em; outline: none; padding: 0px;"><span style="font-family: inherit;">Love travel? As a Sun Life financial advisor, you have the privilege to receive <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">travel incentives locally and abroad. </span></span></li>
</ul>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://1.bp.blogspot.com/-i46QrfW8--U/Wb4yjD9DTPI/AAAAAAAAFUw/oxFYUkvlFoUKwwhjD2QPsKM1cj-f_HnAACLcBGAs/s1600/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><span style="font-family: inherit;"><img border="0" data-original-height="591" data-original-width="371" height="640" src="https://1.bp.blogspot.com/-i46QrfW8--U/Wb4yjD9DTPI/AAAAAAAAFUw/oxFYUkvlFoUKwwhjD2QPsKM1cj-f_HnAACLcBGAs/s640/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" width="400"/></span></a></div>
<div>
<span style="font-family: inherit;"><b><br/></b></span></div>
<div>
<span style="font-family: inherit;"><b><br/></b></span></div>
<h4 style="color: #484f5e; font-size: 20px; line-height: 1.1; margin: 0px 0px 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">How to Be a Financial Advisor:</span></h4>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;">It’s simple. You just need to <span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">email me your updated resume/CV: </span></span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;"><span style="font-family: inherit;">To: <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="8ee2e7efe0e0ebe3effcfae6efe3e2effce1f7efcee9e3efe7e2a0ede1e3">[email&#160;protected]</a>, <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="472b2e262929222a2635332f26692a692b2635283e26073432292b2e21226924282a69372f">[email&#160;protected]</a></span></span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;"><span style="font-family: inherit;">Subject: Lianne, I want to join your team! </span></span></div>
<div style="line-height: 20px; margin-bottom: 20px; outline: none; padding: 0px;">
<span style="font-family: inherit;"><span style="font-family: georgia, &#34;times new roman&#34;, serif;">After you email me your CV/resume, I’ll contact you and we’ll talk about why you want to be a financial advisor. </span><span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">You can also call me at 0906-243-5059. </span><span style="font-family: georgia, &#34;times new roman&#34;, serif;">And then you can </span><span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;">start training online: </span></span><br/>
<span style="font-family: inherit;"><span style="font-weight: 700; margin: 0px; outline: none; padding: 0px;"><br/></span>
</span><br/>
<div class="separator" style="clear: both; text-align: center;">
<a href="https://3.bp.blogspot.com/-il_O7BMzPlM/Wb4zN9eQQjI/AAAAAAAAFU4/zWlbZxiIPswb3F6ZDVo-FNrMT37izcrxQCLcBGAs/s1600/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><span style="font-family: inherit;"><img border="0" data-original-height="757" data-original-width="1013" height="478" src="https://3.bp.blogspot.com/-il_O7BMzPlM/Wb4zN9eQQjI/AAAAAAAAFU4/zWlbZxiIPswb3F6ZDVo-FNrMT37izcrxQCLcBGAs/s640/be%2Ba%2Bsun%2Blife%2Badvisor.jpg" width="640"/></span></a></div>
<span style="font-family: &#34;georgia&#34; , &#34;times new roman&#34; , serif; font-weight: 700; margin: 0px; outline: none; padding: 0px;"><br/></span></div>
</div>
</div>
</div>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="text/javascript">createSummaryAndThumb("summary4826733348692954909","http://www.thewiseliving.com/2017/09/how-to-be-financial-advisor-5-reasons.html");</script>
<div class="pbtsharethisbutt">
Share: <a href="https://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.thewiseliving.com/2017/09/how-to-be-financial-advisor-5-reasons.html&amp;t=How To Be A Financial Advisor: 5 Reasons Why Being A Financial Advisor is Perfect For You" onclick="window.open(this.href,&#34;sharer&#34;,&#34;toolbar=0,status=0,width=626,height=436&#34;); return false;" rel="nofollow" target="_blank" title="Share this on Facebook"><i class="fa fa-facebook"></i></a><a href="https://twitter.com/home?status=How To Be A Financial Advisor: 5 Reasons Why Being A Financial Advisor is Perfect For You -- http://www.thewiseliving.com/2017/09/how-to-be-financial-advisor-5-reasons.html" rel="nofollow" target="_blank" title="Tweet This!"><i class="fa fa-twitter"></i></a><a href="https://plus.google.com/share?url=http://www.thewiseliving.com/2017/09/how-to-be-financial-advisor-5-reasons.html" onclick="javascript:window.open(this.href,   &#34;&#34;, &#34;menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600&#34;);return false;" rel="nofollow" target="_blank" title="Share this on Google+"><i class="fa fa-google-plus"></i></a><a class="social-iconnbt" href="https://pinterest.com/pin/create/button/?source_url=&amp;media=https://2.bp.blogspot.com/-JmHWBN-0EeM/Wb4xIbOi2CI/AAAAAAAAFUg/KeiDSoc3HrE-rbBBbbOc_pMAxq3YZ_7ZACLcBGAs/s640/be%2Ba%2Bsun%2Blife%2Badvisor.jpg&amp;description=How To Be A Financial Advisor: 5 Reasons Why Being A Financial Advisor is Perfect For You" rel="nofollow" target="_blank" title="Share on Pinterest"><i class="fa fa-pinterest"></i></a><a href="https://www.linkedin.com/shareArticle?mini=true&amp;title=How To Be A Financial Advisor: 5 Reasons Why Being A Financial Advisor is Perfect For You&amp;url=http://www.thewiseliving.com/2017/09/how-to-be-financial-advisor-5-reasons.html" rel="nofollow" target="_blank" title="Share this on Linkedin"><i class="fa fa-linkedin"></i></a>
</div>
<div style="float:right;padding-right:0;margin-top:10px;">
<a class="readmorenbt" href="http://www.thewiseliving.com/2017/09/how-to-be-financial-advisor-5-reasons.html">Read More</a>
</div>
<div style="clear: both;"></div>
</div>
</article>
<div style="clear: both;"></div>
</div>

        </div></div>
      
</div>
<div style="clear: both;"></div>
<div class="blog-pager" id="blog-pager">
<span id="blog-pager-older-link">
<a class="blog-pager-older-link" href="http://www.thewiseliving.com/search?updated-max=2017-09-10T16:30:00%2B08:00&amp;max-results=8" id="Blog1_blog-pager-older-link" title="Older Posts">Older Posts →</a>
</span>
<a class="home-link" href="http://www.thewiseliving.com/">Home</a>
</div>
<div class="clear"></div>
</div></div>
</div>
<div class="rightnbt" id="sidebar-containernbt">
<div id="sidebarnbt">
<div class="widget widget_searchnbt">
<form action="/search" class="search-formnbt" method="get" role="search">
<label>
<span class="screen-reader-text">Search for:</span>
<input class="search-fieldnbt" name="q" placeholder="Search..." type="search" value=""/>
</label>
<input class="search-submitnbt" type="submit" value="Search"/>
</form>
</div>
<div class="sidebarwidgetsarea section" id="sidebarwidgetsarea" name="Sidebar"><div class="widget PageList" data-version="1" id="PageList1">
<div class="widget-content">
<ul>
<li>
<a href="http://www.thewiseliving.com/p/privacy-policy.html">PRIVACY POLICY</a>
</li>
</ul>
<div class="clear"></div>
</div>
</div><div class="widget Image" data-version="1" id="Image3">
<h2>Guestings: ANC on The Money</h2>
<div class="widget-content">
<img alt="Guestings: ANC on The Money" height="960" id="Image3_img" src="https://1.bp.blogspot.com/-Wc694kk2W78/WiPhj36cztI/AAAAAAAAFc0/fKW4XbFW6ZYaa_Cr79FxyuYxKpuuj4URACK4BGAYYCw/s1600/ANC%2Bon%2Bthe%2BMoney%2B-%2B2015.jpg" width="958" />
<br/>
</div>
<div class="clear"></div>
</div><div class="widget Image" data-version="1" id="Image4">
<h2>Guestings: CNN Philippines</h2>
<div class="widget-content">
<img alt="Guestings: CNN Philippines" height="854" id="Image4_img" src="https://1.bp.blogspot.com/-OkXVaPuTDes/WiPh-i9pSNI/AAAAAAAAFdA/sZY2nVyY2PEg2-c-15WCBbuyRB9LzhvVACK4BGAYYCw/s1600/CNN%2BPhilippines%2BGuest%2B-%2B2016.jpg" width="960" />
<br/>
</div>
<div class="clear"></div>
</div>
<div class="widget Label" data-version="1" id="Label1">
<h2>Search Posts Based On:</h2>
<div class="widget-content list-label-widget-content">
<ul>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/%3A%29">:)</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Beauty-Health-Fitness">Beauty-Health-Fitness</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Blog%20Giveaways">Blog Giveaways</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Charity%20%26%20Giving%20Back">Charity &amp; Giving Back</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Checklists">Checklists</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Dreams%20and%20Motivation">Dreams and Motivation</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Entertainment%20%26%20Lifestyle">Entertainment &amp; Lifestyle</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Entrepreneurship">Entrepreneurship</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Financially%20Free%20Filipino">Financially Free Filipino</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Food%20%26%20Beverages">Food &amp; Beverages</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Freelancing%20Tips">Freelancing Tips</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Lianne%27s%20Language">Lianne&#39;s Language</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Personal%20Finance">Personal Finance</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Self%20Development">Self Development</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Sun%20Life%20Awards">Sun Life Awards</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Travel%20%26%20Events">Travel &amp; Events</a>
</li>
<li>
<a dir="ltr" href="http://www.thewiseliving.com/search/label/Tutorials%20%26%20Recipes">Tutorials &amp; Recipes</a>
</li>
</ul>
<div class="clear"></div>
</div>
</div></div>
</div>
</div>
</div>
<div id="footernbt">
<div class="containernbt clearfix">
<div class="footerwidgetsarea section" id="footerwidgetsarea" name="Footer"><div class="widget HTML" data-version="1" id="HTML6">
<script type="text/javascript">
                var disqus_shortname = 'thewiseliving';
                var disqus_blogger_current_url = "http://www.thewiseliving.com/";
                if (!disqus_blogger_current_url.length) {
                    disqus_blogger_current_url = "http://www.thewiseliving.com/";
                }
                var disqus_blogger_homepage_url = "http://www.thewiseliving.com/";
                var disqus_blogger_canonical_homepage_url = "http://www.thewiseliving.com/";
            </script>
<style type="text/css">
                    .post-comment-link { visibility: hidden; }
                </style>
<script type="text/javascript">
                (function() {
                    var bloggerjs = document.createElement('script');
                    bloggerjs.type = 'text/javascript';
                    bloggerjs.async = true;
                    bloggerjs.src = 'http://'+disqus_shortname+'.disqus.com/blogger_index.js';
                    (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(bloggerjs);
                })();
                </script>
</div></div>
</div>
</div>
<div id="sub-footernbt">
<div class="containernbt">
<div class="sub-footer-left">
<!-- Do not edit or remove credits without our permission: newbloggerthemes.com -->
<p>Copyright © <script type="text/javascript">var creditsyear = new Date();document.write(creditsyear.getFullYear());</script>
<a href="http://www.thewiseliving.com/">The Wise Living</a> | Powered by <a href="https://www.blogger.com/">Blogger</a><br/>Design by <a href="https://www.iceablethemes.com/" target="_blank">Iceable Themes</a> | Blogger Theme by <a href="https://newbloggerthemes.com/" target="_blank" title="NewBloggerThemes.com">NewBloggerThemes.com</a></p>
</div>
</div>
</div>
</div>

<script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/1596290430-widgets.js"></script>
<script type="text/javascript">
window['__wavt'] = 'AOuZoY5ze8PvDTW4Cn8xqLTC-VTs2AilvQ:1643839527003';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d201243307485764502','//www.thewiseliving.com/','201243307485764502');
_WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '201243307485764502', 'title': 'The Wise Living', 'url': 'http://www.thewiseliving.com/', 'canonicalUrl': 'http://www.thewiseliving.com/', 'homepageUrl': 'http://www.thewiseliving.com/', 'searchUrl': 'http://www.thewiseliving.com/search', 'canonicalHomepageUrl': 'http://www.thewiseliving.com/', 'blogspotFaviconUrl': 'http://www.thewiseliving.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': true, 'httpsEnabled': false, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': 'UA-25504490-1', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22The Wise Living - Atom\x22 href\x3d\x22http://www.thewiseliving.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22The Wise Living - RSS\x22 href\x3d\x22http://www.thewiseliving.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22The Wise Living - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/201243307485764502/posts/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-3223790346648113', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'ieCssRetrofitLinks': '\x3c!--[if IE]\x3e\x3cscript type\x3d\x22text/javascript\x22 src\x3d\x22https://www.blogger.com/static/v1/jsbin/2287435483-ieretrofit.js\x22\x3e\x3c/script\x3e\n\x3c![endif]--\x3e', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/57e4e21042248900', 'plusOneApiSrc': 'https://apis.google.com/js/plusone.js', 'disableGComments': true, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'Twitter', 'key': 'twitter', 'shareMessage': 'Share to Twitter', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': true, 'jumpLinkMessage': 'Continue reading this article here \x26gt;\x26gt;', 'pageType': 'index', 'pageName': '', 'pageTitle': 'The Wise Living', 'metaDescription': 'The Wise Living is a personal finance, business, lifestyle and self development website for 20-somethings.'}}, {'name': 'features', 'data': {'sharing_get_link_dialog': 'true', 'sharing_native': 'false'}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'The Wise Living', 'description': 'The Wise Living is a personal finance, business, lifestyle and self development website for 20-somethings.', 'url': 'http://www.thewiseliving.com/', 'type': 'feed', 'isSingleItem': false, 'isMultipleItems': true, 'isError': false, 'isPage': false, 'isPost': false, 'isHomepage': true, 'isArchive': false, 'isLabelSearch': false}}]);
_WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'siteheadersec', document.getElementById('Header1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'mainblogsec', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/2813152353-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/4076883957-lightbox_bundle.css'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList1', 'sidebarwidgetsarea', document.getElementById('PageList1'), {'title': '', 'links': [{'isCurrentPage': false, 'href': 'http://www.thewiseliving.com/p/privacy-policy.html', 'id': '1407133162182829050', 'title': 'PRIVACY POLICY'}], 'mobile': false}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_ImageView', new _WidgetInfo('Image3', 'sidebarwidgetsarea', document.getElementById('Image3'), {'resize': false}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_ImageView', new _WidgetInfo('Image4', 'sidebarwidgetsarea', document.getElementById('Image4'), {'resize': false}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label1', 'sidebarwidgetsarea', document.getElementById('Label1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'footerwidgetsarea', document.getElementById('HTML6'), {}, 'displayModeFull'));
</script>

<script type='text/javascript' style='display:none;' async>
</script>

<script type="text/javascript" data-cfasync="false"></script></body></html>