SF data corr AMPscript - including all

View Snippet
                    %%[

var @rowsStudyloc, @rowStudyloc, @rowCountStudyloc, @rowsProgramInt, @rowProgramInt, @rowCountProgramInt, @rowsschoolarrival, @rowschoolarrival, @rowCountschoolarrival, @rowscityarrival, @rowcityarrival, @rowCountcityarrival, @rowsschooldeparture, @rowschooldeparture, @rowCountschooldeparture, @rowscitydeparture, @rowcitydeparture, @rowCountcitydeparture, @splitname, @prefix_lang, @studyloc, @programint, @schoolarrival, @cityarrival, @schooldeparture, @citydeparture
SET @studyloc = [Study Where]
SET @programint = [Program Interest]
SET @schoolarrival = [ET School Arrival]
SET @cityarrival = [ET School Arrival]
SET @schooldeparture = [ET School Departure]
SET @citydeparture = [ET School Departure]

SET @splitname = BUILDROWSETFROMSTRING([emailname_],"-")
IF ROWCOUNT(@splitname) > 1 THEN
SET @prefix_lang = FIELD(ROW(@splitname,1),"VALUE")
ENDIF

set @rowsStudyloc = LookupRows("SFdataCorr_StudyWhere","StudyWhere", @studyloc)
set @rowCount = rowcount(@rows)

set @rowsProgramInt = LookupRows("SFdataCorr_ProgramInterest","ProgramInterest", @programint) 
set @rowCountProgramInt = rowcount(@rowsProgramInt)

set @rowsschoolarrival = LookupRows("SFdataCorr_School_Arrival","ET School Arrival", @schoolarrival) 
set @rowCountschoolarrival = rowcount(@rowsschoolarrival)

set @rowsschooldeparture = LookupRows("SFdataCorr_School_Departure","ET School Departure", @schooldeparture) 
set @rowCountschooldeparture = rowcount(@rowsschooldeparture)

set @rowscityarrival = LookupRows("SFdataCorr_School_Arrival","ET School Arrival", @cityarrival) 
set @rowCountcityarrival = rowcount(@rowscityarrival)

set @rowscitydeparture = LookupRows("SFdataCorr_City_Departure","ET School Departure", @citydeparture) 
set @rowCountcitydeparture = rowcount(@rowscitydeparture)

if @rowCountStudyloc > 0 then

var @studyloccorr
set @rowStudyloc = row(@rowsStudyloc,1) 
set @studyloccorr = field(@rowStudyloc,@prefix_lang)

else 
SET @studyloccorr = Lookup("SFdataCorr_StudyWhere", @prefix_lang, "StudyWhere", "default")
endif

if @rowCountProgramInt > 0 then

var @programintcorr 
set @rowProgramInt = row(@rowsProgramInt ,1)
set @programintcorr = field(@rowProgramInt,@prefix_lang)

else 
SET @programintcorr = Lookup("SFdataCorr_ProgramInterest", @prefix_lang, "ProgramInterest", "default")
endif

if @rowCountschoolarrival > 0 then

var @schoolarrivalcorr 
set @rowschoolarrival = row(@rowsschoolarrival ,1)
set @schoolarrivalcorr = field(@rowschoolarrival,@prefix_lang)

endif

if @rowCountschooldeparture > 0 then

var @schooldeparturecorr 
set @rowschooldeparture = row(@rowsschooldeparture ,1)
set @schooldeparturecorr = field(@rowschooldeparture,@prefix_lang)

endif

if @rowCountcityarrival > 0 then

var @cityarrivalcorr 
set @rowcityarrival = row(@rowscityarrival ,1)
set @cityarrivalcorr = field(@rowcityarrival,@prefix_lang)

endif

if @rowCountcitydeparture > 0 then

var @citydeparturecorr 
set @rowcitydeparture = row(@rowscitydeparture ,1)
set @citydeparturecorr = field(@rowcitydeparture,@prefix_lang)

endif

]%%	
                  

SF data corr - all included update1

View Snippet
                    <!--======== SF data correction ========-->

%%[

var @rowsStudyloc, @rowStudyloc, @rowCountStudyloc, @rowsProgramInt, @rowProgramInt, @rowCountProgramInt, @splitname, @prefix_lang, @studyloc, @programint, @schoolarrival, @cityarrival, @schooldeparture, @citydeparture, @schoolarrivalcorr, @cityarrivalcorr, @schooldeparturecorr, @citydeparturecorr

SET @studyloc = [Study Where]
SET @programint = [Program Interest]
SET @schoolarrival = [ET School Arrival]
SET @cityarrival = [ET School Arrival]
SET @schooldeparture = [ET School Departure]
SET @citydeparture = [ET School Departure]

SET @splitname = BUILDROWSETFROMSTRING([emailname_],"-")
IF ROWCOUNT(@splitname) > 1 THEN
SET @prefix_lang = FIELD(ROW(@splitname,1),"VALUE")
ENDIF

set @rowsStudyloc = LookupRows("SFdataCorr_StudyWhere","StudyWhere", @studyloc)
set @rowCountStudyloc = rowcount(@rowsStudyloc)

set @rowsProgramInt = LookupRows("SFdataCorr_ProgramInterest","ProgramInterest", @programint) 
set @rowCountProgramInt = rowcount(@rowsProgramInt)

if @rowCountStudyloc > 0 then

var @studyloccorr
set @rowStudyloc = row(@rowsStudyloc,1) 
set @studyloccorr = field(@rowStudyloc,@prefix_lang)

else 
SET @studyloccorr = Lookup("SFdataCorr_StudyWhere", @prefix_lang, "StudyWhere", "default")
endif

if @rowCountProgramInt > 0 then

var @programintcorr 
set @rowProgramInt = row(@rowsProgramInt ,1)
set @programintcorr = field(@rowProgramInt,@prefix_lang)

else 
SET @programintcorr = Lookup("SFdataCorr_ProgramInterest", @prefix_lang, "ProgramInterest", "default")
endif

SET @schoolarrivalcorr = Lookup("SFdataCorr_School_Arrival", @prefix_lang, "ET School Arrival", @schoolarrival)
SET @cityarrivalcorr = Lookup("SFdataCorr_City_Arrival", @prefix_lang, "ET School Arrival", @cityarrival)
SET @schooldeparturecorr = Lookup("SFdataCorr_School_Departure", @prefix_lang, "ET School Departure", @schooldeparture)
SET @citydeparturecorr = Lookup("SFdataCorr_City_Departure", @prefix_lang, "ET School Departure", @citydeparture)

]%%	











                  

SF data correction - AMPscript

View Snippet
                    <!--======== SF data correction ========-->

%%[
Var @studyloc,@studyloccorr,@splitname,@prefix_lang,@programint,@programintcorr,@schoolarrival,@schoolarrivalcorr,@cityarrival,@cityarrivalcorr,@schooldeparture,@schooldeparturecorr,@citydeparture,@citydeparturecorr
SET @studyloc = [Study Where]
SET @programint = [Program Interest]
SET @schoolarrival = [ET School Arrival]
SET @cityarrival = [ET School Arrival]
SET @schooldeparture = [ET School Arrival]
SET @citydeparture = [ET School Arrival]
SET @splitname = BUILDROWSETFROMSTRING([emailname_],"-")
/* BUILDROWSETFROMSTRING will create a row set for every string seperated by a "-" */
IF ROWCOUNT(@splitname) > 1 THEN
/* This ROWCOUNT is a 'check' to make sure that the more than one "-" is in the string, that is, that the row set value is greater than one */
SET @prefix_lang = FIELD(ROW(@splitname,1),"VALUE")
/* This will look into the built row set, and grab the first (1) value. So in the case of EN-EN-team-PROMO-summersale, it will pull "EN" */
ENDIF

SET @studyloccorr = Lookup("SFdataCorr_StudyWhere", @prefix_lang, "StudyWhere", @studyloc)
SET @programintcorr = Lookup("SFdataCorr_ProgramInterest", @prefix_lang, "ProgramInterest", @programint)
SET @schoolarrivalcorr = Lookup("SFdataCorr_School_Arrival", @prefix_lang, "ET School Arrival", @schoolarrival)
SET @cityarrivalcorr = Lookup("SFdataCorr_City_Arrival", @prefix_lang, "ET School Arrival", @cityarrival)
SET @schooldeparturecorr = Lookup("SFdataCorr_School_Departure", @prefix_lang, "ET School Departure", @schooldeparture)
SET @citydeparturecorr = Lookup("SFdataCorr_City_Departure", @prefix_lang, "ET City Departure", @citydeparture)

]%%
                  

Megatemplate - HTML

View Snippet
                    <br>
<!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" lang="en">
<head><META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
	<meta name=“format-detection” content=“telephone=no” /> 
	<title></title>

	<!-- Facebook sharing information tags -->
	<meta property="og:title" content="Kaplan International" />
		</head><body style="width:100% !important; min-height:1000px; color:#404040; background:#ffffff; font-family:Arial,Helvetica,sans-serif; font-size:13px; line-height:1.4;" alink="#9d470a" link="#9d470a" bgcolor="#ffffff" text="#333333" yahoo="fix">

	

		<img src="http://click.crm.kaplaninternational.com/open.aspx?ffcb10-fec4167172630c7f-fe361570776d0c7d761670-fe9a13707567017e76-ff601c7577-fe6016787667057a7214-ffcf14" width="1" height="1">

		<table width="100%">
		<tbody>
		<tr>
		<td>
		<div>
		<style type="text/css">
		ul, li { padding-left: 0; }
	/* EMBEDDED CSS
	Android Mail doesn't support "class" declarations outside of a media query so use inline CSS as a rule. */

	/* EMAIL CLIENT BUG FIXES - BEST NOT TO CHANGE THESE  */

	/* Forces Hotmail to display emails at full width. */

	.ExternalClass {
		width: 100%;
	}
	/* Forces Hotmail to display normal line spacing. */
	.ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {
		line-height: 100%;
	}
	/* Prevents Webkit and Windows Mobile platforms from changing default font sizes. */
	body {
		-webkit-text-size-adjust: none;
		-ms-text-size-adjust: none;
	}
	/* Resets all body margins and padding to "0" for good measure. */
	body {
		margin: 0;
		padding: 0;
	}
	/* Resolves webkit padding issue. */
	table {
		border-spacing: 0;
	}
	/* Resolves the Outlook 2007, 2010, and Gmail td padding issue. */
	table td {
		border-collapse: collapse;
	}
	/* END BUG FIXES  */

	/* RESETTING DEFAULTS, IT IS BEST TO OVERWRITE THESE STYLES INLINE */


	/* This sets a clean slate for all clients EXCEPT Gmail.
	   From there it forces you to do all of your spacing inline during the development process.
	   Be sure to stick to margins because paragraph padding is not supported by Outlook 2007/2010.
	   Remember: Hotmail does not support "margin" nor the "margin-top" properties.
	   Stick to "margin-bottom", "margin-left", "margin-right" in order to control spacing.
	   It also wise to set the inline top-margin to "0" for consistancy in Gmail for every inline instance
	   of a paragraph tag. */	
	   p {
	   	margin: 0;
	   	padding: 0;
	   	margin-bottom: 0;
	   }
	/* This CSS will overwrite Hotmails default CSS and make your headings appear consistant with Gmail.
	From there, you can override with inline CSS if needed. */
	h1, h2, h3, h4, h5, h6 {
		color: #333333;
		line-height: 100%;
	}
	/* END RESETTING DEFAULTS */


	/* EDITABLE STYLES - FOR YOUR TEMPLATE */


	/* The "body" is defined here for Yahoo Beta because it does not support your body tag. Instead, it will
	   create a wrapper div around your email and that div will inherit your embedded body styles.
	   The "#body_style" is defined for AOL because it does not support your embedded body definition nor
	   your body tag, we will use this class in our wrapper div. */
	   body, #body_style {
	   	width: 100% !important;
	   	min-height: 1000px;
	   	color: #333333;
	   	background: #ffffff;
	   	font-family: Arial, Helvetica, sans-serif;
	   	font-size: 13px;
	   	line-height: 1.4;
	   	overflow-x: hidden;
	   }
	/* This is the embedded CSS link color for Gmail. This will overwrite Hotmail and Yahoo Beta's
	embedded link colors and make it consistent with Gmail. Also use this rule on inline CSS. */
	a {
		color: #114eb1;
		text-decoration: none;
	}
	/* There is no way to set these inline so you have the option of adding pseudo class definitions here.
	They won't work for Gmail or older Lotus Notes but it's a nice addition for all other clients. */
	a:link {
		color: #114eb1;
		text-decoration: none;
	}
	a:visited {
		color: #183082;
		text-decoration: none;
	}
	/* a:focus   {color:#0066ff !important;}
	a:hover   {color:#0066ff !important;}*/

	/* A nice and clean way to target phone numbers you want clickable and avoid a mobile phone from
	linking other numbers that look like, but are not phone numbers. Use these two blocks of code to
	"unstyle" any numbers that may be linked. The second block gives you a class ".mobile_link" to apply
	with a span tag to the numbers you would like linked and styled. */
	a[href^="tel"], a[href^="sms"] {
		text-decoration: none;
		color: #333333;
		pointer-events: none;
		cursor: default;
	}
	.mobile_link a[href^="tel"], .mobile_link a[href^="sms"] {
		text-decoration: default;
		color: #6e5c4f !important;
		pointer-events: auto;
		cursor: default;
	}
	td img {
		vertical-align:top;
	}

	/* MEDIA QUERIES */

	/* You must use attribute selectors in your media queries to prevent Yahoo from rendering these styles.	
	We added a yahoo attribute in the body tag to complete this fix. */

	/* Target mobile devices. */
	/* @media only screen and (max-device-width: 639px) { */
		@media only screen and (max-width: 639px) {
			/* Hide elements at smaller screen sizes (!important needed to override inline CSS). */
			body[yahoo] .hide {
				display: none !important;
			}
			/* Adjust table widths at smaller screen sizes. */
			body[yahoo] .table {
				width: 100% !important;
			}
			body[yahoo] .innertable {
				width: 90% !important;
			}
			body[yahoo] .accreditations {
				width: 320px !important;
				height: 31px !important;
			}
			/* Resize page shadow at smaller screen sizes. */
			body[yahoo] .shadow {
				width: 280px !important;
				height: 4px !important;
			}
			/* Collapse footer columns. */
			body[yahoo] .footer-left {
				width: 280px !important;
			}
			body[yahoo] .footer-right {
				width: 290px !important;
			}
			body[yahoo] .footer-right img {
				float: left !important;
				margin: 0 1em 0 0 !important;
			}
			body[yahoo] .lil_kap {
				background-image: url(http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/en_kaplanlogo_blue_500x85.jpg) !important;
				background-size:177px 30px !important; /*195px 29px*/
				height: 35px !important;
				width: 100% !important;
				background-repeat: no-repeat;
			}
			body[yahoo] .lil_kap img {
				display: none !important;
			}
span[id=logo-click] {
	display: block !important;
	height: 37px !important;
	width: 100% !important;
    }
    
		}

		/* Target tablet devices. */
		/* @media only screen and (min-device-width: 640px) and (max-device-width: 1024px) { */
			@media only screen and (min-width: 640px) {
				body[yahoo] .mobile {
					display: none !important;
				}
			}


			/* TEMPLATE MEDIA QUERIES */
			@media only screen and (max-width: 640px)  {
				body[yahoo] .deviceWidth {width:440px!important; padding:0 !important;}
				body[yahoo] .deviceWidthMinus20px {width:420px!important;}
				body[yahoo] .deviceWidth20pxTop {width:440px!important; padding:20px 0 0 !important;}
				body[yahoo] .deviceWidth20pxBtm {width:440px!important; padding:0 0 20px 0 !important;}
				body[yahoo] .center {text-align: center!important;}
				span[class=deviceClick] {
					display: block !important;
					width: 430px !important;
					height: 190px !important;
				}
				body[yahoo] .padding0 {padding: 0 !important;}
				body[yahoo] .paddingTop0 {padding-top: 0px !important;}
				body[yahoo] .paddingTop20 {padding-top: 20px !important;}
				body[yahoo] .border0 {border: none !important;}
				body[yahoo] .borderLeft {border-left: 1px solid #cccccc !important;}
				body[yahoo] .hideMobile {display: none !important;}
				body[yahoo] .float-l {float: left;}

				body[yahoo] .column1 {width:100% !important;}
				body[yahoo] .column2 {width:50% !important;}
				body[yahoo] .column2Left {width: 219px !important;}
				body[yahoo] .column2Right {width: 218px !important;}
				body[yahoo] .col3NarrowHeading {width: 348px !important; padding: 16px !important;}
				body[yahoo] .col3Narrow {width: 380px !important; margin: 0 30px !important;}
				

				body[yahoo] .imageSwap {
					background-image: url(http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x419-D3.jpg) !important;
					height: 333px !important;
					width: 100% !important;
					background-position: center center !important;
					background-repeat: no-repeat !important;
					background-size: 348px 333px;
					margin:10px 0 0 0;
				}
				body[yahoo] .textSwap {
					height: auto;
					width: 100% !important;
					font-size:11px !important; 
					line-height:1.4 !important;
					text-align: center;
				}
				body[yahoo] td.textSwap {
					background-color: #00A5D9;
					padding:10px;
					margin-bottom: 10px;
				}
				body[yahoo] .caption {width: 348px !important; margin-bottom: 10px !important;}

				body[yahoo] .footerBanner {
					background-image: url(http://placehold.it/440x189) !important;
					height: 189px !important;
					width: 100% !important;
					background-position: center center !important;
					background-repeat: no-repeat !important;
					background-size: 440px 189px;
				}
    
    			span[id="footerBanner-click"] img { 
    			 display: none !important; 
    			}
    			span[id="footerBanner-click"] {
     			display: block !important;
     			width: 440px !important;
     			height: 189px !important;
    			}

				body[yahoo] .borderBottom {border-bottom:1px solid #cccccc;}
				body[yahoo] .column2Right.borderBottom {border-right:none !important}
				
				
			}

			@media only screen and (max-width: 479px) {
				body[yahoo] .deviceWidth {width:280px!important; padding:0 !important;}
				body[yahoo] .deviceWidthMinus20px {width:260px!important;}
				body[yahoo] .deviceWidth20pxTop {width:280px!important; padding:20px 0 0 !important;}
				body[yahoo] .deviceWidth20pxBtm {width:280px!important; padding:0 0 20px 0 !important;}
				body[yahoo] .center {text-align: center!important;}
				span[class=deviceClick] {
					display: block !important;
					width: 260px !important;
					height: 107px !important;
				}
				body[yahoo] .imageSwap {
					background-image: url(http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x419-D3.jpg) !important;
					height: 180px !important;
					width: 100% !important;
					background-position: center center !important;
					background-repeat: no-repeat !important;
					background-size: 188px 180px;
					margin: 10px 0 0 0;
				}
				body[yahoo] .textSwap {
					height: auto;
					width: 100% !important;
					font-size:11px !important; 
					line-height:1.4 !important;
					text-align: center;
				}
				body[yahoo] .caption {width: 188px !important; margin-bottom: 10px !important;}

				body[yahoo] .footerBanner {
					background-image: url(http://placehold.it/440x189) !important;
					height: 120px !important;
					width: 100% !important;
					background-position: center center !important;
					background-repeat: no-repeat !important;
					background-size: 280px 120px;
				}
				 span[id="footerBanner-click"] img { 
    			 display: none !important; 
   				}
    			span[id="footerBanner-click"] {
     			display: block !important;
     			width: 280px !important;
     			height: 120px !important;
    			}

				body[yahoo] .column2Left {width: 139px !important;}
				body[yahoo] .column2Right {width: 138px !important;}
				body[yahoo] .col3NarrowHeading {width: 188px !important; padding: 16px !important;}
				body[yahoo] .col3Narrow {width: 220px !important; margin: 0 30px !important;}


				
			}
			/* END EDITABLE STYLES */


			/* TEMPORARY - THESE SHOULD BE MOVED INLINE AT END OF YOUR DEVELOPMENT PROCESS */

			h1 {
				font-size: 26px;
				line-height: 1.2;
				font-weight: normal;
				margin-top: 0;
				margin-bottom: 0;
			}
			p {
				margin-top: 0;
				margin-bottom: 0;
			}
			img {
				display: block;
				border: none;
				outline: none;
				text-decoration: none;
			}
			/* Remove spacing around Outlook 07, 10 tables */
			table {
				border-collapse: collapse;
				mso-table-lspace: 0pt;
				mso-table-rspace: 0pt;
			}

			/* END TEMPORARY */
		</style>
		</div>
		</td>
		</tr>
		</tbody>
		</table>
		<!-- PAGE WRAPPER -->
		<div id="body_style"> 

			<!-- PREHEADER -->
			<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#2f353e" class="table">
				<tr>
					<td style="height:46px;" align="center">
						<table width="600" border="0" cellspacing="0" cellpadding="0" class="deviceWidth">
							<tr>
								<td width="600" height="46" align="left" valign="top">
									<table width="600" border="0" cellspacing="0" cellpadding="0" class="deviceWidth">
										<tr>
											<td height="40">
												<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><span style="font-family: Tahoma, Geneva, sans-serif; font-size: 12px; line-height: 18px; color: #ffffff; margin: 0px; padding: 0px;">This month: Learn about our Best School<br />
												Can't view this email? <a href="http://click.crm.kaplaninternational.com/?qs=3d1154f3b4c3cd29cc65608506170c76e2612debc9ff326abd4b44c10d79b79f" style="color: #33ffff;">Read it online.</a></span></td></tr></table></td></tr></table>
											</td>
										</tr>
									</table>
								</td>
							</tr>
						</table>
					</td>
				</tr>
				<tr>
					<td height="4" style="background-color:#f47b20; line-height:4px;"><img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/1/hidden_1x1.gif" width="1" height="4" style="display:block; margin:0" alt="" /></td>
				</tr>
			</table>
			<!-- /PREHEADER -->

			<table width="600" cellpadding="0" cellspacing="0" border="0" align="center" class="table">
				<tr>
					<td height="10"><img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/1/hidden_1x1.gif" width="1" height="10" style="display:block; margin:0; padding:0;" alt="" /></td>
				</tr>
			</table>

			<!--======== HEADER ================================-->
			<table width="600" cellpadding="0" cellspacing="0" border="0" align="center" class="deviceWidth lil_kap">
				<tr>
					<td><table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><a href="http://click.crm.kaplaninternational.com/?qs=3d1154f3b4c3cd295fbafa5b02e228601596d4f29476dd43e0e9218f44b858dd" target="blank" style="border-style: none;">
<span id="logo-click">
<img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/1/kiclogo_250x52.gif" style="display: block; margin: 0px; border-style: none;" alt="Kaplan Home Page" height="52" width="250" />
</span>
</a></td></tr></table></td></tr></table></td>
				</tr>
			</table>

			<!-- 20px Spacer -->
			<div style="height:20px">&nbsp;</div>

			<!-- 1px Border - Hidden on Mobile Devices -->
			
			<table width="600" border="0" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" bgcolor="#ffffff">
				<tr>
					<td class="border0" style="border:1px; border-color:#eeeeee; border-style:solid; padding:18px;">

						<!--======== Section: A1 ================================-->
						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 2:1 Columns -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tbody><tr valign="bottom">
								<!-- 2 Columns Text -->
								<td valign="bottom" align="left" class="deviceWidth" width="560" style="">
									<span style="font-family: Arial, Helvetica, sans-serif; font-size: 21px; color: #0069aa; font-weight: bold; line-height: 1.4;">Dear Balint,<br />
										<span style="font-weight: normal; font-size: 20px; line-height: 1.4; color: #000000;">Here are your English test results</span>
									</span>
									<!-- 7px Spacer -->
									<div class="deviceWidth" style="height: 7px;">&nbsp;</div>
								</td>
							</tr>
							<tr>
								<td>
									<!-- 2 Columns Text -->
									<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0">
										<tbody><tr>
											<td valign="top" align="left" class="deviceWidth" width="370" style="padding: 0px 20px 0px 0px;">
												<span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">Please contact one of our education advisors if you have any questions or would like to know more about our courses.</span>
											</td>
										</tr>
									</tbody></table>
									<!-- 1 Column CTA -->
									<table class="deviceWidth" align="right" cellpadding="0" cellspacing="0" border="0"> 
										<tbody><tr>
											<td align="right" valign="bottom" class="deviceWidth20pxTop" width="168" style="">
												<table bgcolor="#f47c20" width="168" border="0" align="right" cellpadding="0" cellspacing="0" style="background-color: #f47c20; background-position: initial initial; background-repeat: initial initial;">
													<tbody><tr valign="bottom">
														<td width="168" align="center" style="padding: 7px 20px;"><strong><a href="#" style="font-family: Arial, Helvetica, sans-serif; display: block; color: #ffffff; font-size: 14px; text-decoration: none;">Contact us now</a></strong></td>
													</tr>
												</tbody></table>
											</td>
										</tr>
									</tbody></table>
									
								</td>
							</tr>
						</tbody></table>

						<!-- 20px Spacer -->
						<div class="deviceWidth" style="height: 20px;">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: A2  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- Results Section: Your Score -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
							<tbody><tr>
								<td align="left" width="105" class="column2" style="padding: 10px;" bgcolor="#eeeeee">
									<span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 16px; color: #000000; line-height: 1.4;">Your Score:</span>
								</td>
								<td align="left" width="415" class="column2" style="padding: 10px;" bgcolor="#eeeeee">
									<span style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 16px; color: #0069aa; line-height: 1.4;">20</span>
								</td>	
							</tr>
						</tbody></table>

						<!-- Results Section: Your Level -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee" style="border-top-width: 2px; border-top-style: solid; border-top-color: #ffffff;">
							<tbody><tr>
								<td align="left" width="105" class="column2" style="padding: 10px;" bgcolor="#eeeeee">
									<span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 16px; color: #000000; line-height: 1.4;">Your Level:</span>
								</td>
								<td align="left" width="415" class="column2" style="padding: 10px;" bgcolor="#eeeeee">
									<span style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 16px; color: #0069aa; line-height: 1.4;">ELEMENTARY</span>
								</td>
							</tr>
						</tbody></table>
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
							<tbody><tr>
								<td align="left" width="105" class="hideMobile" style="padding: 0px 10px 10px;" bgcolor="#eeeeee">&nbsp;
									<br /><br /><br />						
								</td>
								<td width="415" class="column1" style="padding: 0px 10px 10px;" bgcolor="#eeeeee">
									<span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #000000; line-height: 1.4;">TOEFL® iBT 0-12, CEF A1, ALTE Breakthrough Level<br />
										You can use and recognise common words and greetings and simple instructions but you have limited grammatical knowledge.
									</span>
								</td>
							</tr>	
						</tbody></table>

						<!-- Results Section: Sharing -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tbody><tr>
								<td class="deviceWidth" valign="middle" align="right" style="padding: 10px 0px;" bgcolor="#eeeeee">
									<span style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 16px; color: #000000; line-height: 1.4; text-align: right;">Show this to your friends</span>
								</td>
								<td width="26" align="right" style="padding: 10px;" bgcolor="#eeeeee"><a href="http://click.crm.kaplaninternational.com/?qs=3d1154f3b4c3cd2912db5761e707067e5c3f5a330e3fa4551628867aac7ed213"><img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/multipromo-facebook-112013.png" alt="" width="26" height="26" border="0" style="display: block; margin: 0px;" /></a></td>
							</tr>
						</tbody></table>

						<!-- 20px Spacer -->
						<div style="height: 20px;">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: A3  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 2:1 Columns -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tbody><tr>
								<!-- 2 column list with heading -->
								<td valign="top" align="left" class="deviceWidth" width="370" style="">
									<!-- Heading -->
									<table cellpadding="0" cellspacing="0" border="0">
										<tbody><tr>
											<td>
												<span style="font-family: Arial, Helvetica, sans-serif; font-size: 20px; color: #000000; font-weight: bold; line-height: 1.4;">What happens next?</span>
												<!-- 7px Spacer -->
												<div style="height: 7px;">&nbsp;</div>
											</td>
										</tr>
									</tbody></table>
									<!-- List -->
									<table cellpadding="2" cellspacing="0" border="0"> 
										<tbody><tr>
											<td valign="top">•</td>
											<td><span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px;">If you want to improve your English, based on your score, this is the right course for you <a style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #0069aa; text-decoration: none;" href="#">Intensive English</a></span></td>
										</tr>
										<tr>
											<td valign="top">•</td>
											<td><span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px;">Choose from one of our <a style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #0069aa; text-decoration: none;" href="#">40+ English Schools</a> in the world's most exciting cities</span></td>
										</tr>
										<tr>
											<td valign="top">•</td>
											<td><span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px;">Download our free <a style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #0069aa; text-decoration: none;" href="#">brochure</a> to help you plan your next step</span></td>
										</tr>

									</tbody></table>
									<!-- Spacer -->
									<div style="height: 10px;">&nbsp;</div>
									<!-- Paragraph -->
									<table cellpadding="0" cellspacing="0" border="0">
										<tbody><tr>
											<td><span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px;">Create your personalized study plan today! </span></td>
										</tr>
									</tbody></table>

								</td>
								<!-- 1 column image -->
								<td align="right" valign="bottom" class="hideMobile" width="170">
									<img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-340x324.jpg" alt="" width="170" height="162" border="0" style="display: block; margin: 0px;" />
								</td>
							</tr>
						</tbody></table>

						<!-- 20px Spacer -->
						<div style="height: 20px;">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: A4  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- Left Aligned CTA -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tr>
								<td align="left" valign="bottom" class="deviceWidth" width="170">
									<table bgcolor="#f47c20" width="170" border="0" align="left" cellpadding="0" cellspacing="0" style="background: #f47c20;">
										<tr>
											<td width="170" align="center" style="padding:7px 20px;"><strong><a href="#" style="font-family:Arial, Helvetica, sans-serif; display:block; color:#ffffff; font-size:14px; text-decoration:none">Contact us now</a></strong></td>
										</tr>
									</table>
								</td>
							</tr>
						</table>

						<!-- 20px Spacer -->
						<div style="height:20px">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: A5  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tbody><tr>
								<td class="deviceWidth" bgcolor="#ffffff">
									<span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #000000; line-height: 1.4;">Kind regards,<br />
										<span style="font-weight: bold;">Your Kaplan International Team</span>
									</span>
								</td>
							</tr>
						</tbody></table>

						<!-- 20px Spacer -->
						<div style="height: 20px;">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: B1  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- Full width Heading and Paragraph -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tr>
								<td class="deviceWidth">
									<span style="font-family:Arial, Helvetica, sans-serif; font-size:21px; color:#0069aa; font-weight:bold; line-height:1.4;">Hi Balint,</span>
									<!-- 10 px Spacer -->
									<div style="height:10px">&nbsp;</div>
									<span style="font-family:Arial, Helvetica, sans-serif;font-weight:normal; font-size:13px; color:#404040; line-height:1.4;">Thank you for the interest in Kaplan International Colleges. Click below view the English courses brochures online:</span>
								</td>
							</tr>
						</table>

						<!-- 20px Spacer -->
						<div class="deviceWidth" style="height:20px">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: B2  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 2 Column Container (1:1) on Grey Background -->
<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
	<tbody>
		<tr>
			<td>
			<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0">
				<tbody>
					<tr>
						<!-- Label Left -->
						<td align="left" width="260" class="deviceWidthMinus20px center" style="padding: 10px;" bgcolor="#eeeeee">
						<a href="#" style="text-decoration: none;"><span style="font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: #000000; line-height: 1.4;">English Courses</span></a>
						</td>
					</tr>
				</tbody>
			</table>
			<table class="deviceWidth" align="right" cellpadding="0" cellspacing="0" border="0">
				<tbody>
					<tr>
						<!-- Right Aligned CTA -->
						<td align="left" width="260" class="deviceWidthMinus20px paddingTop0" style="padding: 10px;" bgcolor="#eeeeee">
						<table class="deviceWidthMinus20px center" bgcolor="#f47c20" width="200" border="0" align="right" cellpadding="0" cellspacing="0" style="background-color: #f47c20; background-position: initial initial; background-repeat: initial initial;">
							<tbody>
								<tr>
									<td width="170" align="center" style="padding: 7px 20px;"><strong><a href="#" style="font-family: Arial, Helvetica, sans-serif; display: block; color: #ffffff; font-size: 14px; text-decoration: none;">View online brochure</a></strong></td>
								</tr>
							</tbody>
						</table>
						</td>
					</tr>
				</tbody>
			</table>
			</td>
		</tr>
	</tbody>
</table>
<!-- 20px Spacer -->
<div class="deviceWidth" style="height: 20px;">
&nbsp;
</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: B3  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 1 Column Heading & List -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tr>
								<td valign="top" align="left" class="deviceWidth" width="560" style="">
									<!-- Heading -->
									<table cellpadding="0" cellspacing="0" border="0">
										<tr>
											<td>
												<span style="font-family:Arial, Helvetica, sans-serif; font-size:21px; color:#0069aa; font-weight:bold; line-height:1.4;">Why Choose Kaplan?</span>
												<!-- 7px Spacer -->
												<div style="height:7px">&nbsp;</div>
											</td>
										</tr>
									</table>
									<!-- List -->
									<table cellpadding="2" cellspacing="0" border="0"> 
										<tr>
											<td valign="top">•</td>
											<td><span style="font-family:Arial, Helvetica, sans-serif;font-weight:normal; font-size:13px; color:#404040; line-height:1.4;">9 out of 10 students recommend us to their friends</span></td>
										</tr>
										<tr>
											<td valign="top">•</td>
											<td><span style="font-family:Arial, Helvetica, sans-serif;font-weight:normal; font-size:13px; color:#404040; line-height:1.4;">Make friends from around the world</span></td>
										</tr>
										<tr>
											<td valign="top">•</td>
											<td><span style="font-family:Arial, Helvetica, sans-serif;font-weight:normal; font-size:13px; color:#404040; line-height:1.4;">Immerse yourself in a different culture</span></td>
										</tr>
										<tr>
											<td valign="top">•</td>
											<td><span style="font-family:Arial, Helvetica, sans-serif;font-weight:normal; font-size:13px; color:#404040; line-height:1.4;">Learn with the latest education technology</span></td>
										</tr>
									</table>
								</td>
							</tr>
						</table>

						<!-- 20px Spacer -->
						<div style="height:20px">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: B4  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- Center Aligned CTA -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tbody><tr>
								<td align="center" valign="bottom" class="deviceWidth" width="170">
									<table bgcolor="#f47c20" width="170" border="0" align="center" cellpadding="0" cellspacing="0" style="background-color: #f47c20; background-position: initial initial; background-repeat: initial initial;">
										<tbody><tr>
											<td width="170" align="center" style="padding: 7px 20px;"><strong><a href="#" style="font-family: Arial, Helvetica, sans-serif; display: block; color: #ffffff; font-size: 14px; text-decoration: none;">Contact us now</a></strong></td>
										</tr>
									</tbody></table>
								</td>
							</tr>
						</tbody></table>

						<!-- 30px Spacer -->
						<div style="height: 30px;">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: B5  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 2 Column Container (1:1) -->
<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
	<tbody>
		<tr>
			<td height="200">
			<!-- 1 Column List and CTA -->
			<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0">
				<tbody>
					<tr>
						<td valign="top" align="left" width="268" class="deviceWidth" bgcolor="#ffffff" style="padding: 0px 20px 0px 0px;">
						<!-- 20px Sub-Heading Black -->
						<span style="font-family: Arial, Helvetica, sans-serif; font-size: 20px; color: #000000; line-height: 1.4;">Ready to take the next step?</span>
						<!-- 10 px Spacer -->
						<div style="height: 10px;">
						&nbsp;
						</div>
						<!-- Standard Body Text -->
						<span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">Learn more about what the Kaplan experience in our video. Get a quote and create your personalised study plan today.</span>
						<!-- 20 px Spacer -->
						<div style="height: 20px;">
						&nbsp;
						</div>
						<!-- Left Aligned CTA -->
						<table bgcolor="#f47c20" width="170" border="0" align="left" cellpadding="0" cellspacing="0" style="background-color: #f47c20;">
							<tbody>
								<tr>
									<td width="170" align="center" style="padding: 7px 20px;"><strong><a href="#" style="font-family: Arial, Helvetica, sans-serif; display: block; color: #ffffff; font-size: 14px; text-decoration: none;">Get a quote</a></strong></td>
								</tr>
							</tbody>
						</table>
						</td>
					</tr>
				</tbody>
			</table>
			<!-- 1 Column -->
			<table class="deviceWidth" align="right" cellpadding="0" cellspacing="0" border="0">
				<tbody>
					<tr>
						<td align="right" valign="top" width="268" class="deviceWidth" bgcolor="#ffffff" style="padding: 0px;"><a style="display: block" href="#" border="0" class="hoverZoomLink">
						<img class="deviceWidth20pxTop" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x326.jpg" alt="" width="268" border="0" style="display: block; margin: 0px;" /></a>
						</td>
					</tr>
				</tbody>
			</table>
			</td>	
		</tr>
	</tbody>
</table>
<!-- 20px Spacer -->
<div style="height: 20px;">
&nbsp;
</div></td></tr></table></td></tr></table>
						</div>
						
						<!--======== Section: C2  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 1 Column Container on Grey Background & 10px Padding -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
							<tr>
								<td align="left" width="540" class="deviceWidthMinus20px" style="padding:10px;" bgcolor="#eeeeee">
									<!-- Black Body Text -->
									<span style="font-family:Arial, Helvetica, sans-serif; font-size:13px; color:#000000; line-height:1.4; display:block;">A few days ago you took an English test with us, would you like to improve your score? We can help you reach your goal.</span>
								</td>
							</tr>
						</table>

						<!-- 20px Spacer -->
						<div style="height:20px">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: D1  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 1 Column Heading and Paragraphs -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tbody><tr>
								<td class="deviceWidth">
									<!-- 21px Heading Blue/Bold -->
									<span style="font-family: Arial, Helvetica, sans-serif; font-size: 21px; color: #0069aa; font-weight: bold; line-height: 1.4;">This is what’s waiting for you at Kaplan!</span>
									<!-- 10 px Spacer -->
									<div style="height: 10px;">&nbsp;</div>
									<!-- Standard Body Text -->
									<span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">We thought we could give you a sneak peek of what the Kaplan experience is all about to help you take the next step towards your once-in-a-lifetime experience with us!</span>
									<!-- 10 px Spacer -->
									<div style="height: 10px;">&nbsp;</div>
									<!-- Standard Body Text -->
									<span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">Check out our <a style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #0069aa; text-decoration: none;" href="#">current promotions and discounts</a> on English courses abroad with Kaplan!</span>
								</td>
							</tr>
						</tbody></table>
						<!-- 20px Spacer -->
						<div style="height: 20px;">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: D3  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 2:1 Columns -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tbody><tr>
								<!-- 2 column paragraph with heading -->
								<td valign="top" align="left" class="deviceWidth" width="370" style="padding: 0px 20px 0px 0px;">
									<table cellpadding="0" cellspacing="0" border="0">
										<tbody><tr>
											<td>
												<table width="370" cellspacing="0" cellpadding="0" align="center" class="deviceWidth">
													<tbody><tr> 
														<td>
															<!-- 18px Heading Orange/Bold -->
															<span class="center" style="font-family: Arial, Helvetica, sans-serif; font-size: 18px; color: #f47b20; font-weight: bold; line-height: 1.4; display: block;">Steeven's experience in Kaplan Australia</span>
														</td>
													</tr>
												</tbody></table>
												<!-- ===> D3:1 <=== Table for Swapped in Image - hidden on Desktop/Visible on Mobile. Any image changes here should also be updated in section D3:3 below -->
												<table width="370" cellspacing="0" cellpadding="0" align="center" class="deviceWidth imageSwap">
													<tbody><tr>
														<td style="line-height: 7px;"><div style="height: 7px; line-height: 7px;">&nbsp;</div></td>
													</tr>
												</tbody></table>
												<!-- ===> D3:2 <=== Table for Swapped in Text/Caption - hidden on Desktop/Visible on Mobile. Any text changes here should also be updated in section D3:3 below -->
												<table width="370" cellspacing="0" cellpadding="0" border="0" align="center" class="caption">
													<tbody><tr>
														<td class="textSwap" align="center" valign="bottom" style="line-height: 1px;"><span class="textSwap" style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 0px; color: #ffffff; line-height: 0;">Intensive English / IELTS<br />Advanced Level<br />School: Brisbane, Australia</span></td>
													</tr>
												</tbody></table>
												<table width="370" cellspacing="0" cellpadding="0" align="center" class="deviceWidth">
													<tbody><tr> 
														<td height="0">
															<!-- 13px Standard Body Text -->											
															<span class="center" style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4; display: block;">‘I came to Australia to improve my English and then to apply to journalism school in Brisbane. Thanks to Kaplan and my own hard work I have now been accepted into the journalism school and can continue my chosen career.’</span>
															<!-- 20px Spacer -->
															<div style="height: 20px;">&nbsp;</div>
														</td>
													</tr>
												</tbody></table>

												<table width="370" cellspacing="0" cellpadding="0" align="center" class="deviceWidth">
													<tbody><tr> 
														<td class="center">
															<!-- Standard Body Text -->
															<span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;"><span style="font-weight: bold;">Steeven Ballein</span><br />
															23 years old - France </span>
															<!-- 20px Spacer -->
															<div style="height: 20px;">&nbsp;</div>
														</td>
													</tr>
												</tbody></table>
												<!-- Left Aligned CTA -->
												<table class="deviceWidth" bgcolor="#f47c20" width="240" border="0" align="left" cellpadding="0" cellspacing="0" style="background-color: #f47c20; background-position: initial initial; background-repeat: initial initial;">
													<tbody><tr>
														<td width="240" align="center" style="padding: 7px 20px;"><strong><a href="#" style="font-family: Arial, Helvetica, sans-serif; display: block; color: #ffffff; font-size: 14px; text-decoration: none;">Discover More of Australia</a></strong></td>
													</tr>
												</tbody></table>
											</td>
										</tr>
									</tbody></table>				
								</td>
								<!-- ===> D3:3 <=== 1 column image and caption - Hidden on Mobiles. Any image or text changes here should also be updated in sections D3:1 and D3:2 above -->
								<td align="left" valign="top" class="hideMobile" width="170">
									<img class="deviceWidth" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x419-D3.jpg" alt="" width="170" border="0" style="display: block; margin: 0px;" />
									<!-- 10 px Spacer -->
									<div style="height: 10px;">&nbsp;</div>
									<!-- Standard Body Text -->
									<span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">Intensive English / IELTS - Advanced Level<br />School: Brisbane, Australia</span>
								</td>
							</tr>
						</tbody></table>
						<!-- Spacer -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tbody><tr>
								<td>
									<div style="height: 20px;">&nbsp;</div>
								</td>
							</tr>
						</tbody></table></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: D4  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 3 Column Text Boxes with Images -->
<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
	<!-- Row 1 -->
	<tbody>
		<tr>
			<td height="179">
			<!-- Box 1 -->
			<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0" style="border-left-width: 1px; border-left-style: solid; border-left-color: #ffffff; border-right-width: 1px; border-right-style: solid; border-right-color: #ffffff;">
				<tbody>
					<tr>
						<td align="left" class="deviceWidth20pxBtm" width="168" style="padding: 0px 25px 20px 0px;">
						<!-- Social Box Upper Section - Image -->
						<table width="168" class="deviceWidth" bgcolor="#00A5D9" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td valign="top" height="47" style="padding: 0px;">
									<p style="padding: 0px; margin: 0px;">
									<a href="#" style="display: block;" border="0">
									<img class="deviceWidth" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x124-D4-Facebook.jpg" alt="" width="168" border="0" style="display: block; margin: 0px;" /></a>
									</p>
									</td>
								</tr>
								<tr>
									<td style="padding: 10px;">
									<!-- 13px Small Heading White/Bold -->
									<a href="#" style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 13px; color: #ffffff; line-height: 1.4; text-decoration: none;">kaplan.do/facebook </a>
									<p style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #ffffff; line-height: 1.4; margin: 7px 0px;">
									Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi.
									</p>
									</td>
								</tr>
							</tbody>
						</table>
						 
						</td>
					</tr>
				</tbody>
			</table>
			<!-- Box 2 -->
			<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0" style="border-left-width: 1px; border-left-style: solid; border-left-color: #ffffff; border-right-width: 1px; border-right-style: solid; border-right-color: #ffffff;">
				<tbody>
					<tr>
						<td align="left" class="deviceWidth20pxBtm" width="168" style="padding: 0px 25px 20px 0px;">
						<!-- Social Box Upper Section - Image -->
						<table width="168" class="deviceWidth" bgcolor="#f47b20" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td valign="top" height="47">
									<p style="padding: 0px; margin: 0px;">
									<a href="#" style="display: block;" border="0">
									<img class="deviceWidth" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x124-D4-Twitter.jpg" alt="" width="168" border="0" style="display: block; margin: 0px;" /></a>
									</p>
									</td>
								</tr>
								<tr>
									<td style="padding: 10px;">
									<!-- 13px Small Heading White/Bold -->
									<a href="#" style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 13px; color: #ffffff; line-height: 1.4; text-decoration: none;">kaplan.do/twitter </a>
									<p style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #ffffff; line-height: 1.4; margin: 7px 0px;">
									Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi.
									</p>
									</td>
								</tr>
							</tbody>
						</table>
						</td>
					</tr>
				</tbody>
			</table>
			<!-- Box 3 -->
			<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0" style="border-left-width: 1px; border-left-style: solid; border-left-color: #ffffff; border-right-width: 1px; border-right-style: solid; border-right-color: #ffffff;">
				<tbody>
					<tr>
						<td align="left" class="deviceWidth20pxBtm" width="168" style="padding: 0px 0px 20px;">
						<!-- Social Box Upper Section - Image -->
						<table width="168" class="deviceWidth" bgcolor="#ed174f" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td valign="top" height="47" style="padding: 0px;">
									<p style="padding: 0px; margin: 0px;">
									<a href="#" style="display: block;" border="0">
									<img class="deviceWidth hoverZoomLink" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x124-D4-Youtube-v2.jpg" alt="" width="168" border="0" style="display: block; margin: 0px;" />
									</a>
									</p>
									</td>
								</tr>
								<tr>
									<td style="padding: 10px;">
									<!-- 13px Small Heading White/Bold -->
									<a href="#" style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 13px; color: #ffffff; line-height: 1.4; text-decoration: none;">kaplan.do/youtube </a>
									<p style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #ffffff; line-height: 1.4; margin: 7px 0px;">
									Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi.
									</p>
									</td>
								</tr>
							</tbody>
						</table>
						</td>
					</tr>
				</tbody>
			</table>
			</td>
		</tr>
		<!-- Row 2 -->
		<tr>
			<td height="179">
			<!-- Box 4 -->
			<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0" style="border-left-width: 1px; border-left-style: solid; border-left-color: #ffffff; border-right-width: 1px; border-right-style: solid; border-right-color: #ffffff;">
				<tbody>
					<tr>
						<td align="left" class="deviceWidth20pxBtm" width="168" style="padding: 0px 25px 20px 0px;">
						<!-- Social Box Upper Section - Image -->
						<table width="168" class="deviceWidth" bgcolor="#f47b20" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td valign="top" height="47" style="padding: 0px;">
									<p style="padding: 0px; margin: 0px;">
									<a href="#" style="display: block;" border="0">
									<img class="deviceWidth" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x124-D4-Instagram.jpg" alt="" width="168" border="0" style="display: block; margin: 0px;" />
									</a>
									</p>
									</td>
								</tr>
								<tr>
									<td style="padding: 10px;">
									<!-- 13px Small Heading White/Bold -->
									<a href="#" style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 13px; color: #ffffff; line-height: 1.4; text-decoration: none;">kaplan.do/instagram </a>
									<p style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #ffffff; line-height: 1.4; margin: 7px 0px;">
									Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi.
									</p>
									</td>
								</tr>
							</tbody>
						</table>
						</td>
					</tr>
				</tbody>
			</table>
			<!-- Box 5 -->
			<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0" style="border-left-width: 1px; border-left-style: solid; border-left-color: #ffffff; border-right-width: 1px; border-right-style: solid; border-right-color: #ffffff;">
				<tbody>
					<tr>
						<td align="left" class="hide" width="168" style="padding: 0px 25px 20px 0px;">
						<!-- Social Box Upper Section - Image -->
						<table width="168" class="deviceWidth" bgcolor="#ed174f" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td valign="top" height="47">
									<p style="padding: 0px; margin: 0px;">
									<a href="#" style="display: block;" border="0">
									<img class="deviceWidth" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x124-D4-Blog.jpg" alt="" width="168" border="0" style="display: block; margin: 0px;" />
									</a>
									</p>
									</td>
								</tr>
								<tr>
									<td style="padding: 10px;">
									<!-- 13px Small Heading White/Bold -->
									<a href="#" style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 13px; color: #ffffff; line-height: 1.4; text-decoration: none;">kaplan.do/blog </a>
									<p style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #ffffff; line-height: 1.4; margin: 7px 0px;">
									Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi.
									</p>
									</td>
								</tr>
							</tbody>
						</table>
						</td>
					</tr>
				</tbody>
			</table>
			<!-- Box 6 -->
			<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0" style="border-left-width: 1px; border-left-style: solid; border-left-color: #ffffff; border-right-width: 1px; border-right-style: solid; border-right-color: #ffffff;">
				<tbody>
					<tr>
						<td align="left" class="hide" width="168" style="padding: 0px 0px 20px;">
						<!-- Social Box Upper Section - Image -->
						<table width="168" class="deviceWidth" bgcolor="#00a5d9" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td valign="top" height="47">
									<p style="padding: 0px; margin: 0px;">
									<a href="#" style="display: block;" border="0">
									<img class="deviceWidth hoverZoomLink" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x124-D4-GPlus.jpg" alt="" width="168" border="0" style="display: block; margin: 0px;" />
									</a>
									</p>
									</td>
								</tr>
								<tr>
									<td style="padding: 10px;">
									<!-- 13px Small Heading White/Bold -->
									<a href="#" style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 13px; color: #ffffff; line-height: 1.4; text-decoration: none;">kaplan.do/plus </a>
									<p style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #ffffff; line-height: 1.4; margin: 7px 0px;">
									Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi.
									</p>
									</td>
								</tr>
							</tbody>
						</table>
						</td>
					</tr>
				</tbody>
			</table>
			</td>
		</tr>
	</tbody>
</table>
<!-- 20px Spacer -->
<div style="height: 20px;">
&nbsp;
</div><div id="hzImg" style="border: 1px solid #e3e3e3; line-height: 0; overflow: hidden; padding: 2px; margin: 0px; position: absolute; z-index: 2147483647; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, from(#ffffff), color-stop(0.5, #ffffff), to(#ededed)); -webkit-box-shadow: rgba(0, 0, 0, 0.458824) 3px 3px 6px; opacity: 1; top: 150px; left: -7px; cursor: pointer; display: none; background-position: initial initial; background-repeat: initial initial;"></div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: D5  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 1 Column Heading & List -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tbody><tr>
								<td valign="top" align="left" class="deviceWidth" width="560" style="">
									<!-- Heading and paragraph -->
									<table cellpadding="0" cellspacing="0" border="0">
										<tbody><tr>
											<td>
												<!-- 18px Heading Orange/Bold -->
												<span style="font-family: Arial, Helvetica, sans-serif; font-size: 18px; color: #f47b20; font-weight: bold; line-height: 1.4;">Get in touch</span>
												<!-- 7px Spacer -->
												<div style="height: 7px;">&nbsp;</div>
												<!-- 13px Standard Body Text -->
												<span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">Our education consultants are available to answer all of your questions at any point... <br /><a style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #0069aa; text-decoration: none;" href="#">Get in touch!</a></span>
											</td>
										</tr>
									</tbody></table>
									<!-- List -->
									<table cellpadding="2" cellspacing="0" border="0"> 
										<tbody><tr>
											<td valign="top">•</td>
											<td><span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">Check the list of <a style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #0069aa; text-decoration: none;" href="#">worldwide numbers</a></span></td>
										</tr>
										<tr>
											<td valign="top">•</td>
											<td><span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">E-mail: <a style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #0069aa; text-decoration: none;" href="#">contact@kaplaninternational.com</a></span></td>
										</tr>
									</tbody></table>
								</td>
							</tr>
						</tbody></table>
						<!-- 20px Spacer -->
						<div style="height: 20px;">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: E3  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 2 Column Container (1:1) -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tbody><tr>
								<!-- Column 1 - List, Paragraph and CTA -->
								<td valign="top" align="left" width="270" class="deviceWidth" bgcolor="#ffffff" style="padding: 0px 20px 0px 0px;">
									<!-- List with linkable text -->
									<table cellpadding="2" cellspacing="0" border="0"> 
										<tbody><tr>
											<td valign="top">•</td>
											<td><a style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #0069aa; text-decoration: none;" href="#">English Semester & Year</a></td>
										</tr>
										<tr>
											<td valign="top">•</td>
											<td><a style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #0069aa; text-decoration: none;" href="#">Business English</a></td>
										</tr>
										<tr>
											<td valign="top">•</td>
											<td><a style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #0069aa; text-decoration: none;" href="#">Exam Preparation</a></td>
										</tr>
										<tr>
											<td valign="top">•</td>
											<td><a style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold; color: #0069aa; text-decoration: none;" href="#">Internship Program</a></td>
										</tr>
									</tbody></table>
									<!-- 20px Spacer -->
									<div style="height: 20px;">&nbsp;</div>
									<!-- 13px Standard Body Text -->
									<span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">Assessing your English proficiency level might help you decide what’s better for you at this stage </span>
									<!-- 20px Spacer -->
									<div style="height: 20px;">&nbsp;</div>
									<!-- Left Aligned CTA for use in a 2 column structure -->
									<table bgcolor="#f47c20" width="170" border="0" align="left" cellpadding="0" cellspacing="0" style="background-color: #f47c20; background-position: initial initial; background-repeat: initial initial;">
										<tbody><tr>
											<td width="170" align="center" style="padding: 7px 20px;"><strong><a href="#" style="font-family: Arial, Helvetica, sans-serif; display: block; color: #ffffff; font-size: 14px; text-decoration: none;">Test your English</a></strong></td>
										</tr>
									</tbody></table>
								</td>
								<!-- Column 2 - Image -->
								<td align="right" width="270" class="hideMobile" bgcolor="#ffffff">
									<img class="deviceWidth20pxTop" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x350-E3.jpg" alt="" width="270" border="0" style="display: block; margin: 0px;" />
								</td>	
							</tr>
						</tbody></table>
						<!-- 20px Spacer -->
						<div style="height: 20px;">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: E8  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 4 Column (1:1:1:1) Icon boxes with labels - Horizontal -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee" style="border:1px solid #cccccc;">
							<tr>
								<td>
									<!-- Box 1 -->
									<table class="column2Left" align="left" cellpadding="0" cellspacing="0" border="0">
										<tr>
											<td align="left" valign="middle" width="138" class="column2Left borderBottom" height="90" bgcolor="#eeeeee" style="padding:0; border-right:1px solid #cccccc;">
												<!-- Inner Content: Icon with label underneath -->
												<table class="column2Left" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
													<tr>
														<td class="column2Left" align="center" valign="middle" bgcolor="#eeeeee" style="padding:16px;">
															<!-- Ensure link is duplicated in second <a> tag below: -->
															<a href="" target="blank" style="border-style:none; display: block; background: #eeeeee;">
																<img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-70x60-About.png" alt="" height="30" border="0" style="display:block; margin:0" />
															</a>
															<!-- 10px Spacer -->
															<div style="height:10px">&nbsp;</div>
															<a href="" target="blank" style="border-style:none; display: block; background: #eeeeee; text-decoration: none;">
																<span style="font-family:Arial, Helvetica, sans-serif; font-size:13px; color:#555555; line-height:1.4; text-align:center; text-decoration: none;">About Kaplan</span>
															</a>
														</td>
													</tr>
												</table>
											</td>
										</tr>
									</table>
									<!-- Box 2 -->
									<table class="column2Right" align="left" cellpadding="0" cellspacing="0" border="0">
										<tr>
											<td align="left" valign="middle" width="139" class="column2Right borderBottom" height="90" bgcolor="#eeeeee" style="padding:0; border-right:1px solid #cccccc;">
												<!-- Inner Content: Icon with label underneath -->
												<table class="column2Right" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
													<tr>
														<td class="column2Left" align="center" valign="middle" bgcolor="#eeeeee" style="padding:16px;">
															<!-- Ensure link is duplicated in second <a> tag below: -->
															<a href="" target="blank" style="border-style:none; display: block; background: #eeeeee;">
																<img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-70x60-OurSchools.png" alt="" height="30" border="0" style="display:block; margin:0" />
															</a>
															<!-- 10px Spacer -->
															<div style="height:10px">&nbsp;</div>
															<a href="" target="blank" style="border-style:none; display: block; background: #eeeeee; text-decoration: none;">
																<span style="font-family:Arial, Helvetica, sans-serif; font-size:13px; color:#555555; line-height:1.4; text-align:center; text-decoration: none;">Our Schools</span>
															</a>
														</td>
													</tr>
												</table>
											</td>
										</tr>
									</table>
									<!-- Box 3 -->
									<table class="column2Left" align="left" cellpadding="0" cellspacing="0" border="0">
										<tr>
											<td align="left" valign="middle" width="139" class="column2Left" height="90" bgcolor="#eeeeee" style="padding:0; border-right:1px solid #cccccc;">
												<!-- Inner Content: Icon with label underneath -->
												<table class="column2Left" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
													<tr>
														<td class="column2Left" align="center" valign="middle" bgcolor="#eeeeee" style="padding:16px;">
															<!-- Ensure link is duplicated in second <a> tag below: -->
															<a href="" target="blank" style="border-style:none; display: block; background: #eeeeee;">
																<img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-70x60-OurPrograms.png" alt="" height="30" border="0" style="display:block; margin:0" />
															</a>
															<!-- 10px Spacer -->
															<div style="height:10px">&nbsp;</div>
															<a href="" target="blank" style="border-style:none; display: block; background: #eeeeee; text-decoration: none;">
																<span style="font-family:Arial, Helvetica, sans-serif; font-size:13px; color:#555555; line-height:1.4; text-align:center; text-decoration: none;">Our Programs</span>
															</a>
														</td>
													</tr>
												</table>
											</td>
										</tr>
									</table>
									<!-- Box 4 -->
									<table class="column2Right" align="left" cellpadding="0" cellspacing="0" border="0">
										<tr>
											<td align="left" valign="middle" width="139" class="column2Right" height="90" bgcolor="#eeeeee" style="padding:0;">
												<!-- Inner Content: Icon with label underneath -->
												<table class="column2Right" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
													<tr>
														<td class="column2Left" align="center" valign="middle" bgcolor="#eeeeee" style="padding:16px;">
															<!-- Ensure link is duplicated in second <a> tag below: -->
															<a href="" target="blank" style="border-style:none; display: block; background: #eeeeee;">
																<img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-70x60-Promotions.png" alt="" height="30" border="0" style="display:block; margin:0" />
															</a>
															<!-- 10px Spacer -->
															<div style="height:10px">&nbsp;</div>
															<a href="" target="blank" style="border-style:none; display: block; background: #eeeeee; text-decoration: none;">
																<span style="font-family:Arial, Helvetica, sans-serif; font-size:13px; color:#555555; line-height:1.4; text-align:center; text-decoration: none;">Promotions</span>
															</a>
														</td>
													</tr>
												</table>
											</td>
										</tr>
									</table>
								</td>		
							</tr>
						</table>
						<!-- 20px Spacer -->
						<div style="height:20px">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: F2  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 2:1 Columns -->
						<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
							<tbody><tr>
								<td>
									<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0">
										<!-- 2 column heading, list, paragraphs and CTA -->
										<tbody><tr>
											<td valign="top" align="left" class="deviceWidth" width="370" style="padding: 0px 20px 0px 0px;">
												<!-- Heading -->
												<table cellpadding="0" cellspacing="0" border="0">
													<tbody><tr>
														<td>
															<!-- 20px Sub-Heading Black/Bold -->
															<span style="font-family: Arial, Helvetica, sans-serif; font-size: 21px; color: #0069aa; font-weight: bold; line-height: 1.4;">Why Choose Kaplan?</span>
															<!-- 7px Spacer -->
															<div style="height: 7px;">&nbsp;</div>
															<!-- Standard List -->
															<table cellpadding="2" cellspacing="0" border="0"> 
																<tbody><tr>
																	<td valign="top">•</td>
																	<td><span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">9 out of 10 students recommend us to their friends </span></td>
																</tr>
																<tr>
																	<td valign="top">•</td>
																	<td><span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">Make friends from around the world </span></td>
																</tr>
																<tr>
																	<td valign="top">•</td>
																	<td><span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">Immerse yourself in a different culture</span></td>
																</tr>
																<tr>
																	<td valign="top">•</td>
																	<td><span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">Enjoy the central and convenient location of our schools</span></td>
																</tr>
																<tr>
																	<td valign="top">•</td>
																	<td><span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">Learn with the latest education technology</span></td>
																</tr>
															</tbody></table>
														</td>
													</tr>
												</tbody></table>				
												<!-- 20px Spacer -->
												<div style="height: 20px;">&nbsp;</div>
												<!-- Paragraph -->
												<table cellpadding="0" cellspacing="0" border="0">
													<tbody><tr>
														<td>
															<!-- 13px Standard Body Text -->
															<span style="font-family: Arial, Helvetica, sans-serif; font-weight: normal; font-size: 13px; color: #404040; line-height: 1.4;">In the meantime you can have a look at our brochures and find out more about our English courses and destinations. </span>
														</td>
													</tr>
												</tbody></table>
												<!-- 20px Spacer -->
												<div style="height: 20px;">&nbsp;</div>
												<!-- Left Aligned CTA -->
												<table width="370" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
													<tbody><tr>
														<td align="left" class="deviceWidth" width="370">
															<table bgcolor="#f47c20" width="170" border="0" align="left" cellpadding="0" cellspacing="0" style="background-color: #f47c20; background-position: initial initial; background-repeat: initial initial;">
																<tbody><tr>
																	<td width="170" align="center" style="padding: 7px 20px;"><strong><a href="#" style="font-family: Arial, Helvetica, sans-serif; display: block; color: #ffffff; font-size: 14px; text-decoration: none;">See Brochures</a></strong></td>
																</tr>
															</tbody></table>
														</td>
													</tr>
												</tbody></table>
												<!-- 20px Spacer -->
												<div style="height: 20px;">&nbsp;</div>
												<!-- Closing -->
												<table width="370" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
													<tbody><tr>
														<td class="deviceWidth" bgcolor="#ffffff">
															<span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #000000; line-height: 1.4;">We look forward to seeing you soon,<br />
																<span style="font-weight: bold;">Your Kaplan International Team</span>
															</span>
														</td>
													</tr>
												</tbody></table>
												<!-- 20px Spacer -->
												<div style="height: 20px;">&nbsp;</div>
											</td>
										</tr>
									</tbody></table>
									<!-- 1 column Icon boxes with labels - Vertical -->
									<table class="deviceWidth" align="right" cellpadding="0" cellspacing="0" border="0">
										<tbody><tr>
											<td align="right" valign="top" class="deviceWidth" width="166" style="padding: 0px;">
												<table width="166" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee" style="border: 1px solid #cccccc;">
													<tbody><tr class="float-l">
														<td>
															<table class="column2Left" align="left" cellpadding="0" cellspacing="0" border="0">
																<tbody><tr>
																	<td align="left" valign="middle" width="166" class="column2Left" height="90" bgcolor="#eeeeee" style="padding: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc;">
																		<!-- Inner Content: Icon with label underneath -->
																		<table align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
																			<tbody><tr>
																				<td align="center" valign="middle" bgcolor="#eeeeee" style="padding: 16px;">
																					<!-- Ensure link is duplicated in second <a> tag below: -->
																					<a href="" target="blank" style="border-style: none; display: block; background-color: #eeeeee; background-position: initial initial; background-repeat: initial initial;">
																						<img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-70x60-About.png" alt="" height="30" border="0" style="display: block; margin: 0px;" />
																					</a>
																					<!-- 10px Spacer -->
																					<div style="height: 10px;">&nbsp;</div>
																					<a href="" target="blank" style="border-style: none; display: block; background-color: #eeeeee; text-decoration: none; background-position: initial initial; background-repeat: initial initial;">
																						<span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #555555; line-height: 1.4; text-align: center; text-decoration: none;">About Kaplan</span>
																					</a>
																				</td>
																			</tr>
																		</tbody></table>
																	</td>
																</tr>
															</tbody></table>
														</td>
													</tr>
													<tr class="float-l">
														<td>
															<table class="column2Right" align="left" cellpadding="0" cellspacing="0" border="0">
																<tbody><tr>
																	<td align="left" valign="middle" width="166" class="column2Right borderLeft" height="90" bgcolor="#eeeeee" style="padding: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc;">
																		<!-- Inner Content: Icon with label underneath -->
																		<table align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
																			<tbody><tr>
																				<td align="center" valign="middle" bgcolor="#eeeeee" style="padding: 16px;">
																					<!-- Ensure link is duplicated in second <a> tag below: -->
																					<a href="" target="blank" style="border-style: none; display: block; background-color: #eeeeee; background-position: initial initial; background-repeat: initial initial;">
																						<img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-70x60-OurSchools.png" alt="" height="30" border="0" style="display: block; margin: 0px;" />
																					</a>
																					<!-- 10px Spacer -->
																					<div style="height: 10px;">&nbsp;</div>
																					<a href="" target="blank" style="border-style: none; display: block; background-color: #eeeeee; text-decoration: none; background-position: initial initial; background-repeat: initial initial;">
																						<span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #555555; line-height: 1.4; text-align: center; text-decoration: none;">Our Schools</span>
																					</a>
																				</td>
																			</tr>
																		</tbody></table>
																	</td>
																</tr>
															</tbody></table>
														</td>
													</tr>
													<tr class="float-l">
														<td>
															<table class="column2Left" align="left" cellpadding="0" cellspacing="0" border="0">
																<tbody><tr>
																	<td align="left" valign="middle" width="166" class="column2Left border0" height="90" bgcolor="#eeeeee" style="padding: 0px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #cccccc;">
																		<!-- Inner Content: Icon with label underneath -->
																		<table align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
																			<tbody><tr>
																				<td align="center" valign="middle" bgcolor="#eeeeee" style="padding: 16px;">
																					<!-- Ensure link is duplicated in second <a> tag below: -->
																					<a href="" target="blank" style="border-style: none; display: block; background-color: #eeeeee; background-position: initial initial; background-repeat: initial initial;">
																						<img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-70x60-OurPrograms.png" alt="" height="30" border="0" style="display: block; margin: 0px;" />
																					</a>
																					<!-- 10px Spacer -->
																					<div style="height: 10px;">&nbsp;</div>
																					<a href="" target="blank" style="border-style: none; display: block; background-color: #eeeeee; text-decoration: none; background-position: initial initial; background-repeat: initial initial;">
																						<span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #555555; line-height: 1.4; text-align: center; text-decoration: none;">Our Programs</span>
																					</a>
																				</td>
																			</tr>
																		</tbody></table>
																	</td>
																</tr>
															</tbody></table>
														</td>
													</tr>
													<tr class="float-l">
														<td>
															<table class="column2Left" align="left" cellpadding="0" cellspacing="0" border="0">
																<tbody><tr>
																	<td align="left" valign="middle" width="166" class="column2Right borderLeft" height="90" bgcolor="#eeeeee" style="padding: 0px;">
																		<!-- Inner Content: Icon with label underneath -->
																		<table align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#eeeeee">
																			<tbody><tr>
																				<td align="center" valign="middle" bgcolor="#eeeeee" style="padding: 16px;">
																					<!-- Ensure link is duplicated in second <a> tag below: -->
																					<a href="" target="blank" style="border-style: none; display: block; background-color: #eeeeee; background-position: initial initial; background-repeat: initial initial;">
																						<img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-70x60-Promotions.png" alt="" height="30" border="0" style="display: block; margin: 0px;" />
																					</a>
																					<!-- 10px Spacer -->
																					<div style="height: 10px;">&nbsp;</div>
																					<a href="" target="blank" style="border-style: none; display: block; background-color: #eeeeee; text-decoration: none; background-position: initial initial; background-repeat: initial initial;">
																						<span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #555555; line-height: 1.4; text-align: center; text-decoration: none;">Promotions</span>
																					</a>
																				</td>
																			</tr>
																		</tbody></table>
																	</td>
																</tr>
															</tbody></table>
														</td>
													</tr>
												</tbody></table>
											</td>
											<!-- END: 1 column Icon boxes with labels - Vertical -->

										</tr>
									</tbody></table>

								</td>
							</tr>
						</tbody></table>
						<!-- 20px Spacer -->
						<div style="height: 20px;">&nbsp;</div></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: G3  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- 3 Column Text Boxes with Images -->
<table width="560" class="deviceWidth" align="center" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff">
	<!-- Row 1 -->
	<tbody>
		<tr>
			<td height="214">
			<!-- Box 1 -->
			<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0" style="border-left-width: 1px; border-left-style: solid; border-left-color: #ffffff; border-right-width: 1px; border-right-style: solid; border-right-color: #ffffff;">
				<tbody>
					<tr>
						<td align="left" class="deviceWidth20pxBtm" width="168" style="padding: 0px 25px 20px 0px;">
						<!-- Upper Section - Text -->
						<table width="168" class="col3Narrow" bgcolor="#00A5D9" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td class="col3NarrowHeading" valign="top" align="center" height="26" bgcolor="#00A5D9" style="padding: 10px;">
									<p style="padding: 0px; margin: 0px;">
									<a href="#" style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 16px; color: #ffffff; line-height: 1.4; text-decoration: none;">Blog</a>
									</p>
									</td>
								</tr>
							</tbody>
						</table>
						<!-- Lower Section - Image -->
						<table width="168" class="deviceWidth" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td><a href="#" style="display: block;" border="0">
									<img class="col3Narrow" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x388-G3-Blog.jpg" alt="" width="168" border="0" style="display: block; margin: 0px;" /></a>
									</td>
								</tr>
							</tbody>
						</table>
						</td>
					</tr>
				</tbody>
			</table>
			<!-- Box 2 -->
			<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0" style="border-left-width: 1px; border-left-style: solid; border-left-color: #ffffff; border-right-width: 1px; border-right-style: solid; border-right-color: #ffffff;">
				<tbody>
					<tr>
						<td align="left" class="deviceWidth20pxBtm" width="168" style="padding: 0px 25px 20px 0px;">
						<!-- Upper Section - Text -->
						<table width="168" class="col3Narrow" bgcolor="#00A5D9" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td class="col3NarrowHeading" valign="top" align="center" height="26" bgcolor="#00A5D9" style="padding: 10px;">
									<p style="padding: 0px; margin: 0px;">
									<a href="#" style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 16px; color: #ffffff; line-height: 1.4; text-decoration: none;">Videos</a>
									</p>
									</td>
								</tr>
							</tbody>
						</table>
						<!-- Lower Section - Image -->
						<table width="168" class="deviceWidth" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td>
<a href="#" style="display: block;" border="0">
									<img class="col3Narrow" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x388-G3-Videos.jpg" alt="" width="168" border="0" style="display: block; margin: 0px;" /></a>
									</td>
								</tr>
							</tbody>
						</table>
						</td>
					</tr>
				</tbody>
			</table>
			<!-- Box 3 -->
			<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0" style="border-left-width: 1px; border-left-style: solid; border-left-color: #ffffff; border-right-width: 1px; border-right-style: solid; border-right-color: #ffffff;">
				<tbody>
					<tr>
						<td align="left" class="deviceWidth20pxBtm" width="168" style="padding: 0px 0px 20px;">
						<!-- Upper Section - Text -->
						<table width="168" class="col3Narrow" bgcolor="#00A5D9" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td class="col3NarrowHeading" valign="top" align="center" height="26" bgcolor="#00A5D9" style="padding: 10px;">
									<p style="padding: 0px; margin: 0px;">
									<a href="#" style="font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 16px; color: #ffffff; line-height: 1.4; text-decoration: none;">Promotions</a>
									</p>
									</td>
								</tr>
							</tbody>
						</table>
						<!-- Lower Section - Image -->
						<table width="168" class="deviceWidth" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0">
							<tbody>
								<tr>
									<td>
<a href="#" style="display: block;" border="0">
									<img class="col3Narrow" src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/mega-template-440x388-G3-Promotions.jpg" alt="" width="168" border="0" style="display: block; margin: 0px;" /></a>
									</td>
								</tr>
							</tbody>
						</table>
						</td>
					</tr>
				</tbody>
			</table>
			</td>
		</tr>
	</tbody>
</table></td></tr></table></td></tr></table>
						</div>

						<!--======== Section: G4  ================================-->

						<div>
						<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><table width="560" class="deviceWidth" align="right" cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffff" style="">
							<tbody><tr align="right">
								<td align="left" width="390"></td>
								<td align="right" valign="bottom" class="deviceWidth" width="170">
									<table bgcolor="#f47c20" width="170" border="0" align="right" cellpadding="0" cellspacing="0" style="background-color: #f47c20; background-position: initial initial; background-repeat: initial initial;">
										<tbody><tr>
											<td width="170" align="center" style="padding: 7px 20px;"><strong><a href="#" style="font-family: Arial, Helvetica, sans-serif; display: block; color: #ffffff; font-size: 14px; text-decoration: none;">Contact us now</a></strong></td>
										</tr>
									</tbody></table>
								</td>
							</tr>
							<tr>
								<td>
									<!-- 20px Spacer -->
									<div style="height: 20px;">&nbsp;</div>
								</td>
							</tr>
						</tbody></table></td></tr></table></td></tr></table>
						</div>

						<!-- /1px Border -->
					</td>
				</tr>
			</table>

			<!--======== Section: H1  ================================-->


			<div>
			<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><table width="600" cellpadding="20" cellspacing="0" border="0" align="center" class="deviceWidth" bgcolor="#eeeeee">
				<tbody><tr>
					<td>
						<table width="560" cellpadding="0" cellspacing="0" border="0" align="center" class="deviceWidth">
							<tbody><tr>
								<td>
									<!-- Label Left -->
									<table class="deviceWidth" align="left" cellpadding="0" cellspacing="0" border="0">
										<tbody><tr>
											<td align="left" valign="middle" width="270" class="deviceWidth center" bgcolor="#eeeeee">
												<!-- 13px Black Body Text -->
												<span style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #000000; line-height: 1.4;">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Officia, commodi, natus, fugiat explicabo cum magnam accusantium.</span>
											</td>
										</tr>
									</tbody></table>
									<!-- Right Aligned CTA -->
									<table class="deviceWidth" align="right" cellpadding="0" cellspacing="0" border="0">
										<tbody><tr>
											<td align="left" valign="middle" width="270" class="deviceWidth20pxTop" bgcolor="#eeeeee" style="padding: 10px 0px;">
												<table class="deviceWidth center" bgcolor="#f47c20" width="200" border="0" align="right" cellpadding="0" cellspacing="0" style="background-color: #f47c20; background-position: initial initial; background-repeat: initial initial;">
													<tbody><tr>
														<td width="170" align="center" style="padding: 7px 20px;"><strong><a href="#" style="font-family: Arial, Helvetica, sans-serif; display: block; color: #ffffff; font-size: 14px; text-decoration: none;">View online brochure</a></strong></td>
													</tr>
												</tbody></table>
											</td>
										</tr>
									</tbody></table>	
								</td>
							</tr>
						</tbody></table>
					</td>
				</tr>
			</tbody></table></td></tr></table></td></tr></table>
			</div>


			<!--======== Footer ================================-->
			<table width="600" cellpadding="20" cellspacing="0" border="0" align="center" class="deviceWidth" bgcolor="#404040">
				<tr>
					<td>
						<table width="560" cellpadding="0" cellspacing="0" border="0" align="center" class="deviceWidth">
							<tr>
								<td class="deviceWidth">
									<div>
									<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><!-- Space for Banners -->
         <table class="footerBanner" width="560" border="0" cellspacing="0" cellpadding="0" align="center" style="min-width:280px">
          <tr>
           <td width="560" align="left" valign="top">
            <a href="">
             <span id="footerBanner-click">
              <img src="http://placehold.it/840x90" alt="" width="560" border="0" style="display:block; margin:0" />
             </span>
            </a>
           </td>
          </tr>
         </table>
<!-- 20px Spacer -->
<div style="height: 20px;">
&nbsp;
</div></td></tr></table></td></tr></table>
									</div>
									<!-- Social Media and Affiliates -->
									<table class="deviceWidth" width="560" border="0" cellspacing="0" cellpadding="0" align="center" style="min-width:280px">
										<tr>
											<td class="deviceWidth" width="560" align="left" valign="top" style="border-bottom:1px solid #a0a0a0;">
												<table class="deviceWidth" width="560" border="0" cellspacing="12" cellpadding="0" align="center">
													<tr>
														<td class="deviceWidth" width="560" align="left" valign="top">
															<table width="104" border="0" cellspacing="0" cellpadding="0" align="left" style="width:104px !important; float:left !important">
																<tr>
																	<td>
																		
																		<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><p style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #cccccc; margin: 0px; padding: 0px;">
																			Follow us
																		</p>
																		<table width="104" cellspacing="0" cellpadding="0">
																			<tbody><tr>
																				<td width="26" style="line-height: 26px;"><a href="http://click.crm.kaplaninternational.com/?qs=3d1154f3b4c3cd2912db5761e707067e5c3f5a330e3fa4551628867aac7ed213"><img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/multipromo-facebook-112013.png" alt="" width="26" height="26" border="0" style="display: block; margin: 0px;" /></a></td>
																				<td width="26" style="line-height: 26px;"><a href="http://click.crm.kaplaninternational.com/?qs=3d1154f3b4c3cd298b14b9a43157eef23b69120776043ab0ad3785d7e3babcfd"><img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/multipromo-twitter-112013.png" alt="" width="26" height="26" border="0" style="display: block; margin: 0px;" /></a></td>
																				<td width="26" style="line-height: 26px;"><a href="http://click.crm.kaplaninternational.com/?qs=3d1154f3b4c3cd2978f5cb7c75edf88e8bd4e3065c72864788645f4d821037fc"><img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/multipromo-youtube-112013.png" alt="" width="26" height="26" border="0" style="display: block; margin: 0px;" /></a></td>
																				<td width="26" style="line-height: 26px;"><a href="http://click.crm.kaplaninternational.com/?qs=3d1154f3b4c3cd296894ad109d44d1e3a6fed8bb0120053ab57512d7bd097745"><img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/3/multipromo-instagram-112013i.png" alt="" width="26" border="0" style="display: block; margin: 0px;" /></a></td>
																			</tr>
																		</tbody></table>
																		<br /></td></tr></table></td></tr></table>
																		
																	</td>
																</tr>
															</table>
															<table width="338" border="0" cellspacing="0" cellpadding="0" align="right" class="hide" style="width:338px !important; float:right !important">
																<tr>
																	<td width="338">
																		<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><p style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #cccccc; margin: 0px; padding: 0px;">
																			Kaplan schools are accredited by
																		</p>
																		<table width="338" cellspacing="0" cellpadding="0">
																			<tbody><tr>
																				<td width="338" style="line-height: 36px;"><img src="http://image.crm.kaplaninternational.com/lib/fe9a13707567017e76/m/2/sales-email-accreditation_gray.jpg" alt="" width="338" style="display: block; margin: 0px;" /></td>
																			</tr>
																		</tbody></table></td></tr></table></td></tr></table>
																	</td>
																</tr>
															</table>
														</td>
													</tr>
												</table>
											</td>
										</tr>
									</table>
									<!-- Address -->
									<table class="deviceWidth" width="560" border="0" cellspacing="0" cellpadding="0" align="center" style="min-width:280px">
										<tr>
											<td width="560" align="left" valign="top">
												<table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table  width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px"><table class="deviceWidth" width="560" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="#404040">
													<tbody><tr>
														<td class="deviceWidth" width="560" align="left" valign="top">
															<div style="height: 10px;">&nbsp;</div>
															<span style="line-height: 16px; font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #cccccc; margin: 0px; padding: 0px;">
																<strong>Aspect Education UK Ltd</strong><br />
																Reg. No: 4053877 / VAT No: 152088224 / Reg. office: 2nd Floor, Warwick Building, Kensington Village, Avonmore Road, London, W14 8HQ. UK
															</span>
															<div style="height: 10px;">&nbsp;</div>		
														</td>
													</tr>
													<tr>
														<td><a style="color: #ffffff; text-decoration: underline;" href="http://click.crm.kaplaninternational.com/?qs=3d1154f3b4c3cd29a4895e24f9aa05f9d29bdf10c23d18cc7ab8ef4a4bc7d452"><span style="line-height: 10px; font-family: Tahoma, Geneva, sans-serif; font-size: 11px; color: #ffffff; margin: 0px; padding: 0px;">Privacy Policy</span></a> <span style="color: #cccccc;"> &nbsp; | &nbsp;</span> <a style="color: #ffffff; text-decoration: underline;" href="http://click.crm.kaplaninternational.com/?qs=3d1154f3b4c3cd2924d86cfec456198a2f8ed27afffbbe7e0e0f774f27c36cd4"><span style="line-height: 10px; font-family: Tahoma, Geneva, sans-serif; font-size: 11px; color: #ffffff; margin: 0px; padding: 0px;">Unsubscribe</span></a>
															<div style="height: 10px;">&nbsp;</div>
														</td>
													</tr>
													<tr>
														<td align="left" style="font-style: normal; font-variant: normal; font-weight: normal; font-size: 10px; line-height: normal; font-family: Tahoma, Geneva, Arial, sans-serif; color: #cccccc; text-align: right;">© 2014 Kaplan, Inc. All rights reserved. </td>
													</tr>

												</tbody></table></td></tr></table></td></tr></table>
											</td>
										</tr>
									</table>
								</td>
							</tr>
						</table>
					</td>
				</tr>
			</table>
		</div>

	
	</body></html>
</body></html>