
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
	<meta charset="utf-8">
	<title>Viva Learning: CE Finder</title>
	<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<style>
#viva_svc_div_wrapper {
	font-family: Verdana, Arial;
	font-size: 11px;
	line-height: 12pt;	
}

.pTitlePrefix {
	width: 4px;
}

.psubTitleBlack {
	color: #333333;
	font-size: 14px;
	font-weight: bold;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-top: 5px;
}

.graybar {
	background-color: #C7C7C7;
	margin-top: 0px;
	padding-top: 0px;
}

.bdy {
	font-family: Verdana, Arial;
	font-size: 11px;
	line-height: 12pt;	
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}

.earnceu {
	background-colorXX: #FC0;
	background-color: #FFF;
	colorXX: #000;
	color: #F00;
	font-size: 11px;
	font-weight: bold;
	margin: 0px 0px 0px 5px;
	padding: 4px 0px 4px 0px;
	text-align: center;
	text-decoration: none;
	width: 85px;
}

/* -------------------------------- */
/* -- Search styles -- */
/* -------------------------------- */


	#viva_ce_finder_div {
		background: url(/art/cefinder/viva_ce_finder_bg.jpg) no-repeat top left;
		display: block;
		height: 200px;
		margin: 10px auto 20px auto;
		padding: 0px;
		position: relative;
		text-align: left;
		width: 500px;
	}
	
	#viva_search_form {
		display: block;		
		height: 200px;
		margin: 0px;
		padding: 0px;
		text-align: left;
		width: 500px;		
	}	
	#x_query {
		border: none;
		font-family: arial;
		font-size: 12px;
		height: 22px;
		left: 260px;
		top: 15px;
		position: absolute;
		width: 155px;
	}
	#viva_search_button {
		height: 24px;
		left: 420px;
		top: 12px;
		position: absolute;
		width: 65px;		
	}
	#viva_search_header_text {
		font-family: verdana, arial;
		font-size: 9px;
		line-height: 14px;
		padding: 0px 5px 0px 10px;
		position: absolute;
		top: 50px;
	}
	#viva_search_footer_available {
		font-family: verdana, arial;
		font-size: 10px;
		line-height: 14px;
		position: absolute;
		text-align: center;
		top: 148px;
		width: 500px;
	}
	
	#viva_search_footer_results {
		font-family: verdana, arial;
		font-size: 10px;
		line-height: 14px;
		position: absolute;
		text-align: center;
		top: 175px;
		width: 500px;
	}
	#viva_select_wrapper {
		position: absolute;
		top: 85px;
	}
	
	#x_catID_div {
		visibility: hidden;
	}	
	#x_companyID_div {
		visibility: hidden;
	}	

	.viva_select_box {
		float: left;	
		text-align: center;
		width:250px;
	}
	.viva_select_inner_box {
		float: left;	
		text-align: center;
	}

	.viva_select_label {
		color: #F33;
		font-family: verdana, arial;
		font-size: 10px;
		font-weight: bold;
	}
	.viva_results_label {
		color: #F33;
		font-family: verdana, arial;
		font-size: 11px;
		font-weight: bold;
	}	
	#viva_loading {
		left: 8px;
		position: absolute;
		top: 175px;
		visibility: hidden;
	}

</style>
<script language="JavaScript">
// alert('svcContent.asp: i am here!!  code: {30EC7332-F2A3-4142-980E-055CC5987DAD}');

function doVivaSearchKeyword(e) {
	if (!e) e = window.event;
	if ( e && e.preventDefault ) e.preventDefault();
	if ( e && e.cancelBubble ) e.cancelBubble();
	showLoading( 'viva_loading', true, "/art/loading_small.gif" ); 

	var varr = [];
	varr.push( 'x_action=search' );
	varr.push( 'x_type=keyword' );
	varr.push( 'x_profileCode=' + escape( getFieldValue('x_profileCode')));
	varr.push( 'x_query=' + escape(getFieldValue( 'x_query' )));	
	
	doVivaChangePage( varr );
	return false;
}	// doVivaSearchKeyword

function doVivaSearchCategory(e) {
	if (!e) e = window.event;
	if ( e && e.preventDefault ) e.preventDefault();
	if ( e && e.cancelBubble ) e.cancelBubble();
	showLoading( 'viva_loading', true, "/art/loading_small.gif" ); 

	var varr = [];
	varr.push( 'x_action=search' );
	varr.push( 'x_type=category' );
	varr.push( 'x_profileCode=' + escape( getFieldValue('x_profileCode')));
	varr.push( 'x_catID=' + escape(getFieldValue( 'x_catID' )));

	doVivaChangePage( varr );
} // doVivaSearchCategory

function doVivaSearchCompany(e) {
	if (!e) e = window.event;
	if ( e && e.preventDefault ) e.preventDefault();
	if ( e && e.cancelBubble ) e.cancelBubble();
	showLoading( 'viva_loading', true, "/art/loading_small.gif" ); 

	var varr = [];
	varr.push( 'x_action=search' );
	varr.push( 'x_type=company' );
	varr.push( 'x_profileCode=' + escape( getFieldValue('x_profileCode')));
	varr.push( 'x_companyID=' + escape(getFieldValue( 'x_companyID' )));

	doVivaChangePage( varr );
}	// doVivaSearchCompany

function doVivaChangePage( varr ) {
	var uri;
	var uri = window.location.protocol + '//' 
		+ window.location.host + window.location.pathname 
		+ '?' + varr.join('&')
		+ '&' + (new Date).getTime();
	// alert( 'uri: ' + uri );
	// alert( 'date: ' + (new Date).getTime() );
	window.location.href = uri;
}	// doVivaChangePage

// show divID when aflag is true
function showDiv( divID, aflag ) {
	var adiv = document.getElementById( divID )
	if ( adiv ) {
		adiv.style.visibility = (aflag) ? 'visible' : 'hidden';
	}
}

// show divID and set src to agif if true
function showLoading( imgID, aflag, agif ) {
	var aimg = document.getElementById( imgID )
	if ( aimg ) {
		aimg.style.visibility = (aflag) ? 'visible' : 'hidden';
		if (aflag) aimg.src = agif;
	}
}

function getFieldValue( idval ) {
	var aout = document.getElementById( idval ).value;
	return aout;
}	// getFieldValue

// bio / commercial disclosure, scrollable, resizeable
function popBio( aurl, awid, ahgt ) {

	var x = Math.round( (screen.width / 2)  - (awid / 2) );
	var y = Math.round( (screen.height / 3) - (ahgt / 2) );		

	var newWindow = window.open( aurl, '_blank',
			'top='+y+',left='+ x+',width='+awid+',height='+ahgt+',scrollbars=yes,status=no,resizable=yes,directories=no' );
	return false;
}		// popBio

</script>
</head>
<body>
<div ID="viva_svc_div_wrapper">

<style>
</style>
<div align="center">
<div id="viva_ce_finder_div">
<form name="viva_search_form" id="viva_search_form">
<input type="hidden" name="x_profileCode" id="x_profileCode" maxlength="50" value="{30EC7332-F2A3-4142-980E-055CC5987DAD}">
<input type="hidden" name="x_action" id="x_action" value="search">
<input type="text" name="x_query" id="x_query" maxlength="50" value="">
<input type="image" id="viva_search_button" src="/art/clear.gif" onclick="return doVivaSearchKeyword()">
<div ID="viva_search_header_text">
	Search for online CE including upcoming live/on-demand webinars and product tutorials.
	<br />All webinars and tutorials are FREE! Start earning CEU today!
</div> 

<DIV ID="viva_select_wrapper">
<div ID="x_catID_div" class="viva_select_box">
<table align="center">
<tr>
	<td align="left">
		
<span class="viva_select_label">Category:<br /></span>
<SELECT ID='x_catID' NAME='x_catID' onchange='doVivaSearchCategory()'>
<option value=''> -- view by category -- </option>
	<OPTION VALUE='152'>3D Printing Technology</OPTION>
	<OPTION VALUE='107'>Adhesives/Cements</OPTION>
	<OPTION VALUE='136'>Air Abrasion</OPTION>
	<OPTION VALUE='133'>Anesthesia</OPTION>
	<OPTION VALUE='159'>Artificial Intelligence and Advanced Technologies</OPTION>
	<OPTION VALUE='99'>CAD/CAM Technology and Materials</OPTION>
	<OPTION VALUE='141'>California Required Classes</OPTION>
	<OPTION VALUE='118'>Caries Infection/Detection</OPTION>
	<OPTION VALUE='160'>Cone Beam CT</OPTION>
	<OPTION VALUE='149'>COVID-19</OPTION>
	<OPTION VALUE='100'>Crown/Bridge/Veneers/Indirect</OPTION>
	<OPTION VALUE='144'>Cybersecurity</OPTION>
	<OPTION VALUE='81'>Dental Hygiene</OPTION>
	<OPTION VALUE='123'>Dental Photography</OPTION>
	<OPTION VALUE='135'>Dental Stem Cells</OPTION>
	<OPTION VALUE='110'>Dentures</OPTION>
	<OPTION VALUE='96'>Digital Imaging</OPTION>
	<OPTION VALUE='101'>Digital Impression</OPTION>
	<OPTION VALUE='102'>Direct Restoratives</OPTION>
	<OPTION VALUE='132'>Drug and Alcohol Addiction</OPTION>
	<OPTION VALUE='78'>Endodontics</OPTION>
	<OPTION VALUE='106'>Equipment Large</OPTION>
	<OPTION VALUE='105'>Equipment Small</OPTION>
	<OPTION VALUE='79'>Ergonomics</OPTION>
	<OPTION VALUE='128'>Finishing and Polishing</OPTION>
	<OPTION VALUE='129'>Geriatric Dentistry</OPTION>
	<OPTION VALUE='131'>Handpieces/Burs</OPTION>
	<OPTION VALUE='147'>HIPAA</OPTION>
	<OPTION VALUE='142'>Holistic and Homeopathic</OPTION>
	<OPTION VALUE='82'>Implants</OPTION>
	<OPTION VALUE='114'>Impressions Making (Traditional)</OPTION>
	<OPTION VALUE='83'>Infection Control</OPTION>
	<OPTION VALUE='124'>Isolation Protocol</OPTION>
	<OPTION VALUE='115'>Laboratory/Technicians</OPTION>
	<OPTION VALUE='122'>Lasers</OPTION>
	<OPTION VALUE='150'>Medical Emergencies</OPTION>
	<OPTION VALUE='112'>Minimal Invasive Dentistry</OPTION>
	<OPTION VALUE='154'>Occlusion</OPTION>
	<OPTION VALUE='95'>Oral Medicine</OPTION>
	<OPTION VALUE='92'>Oral Surgery</OPTION>
	<OPTION VALUE='84'>Orthodontics</OPTION>
	<OPTION VALUE='127'>Orthodontics (Digital)</OPTION>
	<OPTION VALUE='116'>OSHA/HIPAA</OPTION>
	<OPTION VALUE='120'>Pain Control</OPTION>
	<OPTION VALUE='137'>Patient Management</OPTION>
	<OPTION VALUE='103'>Pediatric Dentistry</OPTION>
	<OPTION VALUE='85'>Periodontics</OPTION>
	<OPTION VALUE='153'>Pharmacology</OPTION>
	<OPTION VALUE='151'>Practice Design</OPTION>
	<OPTION VALUE='86'>Practice Management</OPTION>
	<OPTION VALUE='94'>Preventative Therapy</OPTION>
	<OPTION VALUE='121'>Public Health</OPTION>
	<OPTION VALUE='104'>Radiology</OPTION>
	<OPTION VALUE='108'>Removable Appliances</OPTION>
	<OPTION VALUE='138'>Sedation</OPTION>
	<OPTION VALUE='117'>Sleep Medicine</OPTION>
	<OPTION VALUE='157'>Special Care</OPTION>
	<OPTION VALUE='161'>Substance Abuse</OPTION>
	<OPTION VALUE='145'>Teledentistry</OPTION>
	<OPTION VALUE='109'>Temporization</OPTION>
	<OPTION VALUE='93'>Uncategorized</OPTION>
	<OPTION VALUE='126'>Utility Room</OPTION>
	<OPTION VALUE='158'>Wellness Dentistry</OPTION>
	<OPTION VALUE='111'>Whitening</OPTION>
	<OPTION VALUE='119'>Work Environment and Law</OPTION>
</SELECT>

</td>
</tr>
</table>
</div>	<!-- x_catID_div  viva_select_box -->
<div ID="x_companyID_div" class="viva_select_box">
<table align="center">
<tr>
	<td align="left">
		
<span class="viva_select_label">Company Sponsor:<br /></span>
<SELECT ID='x_companyID' NAME='x_companyID' onchange='doVivaSearchCompany()'>
<option value=''> -- view by company -- </option>
	<OPTION VALUE='182'>AdDent</OPTION>
	<OPTION VALUE='14'>A-Dec</OPTION>
	<OPTION VALUE='51'>Air Techniques</OPTION>
	<OPTION VALUE='196'>Biotech Dental</OPTION>
	<OPTION VALUE='115'>BrandMax</OPTION>
	<OPTION VALUE='213'>California Dental Arts</OPTION>
	<OPTION VALUE='195'>Candid</OPTION>
	<OPTION VALUE='222'>Carestream Dental</OPTION>
	<OPTION VALUE='165'>Cellerant</OPTION>
	<OPTION VALUE='89'>Centrix</OPTION>
	<OPTION VALUE='216'>CephX</OPTION>
	<OPTION VALUE='223'>Cocolab</OPTION>
	<OPTION VALUE='30'>COLTENE</OPTION>
	<OPTION VALUE='193'>Compliance Training Partners</OPTION>
	<OPTION VALUE='188'>Convergent Dental</OPTION>
	<OPTION VALUE='139'>Cranberry</OPTION>
	<OPTION VALUE='52'>Dental Advisor</OPTION>
	<OPTION VALUE='203'>Dental Sleep Solutions</OPTION>
	<OPTION VALUE='28'>DENTALEZ</OPTION>
	<OPTION VALUE='181'>DEXIS</OPTION>
	<OPTION VALUE='214'>Digital Doc</OPTION>
	<OPTION VALUE='103'>DMG America</OPTION>
	<OPTION VALUE='204'>Dynamic Abutment Solutions</OPTION>
	<OPTION VALUE='218'>EMS Dental</OPTION>
	<OPTION VALUE='7'>GC America</OPTION>
	<OPTION VALUE='116'>GLO Science</OPTION>
	<OPTION VALUE='96'>GUM</OPTION>
	<OPTION VALUE='179'>HealthFirst</OPTION>
	<OPTION VALUE='215'>Incisive Technologies</OPTION>
	<OPTION VALUE='60'>Ivoclar</OPTION>
	<OPTION VALUE='220'>KometaBio</OPTION>
	<OPTION VALUE='25'>Kulzer</OPTION>
	<OPTION VALUE='58'>Kuraray Noritake</OPTION>
	<OPTION VALUE='192'>Listerine</OPTION>
	<OPTION VALUE='101'>Microcopy</OPTION>
	<OPTION VALUE='100'>Midmark Dental</OPTION>
	<OPTION VALUE='209'>Millennium Dental Technologies</OPTION>
	<OPTION VALUE='73'>NSK America</OPTION>
	<OPTION VALUE='208'>Perimetrics</OPTION>
	<OPTION VALUE='68'>Pierrel S.p.A.</OPTION>
	<OPTION VALUE='27'>Premier Dental</OPTION>
	<OPTION VALUE='64'>Pulpdent</OPTION>
	<OPTION VALUE='221'>Rapid Shape</OPTION>
	<OPTION VALUE='205'>Rectangle Health</OPTION>
	<OPTION VALUE='202'>ROE Dental Lab</OPTION>
	<OPTION VALUE='26'>SDI</OPTION>
	<OPTION VALUE='33'>Septodont</OPTION>
	<OPTION VALUE='108'>Shofu Dental</OPTION>
	<OPTION VALUE='210'>Solmetex</OPTION>
	<OPTION VALUE='3'>Solventum (formerly 3M Health Care)</OPTION>
	<OPTION VALUE='212'>SOTA Cloud</OPTION>
	<OPTION VALUE='74'>SS White</OPTION>
	<OPTION VALUE='200'>Stabili-Teeth</OPTION>
	<OPTION VALUE='185'>Sunbit</OPTION>
	<OPTION VALUE='50'>Tokuyama Dental America</OPTION>
	<OPTION VALUE='34'>Viva Learning</OPTION>
	<OPTION VALUE='217'>vVardis</OPTION>
</SELECT>

</td>
</tr>
</table>
</div>  	<!-- x_companyID_div  viva_select_box -->
<div style="clear:both"></div>
</div>		<!-- viva_select_wrapper -->

<div ID="viva_search_footer_available">
	<b>Available online classes:</b> 	<!-- ======== -->
16 upcoming webinars;&nbsp;1287 on-demand;&nbsp;267 product tutorials
</div>	<!-- viva_search_footer_available -->
<div ID="viva_search_footer_results"> <!-- ======================================== -->
	
	Use Viva CE Finder above to search complete library.
	
</div>		<!-- viva_search_footer_results -->
</form>
<div ID="viva_loading_div"><img src="/art/loading_small.gif" width="16" height="16" alt="" ID="viva_loading"></div>
</div>	<!-- viva_ce_finder_div -->
</div>	<!-- center -->

	
<!-- ====================================================================================== -->
<!-- FREE PARTICIPATORY ONLINE CE -->
<!-- ====================================================================================== -->

		<table width="100%" cellspacing="0" cellpadding="0">
		<tr>
			<td class="ptitleprefix" bgcolor="#FF0000"><img src="art/clear.gif" width="1" height="25" alt=""></td>
			<td>
				<span class="psubtitleblack">Upcoming Live Webinar Schedule</span>
				<a name="viva_webinars">&nbsp;</a>
			</td>
		</tr>
		<tr>
			<td colspan=2><div class="graybar"><img src="art/clear.gif" width="1" height="1" alt=""></div></td>
		</tr>
		</table>		
<style>
.viva_noresults {
	margin: 20px;
}
</style>

		<br>
		<b><span style="color:red">Reserve Your Seat Now!</span></b>
		<!-- Earn participatory CE credits from Viva Learning&trade; online webcasts.  -->

<!-- ==================================================================  -->
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5382" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5382.20260629182716152.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5382" target="_blank"><b>Modern Pain Management in Dental Anesthesia: Faster Onset, Greater Comfort</b></a>
				<br /><b>Presenter: Dr. Dilip Dudhat</b>
				<br /><b>Sponsor: Pierrel S.p.A.</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">7/27/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">7/27/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5382" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Achieving profound, predictable local anesthesia is essential to providing exceptional patient care. This CE webinar explores the science behind successful anesthesia by examining how tissue pH and nerve membrane physiology influence anesthetic onset and effectiveness. Participants will learn practical techniques, including buffering strategies, to reduce time-to-numbness and improve the reliability of local anesthetic delivery. The webinar will also discuss methods for minimizing injection discomfort and patient anxiety to create a more positive clinical experience and enhance treatment acceptance. Finally, attendees will compare articaine with other commonly used amide anesthetics, evaluating their efficacy, safety, and cost considerations to support informed clinical decision-making.

					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://pierrellearning.com/member/bio_popup.asp?x_classID=5382#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5360" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5360.20260514211319997.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5360" target="_blank"><b>Efficiency and Versatility in Cementation: Practical Solutions for Everyday Clinical Practice</b></a>
				<br /><b>Presenter: Dr. Lee Ann Brady</b>
				<br /><b>Sponsor: Kulzer</b>
				<table>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">7/28/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">7/28/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5360" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		This CE webinar will address common challenges faced in everyday cementation and discuss key criteria for selecting cementation materials in modern restorative dentistry. Participants will gain a clear understanding of simplified cementation protocols and their clinical benefits, as well as appropriate material indications across different restorative solutions and clinical scenarios.  A step by step clinical workflow will be presented to support consistent and predictable outcomes, along with practical tips to improve efficiency and reduce chair time. The webinar will also include case based discussions to translate concepts into clinical practice, followed by a live Q&A to address participants' questions and real world concerns.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://kulzerlearning.com/member/bio_popup.asp?x_classID=5360#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5368" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5368.20260602200231884.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5368" target="_blank"><b>From Preference to Prevention: How Patient Experience Drives Home Care Compliance</b></a>
				<br /><b>Presenter: Dr. Connie Wang</b>
				<br /><b>Sponsor: Cocolab</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">8/3/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">8/3/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5368" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Why do some patients maintain excellent home care habits while others struggle to stay consistent? This webinar explores the behavioral science behind oral health compliance, examining how patient preferences, habits, and reward systems influence daily home care routines. Participants will gain insight into the common reasons flossing and other preventive behaviors break down over time and learn practical strategies for guiding patients toward lasting change.

Through a behavior-based approach, attendees will discover how to improve patient engagement, strengthen recommendations, and select tools that support long-term success. By understanding what truly motivates patients, dental professionals can help transform home care from an occasional intention into a sustainable preventive habit.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://cocolab.com//member/bio_popup.asp?x_classID=5368#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5379" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5379.20260616183155616.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5379" target="_blank"><b>Confidence, Clarity, Acceptance: A Practical Guide to Clear Aligner Case Presentation and Treatment
</b></a>
				<br /><b>Presenter: Dr. Zachary Currie</b>
				<br /><b>Sponsor: Solventum (formerly 3M Health Care)</b>
				<table>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">8/4/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">8/4/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5379" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		This CE webinar provides clinicians with a practical framework for elevating their clear aligner practice and improving patient outcomes. Dr. Currie will present four interconnected strategies covering effective case presentation, increasing treatment acceptance, building clinical confidence through improved case selection and treatment planning, and enhancing the patient experience through better aligner tracking and monitoring. Attendees will leave with actionable techniques to strengthen communication, improve diagnostic workflows, and deliver more predictable results across a wider range of clear aligner cases.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://3mdentallearning.com/member/bio_popup.asp?x_classID=5379#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5381" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5381.20260629175827957.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5381" target="_blank"><b>Proactive Patient Care: The Patient Promise</b></a>
				<br /><b>Presenter: Dr. Layla Lohmann</b>
				<br /><b>Sponsor: vVardis</b>
				<table>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">8/11/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">8/11/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5381" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		This CE webinar explores the evolution of dentistry from a reactive, treatment-focused model to a proactive, patient-centered approach. Emphasizing minimally invasive and non-invasive dentistry, it highlights the importance of prevention, early intervention, and long-term health outcomes. Participants will gain insight into how oral health is intrinsically linked to systemic health and overall well-being. The session will also address the importance of viewing patients holistically—considering their medical history, lifestyle, behaviors, and individual risk factors—to deliver personalized, evidence-based care. By focusing on the “patient promise,” this webinar underscores the ethical and professional responsibility to empower patients, foster trust, and promote sustainable oral health through education, prevention, and collaboration.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://vvardis.com/member/bio_popup.asp?x_classID=5381#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5362" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5362.20260526183337662.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5362" target="_blank"><b>What Does Science Tell Us About Fluoride Varnish?</b></a>
				<br /><b>Presenter: Shelley Brown, MEd, BSDH, AS, RDH, FADHA</b>
				<br /><b>Sponsor: Centrix</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">8/24/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">8/24/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5362" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		We are all familiar with fluoride varnish but in today’s environment of fluoride hesitancy, misinformation, and marketing noise, it’s easy to lose sight of the science that makes it so effective. To continue delivering the highest standard of preventive care, clinicians need a clear understanding of what actually happens after varnish is applied and why those mechanisms matter clinically. This CE webinar takes a closer look at the science behind fluoride varnish, including fluoride uptake, fluorapatite formation, and the role prolonged contact time plays in long-term enamel protection. We’ll also explore how varnish formulations behave on the tooth surface and what clinicians should consider when selecting a varnish for their patients.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://centrixdentallearning.com/member/bio_popup.asp?x_classID=5362#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5366" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5366.20260601173329457.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5366" target="_blank"><b>Everyday Sensitivity Management for the Clinical Team</b></a>
				<br /><b>Presenter: Ms. Shannon Pace Brinker, CDA</b>
				<br /><b>Sponsor: Ivoclar</b>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">8/27/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">8/27/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5366" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		This CE webinar simplifies sensitivity management through a practical, real-world approach designed for the entire clinical team. Participants will learn how to identify different types of sensitivity using a simplified clinical decision tree and understand how to match the right products and protocols to specific patient needs. The webinar will also review proper application techniques for commonly used desensitizing materials, evidence-based in-office therapies, and at-home recommendations that improve patient comfort and long-term outcomes.

Attendees will leave with practical strategies they can immediately implement to improve patient education, reduce post-operative discomfort, and create more predictable sensitivity management protocols within their practice.

					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://IVOCLARLEARNING.COM/member/bio_popup.asp?x_classID=5366#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5376" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5376.20260610220453107.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5376" target="_blank"><b>Full SPEED Ahead from STML to SPEED: Lessons Learned from Eight Years of Digital Dentistry</b></a>
				<br /><b>Presenter: Dr. Lincoln Fantaski</b>
				<br /><b>Sponsor: Kuraray Noritake</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">8/31/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">8/31/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5376" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Join us for Full SPEED Ahead: From STML to SPEED - Lessons Learned from 8 Years of Digital Dentistry, a webinar exploring the evolution of multilayer zirconia and its impact on modern digital restorative workflows. This CE webinar will review how optimized milling and sintering protocols can help reduce turnaround times while maintaining esthetic and functional outcomes. Participants will gain practical strategies for implementing high-speed zirconia workflows that improve efficiency, profitability, and the patient experience. The discussion will also highlight how expanded shade options can simplify treatment planning and inventory management in a digital practice.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://kuraraydentallearning.com/member/bio_popup.asp?x_classID=5376#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5388" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5388.20260721221007171.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5388" target="_blank"><b>Beyond Bonding: The Next Evolution of Restorative Dentistry</b></a>
				<br /><b>Presenter: Dr. Todd Snyder</b>
				<br /><b>Sponsor: Pulpdent</b>
				<table>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">9/2/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">9/2/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5388" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Discover how preparation design, adhesive protocols, and bioactive restorative materials work together to create stronger, longer-lasting, more predictable restorations. Adhesive dentistry has transformed the way we restore teeth, but successful restorative treatment requires more than simply creating a strong bond. Material selection, preparation design, isolation, and an understanding of how restorative materials interact with the oral environment all play a critical role in long-term clinical success. This CE webinar explores the evolution of restorative dentistry beyond traditional adhesive concepts and examines how bioactive restorative materials can contribute to durable, predictable outcomes. Through evidence-based principles, clinical techniques, and real-world case presentations, participants will gain practical strategies for improving efficiency, reducing failures, and selecting restorative materials that support both the restoration and the surrounding tooth structure.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://pulpdentlearning.com/member/bio_popup.asp?x_classID=5388#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5371" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5371.20260604161507406.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5371" target="_blank"><b>Minimally Invasive Implant Maintenance:  A Confident, Modern Approach to Implant Preservation</b></a>
				<br /><b>Presenter: Karen Davis, RDH, BSDH</b>
				<br /><b>Sponsor: EMS Dental</b>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">9/10/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">9/10/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5371" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Implant maintenance doesn’t need to feel risky or uncertain. This CE webinar is designed to replace hesitation with clarity, confidence, and protocols to preserve implants and prevent disease initiation. Grounded in current evidence and minimally invasive principles, the webinar helps clinicians protect implant investments, prevent complications, and standardize care.  Attendees will be able to appraise the science and benefits of Guided Biofilm Therapy for professional implant maintenance and appraise benefits of adjunctive technologies patients and clinicians value for implant preservation.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://ems-dental.com/en-us/member/bio_popup.asp?x_classID=5371#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5365" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5365.20260529170426921.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5365" target="_blank"><b>Periodontitis Decoded: AAP Classification, Communication, and Customized Care</b></a>
				<br /><b>Presenter: Shelley Brown, MEd, BSDH, AS, RDH, FADHA</b>
				<br /><b>Sponsor: GUM</b>
				<table>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">9/22/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">9/22/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5365" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Mastering the complexities of periodontal disease requires a seamless bridge between diagnostic precision and patient-centered execution. This case-based CE webinar is designed to demystify the AAP Periodontal Classification System, transforming it from a diagnostic checklist into a powerful framework for clinical decision-making.

Participants will engage in the practical application of staging and grading, learning how to translate clinical findings directly into highly customized, evidence-based treatment plans. Beyond the probe depths, we will explore the latest modalities in non-surgical periodontal therapy (NSPT), advanced biofilm management strategies, and the science behind individualized homecare recommendations.

Through guided, interactive case walkthroughs, you will apply these concepts to real-world clinical scenarios, sharpening your diagnostic ability and treatment confidence. Finally, because the best treatment plan only works if the patient partners with you, the course concludes with actionable Motivational Interviewing (MI) techniques. You will leave equipped to elevate your patient communication, break down barriers to treatment acceptance, and inspire long-term homecare compliance.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://sunstarlearning.com/member/bio_popup.asp?x_classID=5365#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5384" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5384.20260702154529812.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5384" target="_blank"><b>New Materials and Technologies Along with Fusion of Digital and Analog Workflows Can Enhance Your Restorative Practice</b></a>
				<br /><b>Presenter: Dr. Bob Lowe</b>
				<br /><b>Sponsor: Premier Dental</b>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">9/24/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">9/24/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5384" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Improvement in materials and technologies make it possible for all dentists to expand on direct restorative services they provide for their patients and improve indirect restorative workflows for difficult aesthetic cases. This CE webinar will discuss the fusion of digital and analog workflows to enhance predictability and patient satisfaction.  Step-by-step case review will highlight the individual procedural elements to improve aesthetic and functional outcomes of your most challenging cases.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://premierdentallearning.com/member/bio_popup.asp?x_classID=5384#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5386" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5386.20260713155530594.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5386" target="_blank"><b>Zirconia Reimagined</b></a>
				<br /><b>Presenter: Dr. Edward McLaren</b>
				<br /><b>Sponsor: Ivoclar</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">10/5/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">10/5/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5386" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Join Dr. Ed McLaren for an in-depth exploration of the latest advancements in next-generation zirconia materials and restorative workflows. Discover how recent innovations in zirconia technology are redefining esthetics, efficiency, and clinical performance through advanced material engineering. Learn how an optimized microstructure delivers exceptional translucency—even with accelerated firing protocols—while maintaining high flexural strength and lifelike optical properties that closely mimic natural dentition.

This CE webinar will examine the complete restorative workflow, from digital design and material selection to milling, sintering, characterization, and final finishing. In addition, Dr. McLaren will review evidence-based preparation designs and cementation protocols that optimize restoration longevity, fit, and esthetic outcomes across a wide range of clinical indications, from minimally invasive veneers to full-arch zirconia restorations. Attendees will gain practical insights they can immediately apply to improve efficiency, predictability, and patient satisfaction in ever
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://IVOCLARLEARNING.COM/member/bio_popup.asp?x_classID=5386#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5367" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5367.20260602195436828.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5367" target="_blank"><b>From Overwhelm to Comfort: Creating Sensory-Friendly Dental Environments</b></a>
				<br /><b>Presenter: Jeannette Diaz-Olivera, DHSc, MPH, RDHAP, FADHA</b>
				<br /><b>Sponsor: GUM</b>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">10/22/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">10/22/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5367" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Dental fear and anxiety are among the most common reasons patients delay or avoid oral healthcare. The dental environment is filled with sensory stimuli, including bright lights, unfamiliar sounds, smells, tastes, and touch sensations that can contribute to distress and discomfort. For individuals who are neurodivergent, have intellectual or developmental disabilities, have experienced trauma, or experience heightened anxiety, sensory processing differences may further impact their ability to tolerate dental treatment.

This CE webinar introduces dental professionals to the role of sensory processing in the patient experience. It explores evidence-based sensory adaptations that can reduce anxiety, improve cooperation, and support more positive dental visits. Participants will learn practical, low-cost strategies to create a more sensory-friendly clinical environment and enhance patient-centered care for individuals across the lifespan.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://sunstarlearning.com/member/bio_popup.asp?x_classID=5367#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5389" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5389.20260723175117197.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5389" target="_blank"><b>Simplifying Veneer Cementation: Real-World Solutions for Predictable Delivery</b></a>
				<br /><b>Presenter: Dr. Jason Olitsky</b>
				<br /><b>Sponsor: Ivoclar</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">11/16/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">11/17/26</td>
					<td class="bdy">&nbsp;&nbsp;
						0:00 AM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5389" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Porcelain veneer cementation is one of the most technique-sensitive stages of aesthetic treatment. In this one-hour CE webinar, Dr. Jason Olitsky presents a practical, step-by-step approach to delivering veneer cases with greater confidence and predictability. The webinar will review the critical stages of veneer try-in and cementation, including provisional removal, bleeding control, isolation, color evaluation, porcelain preparation, seating, cement cleanup, finishing, and occlusal adjustment. Real-world challenges such as show-through, tight contacts, incomplete seating, poor fit, exposed margins, and open gingival embrasures will also be discussed.  Participants will leave with practical strategies they can immediately apply to simplify veneer delivery and improve aesthetic outcomes.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://IVOCLARLEARNING.COM/member/bio_popup.asp?x_classID=5389#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5385" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5385.20260702162927884.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5385" target="_blank"><b>Light, Bond, Restore: Optimizing Adhesives, Composites, and Curing Protocols for Long-Term Clinical Success</b></a>
				<br /><b>Presenter: Dr. Sam Simos</b>
				<br /><b>Sponsor: Premier Dental</b>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">11/19/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Fri&nbsp;</td>
					<td class="bdy">11/20/26</td>
					<td class="bdy">&nbsp;&nbsp;
						0:00 AM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5385" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Successful direct restorations require more than selecting a composite and placing it into a preparation. Long-term clinical success is dependent upon understanding the complex relationship between adhesive systems, restorative materials, and light-curing technology. Advances in universal adhesives, bulk-fill and nanohybrid composites, antimicrobial restorative materials, and high-output LED curing lights have provided clinicians with powerful tools to improve efficiency and predictability. However, improper material selection or curing protocols can compromise polymerization, bond durability, marginal integrity, esthetics, and restoration longevity.

This evidence-based CE webinar reviews the science behind contemporary adhesive dentistry and composite placement while providing practical clinical protocols that can be immediately implemented in everyday practice. Through clinical cases, current research, and real-world restorative workflows, participants will learn how to maximize restorative performance by optimizing the interaction between adhesives, composites, and curing lights.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://premierdentallearning.com/member/bio_popup.asp?x_classID=5385#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
		
	
<!-- ====================================================================================== -->
<!-- ON DEMAND ONLINE CE -->
<!-- ====================================================================================== -->

		<table width="100%" cellspacing="0" cellpadding="0">
		<tr>
			<td class="ptitleprefix" bgcolor="#FF0000"><img src="art/clear.gif" width="1" height="25" alt=""></td>
			<td>
				<span class="psubtitleblack">On-Demand CE Webinars</span>
				<a name="viva_ondemand">&nbsp;</a>
			</td>
		</tr>
		<tr>
			<td colspan=2><div class="graybar"><img src="art/clear.gif" width="1" height="1" alt=""></div></td>
		</tr>
		</table>		

		<br />
		<b><span style="color:red">Earn Free Self-Study CEU</span>&nbsp;<span style="color:gray">Learn on your schedule.  Anytime, anywhere.</span></b>

		<!-- Earn participatory CE credits from Viva Learning&trade; online webcasts.  -->

			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5364" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5364.20260527185558179.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5364" target="_blank"><b>From CBCT to Chairside: Real-World Implant Planning, Guides, and Logistics</b></a>
				<br /><b>Presenter: Dr. Joshua Nagao</b>
				<br /><b>Sponsor: Carestream Dental</b>
				<br />Released: 	7/20/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5364" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		This clinical, workflow-focused CE webinar walks through how CBCT is integrated into everyday implant dentistry - from diagnosis and case selection to virtual planning and guided placement. Attendees will see how cone beam data is used to evaluate anatomy, assess risk, and determine restorative-driven implant positioning.

The webinar will feature a "scan to plan" demonstration: opening implant planning software, reviewing a CBCT scan, and virtually placing an implant in real time, with discussion of key landmarks, safety zones, and restorative considerations, including guide fabrication.

Guided workflows will be covered in detail, including when to place freehand vs. guided, how guides are designed, and the steps involved in guide fabrication - whether produced in-house or through a lab/third-party service.
					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://carestreamdental.com/en-us//member/bio_popup.asp?x_classID=5364#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5370" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5370.20260603183449022.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5370" target="_blank"><b>From Diagnosis to Healing: Managing Periodontal and Peri-Implant Disease with the 9.3-micron CO2 Laser</b></a>
				<br /><b>Presenter: Dr. David Stinchfield</b>
				<br /><b>Sponsor: Convergent Dental</b>
				<br />Released: 	7/9/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5370" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		Learn a comprehensive, minimally invasive approach to periodontal and peri-implant disease using the 9.3-micron CO2 laser. This CE webinar addresses the oral-systemic implications of untreated disease, complete treatment sequencing, occlusal stabilization, and real-world cases to give clinicians a practical framework for delivering positive clinical outcomes and an elevated patient experience.
					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://convergentdentallearning.com/member/bio_popup.asp?x_classID=5370#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5373" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5373.20260605153715291.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5373" target="_blank"><b>Growth without Compromise: Lessons Learned for Merging Practices While Maintaining a Health-centered Focus</b></a>
				<br /><b>Presenter: Dr. Stephanie Vondrak</b>
				<br /><b>Sponsor: Tokuyama Dental America</b>
				<br />Released: 	7/8/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5373" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		This CE webinar is designed to provide dental professionals with practical, experience-based guidance for successfully growing and integrating multiple practices while maintaining a health-centered philosophy of care. Drawing from real-world lessons learned through practice mergers and expansion, the webinar will explore strategies for preserving continuity of patient care, strengthening team culture, and sustaining operational efficiency during periods of growth. Participants will gain insight into common challenges associated with practice integration, including communication barriers, workflow disruptions, and team alignment, along with actionable solutions to address them.
					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://tokuyamadentallearning.com/member/bio_popup.asp?x_classID=5373#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5357" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5357.20260428171024987.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5357" target="_blank"><b>The Digital 3D Printed Splint Workflow: A Live Clinical Demonstration</b></a>
				<br /><b>Presenter: Dr. Nitish Surathu and Dr. Neeraj Surathu</b>
				<br /><b>Sponsor: Rapid Shape</b>
				<br />Released: 	6/24/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5357" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		Join us for a live, end-to-end demonstration of the complete digital splint workflow, from intraoral scanning to chairside delivery. In this CE webinar, you will follow a real clinical case as we walk through patient diagnostics, live CAD design, print setup, post-processing, and final delivery. Whether you are just beginning to explore digital dentistry or looking to refine your existing workflow, this session offers practical, hands-on insight into how 3D printing can simplify splint fabrication while improving clinical outcomes.
					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://rapidshape3d.com//member/bio_popup.asp?x_classID=5357#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5347" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5347.20260402193829473.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5347" target="_blank"><b>The Equipment Upgrade That Has the Greatest Impact in a Dental Practice</b></a>
				<br /><b>Presenter: Dr. Ankur Gupta</b>
				<br /><b>Sponsor: EMS Dental</b>
				<br />Released: 	6/23/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5347" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		In a world of scanners, lasers, and 3D printers, why would a dentist invest in GBT for their hygiene department?  Dentists will never be free of the temptation to purchase another toy.  Constant innovation in technology regularly promises to make dentistry easier, more predictable, and highly satisfying for the patient.  The problem is, most equipment upgrades are used, at best, once or twice a day.  Guided Biofilm Therapy is the one investment in dentistry that can be used on every patient that comes in for hygiene, making their experience more pleasant, efficient, effective, and motivating.
					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://ems-dental.com/en-us/member/bio_popup.asp?x_classID=5347#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5344" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5344.20260324222438185.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5344" target="_blank"><b>"Sensitive" Subject – Addressing Dentinal Hypersensitivity</b></a>
				<br /><b>Presenter: Dr. Joy Void-Holmes, RDH, BSDH, DHSc</b>
				<br /><b>Sponsor: Centrix</b>
				<br />Released: 	6/15/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5344" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		Dentinal hypersensitivity is a prevalent condition, affecting approximately 1 in 8 adults. While not typically classified as a dental emergency, it can significantly impact a patient’s comfort and quality of life. Whether caused by gum recession, bleaching, dentin exposure, or other factors, patients rely on dental professionals to provide effective relief. This CE webinar will focus on evidence-based strategies to prevent and manage dentinal hypersensitivity, equipping participants with the knowledge and tools to address this common concern.
					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://centrixdentallearning.com/member/bio_popup.asp?x_classID=5344#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5349" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5349.20260407145218512.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5349" target="_blank"><b>Dental Practice Profitability: The Smart Way to Increase ROI</b></a>
				<br /><b>Presenter: Dr. Scott Kalniz</b>
				<br /><b>Sponsor: DENTALEZ</b>
				<br />Released: 	6/1/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5349" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		Improving dental practice profitability rarely comes down to a single piece of equipment. It depends on how well the systems in a practice work together, from reliable utility equipment to efficient operatories and tools that stay in service.  In most practices, profitability is closely tied to four operational factors: equipment uptime, operatory efficiency, maintenance speed, and equipment longevity.

Upon completion of this CE webinar, the student will be better positioned to maintain consistent patient flow and protect their production schedules.
					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://dentalezlearning.com/member/bio_popup.asp?x_classID=5349#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
	
	
<!-- ====================================================================================== -->
<!-- ON DEMAND PRODUCT TUTORIALS -->
<!-- ====================================================================================== -->

<!-- ================================================================== -->

		<table width="100%" cellspacing="0" cellpadding="0">
		<tr>
			<td class="ptitleprefix" bgcolor="#FF0000"><img src="art/clear.gif" width="1" height="25" alt=""></td>
			<td>
				<span class="psubtitleblack">Product Tutorials</span>
				<a name="viva_tutorials">&nbsp;</a>
			</td>
		</tr>
		<tr>
			<td colspan=2><div class="graybar"><img src="art/clear.gif" width="1" height="1" alt=""></div></td>
		</tr>
		</table>		
		
		<br/>
		<b><span style="color:red">Stay up-to-date on new products!</span></b>

	
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4358" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4358.20210803162305594.png" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4358" target="_blank"><b>Post-Pandemic Compliance: Update on OSHA and Bloodborne Pathogens Regulations</b></a>
				<br /><b>Presenter: Cranberry</b>
				<br /><b>Sponsor: Cranberry</b>
				<br />Released: 	8/3/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4358" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		In this podcast video, we'll be discussing post pandemic compliance and we'll also be discussing the latest updates on OSHA and bloodborne pathogens regulations. Our guest is Dr. Karson Carpenter, a practicing dentist who serves as President of Compliance Training Partners. He is an OSHA approved trainer who has for over 25 years designed educational programs to bring dental and medical facilities into compliance with governmental regulations including OSHA, HIPAA and infection control.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4315" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4315.20210421172438619.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4315" target="_blank"><b>SciCan SPEC System: Smart Instrument Reprocessing</b></a>
				<br /><b>Presenter: SciCan</b>
				<br /><b>Sponsor: SciCan</b>
				<br />Released: 	4/21/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4315" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		Smart Instrument Reprocessing begins and ends with SciCan.  Your steri-center should improve Safety, ensure Predictable results, maximize Efficiency, and maintain Compliance.  Your office can have the fastest and safest instrument processing system possible to avoid delays and interruptions in work flow and to reduce the risk of staff injury.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4398" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4398.20211004165817261.png" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4398" target="_blank"><b>CLEARFIL MAJESTY™ ES-2 Universal</b></a>
				<br /><b>Presenter: Kuraray Noritake</b>
				<br /><b>Sponsor: Kuraray Noritake</b>
				<br />Released: 	3/1/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4398" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		How many different shades of composite do your customers need in the posterior region? If they opt for CLEARFIL MAJESTY™ ES-2 Universal, a single shade will do the trick. The go-to solution for common posterior restorations, independent of the color of the underlying and adjacent tooth structure.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4266" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4266.20210114001801864.png" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4266" target="_blank"><b>OPTIM - Is Your Surface Cleaner Disinfectant Effective Against COVID-19?</b></a>
				<br /><b>Presenter: SciCan</b>
				<br /><b>Sponsor: SciCan</b>
				<br />Released: 	1/14/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4266" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		Here’s an overview video for dental offices, about how to search the EPA List-N for your surface disinfectant, using our OPTIM one-minute, one-step surface cleaner and disinfectant as an example.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4260" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4260.20210106165146614.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4260" target="_blank"><b>BRILLIANT EverGlow® Flow</b></a>
				<br /><b>Presenter: COLTENE</b>
				<br /><b>Sponsor: COLTENE</b>
				<br />Released: 	1/6/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4260" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		BRILLIANT EverGlow Flow is a flowable submicron hybrid composite that gives you both stability and flowability in one versatile material.  Appropriate for use in a wide range of indications, BRILLIANT EverGlow Flow is available in eight shades and two different needle sizes, including an extra-fine needle.  If you’re ready to upgrade your dentistry, COLTENE’s BRILLIANT EverGlow Flow is for you!
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4259" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4259.20210105232202886.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4259" target="_blank"><b>everX Flow™</b></a>
				<br /><b>Presenter: GC America</b>
				<br /><b>Sponsor: GC America</b>
				<br />Released: 	1/5/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4259" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		everX Flow is a short fiber-reinforced dentin replacement that provides excellent core strength and fracture resistance.  You can use it for core build-ups, substructure for endodontically-treated teeth, coronal restorations and teeth with large cavities in high stress-bearing areas, knowing that you’ll be restoring teeth in a biomimetic way and preventing crack propagation.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4222" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4222.20201201184811121.png" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4222" target="_blank"><b>ZR-Cem</b></a>
				<br /><b>Presenter: Premier Dental</b>
				<br /><b>Sponsor: Premier Dental</b>
				<br />Released: 	12/1/20
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4222" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		ZR-Cem is an innovative self-adhesive universal resin cement specially formulated for zirconia restorations. Dual-cured ZR-Cem enables a strong bond to all ceramic materials, dentin and enamel - ensuring superior retention and marginal integrity.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
	

</div>	<!-- viva_svc_div_wrapper -->

<script language="JavaScript">
// alert('readyState3: ' + document.readyState );

_viva_postprocess();

function _viva_postprocess () {
	if ( document.readyState != 'complete' ) {
		// alert('readyState4: ' + document.readyState );
		setTimeout( _viva_postprocess,1000 );
		return false;
	}
	// alert('readyState6: ' + document.readyState );

	var vsfca = document.getElementById( 'x_catID' );
	if (vsfca) {
		if ( vsfca.length > 2 ) {  // show if more than one element
			var vsfcadiv = document.getElementById( 'x_catID_div' );
			if ( vsfcadiv ) {
				// alert( 'found x_catID_div!!' );
				vsfcadiv.style.visibility = 'visible';
			}
		}
	}
	else {
		// alert('vsfca not found!!');
	}
	
	var vsfco = document.getElementById( 'x_companyID' );
	// alert(  'options co: ' + vsfco.length );  // # elements in select
	if (vsfco) {
		if ( vsfco.length > 2 ) {  // show if more one element
			var vsfcodiv = document.getElementById( 'x_companyID_div' );
			if ( vsfcodiv ) {
				// alert( 'found x_companyID_div!!' );
				vsfcodiv.style.visibility = 'visible';
			}
		}
	}
	else {
		// alert('vsfco not found!!');
	}

	return false;
}


// ( function () {
// 	alert('readyState2: ' + document.readyState );
// }) ();
</script>


</body>
</html>