<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB">
<head>
<script type="text/javascript">
	function toggleShowMediaResults(id){
		$('social_result'+id).show();
	}
	
	function toggleHideMediaResults(id){
		$('social_result'+id).hide();
	}
</script>
<title>Hurricane Harvey to become the costliest natural disaster</title>
<meta name="keywords" content="Hurricane Harvey to become the costliest natural disaster - Impact Forecasting launches the latest edition of its monthly Global Catastrophe Recap report, which evaluates the impact of the natural disaster events that occurred worldwide during August 2017. 
"/>
<meta name="description" content="Hurricane Harvey is likely to become one of the costliest natural disasters on record"/>
<meta name="robots" content="index,follow"/>
<meta name="Author" content="Zero-One Design Ltd"/>
<meta name="google-site-verification" content="V9gdbofp1dKMS3-id0pc3MhC8dTFsF7U-lhqgfHOYf0" />
<meta name="y_key" content="" />
<meta name="msvalidate.01" content="" />
<base href="http://www.actuarialpost.co.uk/" />
<link rel="shortcut icon" href="http://www.actuarialpost.co.uk/favicon.ico"/> 
<link rel="icon" href="http://www.actuarialpost.co.uk/favicon.ico"/> 
<link rel="apple-touch-icon" href="http://www.actuarialpost.co.uk/gfx/iphone.png">
<!--Generate RSS feeds for browser shortcut tabs-->
<link href="http://www.actuarialpost.co.uk/rss/rss_jobs/actuarialpost.xml" rel="alternate" type="application/rss+xml" title="http://www.actuarialpost.co.uk | Jobs Feed" />
<!-- CSS - START -->
<style type="text/css" media="screen">
	@import url(http://www.actuarialpost.co.uk/include/styles/styles.css);
	@import url(http://www.actuarialpost.co.uk/include/styles/structure.css);
	@import url(http://www.actuarialpost.co.uk/include/styles/menu.css);
	@import url(http://www.actuarialpost.co.uk/include/styles/lightbox.css);
	@import url(http://www.actuarialpost.co.uk/include/styles/lightbox-form.css);
	@import url(http://www.actuarialpost.co.uk/include/styles/global.css);	
	@import url(http://www.actuarialpost.co.uk/help/help.css);
</style>
<!-- CSS - END -->

<!-- JAVASCRIPT - START -->
<script src="/__utm.js" type="text/javascript"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/global.js"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/vcon.js"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/prototypezod.js"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/ajaxUpload.js"></script>

<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/flash_detect_min.js"></script>

<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/menu.js"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/browserdetect.js"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/jquery/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/jquery.flash.js"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/jquery.innerfade.js"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/preventdoublesubmit.js"></script>

<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/lightbox-form.js"></script>
<script type="text/JavaScript" src="http://www.actuarialpost.co.uk/include/js/curvycorners.src.js"></script>

<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/postcoder/pc_functions.js"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/locationSuggest.js"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/jquery/plugins/jquery.lavalamp.js"></script>
<script type="text/javascript" src="http://www.actuarialpost.co.uk/include/js/jquery/plugins/jquery.easing.js"></script>


<!-- JAVASCRIPT - END -->

<script type="text/javascript">


//USED FOR LATEST JOBS SCROLLER
var headline_count;
var headline_interval;
var old_headline = 0;
var current_headline=0;

//USED FOR FEATURED JOBS SCROLLER
var headlineFeat_count;
var headlineFeat_interval;
var old_headlineFeat = 0;
var current_headlineFeat=0;

//Allow jquery and prototype to function side by side
var $j = jQuery.noConflict();

	function menuHighlight(menuItemID)	{
		$j.ajax({ url: "http://www.actuarialpost.co.uk/include/ajax_menuHighlight.asp?menuID=" + menuItemID, async: false});
	}
	
	$j(function() { setTimeout("createLavaMenu()",50);});
		
		function createLavaMenu(){
			$j(".lavaLamp").lavaLamp({ 
				fx: "linear", 
				speed: 300 
			})
		}
	
$j(document).ready(
	function(){
		$j('#sliderStrapline').innerfade({
			speed: 'slow',
			timeout: 5000,
			type: 'sequence',
			containerheight: '161Px'
		});
	}
);

//LATEST JOBS SCROLLER
$j(document).ready(function(){
  headline_count = $j("div.headline").size();
  $j("div.headline:eq("+current_headline+")").css('top','0px');
  
  headline_interval = setInterval(headline_rotate,11000); //time in milliseconds
});

function headline_rotate() {
  current_headline = (old_headline + 1) % headline_count; //remainder will always equal old_headline until it reaches headline_count - at which point it becomes zero. clock arithmetic
  $j("div.headline:eq(" + old_headline + ")").animate({top: -320},"slow", function() {
    $j(this).css('top','320px');
    });
  $j("div.headline:eq(" + current_headline + ")").show().animate({top: 0},"slow");  
  old_headline = current_headline;
}

//FEATURED JOBS SCROLLER
$j(document).ready(function(){
  headlineFeat_count = $j("div.headlineFeat").size();
  $j("div.headlineFeat:eq("+current_headlineFeat+")").css('top','0px');
  
  headlineFeat_interval = setInterval(headline_rotateFeat,8000); //time in milliseconds
});

function headline_rotateFeat() {
  current_headlineFeat = (old_headlineFeat + 1) % headlineFeat_count; //remainder will always equal old_headline until it reaches headlineFeat_count - at which point it becomes zero. clock arithmetic
  $j("div.headlineFeat:eq(" + old_headlineFeat + ")").animate({top: -320},"slow", function() {
    $j(this).css('top','320px');
    });
  $j("div.headlineFeat:eq(" + current_headlineFeat + ")").show().animate({top: 0},"slow");  
  old_headlineFeat = current_headlineFeat;
}


//Used to allow xhtml-strict doctype
$j(document).ready(function(){

	//Top menu tabs - Replaces showSectors function
	$j('.tabHeading').mouseover(function(){
		$j("div.quickTab").hide();
		$j('#' + $j(this).attr('rel')).show();
    });
	
	
	//Open links with rel=external in a new window
	$j("a[rel^='external']").attr('target','_blank');	
	
	//Banner link function
	$j("a.bannerLink").click(function(){
		var linkObj = $j(this);
		var linkURL = 'http://www.actuarialpost.co.uk/scripts/bannerLink.asp?id=' + linkObj.attr('id');
		linkObj.attr('href',linkURL);
	});	

	//For each banner fader
	$j('.ban_group').each(function(){
		//Retrieve banner fade type
		
		var fadeType = $j('#fadeType', this).val();
		var fadeSize = new Array;
		fadeSize = $j('#fadeType', this).attr('rel').split(",");
		var fadeWidth  = fadeSize[0];
		var fadeHeight = fadeSize[1];
		if(fadeType == ''){fadeType = 'sequence'};
		fadeType = fadeType.toLowerCase();
		
		$j('.ban_defaultFade', this).each(function(){
					
			//Retrieve banner delay
			var fadeObject  = $j(this);
			try{
				var fadeTimeout = fadeObject.attr('rel').replace('fadedelay_','');
			}
			catch(err){
				var fadeTimeout = 10000;
			}
			
			//fadeObject.css('float', 'left');
			
			//Apply rotation
			fadeObject.innerfade({
				speed: 1000,
				timeout: fadeTimeout,
				containerheight: fadeHeight.toString() + 'px',
				containerwidth: fadeWidth.toString() + 'px',
				type: fadeType
			});
		});
	});
});

self.name = "defaultWindow";
focusWindow();


function startCode() {
	//if no flash, show the normal logo
	if(!FlashDetect.installed) {
		$('logo').innerHTML='<img src=\'http://www.actuarialpost.co.uk/gfx/sec_logo.jpg\' border=\'0\' style=\'width:200px;height:130px;\' />';
	}
}

function startUp() {
	if($('sliderStrapline')) {
		$('sliderStrapline').style.visibility='visible';
	}
	window.setTimeout('startCode();', 400);
}


//addEvent(window, 'load', initCorners);
function initCorners(objID) {

	if(document.getElementById(objID)) {
	  	var settings = {
		    tl: { radius: 10 },
		    tr: { radius: 10 },
		    bl: { radius: 10 },
		    br: { radius: 10 },
		    antiAlias: true
	  	}
  	}
}

function toggleLightboxForm(showForm,formtitle){
	$('box').style.display='none';
	$('_regForm').style.display='none';
	$('_loginForm').style.display='none';
	$('_cliRegForm').style.display='none';
	if(showForm=='Login') {
		$('box').style.display='block';
		$('_loginForm').style.display='block';
		if(formtitle=='Candidate Sign In'){
			showForm = 'candidate';
			if($('selectedType')) {
		  		$('selectedType').value=showForm;
		  	}
			$('lightboxLogon').action = 'candidate/logon.asp'
		}else{
			showForm = 'client';
			if($('selectedType')) {
		  		$('selectedType').value=showForm;
		  	}
			$('lightboxLogon').action = 'client/logon.asp'
		}
	} else if(showForm=='Register') {
	  	$('box').style.display='block';
	  	$('_regForm').style.display='block';
	} else if(showForm=='CliRegister') {
		$('box').style.display='block';
	  	$('_cliRegForm').style.display='block';
  }  	
  	
  //select the correct radio
  nodes = $$('INPUT[type=radio]');
	for(var x=0; x<nodes.length; x++) {
		if(nodes[x].value==showForm) {
			nodes[x].checked=true;
			nodes[x].style.display='block';
		}
		if(showForm=='CliRegister') {
			if(nodes[x].value=='Register') {
				nodes[x].style.display='none';	
			}
		} else if(showForm=='Register') {
			if(nodes[x].value=='CliRegister') {
				nodes[x].style.display='none';	
			}
		}
	}  	
}


function shortlistVac(vacID,vacTitle){
		var url = 'http://www.actuarialpost.co.uk/candidate/profile/ajax_shortListVac.asp';
		var d = new Date();
		var time = d.getTime(); 
		var pars = 'vacID=' + vacID + '&prevent_cache=' + time;
		pars += '&refresh=-1';	
		var myAjax = new Ajax.Request( url, {
				method: 'get', 
				parameters: pars, 
				onComplete: showResponse
			} 
		);	
	function showResponse(originalRequest) {
		var notificationText = '';
		if(originalRequest.responseText != ''){
			if(originalRequest.responseText == 'Deleted'){
				$('but_shortlist'+vacID).innerHTML = 'Shortlist';
				notificationText = vacTitle + ' Removed from Shortlist';
			}else if(originalRequest.responseText == 'Shortlisted'){
				$('but_shortlist'+vacID).innerHTML = 'Remove';
				notificationText = vacTitle + ' Added to Shortlist';
			}
			toggleNotification(1,notificationText);
		}
	}
	updateShortList();
}

function updateShortList(){
		var url = 'http://www.actuarialpost.co.uk/candidate/profile/showShortListedVacs.asp';
		var d = new Date();
		var time = d.getTime(); 
		var pars = 'prevent_cache=' + time;
		pars += '&refresh=-1';	
		var myAjax = new Ajax.Request( url, {
				method: 'get', 
				parameters: pars, 
				onComplete: showResponse2
			} 
		);	
	function showResponse2(originalRequest) {
		if(originalRequest.responseText != ''){
			if($('showShortListedVacs')){
				$('showShortListedVacs').innerHTML = originalRequest.responseText;
			}
		}
	}
}

function toggleQuickLinks(divID,linkID){
	$$('#quickSearchContainer div').each(function(item) {
	 		item.setStyle({display:'none'});
	 	});
	for(x=1;x<=4;x++){
		$('tab'+x+'a').className = 'profileNavigation';
	}
	
	$(divID).style.display = 'block';
	$(linkID).className = 'profileNavigationHighlighted';
}

function toggleQuickLinks2(divID,linkID){
	$$('#quickSearchContainer div').each(function(item) {
	 		item.setStyle({display:'none'});
	 	});
	for(x=1;x<=4;x++){
		$('tab'+x+'a').className = '';
	}
	
	$(divID).style.display = 'block';
	$(linkID).className = 'NavBarHighlight';
	
	if(divID == 'quickLocalJobs'){
		$$('#quickLocalJobs div').each(function(item) {
	 		var subItem = new String;
			subItem = item.id;
			subItem = subItem.substring(0,5)
			if (subItem == 'subs_'){
			}else{
	 			item.setStyle({display:'block'});
	 		}
	 	});
	}
}

function toggleSubs(subID){
	$(subID).toggle();
}

function quickMenuRedirect(i){
	window.location = 'http://www.actuarialpost.co.uk/' + i;
}

function toggleNotification(i,varDesc){
	//i=1 - open
	//i=2 - close
	$('consoleNotificationTxt').innerHTML = '<b>Activity Console:</b> ' + varDesc;
	
	$j("#notification").slideToggle("slow");
	$j(this).toggleClass("active"); 
	if(i==1){
		this.setTimeout('toggleNotification(2,\' \');', 5000);
	}
	return false;
}

function makeFavouriteResult(id) {
	var url = 'http://www.actuarialpost.co.uk/candidate/makeFavourite.asp';	
	var d = new Date();
	var time = d.getTime(); 
	document.getElementById('fav_can'+id).l_canID.value = id;
	var pars = getFormValues(document.getElementById('fav_can'+id), "") + '&prevent_cache=' + time;

	var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars, onComplete: showResponse} );
	var responseData = '';
	function showResponse (originalRequest) {
		responseData = originalRequest.responseText;
		
		if(responseData!='') {
			alert('Add to favourites: ' + responseData);
			
			var favURL = document.getElementById('favLink'+id);
			
			if(responseData == 'Successful'){
				favURL.innerHTML = 'Remove From Favourites';
			}else{
				favURL.innerHTML = 'Save Candidate Details';
			}
			
		}else{
			alert('Cannot add to favourites at this time');
		}
	}
}

function setAdvSearch(x){
	if($('p_advSearch')){
		$('p_advSearch').value = x;
	}
	if($('jobSearch_adv').style.display == 'block'){
		$('jobSearch_adv').style.display = 'none';
	}else{
		$('jobSearch_adv').style.display = 'block';
	}
}

function toggleYouTube(id,divName,divDest){
	var url = 'http://www.actuarialpost.co.uk/include/ajax_getYouTubeVideo.asp';
	var d = new Date();
	var time = d.getTime(); 
	var pars = 'prevent_cache=' + time;
	pars += '&refresh=-1&videoID=' + id;	
	var myAjax = new Ajax.Request( url, {
			method: 'get', 
			parameters: pars, 
			onComplete: function (originalRequest) {
				if(originalRequest.responseText != ''){
					$(divDest).style.display = 'block';
					$(divDest).innerHTML = originalRequest.responseText;
					$(divName).style.display = 'none';
				}
			}
		});	
}

$j(document).ready(function(){	
	
	$$('#site_contentCol .rightCol img').each(function(item) {
		var height = item.outerHeight;
		var width = item.outerWidth;	
		var maxWidth = 320;
		if(width > maxWidth){
			item.width = maxWidth;
			item.height = height / (width/maxWidth);
		}
	});
 	
 	$$('#site_contentCol img').each(function(item) {
		var height = item.outerHeight;
		var width = item.outerWidth;	
		var maxWidth = 580;
		if(width > maxWidth){
			item.width = maxWidth;
			item.height = height / (width/maxWidth);
		}
	});
	
	if($('site_rightCol') && $('site_contentCol')){
			if($j('#siteHolder').outerHeight() > $j('#site_rightCol').outerHeight()){
				$j('#site_rightCol').css("height",$j('#siteHolder').outerHeight());
			}
	}
});

function toggleFilterParams(){
	var paramStatus;
	if($('searchParameters').style.display == 'block'){
		$('searchParameters').style.display = 'none';
		paramStatus = 'none';
	}else{
		$('searchParameters').style.display = 'block';
		paramStatus = 'block';
	}
	$j.ajax({ url: "http://www.actuarialpost.co.uk/include/ajax_searchParamStatus.asp?paramStatus=" + paramStatus, async: false});
}

function clearAll(frmName) {
	$('clear').value = 'all';
	$(frmName).submit();
}

function populdateSearchParam(varFilterClass,varFilterHeader,varSearchType){
	var url = 'http://www.actuarialpost.co.uk/include/ajax_searchResultFilters.asp';
		var d = new Date();
		var time = d.getTime(); 
		var pars = 'prevent_cache=' + time;
		pars += '&refresh=-1';	
		pars += '&varFilterClass=' + varFilterClass;
		pars += '&varFilterHeader=' + varFilterHeader;
		pars += '&varSearchType=' + varSearchType;
		var myAjax = new Ajax.Request( url, {
				method: 'get', 
				parameters: pars, 
				onComplete: function (originalRequest) {
					if(originalRequest.responseText != ''){
						$('searchParamDiv').innerHTML = originalRequest.responseText;
					}
				}
			} 
		);	
}

</script>

	
	<script>
  (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-22270741-1', 'actuarialpost.co.uk');
  ga('send', 'pageview');

</script>
<!--  google analytics end //-->

</head>
<body onLoad="startUp();">
<div id="notification">
	<table width="1000" cellpadding=0 cellspacing=0 border=0 align=center>
	<tr>
		<td width="77" height="85"><img src="gfx/console_alert.png" width="57" height="57" border="0" /></td>
		<td class="whiteTxt"><span id="consoleNotificationTxt"></span></td>
	</tr>
	</table>
</div>

<div id="site_outter">
	<div id="outofsite_left">
		<div class="banners ">
	
	<div class="ban_group">
		<input type="hidden" name="fadeType" id="fadeType" rel="122,607" value="Sequence">
				
					<ul class="ban_defaultFade" rel="fadedelay_8000" style="margin:0;margin-right:2;margin-top:7">
						
									<li style="list-style:none;"><a 
									id="990" title="" class="bannerLink" 
									href=""  rel="external">
											<img border="0" class="ban_border" title=""
											src="http://www.actuarialpost.co.uk/images/ban_120_Milliman 120x600 2016.gif" style="width:120px;height:600px;" />
										</a></li>
									
					</ul>

				
	</div>
</div>
	</div>
<div id="siteContainer">
	<div id="siteHeader">
		<div id="siteLogoHolder"><a href="http://www.actuarialpost.co.uk" title="Actuarial Post"><img src="gfx/sec_logo.jpg" width="314" height="134" border="0" /></a></div>	
		<div id="siteRightHolder">
			<div id="headerNavHolder">
				<div id="headerNavLinkHolder">
					<a href="http://www.actuarialpost.co.uk/info/contact.asp" title="Contact Us">Contact Us</a>
		</div>			
		</div>
			<div id="headerBannerHolder"><div class="banners ">
	
	<div class="ban_group">
		<input type="hidden" name="fadeType" id="fadeType" rel="468,65" value="Sequence">
				
					<ul class="ban_defaultFade" rel="fadedelay_16000" style="margin:0;margin-right:0;margin-top:5">
						
									<li style="list-style:none;"><a 
									id="994" title="" class="bannerLink" 
									href=""  rel="external">
											<img border="0" class="bannerClass1" title=""
											src="http://www.actuarialpost.co.uk/images/ban_468_1594LDP-leaderboard-anim.gif" style="width:468px;height:60px;" />
										</a></li>
									
					</ul>

				
	</div>
</div>
			</div>
			<div id="header_telephone"></div>
		</div>
	</div>
	<div id="siteNavbar">
		<div id="mainNavigation"><div id='menu'><ul class='level1' id='root'><li><a onClick='Javascript: menuHighlight(2917);' class="link1" href='./' title='Home' >Home</a></li><li><a onClick='Javascript: menuHighlight(2918);' class="link1" href='pensions' title='Pensions' >Pensions</a><ul class='level2'><li><a onClick='Javascript: menuHighlight(2918);' href='/newscategory/retirement-puzzle---articles-21.htm' title='Retirement Puzzle' >Retirement Puzzle</a></li><li><a onClick='Javascript: menuHighlight(2918);' href='/newscategory/pension-puzzle---articles-22.htm' title='Pension Pillar' >Pension Pillar</a></li></ul></li><li><a onClick='Javascript: menuHighlight(2919);' class="link1" href='investment' title='Investment' >Investment</a></li><li><a onClick='Javascript: menuHighlight(2920);' class="link1" href='life' title='Life' >Life & Health</a></li><li><a onClick='Javascript: menuHighlight(2921);' class="link1" href='generalinsurance' title='General Insurance' >General Insurance</a><ul class='level2'><li><a onClick='Javascript: menuHighlight(2921);' href='/newscategory/countdown-to-solvency-II---articles-23.htm' title='Countdown to Solvency II' >Countdown to Solvency II</a></li></ul></li><li><a onClick='Javascript: menuHighlight(2944);' class="link1" href='software' title='Software' >Software</a></li><li><a onClick='Javascript: menuHighlight(2938);' class="link1" href='travelling' title='Lifestyle' >Lifestyle</a><ul class='level2'><li><a onClick='Javascript: menuHighlight(2938);' href='lifestyle' title='Lifestyle Actuary' >Lifestyle Actuary</a></li><li><a onClick='Javascript: menuHighlight(2938);' href='luddite' title='The Luddite' >The Luddite</a></li><li><a onClick='Javascript: menuHighlight(2938);' href='travelling' title='Travelling' >Travelling Actuary</a></li></ul></li><li><a onClick='Javascript: menuHighlight(2923);' class="link1" href='http://www.actuarialpostjobs.co.uk' title='Actuarial Jobs, Life, Pensions, Investment Jobs' target='_blank'>Jobs</a></li><li><a onClick='Javascript: menuHighlight(2946);' class="link1" href='https://www.apawards.co.uk/' title='Actuarial Post Awards 2015' target='_blank'>Awards</a></li><li><a onClick='Javascript: menuHighlight(2924);' class="link1" href='content/advertising-41462.htm' title='Advertising' >Advertising</a></li></ul></div></div>
		<div id="smallNavigationLoggedOut">
			<ul>
			</ul>
		</div>
	</div>
	<div id="siteHolder">
		<div id="site_contentCol">
				<div class="news_socials_holder"><table cellpadding='0' cellspacing='0' border='0'><tr><td class='socialInclude' valign='top'><a href='https://twitter.com/share?url=http://www.actuarialpost.co.uk/article/hurricane-harvey-to-become-the-costliest-natural-disaster-12571.htm' class='twitter-share-button' target='_blank'><img src='http://www.actuarialpost.co.uk/socialmedia/twitter.png' width='59' height='20' title='Twitter' /></a></td><td class='socialInclude' valign='top'><a href='https://www.linkedin.com/shareArticle?mini=true&url=http://www.actuarialpost.co.uk/article/hurricane-harvey-to-become-the-costliest-natural-disaster-12571.htm&title=Hurricane Harvey to become the costliest natural disaster&summary=Hurricane Harvey is likely to become one of the costliest natural disasters on record' target='_blank'><img src='http://www.actuarialpost.co.uk/socialmedia/linkedin.png' width='59' height='20' title='LinkedIn' /></a></td><td class='socialInclude' valign='top'><a href='https://plus.google.com/share?url=http://www.actuarialpost.co.uk/article/hurricane-harvey-to-become-the-costliest-natural-disaster-12571.htm' target='_blank'><img src='http://www.actuarialpost.co.uk/socialmedia/googleplus.png' width='32' height='20' title='Google+' /></a></td><td class='socialInclude' valign='top'><a href='http://www.facebook.com/sharer.php?u=http://www.actuarialpost.co.uk/article/hurricane-harvey-to-become-the-costliest-natural-disaster-12571.htm&t=Hurricane Harvey is likely to become one of the costliest natural disasters on record' target='_blank'><img src='http://www.actuarialpost.co.uk/socialmedia/facebook.png' width='49' height='20' title='Facebook' /></a></td></tr></table>
				</div>
				<h1><a href="http://www.actuarialpost.co.uk/newscategory/general-insurance-article-11.htm" style='text-decoration:underline;'>General Insurance Article</a> - Hurricane Harvey to become the costliest natural disaster</h1>
<table cellpadding="0" cellspacing="0" border="0">
	<tr>
		<td><br/>

				<strong>Impact Forecasting launches the latest edition of its monthly Global Catastrophe Recap report, which evaluates the impact of the natural disaster events that occurred worldwide during August 2017. <br>

				</strong>
		</td>
	</tr><tr>
		<td><p><p>
&nbsp;The report reveals that Hurricane Harvey came ashore in Texas on August 25 to become the first major&nbsp;hurricane (a storm rated as either Category 3, 4 or 5) to make landfall in the United States since Hurricane Wilma in 2005. Heavy rain continued until August 31 bringing record-breaking rainfall to some areas. Catastrophic flooding ensued across a swath of eastern Texas and southwestern Louisiana, as more than 60 people were confirmed dead and dozens more were injured. Additional impacts due to severe thunderstorms and flash floods were noted across the Gulf States and Mississippi Valley.&nbsp;</p>
<p>
&nbsp;Total economic losses were estimated to minimally reach the tens of billions (USD), ensuring that Harvey is likely to become one of the costliest natural disasters on record in the U.S. Preliminary published reports suggest that insured losses &ndash; including those paid by private industry and the U.S. National Flood Insurance Program &ndash; were likely to well exceed USD10 billion.</p>
<p>
&nbsp;Elsewhere, Typhoon Hato and Tropical Storm Pakhar both made landfall in China&rsquo;s Guangdong province within one week of each other, causing considerable damage and loss of life in multiple provinces as well as Macau and Hong Kong. Economic losses from Hato alone were minimally estimated at USD3.0 billion, while combined insured losses from both storms in Guangdong were estimated at USD535 million.</p>
<p>
&nbsp;Additionally, Typhoon Noru and Hurricane Franklin impacted southern Japan and Mexico respectively during August.</p>
<p>
&nbsp;<strong>Steve Bowen, Impact Forecasting director and meteorologist, said: </strong>&rdquo;Hurricane Harvey&rsquo;s landfall in the United States officially put an end to the 11-year major hurricane drought. The impacts from the cyclone were far-reaching, and the scope of flood damage in Houston &ndash; the nation&rsquo;s fourth largest city &ndash; was historic. Given the anticipated costs from direct damage and business interruption, it is expected that Harvey will eventually be recorded as one of the costliest natural disasters on record in the U.S. Harvey served as a challenging reminder of how catastrophic hurricane events can be, and with September being the peak of the Atlantic Hurricane Season, the risk of further storms remains high.&rdquo;</p>
<p>
&nbsp;<strong>Further natural hazard events to have occurred worldwide in August include: </strong></p>
<p>
&nbsp;&bull; More than 1,300 people were killed across South Asia due to extensive monsoonal flooding and landslides during August. Throughout India, Bangladesh, and Nepal, tens of millions of people were affected as approximately one million homes were damaged or destroyed. Extensive damage to agriculture and infrastructure was also endured in northeastern India, southern and eastern Nepal, and northern Bangladesh.<br />
&nbsp;&bull; Multiple rounds of flooding impacted several Chinese provinces claiming at least 100 lives and generating aggregated economic losses in excess of USD1.2 billion.<br />
&nbsp;&bull; Floods in northern Vietnam claimed 40 lives and caused losses of USD88 million.<br />
&nbsp;&bull; Torrential rainfall over portions of Africa during August led to at least two significant landslides that claimed an estimated 1,250 lives. The largest of these occurred in Sierra Leone on August 14 where the death toll in Freetown was estimated at approximately 1,050. Additional flood events were reported in Russia&rsquo;s Far East, Yemen, Iran, the United States (Florida), and Europe (The Alps) during August.<br />
&nbsp;&bull; Several rounds of severe weather including at least two derechos impacted multiple central European countries through the middle part of August. Widespread property, agricultural, and forestry damage was reported from Poland, the Czech Republic, Slovakia, Germany, Switzerland, and Austria. Both economic and insured losses were expected to reach well into the hundreds of millions (EUR).<br />
&nbsp;&bull; Multiple severe weather outbreaks were additionally noted in the United States and China.<br />
&nbsp;&bull; On August 8, a magnitude-6.5 earthquake struck China&rsquo;s Sichuan province, damaging 72,500 homes.<br />
&nbsp;To view the full Impact Forecasting August 2017 Global Catastrophe Recap report, please follow the link <a href="http://aon.io/2f08yoP">here</a>:</p>
<p>
&nbsp;<br />
&nbsp;&nbsp;</p>

</td>
	</tr>
</table>
<p><a class="fltL button"
href="http://www.actuarialpost.co.uk/newscategory/general-insurance-article-11.htm">Back to Index</a>
</p>
<br/>
<h4>Similar News to this Story</h4>

	<div class="similar_news">

		
<table cellpadding=0 cellspacing=0 border=0 width="196px" align="" class="tabHeaderHolder1 tabFooterColFill">
	<tr>
		<td><table cellpadding=5 cellspacing=0 border=0 width="100%">
			<tr><td>
				<div class="similar_article">
					<h5>
						<a title="Travel insurance convergence really takes-off in 2018" href="http://www.actuarialpost.co.uk/article/travel-insurance-convergence-really-takes-off-in-2018-13167.htm">
							Travel insurance convergence really takes-off in 2018
						</a>
					</h5>Aquarium Software predicts that 2018 will be the year that technology and travel insurance will converge as never before. With growth in the US travel
				</div>
			</td></tr>
			

	</table></td>
</tr>
</table>

		
<table cellpadding=0 cellspacing=0 border=0 width="196px" align="" class="tabHeaderHolder1 tabFooterColFill">
	<tr>
		<td><table cellpadding=5 cellspacing=0 border=0 width="100%">
			<tr><td>
				<div class="similar_article">
					<h5>
						<a title="UK insurers to expand their operations to new countries" href="http://www.actuarialpost.co.uk/article/uk-insurers-to-expand-their-operations-to-new-countries-13158.htm">
							UK insurers to expand their operations to new countries
						</a>
					</h5>A template for future trade agreements with non-EU countries is being proposed by the Association of British Insurers (ABI), helping to pave the way f
				</div>
			</td></tr>
			

	</table></td>
</tr>
</table>

		
<table cellpadding=0 cellspacing=0 border=0 width="196px" align="" class="tabHeaderHolder1 tabFooterColFill">
	<tr>
		<td><table cellpadding=5 cellspacing=0 border=0 width="100%">
			<tr><td>
				<div class="similar_article">
					<h5>
						<a title="Joint statement on GDPR from the FCA and ICO" href="http://www.actuarialpost.co.uk/article/joint-statement-on-gdpr-from-the-fca-and-ico-13159.htm">
							Joint statement on GDPR from the FCA and ICO
						</a>
					</h5>The Financial Conduct Authority (FCA) and the Information Commissioners Office (ICO) have today published an update on the EU General Data Protection 
				</div>
			</td></tr>
			

	</table></td>
</tr>
</table>
	</div>
		</div>
		<div id="site_rightCol" class="rightColWidth">
			<div class="right_tabHolder">
				<div class="top"><h2 title="Site Search">Site Search</h2></div>
				<div class="mid">
					<div class="inner">
						<form action="http://www.actuarialpost.co.uk/info/pageSearchList.asp" method="POST" id="sitesearch" name="sitesearch" class="siteSearch">
							<input type="hidden" name="ssSearch" id="ssSearch" value="" />
							<input type="hidden" name="ssPage" id="ssPage" value="" />
							<input type="hidden" name="search" value="-1">
							<input type="hidden" name="recordOffset" value="0">
							<input type="hidden" name="page" id="page" value="">
							<input type="hidden" name="searchType" value="AND">
							
							<input type="text" id="keywords" name="keywords" value="" />
							<div class="formsItem">
								<div class="rightCol">
										<input type="radio" class="radioNoBorder" name="pagMode" id="pagMode" value="like" /><b>Exact</b>&nbsp;&nbsp;
										<input type="radio" class="radioNoBorder" name="pagMode" id="pagMode" value="bool" /><b>Any</b>&nbsp;&nbsp;
								</div>
								<div class="" style="float:right;">
									<input type="Submit" id="btnSiteSearch" name="btnSiteSearch" value="Search" />
								</div>
							</div>
						</form>
					</div>
				</div>
				<div class="bot"></div>
			</div>
			<div class="right_tabHolder jobsAltStyle">
				<div class="top"><h2 title="Latest Jobs">Latest Actuarial&nbsp;Jobs</h2></div>
				<div class="mid">
<style>
	#latest_jobs {
		height:229px;
		overflow:hidden;
		position:relative;
		padding:0 22px;
	}
	
	#latest_jobs #scrollup_container .latest_jobs_item {
	  line-height: 1.25em;
	  height:45px;
	  padding:0px 10px;
	  border-bottom:1px solid #CCCCCC;
	  overflow:hidden;
	  cursor:pointer;
	}
	
	#latest_jobs #scrollup_container .latest_jobs_item.alt {
		background:#EEF8F9;
	}
	
	#latest_jobs #scrollup_container .latest_jobs_item:Hover {
		background:#DEEFF1;
	}
	
	/*#latest_jobs #scrollup_container .latest_jobs_item:Hover .jobTitle A {
		color:#ffffff;
	}*/
	
	#latest_jobs #scrollup_container .latest_jobs_item .jobTitle {
		padding-top:10px;
	}
	
	#latest_jobs #scrollup_container .latest_jobs_item .jobTitle A {
		color:#0c6fa2;
		font-weight:bold;
	}
	
	#latest_jobs #scrollup_container .latest_jobs_item .details {
		color: #666666;
		font-size:0.85em;
	}

	#latest_jobs #scrollup_container .latest_jobs_item.alt {
		
	}

</style>
	
<script language="javascript">		
	function gotoVac(theURL) {
		window.location.href = 'http://www.actuarialpost.co.uk/jobs/' + theURL;
	}

	var latestJobs_count;
	var latestJobs_interval;
	
	$j(document).ready(function(){
	/*	$j('.headline').hover(
				function () {
			    $j(this).find('#tr_details').show();
			  },
			  function () {
			    $j(this).find('#tr_details').hide();
			  }
		 );
	*/
	  latestJobs_count = $j("#scrollup_container li.latest_jobs_item").size();
	  if(latestJobs_count > 5){
	  	latestJobs_interval = setInterval(latestJobs_rotate,3000); //time in milliseconds
	  }
	});
	
	function latestJobs_rotate() {
		var headlineInstance =  $j("#scrollup_container li.latest_jobs_item:eq(0)");
	 	headlineInstance.animate({
		    opacity: 0.2,
		    height: 'toggle'
		  }, "slow",'linear', function() {
					headlineInstance.appendTo('#latest_jobs #scrollup_container').animate({
				    opacity: 1,
				    height: 'toggle'
			  	}, "slow");
    });
	}
</script>



	<div id="latest_jobs" >
		<ul id="scrollup_container">
		<li class="latest_jobs_item alt">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/contract-non-life-reserving-actuaries-5650.htm" target="_blank" title="CONTRACT – Non-life Reserving Actuaries&nbsp;-&nbsp;London - Negotiable" class="scroller">CONTRACT – Non-life Reserving Actuaries</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">London - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item ">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/group-capital-actuary-midlands-5649.htm" target="_blank" title="Group Capital Actuary – Midlands&nbsp;-&nbsp;Midlands - Negotiable" class="scroller">Group Capital Actuary – Midlands</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">Midlands - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item alt">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/reserving-actuary-contract-5648.htm" target="_blank" title="Reserving Actuary (Contract)&nbsp;-&nbsp;South East - &pound;800 Per Day" class="scroller">Reserving Actuary (Contract)</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">South East - &pound;800 Per Day</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item ">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/senior-actuarial-analyst-5647.htm" target="_blank" title="Senior Actuarial Analyst&nbsp;-&nbsp;London - &pound;40,000 to &pound;55,000 Per Annum" class="scroller">Senior Actuarial Analyst</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">London - &pound;40,000 to &pound;55,000 Per Annum</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item alt">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/develop-your-actuarial-life-5646.htm" target="_blank" title="Develop Your Actuarial Life&nbsp;-&nbsp;South West - Negotiable" class="scroller">Develop Your Actuarial Life</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">South West - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item ">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/actuarial-broker-life-5645.htm" target="_blank" title="Actuarial Broker Life&nbsp;-&nbsp;London - Negotiable" class="scroller">Actuarial Broker Life</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">London - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item alt">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/manager-finance-transformation-5644.htm" target="_blank" title="Manager - Finance Transformation&nbsp;-&nbsp;London - Negotiable" class="scroller">Manager - Finance Transformation</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">London - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item ">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/transform-the-future-5643.htm" target="_blank" title="Transform the Future&nbsp;-&nbsp;London - Negotiable" class="scroller">Transform the Future</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">London - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item alt">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/part-qualified-pricing-actuary-life-5642.htm" target="_blank" title="Part-qualified Pricing Actuary - Life&nbsp;-&nbsp;South Coast - Negotiable" class="scroller">Part-qualified Pricing Actuary - Life</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">South Coast - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item ">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/a-passion-for-pricing-5641.htm" target="_blank" title="A Passion For Pricing&nbsp;-&nbsp;London - Negotiable" class="scroller">A Passion For Pricing</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">London - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item alt">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/actuarial-pricing-analyst-life-5640.htm" target="_blank" title="Actuarial Pricing Analyst - Life&nbsp;-&nbsp;London or South East - Negotiable" class="scroller">Actuarial Pricing Analyst - Life</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">London or South East - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item ">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/direct-the-future-of-ifrs17-5639.htm" target="_blank" title="Direct the Future of IFRS17&nbsp;-&nbsp;London - Negotiable" class="scroller">Direct the Future of IFRS17</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">London - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item alt">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/pension-risk-transfer-manager-5638.htm" target="_blank" title="Pension Risk Transfer Manager&nbsp;-&nbsp;South East - Negotiable" class="scroller">Pension Risk Transfer Manager</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">South East - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item ">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/shape-the-future-5637.htm" target="_blank" title="Shape the Future&nbsp;-&nbsp;North West - Negotiable" class="scroller">Shape the Future</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">North West - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item alt">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/launch-yourself-into-a-new-life-opportunity-5636.htm" target="_blank" title="Launch Yourself into a New Life Oppor...&nbsp;-&nbsp;South West - Negotiable" class="scroller">Launch Yourself into a New Life Oppor...</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">South West - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item ">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/gi-risk-actuary-needed-in-singapore-5635.htm" target="_blank" title="GI Risk Actuary needed in Singapore&nbsp;-&nbsp;Singapore - $200,000 to $250,000 Per Annum" class="scroller">GI Risk Actuary needed in Singapore</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">Singapore - $200,000 to $250,000 Per Annum</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item alt">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/capital-actuarial-analyst-5634.htm" target="_blank" title="Capital Actuarial Analyst&nbsp;-&nbsp;London - &pound;45,000 to &pound;55,000 Per Annum" class="scroller">Capital Actuarial Analyst</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">London - &pound;45,000 to &pound;55,000 Per Annum</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item ">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/actuarial-assistant-non-life-5633.htm" target="_blank" title="Actuarial Assistant - Non-life&nbsp;-&nbsp;London - Negotiable" class="scroller">Actuarial Assistant - Non-life</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">London - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item alt">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/take-the-lead-actuarial-reserving-and-reporting-5632.htm" target="_blank" title="Take the Lead - Actuarial Reserving a...&nbsp;-&nbsp;South Coast - Negotiable" class="scroller">Take the Lead - Actuarial Reserving a...</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">South Coast - Negotiable</td>						
				</tr>
			</table>
		</li>
		<li class="latest_jobs_item ">
			<table cellpadding="0" cellspacing="0" border="0" width="100%">
				<tr>
					<td class="jobTitle" colspan=3>
						<a href="http://www.actuarialpostjobs.co.uk/job/capital-actuary-non-life-5631.htm" target="_blank" title="Capital Actuary - Non-life&nbsp;-&nbsp;Wales - Negotiable" class="scroller">Capital Actuary - Non-life</a>
					</td>
				</tr><tr id="tr_details" style="display:block;">
					<td valign=top class="details">Wales - Negotiable</td>						
				</tr>
			</table>
		</li>
	</ul>
</div></div>
				<div class="bot"></div>
			</div>
				<div class="right_tabHolder">
					<div class="top"><h2 title="Login">Actuarial Login</h2></div>
					<div class="mid"><script language="JavaScript">
				<!--
				function logon() {
					var userType = document.logon.logonType.value;
					if (userType=='') {
						alert('Please enter your user type');
						document.logon.logonType.focus();
				 	} else if (document.logon.email.value == '') {
						alert('Please enter your email address');
						document.logon.email.focus();
					} else if (document.logon.password.value == '') {
						alert('Please enter your password');
						document.logon.password.focus();
					} else {
						document.logon.action = userType + '/logon.asp';
						document.logon.redirect.value = 'http://www.actuarialpost.co.uk/' + userType + '/profile/index.asp';
						document.logon.submit();
					}
				}
				
				function emailPassword(){
					var userType = document.logon.logonType.value;
					if(userType == ''){
						alert('Please select your user type.')
					}else{
						window.location = 'http://www.actuarialpost.co.uk/scripts/emailPassword.asp?type=' + userType + 's'
					}
				}
				function toggleLogonAction(i){
					document.logon.logonType.value = i;
					document.logon.action = 'http://www.actuarialpost.co.uk/' + i + '/logon.asp';
				}
				//-->
				</script>
				<div id="loginFormHolder">
				<form action="http://www.actuarialpost.co.uk/candidate/logon.asp" name=logon id=logon method=post>
				<input type=hidden name="redirect" id="redirect" value="">
				<input type=hidden name="logonType" id="logonType" value="candidate">
				<table cellpadding=0 cellspacing=2 border=0 width="200" style="margin-left:30px;margin-top:10px;">
				<tr>
					<td class="contSmall2"><b>Email</b></td>
				</tr><tr>
					<td><input type=text style="width:100%" name="email" id="email" class="small2"></td>
				</tr><tr>
					<td class="contSmall2"><b>Password</b></td>
				</tr><tr>
					<td><input type=password style="width:100%" name="password" id="password" class="small2"></td>
				</tr><tr>
					<td><input
							type="radio" onClick="Javascript:toggleLogonAction('candidate');" CHECKED name="p_LogonType" style="border:none;background:none;" />&nbsp;<span class="small">Jobseeker&nbsp;&nbsp;&nbsp;<input
							type="radio" onClick="Javascript:toggleLogonAction('client');" name="p_LogonType" style="border:none;background:none;" />&nbsp;<span class="small">Client</nobr></td>
					</tr><tr>
					<td><img
						src="gfx/pixel.gif" width=1 height=10></td>
				</tr><tr>		
						<td>
							<table width="100%" cellpadding=0 cellspacing=0 border=0>
							<tr>
								<td><a class="button2"
								href="Javascript:emailPassword();">Reminder</a></td>
								<td style="text-align:right;"><a class="button2"
								href="Javascript:logon();">Logon</a></td>
							</tr>
						</table>
					</td>
				</tr><tr>
					<td><img
						src="gfx/pixel.gif" width=1 height=10></td>
				</tr>
				</table></form>
				</div></div>
					<div class="bot"></div>
				</div>
			<div class="right_tabHolder">
				<div class="top"><h2 title="Our ActuarialClients">
					
						<!--Our Actuarial&nbsp;Clients-->
						APA Sponsors
					
					</h2></div>
				<div class="mid"><div class="banners ">
	
	<div class="ban_group">
		<input type="hidden" name="fadeType" id="fadeType" rel="189,110" value="Random">
				
					<ul class="ban_defaultFade" rel="fadedelay_6000" style="margin:0;margin-right:0;margin-top:15">
						
					</ul>

				
				
					<ul class="ban_defaultFade" rel="fadedelay_6000" style="margin:0;margin-right:0;margin-top:15">
						
									<li style="list-style:none;"><a 
									id="874" title="" class="bannerLink" 
									href=""  rel="external">
											<img border="0" class="bannerClass1" title=""
											src="http://www.actuarialpost.co.uk/images/ban_189_SAF_website_Banner189x95.jpg" style="width:189px;height:95px;" />
										</a></li>
									
					</ul>

				
				
					<ul class="ban_defaultFade" rel="fadedelay_6000" style="margin:0;margin-right:0;margin-top:15">
						
					</ul>

				
				
					<ul class="ban_defaultFade" rel="fadedelay_6000" style="margin:0;margin-right:0;margin-top:15">
						
									<li style="list-style:none;"><a 
									id="985" title="" class="bannerLink" 
									href=""  rel="external">
											<img border="0" class="bannerClass1" title=""
											src="http://www.actuarialpost.co.uk/images/ban_189_bolton ass189x95.jpg" style="width:189px;height:95px;" />
										</a></li>
									
					</ul>

				
	</div>
</div></div>
				<div class="bot"></div>
			</div>
			<div class="right_tabHolder">
				<div class="top" style="height:14px;">
				<!--<h2 title="Actuarial Post&nbsp;Mobile">Actuarial Post&nbsp;Mobile</h2>-->
				</div>
				<div class="mid"><div class="banners ban_mpu">
	
	<div class="ban_group">
		<input type="hidden" name="fadeType" id="fadeType" rel="200,182" value="Sequence">
				
					<ul class="ban_defaultFade" rel="fadedelay_6000" style="margin:0;margin-right:0;margin-top:15">
						
					</ul>

				
	</div>
</div>
					<!--
					<div class="inner cursorPointer" onClick="goToURL('http://mobile.actuarialpost.co.uk');" title="Actuarial Post&nbsp;Mobile">
						<a href="http://mobile.actuarialpost.co.uk" title="Actuarial Post&nbsp;Mobile"><img src="http://www.actuarialpost.co.uk/gfx/view_mobile_site.png" width="200" height="208" border="0" /></a>
					</div>-->
				</div>
				<div class="bot"></div>
			</div>
			<div class="right_tabHolder">
				<div class="top"><h2 title="Actuarial Jobs &amp; News Feeds">Actuarial Jobs &amp; News Feeds</h2></div>
				<div class="mid">
					<div class="inner">
						<a href="http://www.actuarialpostjobs.co.uk/rss_jobs/actuarialpostjobs.xml" class="fltL" title="Jobs RSS" class="fltL"><img src="gfx/but_rss_jobs.jpg" alt="Jobs RSS"/></a>
						<a href="http://www.actuarialpost.co.uk/rss_news/actuarialpost_news_rss.xml" title="News RSS" class="fltL rss_but"><img src="gfx/but_rss_news.jpg" alt="News RSS"/></a>
					</div>
				</div>
				<div class="bot"></div>
			</div>
			
			<div class="right_tabHolder">
				<div class="top"><h2 title="WikiActuary">WikiActuary</h2></div>
				<div class="mid">
					<div class="inner cursorPointer" onClick="goToURL('http://www.actuarialpost.co.uk/info/submitWiki.asp');" title="WikiActuary"><p>
	Be the first to contribute to our definitive actuarial reference forum. Built by actuaries for actuaries.</p>
</div>
				</div>
				<div class="bot"></div>
			</div>
			
			<span>&nbsp;</span>
		</div>
	</div>
	<div id="siteFooter">
		<div id="footerInner"><a href='content/actuarial-post-awards-2015-41487.htm' title=''   class=footer>Actuarial Post Awards </a>|<a href='index.asp' title='Home'   class=footer>Home</a>|<a href='content/about-us-41333.htm' title='About us'   class=footer>About us</a>|<a href='http://www.actuarialpostjobs.co.uk/jobsearch/' title='Job Search'   class=footer>Job Search</a>|<a href='content/privacy-policy-41463.htm' title='Privacy Policy'   class=footer>Privacy Policy</a>|<a href='info/contact.asp' title='Contact Us'   class=footer>Contact Us</a>|<a href='info/sitemap.asp' title='Site Map'   class=footer>Site Map</a>|<a href="rss/" title="rss feeds" class=footer>RSS Feeds</a>
				|<a href="sitemap.asp" class=footer title="xml sitemap">XML Sitemap</a>
			<p>&nbsp;</p>
			<b>
			Copyright &copy;&nbsp; 2018&nbsp;<a href="http://www.actuarialpost.co.uk"
			title="Actuarial Post">Actuarial Post</a>. Created by <a href="http://www.zod.uk.com" target="_blank" 
			title="Created by Zero-One Design Ltd">Zero-One Design Ltd</a></b>
			<div class="fltR">

<div class="socialNetworks">
	
					<a href="http://twitter.com/actuarialpost" target="_blank"><img 
					 src="images/social_network_icons/social_twitter.png" border=0 alt="Follow Twitter" title="Follow Twitter"></a>&nbsp;
			
					<a href="http://www.linkedin.com/groups/Actuarial-Post-3826552?gid=3826552&mostPopular=&trk=tyah" target="_blank"><img 
					 src="images/social_network_icons/social_linkedin.png" border=0 alt="LinkedIn" title="LinkedIn"></a>&nbsp;
			
					<a href="https://plus.google.com/u/0/110882967293477329705/posts" target="_blank"><img 
					 src="images/social_network_icons/social_googleplus.png" border=0 alt="Google Plus" title="Google Plus"></a>&nbsp;
			</div></div>
	</div>
	</div>
</div>
<div id="outofsite_right">
	<div class="banners ">
	
	<div class="ban_group">
		<input type="hidden" name="fadeType" id="fadeType" rel="122,607" value="Sequence">
				
					<ul class="ban_defaultFade" rel="fadedelay_6000" style="margin:0;margin-right:2;margin-top:7">
						
									<li style="list-style:none;"><a 
									id="991" title="" class="bannerLink" 
									href=""  rel="external">
											<img border="0" class="ban_border" title=""
											src="http://www.actuarialpost.co.uk/images/ban_120_Milliman 120x600 2016.gif" style="width:120px;height:600px;" />
										</a></li>
									
					</ul>

				
	</div>
</div>
</div>
</div>
</body>
</html>
<script language="Javascript">
	updateShortList();
</script><!-- LOAD TIME: This page has taken 0 second(s) to exectute -->