<!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">

<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>theartofservice  &raquo; Feedback from our TTT Program</title>
<meta name="generator" content="Podbean 3.2" /> <!-- leave this for stats -->
<meta name="keywords" content="The Service Management Update 2.0 from The Art of Service. Everything that matters in IT Service Management." />
<meta name="description" content="The Service Management Update 2.0 from The Art of Service. Everything that matters in IT Service Management." />
<link rel="stylesheet" href="http://www.podbean.com/wp-content/themes/MistyLook/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="http://www.podbean.com/home/css/blogstyle.css" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="theartofservice RSS Feed" href="http://theartofservice.podbean.com/feed/" />
<link rel="pingback" href="http://www.podbean.com/xmlrpc.php" />

<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.podbean.com/xmlrpc.php?rsd" />
		<script type="text/javascript">
		//<![CDATA[
		
			function basename (path) { return path.replace( /.*\//, "" ); }
	
			var winimg=null;
			function ps_imagemanager_popup(imgurl,title,w,h) {
				lpos=(screen.width)?(screen.width-w)/2:100;
				tpos=(screen.height)?(screen.height-h)/2:100;
				settings='width='+w+',height='+h+',top='+tpos+',left='+lpos+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
				winimg=window.open('about:blank','imagemanagerpopup',settings);
	
				var doc = '';
				doc += '<html><head>';
				doc += '<title>' + title + ' - ' + basename(imgurl) + '(' + w + 'x' + h +')</title>';
				doc += '<style type="text/css"><!-- body { margin:0px; padding:0px; } --></style>';
				doc += '</head>';
				doc += '<body onload="self.focus();">';
				doc += '<img style="cursor:pointer;" src="' + imgurl + '" title="' + title + '" onclick="self.close();"/>';
				doc += '</body></html>';
				
				winimg.document.writeln(doc);
				winimg.document.close();
			}	
			
		//]]>
		</script>
<script language="javascript" type="text/javascript"><!--
var podPressBackendURL = "http://theartofservice.podbean.com/wp-content/plugins/podpress/podpress_backend.php?";
--></script>
<script language="javascript" type="text/javascript" src="http://theartofservice.podbean.com/wp-content/plugins/podpress/podpress.js"></script>
<link rel="stylesheet" href="http://theartofservice.podbean.com/wp-content/plugins/podpress/podpress.css" type="text/css" />
<style type="text/css">
		.PSR_stars {
		  height: 15px;
		  overflow: hidden;
		  padding: 0;
		  margin: 0;
		}
		* html .PSR_stars .star {
			display: block;
			position: absolute;
			height: 0;
			width: 0;
		}
		.PSR_stars input {
			display: none;
		}
		.PSR_no_star, .PSR_half_star, .PSR_full_star {
		  display: block;
		  float: left;
		  width: 17px;
		  height: 15px;
		  text-indent: -1000em;
		  background-repeat: no-repeat;
		}
		.PSR_no_star {
		  background-image: url(/wp-content/systemplugins/post-star-rating/img/stars/no_star.gif);
		}
		.PSR_full_star {
		  background-image: url(/wp-content/systemplugins/post-star-rating/img/stars/full_star.gif);
		}
		.PSR_half_star {
		  background-image: url(/wp-content/systemplugins/post-star-rating/img/stars/half_star.gif);
		}
		.PSR_votes {
			padding-left: .5em;
		}
		.full, .half, .no{
		}

		a.PSR_stars_img:link {text-decoration:none}
		a.PSR_stars_img:visited {text-decoration:none}
		a.PSR_stars_img:hover {text-decoration:none}
		a.PSR_stars_img:active {text-decoration:none}
		</style>
<script type="text/javascript">
		<!--
		function PSR_star_over(obj, star_number) {
			var psr=obj.parentNode;
			var as=psr.getElementsByTagName('label');
			for (i=0;i<star_number;++i) {
				as[i].className = 'PSR_full_star';
			}
			for (;i<as.length;++i) {
				as[i].className = 'PSR_no_star';
			}
		}
		function PSR_star_out(obj) {
			var as=obj.getElementsByTagName('label');
			var as2=obj.getElementsByTagName('span');
			for (i=0;i<as.length;++i) {
				if(as2[i].className == 'full'){
					as[i].className = 'PSR_full_star';
				}else if(as2[i].className == 'half'){
					as[i].className = 'PSR_half_star';
				}else{
					as[i].className = 'PSR_no_star';
				}
			}
		}
		//-->
		</script>
	<script type="text/javascript">
	function spamBam_storeSession(sessionID) {
		spamBam_createCookie('spambam_session',sessionID,7)
	}
	function spamBam_createCookie(name,value,days) {
		if (days) {
			var date = new Date();
			date.setTime(date.getTime()+(days*24*60*60*1000));
			var expires = "; expires="+date.toGMTString();
		}
		else var expires = "";
		document.cookie = name+"="+value+expires+"; path=/";
	}

	function spamBam_readCookie(name) {
		var nameEQ = name + "=";
		var ca = document.cookie.split(';');
		for(var i=0;i < ca.length;i++) {
			var c = ca[i];
			while (c.charAt(0)==' ') c = c.substring(1,c.length);
			if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
		}
		return null;
	}

	function spamBam_eraseCookie(name) {
		spamBam_createCookie(name,"",-1);
	}
	</script>
	</head>
<body id="section-index">
<div id='pb_controlarea'>
<table id='pb_controlstrip' cellpadding='0' cellspacing='0'>
<tr valign='middle'>            
	<td id='pb_controlstrip_userpic'><a href="http://www.podbean.com"><img src="/images/small-logo.jpg" alt="Podbean Podcast Site" title="Podbean Podcast Site" /></a></td>
    <td id='pb_controlstrip_category'>
		<span id='pb_controlstrip_whitebold12'>Category :&nbsp;&nbsp;</span>
				<a href="http://www.podbean.com/podcasts?s=hit&c=technology&t=month&p=1">Technology</a>&nbsp;&nbsp;
	</td>
	<td id='pb_controlstrip_tag'>
		<span id='pb_controlstrip_whitebold12'>Tags :&nbsp;&nbsp;</span>
		<a href="http://www.podbean.com/search?k=tag&v=itil" rel="tag">itil</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=itsm" rel="tag">itsm</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=it service management" rel="tag">it service management</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=iso20000" rel="tag">iso20000</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=technology" rel="tag">technology</a>&nbsp;&nbsp;&nbsp;<a href="http://www.podbean.com/search?k=tag&v=it" rel="tag">it</a>&nbsp;&nbsp;&nbsp;	</td>
	<td id='pb_controlstrip_register'>
		&nbsp;
	</td>
</tr>
</table>
</div>

<div id="navigation">
<ul>
	<li ><a href="http://theartofservice.podbean.com" title="Home">Home</a></li>
		<li class="page_item"><a href="http://theartofservice.podbean.com/about/" title="About Us">About Us</a></li>
	<li class="search"><form method="get" id="searchform" action="http://theartofservice.podbean.com"><input type="text" class="textbox" value="" name="s" id="s" /><input type="submit" id="searchsubmit" value="Search" /></form></li>
</ul>
</div><!-- end id:navigation -->


<div id="container">


<div id="header">
<h1><a href="http://theartofservice.podbean.com" title="theartofservice">theartofservice</a></h1>
<h2>The Service Management Update 2.0 from The Art of Service. Everything that matters in IT Service Management.</h2>
</div><!-- end id:header -->


<div id="feedarea">
<dl>
	<dt><strong>Feed on</strong></dt>
	<dd><a href="http://theartofservice.podbean.com/feed/">Posts</a></dd>
	<dd><a href="http://theartofservice.podbean.com/comments/feed/">Comments</a></dd>		
</dl>
</div><!-- end id:feedarea -->

  
  <div id="headerimage" style="background: #fff url('http://theartofservice.podbean.com/mf/web/bc9eg/header_image_MistyLook.jpg') no-repeat 0 0;">
</div><!-- end id:headerimage --><div id="content">
<div id="content-main">
		
						
			<div class="post" id="post-448732">
				<div class="posttitle">
					<h2><a href="http://theartofservice.podbean.com/2008/12/23/feedback-from-our-ttt-program/" rel="bookmark" title="Permanent Link to Feedback from our TTT Program">Feedback from our TTT Program</a></h2>
					<p class="post-info">Dec 23rd, 2008 by <a href="http://theartofservice.podbean.com/author/theartofservice/" title="Posts by theartofservice">theartofservice</a>  </p>
				</div>
				
				<div class="entry">
					<p><strong>Our partners have recently shared their feedback with us following their experience of the Train the Trainer program. This is what they said&#8230;</strong></p>
<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-AU</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val="&#45;-" /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} --> <!--[endif]--></p>
<p class="MsoNormal"><span lang="EN-US">&#8220;The <em>Train The Trainers (TTT)</em> course of The Art of Service is indeed more an <em>Educate The Educators</em> course. As ITIL consultants, we only expected to refine our current presentation techniques, abilities and skills but we got amazingly much more than we imagined! The course experience changed our teaching paradigms and challenged our potential human talents. Focus in the audience (e.g. get rid of the common protagonism), be alert to signals flowing in the classroom (e.g. read the body language) and make it <em>professionally</em> fun (e.g. use of relevant but ordinary life examples and constructive discussions) are just some of the valuable lessons we learned. After all, it is all about people and how to get them committed to maximize their learning experience, and that is exactly what Ivanka taught us. So, I really look forward to applying the approach and its arsenal of tools and good manners as soon as possible!&#8221;</span></p>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal">&#8220;I think that the course was very good, Ivanka has a great knowledge of the Transition course. She knows the material, always answers all the questions and the examples and exercises that she makes in the course are very clear. Specifically in the trainers course, she gave us very good practices and advice that we can apply in our courses in order to be more efficient. In general terms, I am very satisfied with her training and with the course.&#8221;</p>
<p class="MsoNormal"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-AU</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val="&#45;-" /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} --> <!--[endif]--></p>
									</div>
		
				<p class="postmetadata">Posted in <a href="http://theartofservice.podbean.com/category/customer-feedback/" title="View all posts in Customer Feedback" rel="category tag">Customer Feedback</a> | 0 Comments</p>
					<span id="postfooter">
	<table border=0 cellspadding=3 cellspacing=0>
		<tr>
		<td align="left" valign="bottom" width=220>
							Rate it: <form action="/2008/12/23/feedback-from-our-ttt-program/" method="post" class="PSR_stars" onmouseout="PSR_star_out(this)"> <input type="radio" id="psr_star_1" class="star" name="psr_stars" value="1" onclick="this.form.submit();return true;" /><label class="PSR_no_star" id="psr_label_1" for="psr_star_1" onmouseover="PSR_star_over(this, 1)">1</label><span class="no"></span> <input type="radio" id="psr_star_2" class="star" name="psr_stars" value="2" onclick="this.form.submit();return true;" /><label class="PSR_no_star" id="psr_label_2" for="psr_star_2" onmouseover="PSR_star_over(this, 2)">2</label><span class="no"></span> <input type="radio" id="psr_star_3" class="star" name="psr_stars" value="3" onclick="this.form.submit();return true;" /><label class="PSR_no_star" id="psr_label_3" for="psr_star_3" onmouseover="PSR_star_over(this, 3)">3</label><span class="no"></span> <input type="radio" id="psr_star_4" class="star" name="psr_stars" value="4" onclick="this.form.submit();return true;" /><label class="PSR_no_star" id="psr_label_4" for="psr_star_4" onmouseover="PSR_star_over(this, 4)">4</label><span class="no"></span> <input type="radio" id="psr_star_5" class="star" name="psr_stars" value="5" onclick="this.form.submit();return true;" /><label class="PSR_no_star" id="psr_label_5" for="psr_star_5" onmouseover="PSR_star_over(this, 5)">5</label><span class="no"></span> <a href="http://theartofservice.podbean.com/2008/12/23/feedback-from-our-ttt-program/#respond">(0 ratings)</a><input type="hidden" name="p" value="448732" /><input type="submit" name="vote" value="Votar" /></form>					</td>
		<td align="left" valign="bottom">
							<img src="http://www.podbean.com/images/greyicon_share.gif"  style="margin:4px 2px -4px 0px" /><a href="http://www.podbean.com/mail?cid=76198&pid=448732" target="_blank">Email it</a>
					</td>
		</tr>
		<tr height=20></tr>
		<tr>
		<td align="left" valign="bottom" colspan=2>
		<span id="wp-notable-line" class="wp-notable-line">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="wp-notable" id="wp-notable-digg" ><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftheartofservice.podbean.com%2F2008%2F12%2F23%2Ffeedback-from-our-ttt-program%2F&title=Feedback+from+our+TTT+Program" title="digg:Feedback from our TTT Program"><img src="http://www.podbean.com/images/blogbling/digg.png" class="wp-notable_image" alt="digg:Feedback from our TTT Program" /></a></span >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="wp-notable" id="wp-notable-newsvine" ><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Ftheartofservice.podbean.com%2F2008%2F12%2F23%2Ffeedback-from-our-ttt-program%2F&amp;h=Feedback+from+our+TTT+Program" title="newsvine:Feedback from our TTT Program"><img src="http://www.podbean.com/images/blogbling/newsvine.png" class="wp-notable_image" alt="newsvine:Feedback from our TTT Program" /></a></span >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="wp-notable" id="wp-notable-delicious" ><a href="http://del.icio.us/post?url=http%3A%2F%2Ftheartofservice.podbean.com%2F2008%2F12%2F23%2Ffeedback-from-our-ttt-program%2F&amp;title=Feedback+from+our+TTT+Program" title="del.icio.us:Feedback from our TTT Program"><img src="http://www.podbean.com/images/blogbling/delicious.png" class="wp-notable_image" alt="del.icio.us:Feedback from our TTT Program" /></a></span >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="wp-notable" id="wp-notable-yahoo" ><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Ftheartofservice.podbean.com%2F2008%2F12%2F23%2Ffeedback-from-our-ttt-program%2F&amp;t=Feedback+from+our+TTT+Program" title="Y!:Feedback from our TTT Program"><img src="http://www.podbean.com/images/blogbling/yahoo.png" class="wp-notable_image" alt="Y!:Feedback from our TTT Program" /></a></span >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="wp-notable" id="wp-notable-reddit" ><a href="http://reddit.com/submit?url=http%3A%2F%2Ftheartofservice.podbean.com%2F2008%2F12%2F23%2Ffeedback-from-our-ttt-program%2F&amp;title=Feedback+from+our+TTT+Program" title="reddit:Feedback from our TTT Program"><img src="http://www.podbean.com/images/blogbling/reddit.png" class="wp-notable_image" alt="reddit:Feedback from our TTT Program" /></a></span >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="wp-notable" id="wp-notable-furl" ><a href="http://www.furl.net/storeIt.jsp?u=http%3A%2F%2Ftheartofservice.podbean.com%2F2008%2F12%2F23%2Ffeedback-from-our-ttt-program%2F&amp;t=Feedback+from+our+TTT+Program" title="furl:Feedback from our TTT Program"><img src="http://www.podbean.com/images/blogbling/furl.png" class="wp-notable_image" alt="furl:Feedback from our TTT Program" /></a></span ></span>		</td>
		</tr>
	</table>
	</span>
				
<!-- You can start editing here. -->


   
		<!-- If comments are open, but there are no comments. -->
		
	 <div class="post-content">
<p>
	<span class="trackback"><a href="http://theartofservice.podbean.com/2008/12/23/feedback-from-our-ttt-program/trackback/">Trackback URI</a></span> | 
	<span class="commentsfeed"><a href='http://theartofservice.podbean.com/2008/12/23/feedback-from-our-ttt-program/feed/'>Comments RSS</a></span>
</p>
</div>


<h3 id="respond">Leave a Reply</h3>


<form action='http://theartofservice.podbean.com/wp-comments-show.php' method='post' id='commentform' ><input type="hidden" name="b" value="theartofservice" /><input type="hidden" name="token" value="5e5e6ff117f9cdaf689d44b2bfa71c8cf2519d82" />

<p><input class="textbox" type="text" name="author" id="author" value="" size="22" tabindex="1" />
<label for="author"><small>Name (required)</small></label></p>

<p><input class="textbox" type="text" name="email" id="email" value="" size="22" tabindex="2" />
<label for="email"><small>Mail (hidden) (required)</small></label></p>

<p><input class="textbox" type="text" name="url" id="url" value="" size="22" tabindex="3" />
<label for="url"><small>Website</small></label></p>


<!--<p><small><strong>XHTML:</strong> You can use these tags: &lt;a href=&quot;&quot; title=&quot;&quot;&gt; &lt;abbr title=&quot;&quot;&gt; &lt;acronym title=&quot;&quot;&gt; &lt;b&gt; &lt;blockquote cite=&quot;&quot;&gt; &lt;code&gt; &lt;em&gt; &lt;i&gt; &lt;strike&gt; &lt;strong&gt; </small></p>-->

<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>

<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
<input type="hidden" name="comment_post_ID" value="448732" />
</p>
	<script type="text/javascript">
				jqxe6cb2a3c1 = '';
				jqxe6cb2a3c1 += '6e';
				jqxe6cb2a3c1 += '1';
				jqxe6cb2a3c1 += '7';
				jqxe6cb2a3c1 += '7';
				jqxe6cb2a3c1 += 'b';
				jqxe6cb2a3c1 += '6';
				jqxe6cb2a3c1 += 'c';
				jqxe6cb2a3c1 += '4';
				jqxe6cb2a3c1 += '0';
				jqxe6cb2a3c1 += '1';
				jqxe6cb2a3c1 += '9';
				jqxe6cb2a3c1 += '5';
				jqxe6cb2a3c1 += '8';
				jqxe6cb2a3c1 += 'b';
				jqxe6cb2a3c1 += '4';
				jqxe6cb2a3c1 += '9';
				jqxe6cb2a3c1 += 'f';
				jqxe6cb2a3c1 += 'f';
				jqxe6cb2a3c1 += '2';
				jqxe6cb2a3c1 += '7';
				jqxe6cb2a3c1 += '8';
				jqxe6cb2a3c1 += '0';
				jqxe6cb2a3c1 += '9';
				jqxe6cb2a3c1 += 'c';
				jqxe6cb2a3c1 += '9';
				jqxe6cb2a3c1 += '3';
				jqxe6cb2a3c1 += 'b';
				jqxe6cb2a3c1 += '4';
				jqxe6cb2a3c1 += '0';
				jqxe6cb2a3c1 += '6';
				jqxe6cb2a3c1 += '5';
				spamBam_storeSession(jqxe6cb2a3c1);
	</script>
	
</form>


			</div>
	
		
		<p align="center"></p>
		
	</div><!-- end id:content-main -->
<div id="sidebar">
<ul>
<table class="profileinfo" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr height=5></tr>
<tr><td align="center">
	<table width="155px" border=0 cellpadding="2" cellspacing="0">
	<tr><td align="left"><img src="http://theartofservice.podbean.com/mf/web/5t2mm/podcast_logo_small.jpg" width=150 height=150 /></td></tr>
		<tr><td align="left"><b>Channel Visits:</b>&nbsp;36491</td></tr>
		</table>
</td></tr>
<tr height=6></tr>
<tr><td align="center">
<div id="profilebottomaction">
	<table width="155px" border=0 cellpadding="1" cellspacing="0">
	<tr>
		<td align="left" width="70px">
		<img src="http://www.podbean.com/images/viewprofile.gif"  style="margin:4px 4px -4px 0px" /><a href="http://www.podbean.com/user-profile-view?uname=theartofservice" target="_blank">Profile</a>
		</td>
		<td align="left" width="85px">
		<img src="http://www.podbean.com/images/blueicon_send_message.gif" style="margin:4px 4px -4px 0px" /><a href="http://www.podbean.com/podbean-mailbox?pageview=compose&cid=76198" target="_blank">Contact</a>
		</td>
	</tr>
	<tr>
		<td align="left" width="70px">
		<img src="http://www.podbean.com/images/blueicon_share_channel.gif"  style="margin:4px 4px -4px 0px" /><a href="http://www.podbean.com/mail?cid=76198" target="_blank">Share</a>
		</td>
				<td align="left" width="85px">
		<img src="http://www.podbean.com/images/blueicon_add_subscription.gif"  style="margin:4px 4px -4px 0px" /><a href="http://www.podbean.com/podcast-add-my-subscription?pid=32614" target="_blank">Subscribe</a>
		</td>
			</tr>
	    <tr height=5></tr>
	<tr>
		<td align="left" colspan=2>
		<img src="http://www.podbean.com/images/player_icon_20x20.gif" style="margin:4px 4px -4px 0px" /><a href="http://www.podbean.com/podcast-players?cid=76198" target="_blank">Embeddable Player</a>
		</td>
	</tr>
    	</table>
</div>


</td></tr>
<tr height=5></tr>
</table>
<br />
	
<li class="sidebox">
	<h2>Pages</h2>
	<ul><li class="page_item"><a href="http://theartofservice.podbean.com/about/" title="About Us">About Us</a></li>
</ul>	
</li>

	<li class="sidebox">
		<h2>Calendar</h2>
		<ul>
		<table id="wp-calendar">
		<caption>December 2008</caption>
		<thead>
		<tr>
		<th abbr="Monday" scope="col" title="Monday">M</th>
		<th abbr="Tuesday" scope="col" title="Tuesday">T</th>
		<th abbr="Wednesday" scope="col" title="Wednesday">W</th>
		<th abbr="Thursday" scope="col" title="Thursday">T</th>
		<th abbr="Friday" scope="col" title="Friday">F</th>
		<th abbr="Saturday" scope="col" title="Saturday">S</th>
		<th abbr="Sunday" scope="col" title="Sunday">S</th>
		</tr>
		</thead>

		<tfoot>
		<tr>
		<td abbr="November" colspan="3" id="prev"><a href="http://theartofservice.podbean.com/2008/11/" title="View posts for November 2008">&laquo; Nov</a></td>
		<td class="pad">&nbsp;</td>
		<td abbr="January" colspan="3" id="next"><a href="http://theartofservice.podbean.com/2009/01/" title="View posts for January 2009">Jan &raquo;</a></td>
		</tr>
		</tfoot>

		<tbody>
		<tr><td><a href="http://theartofservice.podbean.com/2008/12/01/" title="ITIL V3 Operational Support and Analysis (OSA) Full Certification Online Learning">1</a></td><td><a href="http://theartofservice.podbean.com/2008/12/02/" title="Help Desk, Service Desk Best Practice Handbook: Building, Running and Managing Effective Support">2</a></td><td><a href="http://theartofservice.podbean.com/2008/12/03/" title="What business case?, Hats off&#8230;.">3</a></td><td>4</td><td><a href="http://theartofservice.podbean.com/2008/12/05/" title="Twas the night before a release&#8230;">5</a></td><td><a href="http://theartofservice.podbean.com/2008/12/06/" title="More Feedback from Our Customers!">6</a></td><td><a href="http://theartofservice.podbean.com/2008/12/07/" title="Storage Management - The Complete Cornerstone Guide to Storage Management Best Practices">7</a></td>
	</tr>
	<tr>
		<td><a href="http://theartofservice.podbean.com/2008/12/08/" title="BPM Business Process Management Best Practices Design, Streamline and Manage Guide">8</a></td><td>9</td><td><a href="http://theartofservice.podbean.com/2008/12/10/" title="Santa Service">10</a></td><td><a href="http://theartofservice.podbean.com/2008/12/11/" title="Human Resources Workshop: Stress Management, ITIL V3 Service Capability RCV Certification Exam Preparation Course in a Book, A Word From Our Customers&#8230;">11</a></td><td><a href="http://theartofservice.podbean.com/2008/12/12/" title="So Santa and ITIL…. (cont’d)">12</a></td><td>13</td><td>14</td>
	</tr>
	<tr>
		<td>15</td><td><a href="http://theartofservice.podbean.com/2008/12/16/" title="PaaS - The Complete Cornerstone Guide to Platform Management Best Practices">16</a></td><td><a href="http://theartofservice.podbean.com/2008/12/17/" title="When is it the right time to implement ITIL?">17</a></td><td><a href="http://theartofservice.podbean.com/2008/12/18/" title="A Journey Complete - The Final Results from the Foundation Syllabus Review!, More from Our Customers&#8230;">18</a></td><td>19</td><td>20</td><td>21</td>
	</tr>
	<tr>
		<td>22</td><td><a href="http://theartofservice.podbean.com/2008/12/23/" title="Feedback from our TTT Program">23</a></td><td>24</td><td>25</td><td>26</td><td>27</td><td>28</td>
	</tr>
	<tr>
		<td>29</td><td>30</td><td>31</td>
		<td class="pad" colspan="4">&nbsp;</td>
	</tr>
	</tbody>
	</table>		</ul>
	</li>

<li class="sidebox">
	<h2>Archives</h2>
	<ul>	<li><a href='http://theartofservice.podbean.com/2009/09/' title='September 2009'>September 2009</a>&nbsp;(4)</li>
	<li><a href='http://theartofservice.podbean.com/2009/08/' title='August 2009'>August 2009</a>&nbsp;(9)</li>
	<li><a href='http://theartofservice.podbean.com/2009/07/' title='July 2009'>July 2009</a>&nbsp;(16)</li>
	<li><a href='http://theartofservice.podbean.com/2009/06/' title='June 2009'>June 2009</a>&nbsp;(17)</li>
	<li><a href='http://theartofservice.podbean.com/2009/05/' title='May 2009'>May 2009</a>&nbsp;(18)</li>
	<li><a href='http://theartofservice.podbean.com/2009/04/' title='April 2009'>April 2009</a>&nbsp;(19)</li>
	<li><a href='http://theartofservice.podbean.com/2009/03/' title='March 2009'>March 2009</a>&nbsp;(15)</li>
	<li><a href='http://theartofservice.podbean.com/2009/02/' title='February 2009'>February 2009</a>&nbsp;(16)</li>
	<li><a href='http://theartofservice.podbean.com/2009/01/' title='January 2009'>January 2009</a>&nbsp;(11)</li>
	<li><a href='http://theartofservice.podbean.com/2008/12/' title='December 2008'>December 2008</a>&nbsp;(18)</li>
	<li><a href='http://theartofservice.podbean.com/2008/11/' title='November 2008'>November 2008</a>&nbsp;(20)</li>
	<li><a href='http://theartofservice.podbean.com/2008/10/' title='October 2008'>October 2008</a>&nbsp;(16)</li>
	<li><a href='http://theartofservice.podbean.com/2008/09/' title='September 2008'>September 2008</a>&nbsp;(14)</li>
	<li><a href='http://theartofservice.podbean.com/2008/08/' title='August 2008'>August 2008</a>&nbsp;(12)</li>
</ul>
</li>

<li class="sidebox">
	<h2>Categories</h2>
	<ul>
			<li><a href="http://theartofservice.podbean.com/category/uncategorized/" title="View all posts filed under Uncategorized">Uncategorized</a> (18)
</li>
	<li><a href="http://theartofservice.podbean.com/category/service-management-update/" title="View all posts filed under Service Management Update">Service Management Update</a> (145)
</li>
	<li><a href="http://theartofservice.podbean.com/category/michael-wedemeyer/" title="View all posts filed under Michael Wedemeyer">Michael Wedemeyer</a> (28)
</li>
	<li><a href="http://theartofservice.podbean.com/category/personal-development-anyone/" title="Jackie&#8217;s Personal Development &#038; Management Training podcasts and Blogs">Personal Development anyone?!</a> (10)
</li>
	<li><a href="http://theartofservice.podbean.com/category/product-launches/" title="View all posts filed under Product Launches">Product Launches</a> (123)
</li>
	<li><a href="http://theartofservice.podbean.com/category/customer-feedback/" title="We are proud to receive positive feedback from our clients - we want to share this with the world!">Customer Feedback</a> (11)
</li>
	</ul>		
</li>


	<li class="sidebox">

		<h2>Subscribe</h2>

		<ul>
			 <li><a href="itpc://theartofservice.podbean.com/feed" title="Subscribe with iTunes"><img src="http://www.podbean.com/wp-admin/images/subscribe_itunes_a.jpg" alt="Subscribe with iTunes" /></a></li>
             <li><a href="http://fusion.google.com/add?feedurl=http://theartofservice.podbean.com/feed" title="Add to my Google"><img src="http://www.podbean.com/wp-admin/images/add_google.png" alt="Add to my Google" /></a></li>
			 <li><a href="http://add.my.yahoo.com/rss?url=http://theartofservice.podbean.com/feed" title="Add to my Yahoo"><img src="http://www.podbean.com/wp-admin/images/add_yahoo.jpg" alt="Add to my Yahoo" /></a></li>
		</ul>

	</li>
	
	

</ul>
</div><!-- end id:sidebar -->
</div><!-- end id:content -->
</div><!-- end id:container --><div id="footer">
<p><strong>theartofservice</strong> &copy; 2009 All Rights Reserved.</p>
<p class="right">
	<span><a href="http://wpthemes.info/misty-look/" title="MistyLook by Sadish Bala">MistyLook</a> made free by <a href="http://www.webhostingbluebook.com" title="Web Hosting Bluebook">Web Hosting Bluebook</a></span>
</p>
<br class="clear" />
</div><!-- end id:footer -->
<!-- end_of_podbean_footer --> 
<!-- Start Quantcast tag -->
<script type="text/javascript">
_qoptions={
qacct:"p-91lXzPDEtkPDc"
};
</script>
<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
<noscript>
<a href="http://www.quantcast.com/p-91lXzPDEtkPDc" target="_blank"><img src="http://pixel.quantserve.com/pixel/p-91lXzPDEtkPDc.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast"/></a>
</noscript>
<!-- End Quantcast tag -->

</body>
</html>