<!doctype html>  
<html lang="en">  
<meta charset="UTF-8"> 	
<head>  
<title>McGladrey, Faegre & Benson, Pepper Hamilton – Knowledge Centers – The Deal Pipeline)</title>
<META NAME="Description" CONTENT="Knowledge centers for The Deal Pipeline">
<META NAME="Keywords" CONTENT="Merrill DataSite,Faegre & Benson,Pepper Hamilton,Brazil,emerging markets,middle market,private equity" />
<link rel="stylesheet" href="http://www.thedeal.com/html5cssalt.css" type="text/css" media="screen" />     
    <!--[if lt IE 8]>
        <link rel="stylesheet" type="text/css" href="http://www.thedeal.com/ie7-and-down.css" />
<![endif]-->
    <!--[if lt IE 7]>
        <link rel="stylesheet" type="text/css" href="http://www.thedeal.com/ie6-and-down.css" />
<![endif]-->
<link rel="stylesheet" media="only screen and (max-device-width: 1024px)" href="http://www.thedeal.com/ipad.css" type="text/css" />
<!-- PNG FIX for IE6 -->
  	<!-- http://24ways.org/2007/supersleight-transparent-png-in-ie6 -->
	<!--[if lte IE 6]>
		<script type="text/javascript" src="http://www.thedeal.com/supersleight-min.js"></script>
	<![endif]-->




<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
<script type="text/javascript" src="http://www.thedeal.com/b/2011/hnav/jquery.aw-showcase.min.js"></script>
<script type="text/javascript" src="http://www.thedeal.com/b/2011/hnav/jquery.ui.core.js"></script>
<script type="text/javascript" src="http://www.thedeal.com/b/2011/hnav/jquery.ui.widget.js"></script>
<script type="text/javascript" src="http://www.thedeal.com/b/2011/hnav/jquery.ui.tabs.js"></script>







	<script> 
	$(function() {
		$( "#tabs" ).tabs({
			ajaxOptions: {
				error: function( xhr, status, index, anchor ) {
					$( anchor.hash ).html(
						"Couldn't load this tab. We'll try to fix this as soon as possible. " +
						"If this wouldn't be a demo." );
				}
			}
		});
	});
	</script> 











    <!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->




<script type= "text/javascript">/*<![CDATA[*/
$(function(){
	//Get our elements for faster access and set overlay width
	var div = $('div.sc_menu'),
		ul = $('ul.sc_menu'),
		ulPadding = 15;
	//Get menu width
	var divWidth = div.width();
	//Remove scrollbars	
	div.css({overflow: 'hidden'});
	//Find last image container
	var lastLi = ul.find('li:last-child');
	//When user move mouse over menu
	div.mousemove(function(e){
		//As images are loaded ul width increases,
		//so we recalculate it each time
		var ulWidth = lastLi[0].offsetLeft + lastLi.outerWidth() + ulPadding;	
		var left = (e.pageX - div.offset().left) * (ulWidth-divWidth) / divWidth;
		div.scrollLeft(left);
	});

});
/*]]>*/
</script>


<script type="text/javascript">
if(document.location.protocol=='http:'){
 var Tynt=Tynt||[];Tynt.push('dtm08QQP0r4i4Padbi-bpO');Tynt.i={"st":true,"ap":"Read more:"};
 (function(){var s=document.createElement('script');s.async="async";s.type="text/javascript";s.src='http://tcr.tynt.com/ti.js';var h=document.getElementsByTagName('script')[0];h.parentNode.insertBefore(s,h);})();
}
</script>






<script type="text/javascript" src="http://www.thedeal.com/mbox.js"></script>

<script type= "text/javascript">
//** DD Drop Down Panel- (c) Dynamic Drive DHTML code library: http://www.dynamicdrive.com
//** Oct 21st, 08'- Script created
//** March 23rd, 09' v1.01- Arrow images now preloaded

function ddpanel(setting){
	setting.dir="up" //initial state of panel (up="contracted")
	if (setting.stateconfig.persiststate && ddpanel.getCookie(setting.ids[0])=="down"){
		setting.dir="down"
	}
	if (setting.dir=="up"){ //if "up", output CSS to hide panel contents
		document.write('<style type="text/css">\n')
		document.write('#'+setting.ids[1]+'{height:' + parseInt(setting.stateconfig.initial) + 'px; overflow:hidden}\n')
		document.write('</style>\n')
	}
	setting.stateconfig.initial=parseInt(setting.stateconfig.initial)
	this.setting=setting
	if (setting.pointerimage.enabled){ //preload images
		var img1=new Image(), img2=new Image()
		img1.src=setting.pointerimage.src[0]
		img2.src=setting.pointerimage.src[1]
	}
	var thispanel=this
	if (window.addEventListener) //if non IE browsers, initialize panel window.onload
		ddpanel.addEvent(window, function(e){thispanel.initpanel(setting)}, "load")
	else //else if IE, add 100 millisec after window.onload before initializing
		ddpanel.addEvent(window, function(e){setTimeout(function(){thispanel.initpanel(setting)}, 100)}, "load")
	ddpanel.addEvent(window, function(e){thispanel.uninit(setting)}, "unload")
}

ddpanel.events_array=[] //object array to contain events created by script

ddpanel.addEvent=function(target, functionref, tasktype){
	var evtmodel=target.addEventListener? "w3c" : "ie"
	var evtaction=evtmodel=="w3c"? "addEventListener" : "attachEvent"
	var i=this.events_array.push({ //store event info in ddpanel.events_array[] and return current event's index within array
		target: target,
		tasktype: (evtmodel=="ie"? "on" : "")+tasktype,
		listener: evtmodel=="ie"? function(){return functionref.call(target, window.event)} : functionref
	})-1
	target[evtaction](this.events_array[i].tasktype, this.events_array[i].listener, evtmodel=="w3c"? false : null)
}

ddpanel.removeEvent=function(target, functionref, tasktype){
	var evtmodel=target.removeEventListener? "w3c" : "ie"
	var evtaction=evtmodel=="w3c"? "removeEventListener" : "detachEvent"
	target[evtaction](tasktype, functionref, evtmodel=="w3c"? false : null)
}

ddpanel.getCookie=function(Name){ 
	var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair
	if (document.cookie.match(re)) //if cookie found
		return document.cookie.match(re)[0].split("=")[1] //return its value
	return null
}

ddpanel.setCookie=function(name, value){
	document.cookie = name+"=" + value + ";path=/"
}

ddpanel.addpointer=function(target, className, imagesrc){
	var pointer=document.createElement("img")
	pointer.src=imagesrc
	pointer.className=className
	pointer.style.borderWidth=0
	target.appendChild(pointer)
	return pointer
}

ddpanel.prototype={

togglepanel:function(dir){ //public function that toggles the panel's state. Optional dir parameter ("up" or "down") to explicitly set state.
	var setting=this.setting
	setting.dir=dir || ((setting.dir=="up")? "down" : "up")
	var pcontent=setting.pcontent, dir=setting.dir
	pcontent._currentheight=(dir=="down")? pcontent._actualheight : setting.stateconfig.initial
	pcontent.style.height=pcontent._currentheight+"px"
	if (setting.pointerimage.enabled){
		setting.arrow.src=setting.pointerimage.src[(setting.dir=="down")? 1 : 0]
		setting.arrow.style.visibility="visible"
	}
	ddpanel.setCookie(setting.ids[0], setting.dir)
},

togglepanelplus:function(dir){ //public function that toggles the panel's state w/ animation. Optional dir parameter ("up" or "down") to explicitly set state.
	var setting=this.setting
	setting.dir=dir || ((setting.dir=="up")? "down" : "up")
	if (setting.pointerimage.enabled)
		setting.arrow.style.visibility="hidden"
	clearTimeout(setting.revealtimer)
	this.revealcontent()
},

revealcontent:function(){
	var setting=this.setting
	var pcontent=setting.pcontent, curH=pcontent._currentheight, maxH=pcontent._actualheight, minH=setting.stateconfig.initial, steps=setting.animate.steps, dir=setting.dir
	if (dir=="down" && curH<maxH || dir=="up" && curH>minH){
		var newH = curH + (Math.round((maxH-curH)/steps)+1) * (dir=="up"? -1 : 1)
		newH=(dir=="down")? Math.min(maxH, newH) : Math.max(minH, newH)
		pcontent.style.height=newH+"px"
		pcontent._currentheight=newH
	}
	else{
		if (setting.pointerimage.enabled){
			setting.arrow.src=setting.pointerimage.src[(setting.dir=="down")? 1 : 0]
			setting.arrow.style.visibility="visible"
		}
		return
	}
	var thispanel=this
	setting.revealtimer=setTimeout(function(){thispanel.revealcontent()}, 10)
},

initpanel:function(){
	var setting=this.setting
	var pcontainer=setting.pcontainer=document.getElementById(setting.ids[0])
	var pcontent=setting.pcontent=document.getElementById(setting.ids[1])
	var tdiv=setting.tdiv=document.getElementById(setting.ids[2])
	pcontent.style.overflow="scroll"
	pcontent._actualheight=pcontent.scrollHeight
	setTimeout(function(){pcontent._actualheight=pcontent.scrollHeight}, 100)
	pcontent.style.overflow="hidden"
	pcontent._currentheight=(setting.dir=="down")? pcontent._actualheight : setting.stateconfig.initial
	var thispanel=this
	ddpanel.addEvent(tdiv, function(e){ //assign click behavior when toggle DIV tab is clicked on
		if (setting.animate.enabled)
			thispanel.togglepanelplus()
		else
			thispanel.togglepanel()
		if (e.preventDefault) e.preventDefault()
		return false
	}, "click")
	if (setting.pointerimage.enabled){
		var pointer1=new Image(), pointer2=new Image()
		pointer1.src=setting.pointerimage.src[0]
		pointer2.src=setting.pointerimage.src[1]
		setting.arrow=ddpanel.addpointer(tdiv.getElementsByTagName("span")[0], "pointerimage", setting.pointerimage.src[setting.dir=="down"? 1:0])
	}
	if (setting.closepanelonclick.enabled){ //assign click behavior when panel content is clicked on (links within panel or elements with class "closepanel"
			ddpanel.addEvent(pcontent, function(e){
				var target=e.srcElement || e.target
				if (/(^|\s+)closepanel($|\s+)/.test(target.className) || target.tagName=="A" || (target.parentNode && target.parentNode.tagName=="A")){
					thispanel.togglepanel("up")
				}
			}, "click")
	}
},

uninit:function(){
	var setting=this.setting
	if (setting.stateconfig.persiststate){
		ddpanel.setCookie(setting.ids[0], setting.dir)
	}
	for (prop in setting){
		setting[prop]=null
	}
}



} //end of ddpanel object


//initialize instance of DD Drop Down Panel:

var defaultpanel=new ddpanel({
	ids: ["mypanel", "mypanelcontent", "mypaneltab"], // id of main panel DIV, content DIV, and tab DIV
	stateconfig: {initial: '0px', persiststate: false}, // initial: initial reveal amount in pixels (ie: 5px)
	animate: {enabled: true, steps: 5}, //steps: number of animation steps. Int between 1-20. Smaller=faster.
	pointerimage: {enabled: false, src: ["arrow-down.gif", "arrow-up.gif"]},
	closepanelonclick: {enabled: true} // close panel when links or elements with CSS class="closepanel" within container is clicked on?
})
</script>

<script type="text/javascript" src="http://www.thedeal.com/iscroll-lite.js"></script>


<script type="text/javascript" src="http://www.thedeal.com/oas_home_new.js"></script>



</head>  
<body> 
  
<script language="javascript" src="http://www.thedeal.com/s_code.js?020812" type="text/javascript"></script>



<div id="mypanel" class="ddpanel">
<div id="mypanelcontent" class="ddpanelcontent">
<div class="dropback">
<p style="padding:10px">
<center>

<div class="dropcont" style="width:950px; padding:0 25px;">
<script language="JavaScript"> 
<!--
		var i,x,y,plCookies=document.cookie.split(";");
		for (i=0;i<plCookies.length;i++) {
			x=plCookies[i].substr(0,plCookies[i].indexOf("="));
			y=plCookies[i].substr(plCookies[i].indexOf("=")+1);
			x=x.replace(/^\s+|\s+$/g,"");
			if ( x == "userid" ) {
				document.write("Found userId : " + y + "");
			}
		}
//-->
</script> 


<script language="JavaScript"> 
<!--
 
	var pl_userCount = 6;
 
	// check user id cookie
	function pl_checkUserId () {
		var userId = 0;
		var i,x,y,plCookies=document.cookie.split(";");
		for (i=0;i<plCookies.length;i++) {
			x=plCookies[i].substr(0,plCookies[i].indexOf("="));
			y=plCookies[i].substr(plCookies[i].indexOf("=")+1);
			x=x.replace(/^\s+|\s+$/g,"");
			if ( x == "userid" ) {
				userId = y;
			}
		}
 
		if ( userId > 0 ) {
			document.location.reload();
		} else {
			pl_userCount--;
			if ( pl_userCount < 1 ) {
				document.location = "http://www.thedeal.com/requestademo";  // replace URL here
			} else {
				setTimeout(pl_checkUserId, 2000);
			}
		}
	}
 
	// check company account for user
	function pl_checkCompanyAccount () {
		pl_makeWindowCall("http://pipeline.thedeal.com/tdd/today/TodaysDeal.dl");
	}
 
	// check user account with username and password
	function pl_checkUserAccount () {
		var t_un = document.pl_accessForm.pl_name.value.replace(/^\s*|\s*$/g,"");
		var t_pw = document.pl_accessForm.pl_password.value.replace(/^\s*|\s*$/g,"");
		pl_makeWindowCall("http://www.thedeal.com/pipeline/processlogin.jsp?username=" + escape(t_un) + "&password=" + escape(t_pw));
	}
 
	document.write("<div style='position:absolute;left:0;top:0;display:none;'><iframe id='plAccessFrame' name='plAccessFrame' src='' width='0' height='0' border='0' scrolling='no' style='z-index:-100;'></iframe></div>");
 
	function pl_makeWindowCall (url) {
		plAccessFrame.document.location = url;
		setTimeout(pl_checkUserId, 2000);
	}
 
//-->
</script> 




        <section class="drop_text_nonsub_top" style="vertical-align:bottom;">
        You are viewing just a glimpse of the 100+ pieces of sophisticated insight and analysis produced by our full-time team of senior financial journalists every day. For full access, check to see if your firm has a license to The Deal Pipeline or login using your existing credentials.
        </section>
        <section class="tbl" style="margin-bottom:0px; padding-bottom:0px; width:950px;">
      
        <section class="threecol cell mid" style="vertical-align:bottom;">      
        <a href="#" onclick="pl_checkCompanyAccount();return false;"><img src="http://www.thedeal.com/b/2011/shade/ipa_nonsub.gif" style="border:0; float:left; padding-left:30px; margin:0;" /></a>
        <a href="http://pipeline.thedeal.com/demorequest?p=PLDEMO1002" onClick="s.tl(this,'o','To Demo Request Form: Non-Sub Slidedown Box');"><img src="http://www.thedeal.com/b/2011/shade/need_nonsub.gif" style="border:0; loat:left; padding:0; margin:0;" /></a>
        <a href="http://pipeline.thedeal.com/employee_forgot_password_page.dl"><img src="http://www.thedeal.com/b/2011/shade/forgot_nonsub.gif" style="border:0; loat:left; padding:0; margin:0;" /></a>   
    
    
    
        
    </section>
    
      <section class="onecol cell ender">
        


<center>Know your ID?</center>
  <form name="pl_accessForm" action="#" onsubmit="pl_checkUserAccount();"> 
    <section class="onecol tbl" style="margin: 0 0 5px 0; padding:0px;">
    <section class="onecol row">
      <section class="cell" style="width:60px; padding-right:10px;"><section style="display:block; padding:0px; width:60px;">Username:</section></section>
      <section class="cell" style="width:120px; padding-right:10px;"><input type="text" class="texta" name="pl_name" size="20"></section>
      <section class="cell" style="width:27px">&nbsp;</section>
    </section></section>
    
    <section class="onecol tbl" style="margin: 0 0 5px 0; padding:0px;">
    <section class="row">
      <section class="cell" style="width:60px; padding-right:10px;"><section style="display:block; padding:0px; width:60px;">Password:</section></section>
      <section class="cell" style="width:120px; padding-right:10px;"><input type="password" class="texta" name="pl_password" size="20"></section>
      <section class="cell" style="width:27px"><a href="#" onclick="pl_checkUserAccount();return false;" style="color:#ffff00; display:inline;">Go</a></section>
    </section>
    </section>
  </form> 


        </section>
    
    </section>
</div>
</center>



</p>


</div>


</div>


<div id="mypaneltab" class="ddpaneltab"><center>
<a href="#"><span><img src="http://www.thedeal.com/b/2011/shade/nonsub_shade_tab.png" border="0" style="margin: 0px; padding:0px;"></span></a></center>
</div>
</div>

<center>
<script language="JavaScript"> OAS_AD('Top1'); </script>
</center>




<header> 

<section id="hd">
<section id="logo"><a href="http://www.thedeal.com/"><img src="http://www.thedeal.com/b/2011/hznav/pl_final_logo.gif" border="0" alt="The Deal Pipeline"></a></section>
<section id="hnav">



<!--[if lt IE 8]>
<div class="sc_menu">
<ul class="sc_menu">
            <li><a href="http://www.thedeal.com/energy.php">
              <img src="http://www.thedeal.com/b/2011/hznav/energy.gif" alt="Energy"/>
            <span>Energy</span>
            </a></li>
            <li><a href="http://www.thedeal.com/healthcare.php">
              <img src="http://www.thedeal.com/b/2011/hznav/healthcare.gif" alt="Healthcare"/>
            <span>Healthcare</span>
            </a></li>
            <li><a href="http://www.thedeal.com/tmt.php">
              <img src="http://www.thedeal.com/b/2011/hznav/tmt.gif" alt="TMT"/>
            <span>TMT</span>
            </a></li>
               <li><a href="http://www.thedeal.com/private_equity.php">
              <img src="http://www.thedeal.com/b/2011/hznav/privateequity.gif" alt="Private Equity"/>
              <span>Private Equity</span>
            </a></li>
               <li><a href="http://www.thedeal.com/regulatory.php">
              <img src="http://www.thedeal.com/b/2011/hznav/regulatory.gif" alt="Regulatory"/>
              <span>Regulatory</span>
            </a></li>
               <li><a href="http://www.thedeal.com/real_estate.php">
              <img src="http://www.thedeal.com/b/2011/hznav/realestate.gif" alt="Real Estate"/>
            <span>Real Estate</span>
            </a></li>
               <li><a href="http://www.thedeal.com/restructuring.php">
              <img src="http://www.thedeal.com/b/2011/hznav/restructuring.gif" alt="Restructuring"/>
              <span>Restructuring</span>
              </a></li>
                 <li><a href="http://www.thedeal.com/consumer_and_retail.php">
              <img src="http://www.thedeal.com/b/2011/hznav/consumerandretail.gif" alt="Consumer & Retail"/>
            <span>Consumer & Retail</span>
            </a></li>
                     <li><a href="http://www.thedeal.com/industrials.php">
              <img src="http://www.thedeal.com/b/2011/hznav/industrials.gif" alt="Industrials "/>
            <span>Industrials</span>
            </a></li>
                     <li><a href="http://www.thedeal.com/magazine">
              <img src="http://www.thedeal.com/b/2011/hznav/mag.gif" alt="The Deal Magazine"/>
            <span>The Deal Magazine</span>
            </a></li>


            <li><a href="http://www.thedeal.com/movers/">
              <img src="http://www.thedeal.com/b/2011/hznav/Movers108.jpg" alt="Movers & Shakers"/>
            <span>Movers & shakers</span>
            </a></li>

                                 <li><a href="http://www.thedeal.com/knowledge">
              <img src="http://www.thedeal.com/b/2011/hznav/kcs.gif" alt="Knowledge Centers"/>
            <span>Knowledge Centers</span>
            </a></li>
                                 <li><a href="http://www.thedeal.com/dealeconomy2013">
              <img src="http://www.thedeal.com/b/2011/hznav/tde.gif" alt="The Deal Economy"/>
            <span>The Deal Economy</span>
            </a></li>
                                 <li><a href="http://www.thedeal.com/magazine/citybycity">
              <img src="http://www.thedeal.com/b/2011/hznav/cbc.gif" alt="City by city"/>
            <span>The Deal's city by city</span>
            </a></li>
              </ul>
</div>
<![endif]-->



<!--[if !lt IE 8]> <!-->

<section class="hnav_ovr">
 <section class="cell"><img src="http://www.thedeal.com/b/2011/hznav/chevron_left.png" style="display:inline; padding:0; margin:0;" /> </section>

<section class="cell">
<div class="sc_menu" id="wrapper">
<ul class="sc_menu">
            <li><a href="http://www.thedeal.com/energy.php">
              <img src="http://www.thedeal.com/b/2011/hznav/energy.gif" alt="Energy"/>
            <span>Energy</span>
            </a></li>
            <li><a href="http://www.thedeal.com/healthcare.php">
              <img src="http://www.thedeal.com/b/2011/hznav/healthcare.gif" alt="Healthcare"/>
            <span>Healthcare</span>
            </a></li>
            <li><a href="http://www.thedeal.com/tmt.php">
              <img src="http://www.thedeal.com/b/2011/hznav/tmt.gif" alt="TMT"/>
            <span>TMT</span>
            </a></li>
               <li><a href="http://www.thedeal.com/private_equity.php">
              <img src="http://www.thedeal.com/b/2011/hznav/privateequity.gif" alt="Private Equity"/>
              <span>Private Equity</span>
            </a></li>
               <li><a href="http://www.thedeal.com/regulatory.php">
              <img src="http://www.thedeal.com/b/2011/hznav/regulatory.gif" alt="Regulatory"/>
              <span>Regulatory</span>
            </a></li>
               <li><a href="http://www.thedeal.com/real_estate.php">
              <img src="http://www.thedeal.com/b/2011/hznav/realestate.gif" alt="Real Estate"/>
            <span>Real Estate</span>
            </a></li>
               <li><a href="http://www.thedeal.com/restructuring.php">
              <img src="http://www.thedeal.com/b/2011/hznav/restructuring.gif" alt="Restructuring"/>
              <span>Restructuring</span>
              </a></li>
                 <li><a href="http://www.thedeal.com/consumer_and_retail.php">
              <img src="http://www.thedeal.com/b/2011/hznav/consumerandretail.gif" alt="Consumer & Retail"/>
            <span>Consumer & Retail</span>
            </a></li>
                     <li><a href="http://www.thedeal.com/industrials.php">
              <img src="http://www.thedeal.com/b/2011/hznav/industrials.gif" alt="Industrials "/>
            <span>Industrials</span>
            </a></li>
                     <li><a href="http://www.thedeal.com/magazine">
              <img src="http://www.thedeal.com/b/2011/hznav/mag.gif" alt="The Deal Magazine"/>
            <span>The Deal Magazine</span>
            </a></li>


            <li><a href="http://www.thedeal.com/movers/">
              <img src="http://www.thedeal.com/b/2011/hznav/Movers108.jpg" alt="Movers & Shakers"/>
            <span>Movers & shakers</span>
            </a></li>


                                 <li><a href="http://www.thedeal.com/knowledge">
              <img src="http://www.thedeal.com/b/2011/hznav/kcs.gif" alt="Knowledge Centers"/>
            <span>Knowledge Centers</span>
            </a></li>
                                 <li><a href="http://www.thedeal.com/dealeconomy2013">
              <img src="http://www.thedeal.com/b/2011/hznav/tde.gif" alt="The Deal Economy"/>
            <span>The Deal Economy</span>
            </a></li>
                                 <li><a href="http://www.thedeal.com/magazine/citybycity">
              <img src="http://www.thedeal.com/b/2011/hznav/cbc.gif" alt="City by city"/>
            <span>The Deal's city by city</span>
            </a></li>
              </ul>
</div>

<script type="text/javascript">
var myScroll = new iScroll('wrapper', {vScroll: false, hScrollbar: false});
</script>

</section>

<section class="cell">
<img src="http://www.thedeal.com/b/2011/hznav/chevron_right.gif" style="display:inline; padding:0; margin:0;" />
</section>

</section>

<!--<![endif]-->          

</section>
<section id="spons"><center>
<script language="JavaScript"> OAS_AD('TopRight'); </script>
</center></section>
</section>


</header>
<div id="container">   
     
     
     
     
     
     
     
     
     <section id="sbar">
<span style="color:#000;">Subscriber Content Preview | </span> <a href="http://pipeline.thedeal.com/demorequest?p=PLDEMO1002" onClick="s.tl(this,'o','Request a demo: NEW subnav');" style="color:#fe000c;">Request a free trial</a><img src="http://www.thedeal.com/b/2011/hznav/sbar_new_spacer.jpg" style="border:0; vertical-align:bottom; valign:bottom;"><img src="http://www.thedeal.com/b/2011/hznav/sbar_small_space.gif" style="border:0; padding-right:30px; vertical-align:bottom; valign:bottom;"><span style="color:#000;">Search</span> &nbsp;
<form method="get" action="http://www.thedeal.com/content/fastsearch" name="topSearchForm"  style="margin: 0px; padding: 0px; display:inline;">
<input type="hidden" name="blogs" value="53,34,35,42,48" />
<input type="hidden" name="order" value="date" />
<input id="search" name="search" class="texta" size="13" value="" style="width:207px; display:inline;" /><a href='javaScript:document.topSearchForm.submit()'>&nbsp;&nbsp;Go</a></form>
</section>





        
        
        
        


<section class="fourcol tbl tde_hed" style="margin-bottom:20px;">
    <section class="fourcol row">
            <section class="fourcol cell ender">
            <section class="tde_pad"><h1><a href="http://www.thedeal.com/knowledge/">Knowledge Centers</a></h1></section>
            </section>	
    </section>
    </section>


    <section class="fourcol tbl">
    <section class="fourcol row">
 
         <section class="twocol cell mid">
         
            <a href="http://www.thedeal.com/knowledge/merrilldatasite">
            <img src="http://www.thedeal.com/knowledge/img/468x263_midmarket_headshots.gif" class="twocol" style="border:0; padding-bottom:10px; display:block;"></a>
            <p>The Deal and Knowledge Center sponsor <a href="http://www.datasite.com/">Merrill DataSite</a> explore the anatomy of middle-market dealmaking. Tune in as our journalists and experts discuss trends and opportunities in the middle markets through exclusive surveys, special reports, podcasts and webcasts.</p>
            
	         
         </section>
         
         <section class="onecol cell mid">
            <div class="upc"><strong>Webcast series</strong><br /><a href="http://www.thedeal.com/knowledge/2012webcasts.php"><b>See our complete 2012 Webcast Series and then join us for the 60-minute in-depth conversation on each topic. These webcasts will be moderated by a senior journalist from The Deal magazine, and they will have the ability to take live audience questions throughout each webcast event.</b></a></div><br><br>
            <div class="upc"><b>PE Outlook 2012 </b><b><br /><a href="https://thedeal.webex.com/thedeal/lsr.php?AT=pb&amp;SP=EC&amp;rID=5095612&amp;rKey=bfdbfe0ce1cd7ec1">Webcast replay </a></b><br /><strong><br /></strong><a href="http://www.thedeal.com/knowledge/webcasts/deal-financing-uncovered.php"></a></div>
            <div class="upc"><strong>Re-mapping the middle market </strong><br />&nbsp;<a href="https://thedeal.webex.com/ec0606l/eventcenter/recording/recordAction.do?theAction=poprecord&amp;AT=pb&amp;AT=pb&amp;AT=pb&amp;AT=pb&amp;AT=pb&amp;AT=pb&amp;isurlact=true&amp;isurlact=true&amp;isurlact=true&amp;isurlact=true&amp;renewticket=0&amp;renewticket=0&amp;renewticket=0&amp;renewticket=0&amp;recordID=4854447&amp;apiname=lsr.php&amp;apiname=lsr.php&amp;apiname=lsr.php&amp;apiname=lsr.php&amp;apiname=lsr.php&amp;rKey=0f711cac3779d5f9&amp;rKey=0f711cac3779d5f9&amp;rKey=0f711cac3779d5f9&amp;rKey=0f711cac3779d5f9&amp;rKey=0f711cac3779d5f9&amp;rKey=0f711cac3779d5f9&amp;needFilter=false&amp;needFilter=false&amp;needFilter=false&amp;needFilter=false&amp;needFilter=false&amp;format=short&amp;format=short&amp;&amp;SP=EC&amp;SP=EC&amp;SP=EC&amp;SP=EC&amp;SP=EC&amp;SP=EC&amp;rID=4854447&amp;rID=4854447&amp;rID=4854447&amp;rID=4854447&amp;rID=4854447&amp;rID=4854447&amp;siteurl=thedeal&amp;actappname=ec0606l&amp;actappname=ec0606l&amp;actname=%2Feventcenter%2Fframe%2Fg.do&amp;actname=%2Feventcenter%2Fframe%2Fg.do&amp;rnd=0.57617634242097&amp;rnd=0.57617634242097&amp;rnd=0.57617634242097&amp;rnd=0.57617634242097&amp;rnd=0.57617634242097&amp;entappname=url0108l&amp;entappname=url0108l&amp;entappname=url0108l&amp;entappname=url0108l&amp;entactname=%2FnbrRecordingURL.do&amp;entactname=%2FnbrRecordingURL.do&amp;entactname=%2FnbrRecordingURL.do&amp;entactname=%2FnbrRecordingURL.do">Webcast replay <br /></a></div>
            </section>
         
         <section class="onecol cell ender" style="border-left:5px solid black; width:222px;">
         <section style="display:block; padding-left:14px; font-size:13px;"> <span class="org"><strong>Boost thought leadership, generate quality leads with your own Knowledge Centers on TheDeal.com</strong></span>

<p>Work with The Deal to develop a compelling destination, here, on TheDeal.com, featuring a combination of original and customized content created with The Deal. Your organization will benefit from the ultimate integrated, digital thought leadership and lead generation vehicle. A Knowledge Center offers your organization exceptional ROI on your marketing and business development initiatives in 2012.</p>

<p>Contact <a href="mailto:acunningham@thedeal.com">Allan Cunningham</a> at 212-313-9162 to find out more.</p></section>
         </section>
    </section>
    </section>


<section class="fourcol tbl">
    <section class="fourcol row">
        <section class="fourcol cell ender">
        <img src="http://www.thedeal.com/b/2011/hznav/dotted_red_950.gif" style="border:0; display:block; padding:0; margin:0;" />
        </section>
    </section>
    </section>

    <section class="fourcol tbl">
    <section class="fourcol row">

        <section class="onecol cell mid">
        
        <a href="http://www.thedeal.com/knowledge/debevoise">
        <img src="http://www.thedeal.com/knowledge/img/227x128_DP_logo_black_081911.gif" class="onecol" style="border:0; padding-bottom:10px; display:block;"></a>
        <h2>Debevoise & Plimpton</h2>
        <h3></h3>
        <p>Follow the latest legal trends through our Knowledge Center partnership with Debevoise & Plimpton.  Through regular client updates and thought-provoking newsletter analysis, dealmakers are guaranteed to stay up to date on various due diligence tactics, Dodd-Frank guidelines and executive compensation arrangements.  Check out our expert advisory strategy today.</p>
                
        </section>
        
       
        
        <section class="onecol cell mid">
        
        <a href="http://www.thedeal.com/knowledge/podcasts/emerging-markets-india.php">
        <img src="http://www.thedeal.com/knowledge/img/227x128_pepper_logo.gif" class="onecol" style="border:0; padding-bottom:10px; display:block;"></a>
        <h2>Pepper Hamilton</h2>
        <h3></h3>
        <p>Join Julia D. Corelli, a partner in the commercial department of Pepper Hamilton LLP and co-chair of both the firm's fund services group and its commercial department, for a discussion of tax issues that private equity funds need to be aware of before fundraising.</p>
         
        </section>
        
        
         <section class="onecol cell mid">
        <a href="http://www.thedeal.com/knowledge/McGladreyhome">
        <img src="http://www.thedeal.com/knowledge/img/McGladrey_227X128.jpg" class="onecol" style="border:0; padding-bottom:10px; display:block;" /></a>
        <h2>McGladrey</h2>
        <p>
Global economic uncertainties continue to weigh on markets and M&A activity. In this environment, middle-market private equity companies must be more resourceful than ever
 in unearthing opportunities, maximizing in-house resources and paving the way for long-term performance. Review some key perspective on the topic in a recent webcast and
  whitepapers from McGladrey.

</p>


        </section>
   


     
        <section class="onecol cell ender">
        <a href="http://www.thedeal.com/knowledge/faegre">
        <img src="http://www.thedeal.com/knowledge/img/FaegreLogoBorder.gif" class="onecol" style="border:0; padding-bottom:10px; display:block;" /></a>
        <h2>Faegre Baker Daniels</h2>
        <p>It's no secret that experts have been saying that corporations have an unprecedented pile of cash to the tune of $2 trillion on their
         balance sheets and are seeking to deploy these funds via acquisitions. This appetite for M&amp;A has made the middle market a compelling playground
          in the U.S. for deal activity. Join The Deal LLC and Faegre Baker Daniels LLP in a webcast titled "Taking the Temperature of Midmarket
           Dealmaking at the Midpoint."</p>


        </section>


    </section>
    </section>
</div>
 


<footer>  
 
<section class="fourcol tbl"> 
<section class="fourcol row">



<section class="cell mid" style="width:158px;">
<h3><a href="http://www.thedeal.com/pipeline" rel="nofollow" target="_blank">The Deal Pipeline</a></h3>
<ul>
<li><a href="http://pipeline.thedeal.com/tdd/today/MyHome.dl" rel="nofollow" target="_blank">Personal Account</a></li>
<li><a href="http://www.thedeal.com/pipeline/preferences" rel="nofollow" target="_blank">Sign-up for daily newsletters</a></li>
<li><a href="http://www.pipeline.thedeal.com/mydeal/MyQueries.dl" rel="nofollow" target="_blank">Create Alerts</a> / <a href="http://pipeline.thedeal.com/client_admin_page.dl" rel="nofollow" target="_blank">RSS Feeds</a></li>
<li><a href="http://www.pipeline.thedeal.com/tdd/ViewLeagueTable.dl?type=11" rel="nofollow" target="_blank">League Tables</a></li>
<li><a href="http://pipeline.thedeal.com" rel="nofollow" target="_blank">Research</a></li>
<li><a href="http://www.pipeline.thedeal.com/mydeal/MyQueries.dl" rel="nofollow" target="_blank">Custom Search</a></li>
</ul>
</section> 



<section class="cell mid" style="width:158px;">
<h3><a href="http://www.thedeal.com/magazine">The Deal Magazine</a></h3>
<ul>
<li><a href="http://www.thedeal.com/magazine/">Latest issue</a></li>
<li><a href="http://www.thedeal.com/newsletter.php">Newsletter</a></li>
<li><a href="https://thedeal.omeda.com/cgi-win/deal2.cgi?login&p=M4YD1">Subscribe</a></li>
<li><a href="http://www.thedeal.com/magazine/industryevents">Industry events</a></li>
<li><a href="http://www.thedeal.com/knowledge/2012webcasts.php">Webcast series</a></li>
</ul>
</section>
 
<section class="cell mid" style="width:158px;">
<h3><a href="http://www.thedeal.com/dealeconomy2013/">The Deal Economy</a></h3>
<ul>
<li><a href="http://www.thedeal.com/dealeconomy2013/event.php">Annual Event</a></li>
<li><a href="http://www.thedeal.com/mostadmired/">Most Admired<br />Corporate Dealmaker Awards</a></li>
</ul>
</section>
 
<section class="cell mid" style="width:158px;">
<h3><a href="http://www.thedeal.com/knowledge/">Knowledge Centers</a></h3>
<ul>
<li><a href="http://www.thedeal.com/knowledge/">Home</a></li>
<li><a href="http://www.thedeal.com/knowledge/debevoise">Debevoise & Plimpton</a></li>

<li><a href="http://www.thedeal.com/knowledge/podcasts/emerging-markets-india.php">Pepper Hamilton</a></li>

<li><a href="http://www.thedeal.com/knowledge/McGladreyhome">McGladrey</a></li>

<li><a href="http://www.thedeal.com/knowledge/faegre">Faegre Baker Daniels</a></li>




</ul>
</section>
 
 
<section class="cell mid" style="width:158px;">
<h3><a href="http://www.thedeal.com/about_us/">About us</a></h3>
<ul>
<li><a href="http://www.thedeal.com/about_us/">Company background</a></li>
<li><a href="http://www.thedeal.com/about_us/products.php">Licensing services</a></li>
<li><a href="http://www.thedeal.com/about_us/advertise.php">Advertise with us</a></li>
<li><a href="http://www.thedeal.com/about_us/editorial.php">Editorial information</a></li>
<li><a href="http://www.thedeal.com/about_us/privacy.php">Privacy policy</a></li>
<li><a href="http://www.thedeal.com/about_us/terms.php">Terms & conditions</a></li>

</ul>
</section>

<section class="cell ender" id="sponsfoot" style="width:158px;">
<h4>Sponsors</h4>
<ul>
<li><a href="http://www.debevoise.com" target="_blank">Debevoise & Plimpton</a></li>
<li><a href="http://www.firmex.com" target="_blank">Firmex Virtual Data Rooms</a></li>
<li><a href="http://www.huronconsultinggroup.com" target="_blank">Huron Consulting</a></li>
<li><a href="http://www.intralinks.com" target="_blank">IntraLinks</a></li>
<li><a href="http://www.mcgladrey.com" target="_blank">McGladrey</a></li>

<li><a href="http://www.mofo.com" target="_blank">Morrison &amp; Foerster</a></li>
<li><a href="http://www.pepperlaw.com" target="_blank">Pepper Hamilton</a></li>
<li><a href="http://www.pwc.com/us/en" target="_blank">PwC</a></li>
<li><a href="http://www.rrdonnelley.com" target="_blank">RR Donnelley</a></li>




</ul>
</section> 
 
</section>
</section>
<center>
&copy;Copyright 2012, The Deal, LLC. All rights reserved. Please send all technical questions, comments or concerns to the <a href="mailto:webmaster@thedeal.com">Webmaster</a>.
</center>
 
</footer>


<section id="sharebox">

<a href="http://www.twitter.com/TheDealNewsroom" target="_blank"><img src="http://www.thedeal.com/b/2011/hznav/twitter.png" style="display:block; padding-top:12px; border:0; padding-left:15px;" /></a>
<a href="http://www.linkedin.com/groups?home=&gid=134955" target="_blank"><img src="http://www.thedeal.com/b/2011/hznav/linkedin.png" style="display:block; border:0; padding-left:15px;" /></a>
<a href="http://www.facebook.com/thedealmagazine" target="_blank"><img src="http://www.thedeal.com/b/2011/hznav/facebook.png" style="display:block; border:0; padding-left:15px;" /></a>
</section>


<div class="mboxDefault"></div>
<script language="javascript1.2">
  mboxCreate('mktg_ip_sitecatalyst');
</script>





<script language="javascript" type="text/javascript">
<!-- 
/* Copyright 1997-2004 Omniture, Inc. */
s.pageName="Knowledge Centers Home"
s.channel="Knowledge Centers"
s.prop1="Home"
s.prop2=""
s.prop3=""
s.prop6="Non-Subscriber"
s.prop7=""
s.campaign=""
s.events=""
s.products=""
s.eVar1=""
s.hier1=s.channel+"|"+s.prop1+"|"+s.prop6
s.hier4=s.prop6+"|"+s.channel+"|"+s.prop1

 
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
s.t()
//--></script>


<script src="http://www.google-analytics.com/urchin.js"
type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-403334-1";
urchinTracker();
</script>

<!-- Custom Channel Tag: knowledge.thedeal.com -->
<script type="text/javascript">
  var _bizo_data_partner_id = "213";
  var _bizo_data_partner_channel_id = "knowledge.thedeal.com";
</script>
<script type="text/javascript">
  var _bizo_p = (("https:" == document.location.protocol) ? "https://sjs." : "http://js.");
  document.write(unescape("%3Cscript src='" + _bizo_p + "bizographics.com/convert_data.js?partner_id=" + _bizo_data_partner_id + "' type='text/javascript'%3E%3C/script%3E"));
</script>
	




</body>

</html>