
<!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='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='165'>Cellerant</OPTION>
	<OPTION VALUE='89'>Centrix</OPTION>
	<OPTION VALUE='216'>CephX</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='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='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;1267 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=5328" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5328.20260226224234572.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=5328" target="_blank"><b>GBT meets GPT: AI for Dental Hygiene</b></a>
				<br /><b>Presenter: Dr. Peter Fritz</b>
				<br /><b>Sponsor: EMS Dental</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">4/6/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">4/6/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=5328" 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 introduces dental professionals to the fundamentals of artificial intelligence and its practical applications in patient care. Participants will explore how AI technologies are transforming diagnostics, documentation, and patient education in the dental operatory. Using a five-domain framework, the course examines how AI intersects with the full scope of dental practice: diagnostic, predictive, operational, professional/regulatory, and compassionate AI. Participants will discover how tools like GPT and GBT each deliver meaningful platform value and experience value, enhancing capability and quality across clinical workflows. Through real-world examples and practice-relevant case studies, this course will leave you informed, empowered, and ready to embrace the future of dental 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://https://www.ems-dental.com/en-us/member/bio_popup.asp?x_classID=5328#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=5333" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5333.20260303172739528.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=5333" target="_blank"><b>Traditional vs. Custom Attachments: Improving Predictability in Clear Aligner Therapy</b></a>
				<br /><b>Presenter: Dr. Clayton Myers</b>
				<br /><b>Sponsor: Solventum (formerly 3M Health Care)</b>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">4/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">4/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=5333" 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 />
		Attachments play a critical role in aligner biomechanics, yet the method used to create and deliver attachments can significantly influence clinical efficiency, predictability, and esthetic outcomes. This CE webinar explores the differences between traditional attachment creation methods and custom attachment systems delivered via pre-fabricated trays. Participants will examine common challenges associated with conventional attachment workflows—such as technique sensitivity, variability in attachment shape, excess composite cleanup, and inconsistent engagement—and compare them with newer custom approaches designed to improve consistency and streamline clinical procedures. Practical considerations related to treatment planning, attachment placement, and bonding best practices will be discussed to help clinicians make informed decisions when selecting an attachment strategy for aligner therapy.
					<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=5333#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=5339" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5339.20260313151536347.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=5339" target="_blank"><b>Burnout to Balance: A Practical Guide for Dental Professionals</b></a>
				<br /><b>Presenter: Cheryl Calmis, RDH, BS, M.Ed</b>
				<br /><b>Sponsor: Microcopy</b>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">4/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">Thu&nbsp;</td>
					<td class="bdy">4/16/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=5339" 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 />
		Burnout is more than just feeling tired — it’s a serious occupational phenomenon affecting dental professionals at every level. From packed schedules and patient anxiety to perfectionism and lack of autonomy, dentistry is especially vulnerable to chronic stress. This CE webinar helps participants recognize the early signs of burnout, understand the factors that contribute to it, and learn practical, sustainable tools to prevent or recover from burnout — individually and as a team.
					<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://microcopydentallearning.com/member/bio_popup.asp?x_classID=5339#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=5331" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5331.20260227192452267.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=5331" target="_blank"><b>The Screening That Saves Lives:  Oral Cancer and the Dental Team</b></a>
				<br /><b>Presenter: Dr. Ashley Clark</b>
				<br /><b>Sponsor: Pierrel S.p.A.</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">4/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">4/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=5331" 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 provide oral health care providers with information regarding oral cancer. Potentially malignant conditions, particularly leukoplakia, will be discussed. Prevention of the disease is primarily the job of oral health care professionals; therefore, a focus will be made on preventing oral squamous cell carcinoma.
					<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=5331#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=5342" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5342.20260319141612786.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=5342" target="_blank"><b>The Top Ergonomic Mistakes in Dentistry and How to Fix Them</b></a>
				<br /><b>Presenter: Stephanie Botts, RDH, BSDH, CEAS</b>
				<br /><b>Sponsor: Midmark Dental</b>
				<table>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">4/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">4/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=5342" 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 />
		Musculoskeletal pain is nearly universal in dentistry but it doesn’t have to be. In this CE webinar, we’ll break down the top ergonomic mistakes dental clinicians make every day, including forward head posture, shoulder strain, twisting, reaching, and poor patient positioning.

During this CE webinar, you’ll learn how operatory layout and equipment design can either contribute to these patterns or dramatically reduce them. Through real clinical examples, we’ll explore how proper chair positioning, delivery setup, lighting alignment, and movement strategies can support neutral posture and long-term career longevity.
					<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://midmarkdentallearning.com/member/bio_popup.asp?x_classID=5342#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=5338" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5338.20260312195804458.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=5338" target="_blank"><b>The Silver Lining: Simplifying DSO Dental Unit Waterline Workflow</b></a>
				<br /><b>Presenter: Angela Simmons</b>
				<br /><b>Sponsor: Solmetex</b>
				<table>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">4/29/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">4/29/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=5338" 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 />
		Inconsistent dental waterline management across multiple practice locations poses a significant risk to compliance and production. This CE webinar provides Dental Support Organizations (DSOs) with a roadmap to unify their protocols using a simple and cohesive solution that will become the standard for successful multi-practice waterline safety. Reduce manual steps and complex maintenance with silver-ion technology that supports a streamlined, compatible product suite that saves time and guarantees reliable results.
					<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://solmetex.com//member/bio_popup.asp?x_classID=5338#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=5327" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5327.20260225165902748.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=5327" target="_blank"><b>Keys to Master Anterior Composites</b></a>
				<br /><b>Presenter: Dr. Luana Oliveira-Haas</b>
				<br /><b>Sponsor: Ivoclar</b>
				<table>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">5/6/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">5/6/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=5327" 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 />
		Enhancing or restoring a smile with direct composite resins can be challenging. This CE webinar has been specially designed to present the most up-to-date protocols for direct anterior composite restorations employing simplified techniques to ensure consistent and predictable outcomes. You will gain insight into injectable composite, layered composite techniques for composite veneers and Class IV, the use of diagnostic mock-ups, and effective finishing and polishing techniques. You will understand how to incorporate long-lasting and tooth-like direct composite to your daily practice as a reliable alternative to ceramic while practicing minimally invasive dentistry.
					<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=5327#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=5345" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5345.20260331223644980.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=5345" target="_blank"><b>Early Intervention, Greater Production: A Modern Strategy for Team Buy-In and Growth</b></a>
				<br /><b>Presenter: Dr. Geoff Jackson</b>
				<br /><b>Sponsor: vVardis</b>
				<table>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">5/13/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">5/13/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=5345" 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 how shifting from passive monitoring to non-invasive early intervention can transform both patient outcomes and practice performance. As clinicians gain access to advanced diagnostic technologies, the opportunity to identify and treat early enamel lesions—before cavitation—has never been greater. Yet many practices struggle with team alignment, case acceptance, and integrating these protocols into everyday workflows.

This webinar outlines a practical, team-centered approach to implementing early intervention strategies that preserve tooth structure through guided hydroxyapatite generation while simultaneously driving measurable production growth. Attendees will learn how to leverage modern detection tools, standardize clinical protocols, and empower the entire dental team—from hygienists to front office—to communicate value effectively and confidently. 

By connecting clinical excellence with business impact, this course demonstrates how early intervention is not just a treatment philosophy, but a scalable growth strategy. Participants will leave with actionable steps to improve patient trust, increase case acceptance, and create a more proactive, productive practice culture.
					<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=5345#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=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"><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=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>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">5/14/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">5/14/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=5319" 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 />
		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 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.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"><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=5343" target="_blank"><b>Diagnosis and Minimal Invasive Treatment of Enamel Defects</b></a>
				<br /><b>Presenter: Dr. Ali Salehi</b>
				<br /><b>Sponsor: DMG America</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">5/18/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">5/18/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=5343" 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 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. Early enamel demineralization creates subsurface porosities without surface cavitation, leading to light scattering and the characteristic opaque appearance. These lesions are not due to pigmentation but rather to changes in light diffraction within the enamel structure. The webinar also covers advanced diagnostic approaches, including the benefits of transillumination to better assess lesion depth and extension, improving accuracy in treatment indication. Pre-treatment considerations such as bleaching are presented as a way to harmonize the overall tooth shade and enhance the final esthetic outcome.  Central to the discussion is the principle of erosion-infiltration, initially developed for early proximal carious lesions but now widely extended to vestibular defects. The technique relies on modifying the enamel’s optical properties by infiltrating its porosities with a low-viscosity resin whose refractive index closely matches that of healthy enamel, allowing light to pass through more uniformly and restoring translucency.
					<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/registerlive.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"><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=5325" target="_blank"><b>Everyday Composites Made Extraordinary</b></a>
				<br /><b>Presenter: Dr. Anthony Mennito</b>
				<br /><b>Sponsor: Ivoclar</b>
				<table>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">5/26/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">5/26/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=5325" 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 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/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 />
		
	
<!-- ====================================================================================== -->
<!-- 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=5324" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5324.20260217173541338.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=5324" target="_blank"><b>Evidence-Based Prevention: Implementing Caries Risk Assessment Protocols Into Your Practice</b></a>
				<br /><b>Presenter: Robyn Duke, DipDH</b>
				<br /><b>Sponsor: Solventum (formerly 3M Health Care)</b>
				<br />Released: 	4/1/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5324" 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 />
		Current evidence shows that caries management is best done using an individualized risk assessment where detailed information about the specific risk factors of each patient can be used to establish the risk of developing future caries, and to create an effective treatment plan. This CE webinar will provide tips on implementing caries risk assessment protocols and offer evidence-based treatment options for your patients. Communication skills to help increase treatment acceptance will also be discussed.
					<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=5324#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=5326" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5326.20260223164743425.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=5326" target="_blank"><b>Advancing Prevention in the Era of Fluoride Hesitancy</b></a>
				<br /><b>Presenter: Catherine Cabanzon, RDH</b>
				<br /><b>Sponsor: Centrix</b>
				<br />Released: 	3/23/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5326" 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 />
		We’ve all seen the headlines – “Fluoride is Poison”, “Fluoride Decreases IQ”, “Fluoride is an Industrial Waste”. Apart from stirring up public discussion, this type of press may result in new challenges for practicing clinicians. Historically, the biggest push back to varnish was and still may be cost but how do you handle the health concerns a patient may have? As tough as these questions are, at least they mean there is room for discourse! As you know, some patients might outright refuse and not be open to conversation.
 
In this CE webinar, we will explore how to overcome fluoride hesitancy among patients with practical recommendations you can implement into your everyday routine. We’ll review current, high-quality research that clearly demonstrates the safety and benefits of fluoride, while also sharing practical communication strategies to help you address patient concerns, rebuild trust, and continue advancing prevention in your practice. With the removal of systemic fluorides, the dental hygiene community is on the front line in caries prevention.
					<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=5326#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=5311" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5311.20260112163004223.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=5311" target="_blank"><b>Creating Natural Harmony with Modern Super-Composites</b></a>
				<br /><b>Presenter: Dr. Clarence Tam</b>
				<br /><b>Sponsor: Kuraray Noritake</b>
				<br />Released: 	3/19/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5311" 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 />
		The difference between Biomimetic/Natural and conventional dentistry is that biomimetic attempts to duplicate the missing tooth structure with restorative materials that match their natural physical properties. A key aspect of this is to dramatically reduce stress on the adhesive materials so they can provide long-term use and durability for direct and indirect restorations. If clinical techniques have high-stress then the bonds will be low, conversely, if the clinical techniques have low-stress then the bonds will be high and more likely to succeed. This CE webinar will discuss and illustrate low-stress, high-bond techniques for direct composites as well as techniques on blending and highlighting your restorations. Key clinical tips will be shown to increase the esthetics of direct composites.
					<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=5311#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=5320" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5320.20260205175939949.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=5320" target="_blank"><b>The DUWL Protocol for Success</b></a>
				<br /><b>Presenter: Michelle Strange, MSDH, RDH</b>
				<br /><b>Sponsor: Solmetex</b>
				<br />Released: 	3/17/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5320" 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 />
		Achieving compliant dental unit waterlines (DUWL) requires more than random maintenance; it requires a disciplined, repeatable strategy. This CE webinar provides a comprehensive breakdown of the proven Test, Shock, and Maintain protocol, designed to ensure your practice meets or exceeds CDC and EPA standards for water quality. Participants will learn why testing is the critical first step in any protocol—identifying hidden biofilm loads before they lead to failure. We will explore the technical nuances of shocking to clear existing contamination and the daily importance of maintaining lines to prevent regrowth. Integrating these steps into a unified system that simplifies compliance and protects patients ensures long-term clinical success.
					<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://solmetex.com//member/bio_popup.asp?x_classID=5320#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=5318" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5318.20260203172719356.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=5318" target="_blank"><b>Holy Cow! I Didn't Know You Could Do that with Composite</b></a>
				<br /><b>Presenter: Dr. John Gammichia</b>
				<br /><b>Sponsor: Microcopy</b>
				<br />Released: 	3/12/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5318" 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 isn’t your typical composite webinar. Dr. John Gammichia, a full-time private practice dentist, practices in the real world - where patients fracture cusps and can’t always afford a build-up and onlay or crown. So what’s the solution - extract the tooth? Or consider a beautifully executed 2-, 3-, 4-, or even 5-cusp composite restoration?

We’ll begin with foundational Class I and Class II restorations, reviewing adhesion principles and current biomimetic concepts. From there, we’ll build your skills and confidence. How do you approach large restorations? Deep decay? Cases that are both extensive and deep? What about cracks?

We’ll also address the practical concerns: What are the barriers to practicing this way? Do these restorations last? Can this approach be profitable?

This CE webinar will be engaging and thought-provoking but expect to be pushed outside your comfort zone. Dr. Gammichia intends to challenge your thinking. By the end, you’ll be saying, "Holy Cow! I Didn't Know You Could do that with Composite.
					<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://microcopydentallearning.com/member/bio_popup.asp?x_classID=5318#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=5337" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5337.20260310174018052.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">2 CE Credits</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5337" target="_blank"><b>Cultural Competence in Dental Practice: Building Trust, Enhancing Communication, and Improving Patient Outcomes</b></a>
				<br /><b>Presenter: Viva Learning</b>
				<br /><b>Sponsor: Viva Learning</b>
				<br />Released: 	3/11/26
				<br />CE Credits: 2 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5337" 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 Viva Learning 2-hour/2 CE credit class can be applied towards any state dental board's CE requirement for dental continuing education training on the topic of Cultural Competence in dentistry .  Arizona, California, Connecticut, Illinois, Indiana, Nevada, New Jersey, New Mexico, Oregon, and Washington have enacted state-level CLAS (Culturally and Linguistically Appropriate Services) legislation requiring cultural competence training for health care providers. 26+ additional states have proposed CLAS legislation, including further expansions in California, Connecticut, Indiana, New Jersey, Oregon and Washington. Please check with your individual state dental board to confirm that this Viva Learning CE class fulfills your state's particular requirement on this topic.
					<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://vivalearning.com/member/bio_popup.asp?x_classID=5337#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=5322" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5322.20260210195442235.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=5322" target="_blank"><b>Top HIPAA Violations of 2025</b></a>
				<br /><b>Presenter: Dr. Karson Carpenter</b>
				<br /><b>Sponsor: Compliance Training Partners</b>
				<br />Released: 	3/11/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5322" 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 one-hour CE webinar, Dr. Karson Carpenter, President of Compliance Training Partners, will review the most common violations seen by his organization over the past year. In addition, information will be provided on the new HIPAA Privacy Law that just went into effect, and how to conduct a detailed HIPAA Audit of your facility and quickly see where you are in compliance and where you are not. In addition to being a requirement, the audit will dramatically reduce the liability of your business.
					<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=5322#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>