
<!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> 	<!-- ======== -->
13 upcoming webinars;&nbsp;1281 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=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"><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=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>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">6/15/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">6/15/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=5344" 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 />
		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/registerlive.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"><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=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>
				<table>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">6/23/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">6/23/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=5347" 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 />
		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://https://www.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/registerlive.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"><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=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>
				<table>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">6/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">Wed&nbsp;</td>
					<td class="bdy">6/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=5357" 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 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://https://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/registerlive.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"><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=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>
				<table>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">7/8/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">7/8/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=5373" 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 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. The webinar will also examine how effective systems and processes can support profitability and efficiency without compromising clinical excellence or patient-centered outcomes. In addition, attendees will learn how material selection and clinical workflow decisions can influence practice performance by reducing chair time, simplifying inventory management, and enhancing the overall patient experience. Through practical examples and proven approaches, participants will leave with tools to support sustainable growth while preserving the core values that define high-quality, health-focused care.
					<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/registerlive.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"><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=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>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">7/9/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">7/9/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=5370" 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 />
		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/registerlive.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"><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=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>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">7/20/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/20/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=5364" 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 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://https://www.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/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://https://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=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=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://https://www.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=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 />
		
	
<!-- ====================================================================================== -->
<!-- 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=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 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5325" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5325.20260218230152133.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=5325" target="_blank"><b>Everyday Composites Made Extraordinary</b></a>
				<br /><b>Presenter: Dr. Anthony Mennito</b>
				<br /><b>Sponsor: Ivoclar</b>
				<br />Released: 	5/26/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5325" 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 this CE webinar, Dr. Tony Mennito will explore all the elements that go into making beautiful and long lasting composite resin restorations. Picture this; a patient walks into your office with worn, broken down teeth. They want to feel that confidence that comes with a great smile. Composite resin can be a great, cost-effective material to help patients get their smile back. In this webinar Dr. Mennito will show you how you can utilize tools like dental photography, direct mock ups, and modern dental materials to win the confidence of your patients and deliver the highest esthetic 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=5325#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=5353" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5353.20260414213300186.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=5353" target="_blank"><b>Tips for Successful Posterior Composite Restorations</b></a>
				<br /><b>Presenter: Dr. James Chae</b>
				<br /><b>Sponsor: Tokuyama Dental America</b>
				<br />Released: 	5/25/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5353" 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 clinicians with practical, experience-based guidance for achieving predictable and esthetic posterior composite restorations. Drawing from over 25 years of clinical practice, the lecture will highlight best practices that enhance efficiency, accuracy, and long-term success. Participants will gain insight into the essential tools and materials required for optimal outcomes, as well as how to avoid common and preventable diagnostic errors that can compromise treatment. The webinar will also focus on decision-making strategies for selecting the appropriate composite materials based on tooth location and functional demands. Attendees will learn proper tooth preparation techniques for esthetic restorations and will be introduced to streamlined methods and instrumentation that allow for faster, easier procedures while maintaining a natural appearance. Clinical video demonstrations of Class II and Class V composite restorations will further reinforce these concepts and provide real-world application.
					<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=5353#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=5350" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5350.20260413150638522.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=5350" target="_blank"><b>Don’t Put Your Business at Risk: Best Practices for Dental Unit Waterlines</b></a>
				<br /><b>Presenter: Dr. Karson Carpenter</b>
				<br /><b>Sponsor: Compliance Training Partners</b>
				<br />Released: 	5/20/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5350" 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 />
		Bacterial contamination of dental unit water lines is a growing liability concern for all dental offices. Bacteria that may be present include Legionella, Pseudomonas and Non-tuberculosis Mycobacteria. Without proper protocols, it is possible for dental unit water bacteria levels to be as much as 1000 times what is deemed acceptable by the CDC. This CE webinar, presented by Compliance Training Partners, highlights Centers for Disease control guidelines for dental unit water and provides solutions for maintaining a safe and healthy environment for both patients and staff. The webinar also reviews proper testing protocol and describes how to correct a dental unit water system that contains unacceptable levels of bacteria.
					<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://compliancetrainingpartners.com/member/bio_popup.asp?x_classID=5350#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=5352" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5352.20260414160442828.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=5352" target="_blank"><b>Autologous Dentin: A Powerful Yet Overlooked Graft in Dentistry</b></a>
				<br /><b>Presenter: Dr. Isaac Tawil</b>
				<br /><b>Sponsor: KometaBio</b>
				<br />Released: 	5/19/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5352" 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 />
		Extracted teeth represent a biologically compatible grafting material that is often overlooked in clinical practice. This CE webinar explores the use of autologous dentin as a bone graft, highlighting its biologic properties, including inherent growth factors and structural similarity to bone. The webinar will review clinical applications, with particular attention to compromised patients where enhanced healing and integration are critical. Attendees will also be introduced to practical workflows that allow chair side processing of extracted teeth into graft material, supporting efficient and predictable regenerative 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://https://www.kometabio.com//member/bio_popup.asp?x_classID=5352#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=5343" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5343.20260324220720641.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=5343" target="_blank"><b>Diagnosis and Infiltration of Smooth Surface Enamel Defects</b></a>
				<br /><b>Presenter: Dr. Ali Salehi</b>
				<br /><b>Sponsor: DMG America</b>
				<br />Released: 	5/18/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5343" 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 explores the diagnosis and minimally invasive management of smooth surface enamel defects, integrating both contemporary diagnostic tools and conservative therapeutic strategies. It addresses the different types of enamel lesions based on their topography and etiology—ranging from initial carious demineralizations to developmental defects such as hypoplasia, fluorosis, and hypomineralization—highlighting how these variations influence clinical decision-making.  A key concept discussed is the optical nature of white spot lesions.
					<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://dmglearning.com/member/bio_popup.asp?x_classID=5343#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=5319" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5319.20260204230306069.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=5319" target="_blank"><b>Treating Tethered Oral Tissues: Laser Frenectomy Solutions for Pediatric Patients</b></a>
				<br /><b>Presenter: Dr. Jared Poplin</b>
				<br /><b>Sponsor: Convergent Dental</b>
				<br />Released: 	5/14/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5319" 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 />
		Early intervention for tethered oral tissues (TOTs) can play a significant role in improving a child’s overall health and development. In this CE webinar, Dr. Jared Poplin will examine common conditions associated with tongue-ties and lip-ties, including challenges with breastfeeding, speech development, and oral health. The webinar will also highlight how the 9.3-micron CO2 all-tissue laser supports precise, efficient frenectomy procedures with minimal bleeding, reduced post-operative discomfort, and remarkably rapid healing.
					<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=5319#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>