<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<script type="1829c5604bde31646f390b3d-text/javascript">
var storedUser = localStorage.getItem(`ls.auth.user.${window.location.hostname}`);
var user;
if (storedUser && JSON) {
user = JSON.parse(storedUser)
}
</script>
<script type="1829c5604bde31646f390b3d-text/javascript">
/**
* Sets a cookie
*
* @param name cookie name
* @param value cookie value
* @param expiration expiration in minutes
* @param domain [optional] domain
*/
function vsExpSetCookie( name, value, expiration, domain = '' ) {
if( !name || !value || !expiration ) {
return;
}
let d = new Date();
d.setTime( d.getTime() + (expiration * 60 * 1000) );
let cName = name + '=' + value,
expires = ';expires=' + d.toUTCString();
document.cookie = cName + expires + ';path=/' + ';';
}
/**
* Gets cookie value
*
* @param name
* @returns string|null cookie value or null
*/
function vsExpGetCookie( name ) {
let nameEQ = name + '=';
let ca = document.cookie.split(';');
for(let i=0;i < ca.length;i++) {
let c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function vsGetOrSetLiveIntentIQScore() {
let score = parseInt(vsExpGetCookie('liveIntentIQScore'));
if ( !isNaN(score) ) {
return score;
}
score = 1 + Math.floor(Math.random() * 100);
vsExpSetCookie('liveIntentIQScore', score, 60*24*365);
return score;
}
// DiceRoll functions
function isExperiment() {
// Set a diceroll for Experimentation
// Test in browser by adding '?vsexp-dice=exp' or '?vsexp-dice=control' to url.
const expire = 1440; // 24 hours in minutes
let experimentWinPercentage = window.vsexp_pct = 50;
const checkParam = () => {
let urlParam = location.search.match( /[?&]vsexp-dice=([^&]+)/ );
return urlParam && urlParam.length === 2 ? urlParam[ 1 ] : null;
};
const experimentDiceRoll = () => {
//Change window.vsexp_pct = 95 to the % that the experiment should win.
const diceResult = Math.random() < experimentWinPercentage / 100;
return diceResult ? 'exp' : 'control';
};
let winner = checkParam();
if( winner ) {
vsExpSetCookie( 'vsexp_pct', winner, expire );
} else {
winner = vsExpGetCookie( 'vsexp_pct' );
if( !winner ) {
winner = experimentDiceRoll();
vsExpSetCookie( 'vsexp_pct', winner, expire );
}
}
window.vsexp = ( winner === 'exp' );
}
// run Experiment test diceroll
isExperiment();
const intentIQScriptSource = `https://config.htplayground.com/test-scripts/intent?status=${ user && user.is_authenticated ? 'li':'lo'}&score=${vsGetOrSetLiveIntentIQScore()}`;
var intentIQScript = document.createElement('script');
intentIQScript.src = intentIQScriptSource;
intentIQScript.async = 'async';
document.head.appendChild(intentIQScript);
</script>
<script type="1829c5604bde31646f390b3d-text/javascript">if(!(window.Promise)){document.write('<script async src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js"><\/script>')}</script>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><style type="text/css">@font-face {font-family:Montserrat;font-style:normal;font-weight:400;src:url(/cf-fonts/v/montserrat/5.0.16/latin-ext/wght/normal.woff2);unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;font-display:swap;}@font-face {font-family:Montserrat;font-style:normal;font-weight:400;src:url(/cf-fonts/v/montserrat/5.0.16/vietnamese/wght/normal.woff2);unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;font-display:swap;}@font-face {font-family:Montserrat;font-style:normal;font-weight:400;src:url(/cf-fonts/v/montserrat/5.0.16/cyrillic-ext/wght/normal.woff2);unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;font-display:swap;}@font-face {font-family:Montserrat;font-style:normal;font-weight:400;src:url(/cf-fonts/v/montserrat/5.0.16/latin/wght/normal.woff2);unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap;}@font-face {font-family:Montserrat;font-style:normal;font-weight:400;src:url(/cf-fonts/v/montserrat/5.0.16/cyrillic/wght/normal.woff2);unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;font-display:swap;}</style>
<noscript>
<link rel="stylesheet" href="//fonts.googleapis.com/css2?family=Montserrat&display=swap">
</noscript>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><style type="text/css">@font-face {font-family:Lato;font-style:normal;font-weight:300;src:url(/cf-fonts/s/lato/5.0.18/latin/300/normal.woff2);unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap;}@font-face {font-family:Lato;font-style:normal;font-weight:300;src:url(/cf-fonts/s/lato/5.0.18/latin-ext/300/normal.woff2);unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;font-display:swap;}@font-face {font-family:Lato;font-style:normal;font-weight:400;src:url(/cf-fonts/s/lato/5.0.18/latin-ext/400/normal.woff2);unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;font-display:swap;}@font-face {font-family:Lato;font-style:normal;font-weight:400;src:url(/cf-fonts/s/lato/5.0.18/latin/400/normal.woff2);unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap;}@font-face {font-family:Lato;font-style:normal;font-weight:700;src:url(/cf-fonts/s/lato/5.0.18/latin/700/normal.woff2);unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;font-display:swap;}@font-face {font-family:Lato;font-style:normal;font-weight:700;src:url(/cf-fonts/s/lato/5.0.18/latin-ext/700/normal.woff2);unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;font-display:swap;}</style>
<noscript>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,400,700&display=swap">
</noscript>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" media="print" onload="this.media='all'">
<noscript>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
</noscript>
<!-- Google Tag Manager -->
<script type="1829c5604bde31646f390b3d-text/javascript">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-T3L947P');</script>
<!-- End Google Tag Manager -->
<link rel="apple-touch-icon" sizes="57x57" href="//www.ratemds.com/static/img/favicons/xapple-touch-icon-57x57.495c70819b0f.png.pagespeed.ic.pIn-ThLVS6.png">
<link rel="apple-touch-icon" sizes="60x60" href="//www.ratemds.com/static/img/favicons/xapple-touch-icon-60x60.5dd1baf2b8ba.png.pagespeed.ic.kwV3-CE0nU.png">
<link rel="apple-touch-icon" sizes="72x72" href="//www.ratemds.com/static/img/favicons/xapple-touch-icon-72x72.a21a57e92df8.png.pagespeed.ic.PLTivECoD8.png">
<link rel="apple-touch-icon" sizes="76x76" href="//www.ratemds.com/static/img/favicons/xapple-touch-icon-76x76.276049fc3342.png.pagespeed.ic.huCjj-VOw-.png">
<link rel="apple-touch-icon" sizes="114x114" href="//www.ratemds.com/static/img/favicons/xapple-touch-icon-114x114.abcec11ee43c.png.pagespeed.ic.9Gwb8DM3jk.png">
<link rel="apple-touch-icon" sizes="120x120" href="//www.ratemds.com/static/img/favicons/xapple-touch-icon-120x120.e5b8c908f646.png.pagespeed.ic.3MermFKez8.png">
<link rel="apple-touch-icon" sizes="144x144" href="//www.ratemds.com/static/img/favicons/xapple-touch-icon-144x144.2fcfe644723c.png.pagespeed.ic.EZbwnQCJlH.png">
<link rel="apple-touch-icon" sizes="152x152" href="//www.ratemds.com/static/img/favicons/xapple-touch-icon-152x152.526a8d9adee2.png.pagespeed.ic.nIG5sWRldN.png">
<link rel="icon" type="image/png" href="//www.ratemds.com/static/img/favicons/xfavicon-16x16.811fdfc82c30.png.pagespeed.ic.ZkdJcbbNCL.png" sizes="16x16">
<link rel="icon" type="image/png" href="//www.ratemds.com/static/img/favicons/xfavicon-32x32.58b3181bfa12.png.pagespeed.ic.NVVoMqG9dO.png" sizes="32x32">
<link rel="icon" type="image/png" href="//www.ratemds.com/static/img/favicons/xfavicon-96x96.c5d27a2c4dc1.png.pagespeed.ic.hTcIJKdV1W.png" sizes="96x96">
<link rel="icon" type="image/png" href="//www.ratemds.com/static/img/favicons/xfavicon-160x160.570290c84442.png.pagespeed.ic.dC6oUGssEL.png" sizes="160x160">
<link rel="icon" type="image/png" href="//www.ratemds.com/static/img/favicons/xfavicon-196x196.897fb2fdc9c6.png.pagespeed.ic.p0CnxSfL20.png" sizes="196x196">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-TileImage" content="//www.ratemds.com/static/img/favicons/mstile-144x144.9e293d193285.png">
<meta name="msapplication-config" content="//www.ratemds.com/static/img/favicons/browserconfig.8c5bbff52280.xml">
<meta property="fb:app_id" content="301350850032888"/>
<meta name="description" content="Search or browse RateMDs for trusted reviews & ratings on doctors & healthcare facilities. We're the original doctor ratings site with over 2 million reviews."/>
<link id="canonical-url" rel="canonical" href="https://www.ratemds.com/va/ashburn/">
<title>Doctor Reviews & Ratings - Find a Doctor at RateMDs</title>
<link href="//www.ratemds.com/static/css/A.main.fd870c6bb0aa.css+main-blessed1.3ea62fe627d4.css,Mcc.ArKWmO3dnR.css.pagespeed.cf.CrV3LQ-m31.css" rel="stylesheet"/>
<script type="1829c5604bde31646f390b3d-text/javascript">(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create','UA-142923-1','auto');ga('require','displayfeatures');ga('set','contentGroup1','home');</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-K8PKFWCRDN" type="1829c5604bde31646f390b3d-text/javascript"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9TT7LM8GH5" type="1829c5604bde31646f390b3d-text/javascript"></script>
<script type="1829c5604bde31646f390b3d-text/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments);}if(user){dataLayer.push({user_provider_type:user.provider_type});}gtag('js',new Date());gtag('set','content_group','home');gtag('config','G-K8PKFWCRDN',{'send_page_view':false,is_enhanced_profile:false,page_type:'homepage'});gtag('config','G-9TT7LM8GH5',{page_type:'homepage',is_enhanced_profile:false});</script>
<script defer type="1829c5604bde31646f390b3d-text/javascript">try{const entries=performance.getEntries();if(entries.length){const match=entries[0].name.match(/#:~:text=(.*)/);if(match&&match[1]){const decoded=decodeURIComponent(match[1]).replace(/, /g,"*").replace(/,/g,"...").replace(/\*/g,", ");gtag('event','featured_snippet_click',{event_category:'engagement',event_label:decoded,scroll_to_fragment:decoded});}}}catch(e){console.warn("Error tracking featured snippet:",e);}</script>
<script type="1829c5604bde31646f390b3d-text/javascript">
(function() {
function createCookie(name, value, days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + days * 24 * 60 * 60 * 1000); // Convert days to milliseconds
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i].trim();
if (c.indexOf(nameEQ) === 0) return c.substring(nameEQ.length, c.length);
}
return null;
}
function ensureCookie(cookieName, controlValue, variationValue, variationPercent = 50, lifetimeDays = 7) {
var cookieValue = readCookie(cookieName);
if (cookieValue) {
return [cookieValue, false]; // Cookie already exists
} else {
var randomVal = Math.random() * 100;
var assignedValue = randomVal < variationPercent ? variationValue : controlValue;
createCookie(cookieName, assignedValue, lifetimeDays);
return [assignedValue, true]; // New cookie created
}
}
function handleABTest(cookieName, controlValue, variationValue) {
var [cookieValue, created] = ensureCookie(cookieName, controlValue, variationValue);
if (cookieValue === variationValue && created && window.location.pathname.includes('/plans')) {
window.location.reload();
}
// Send data to Google Tag Manager or Analytics
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
[cookieName]: cookieValue
});
}
// handleABTest("rmd_new_checkout_ab", "control", "experiment");
})();
</script>
<script type="1829c5604bde31646f390b3d-text/javascript">if(user&&user.doctors){const user_doctor_specialties=[...new Set(user.doctors.map(doctor=>doctor.specialty_slug))];const user_doctor_countries=[...new Set(user.doctors.map(doctor=>doctor.location_country_slug))];const user_doctor_provinces=[...new Set(user.doctors.map(doctor=>doctor.location_province_slug))];dataLayer.push({user_doctor_specialties:user_doctor_specialties,user_doctor_countries:user_doctor_countries,user_doctor_provinces:user_doctor_provinces,});}</script>
<script data-cfasync="false">window.googletag=window.googletag||{cmd:[]};</script>
<script async data-cfasync="false" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<script type="1829c5604bde31646f390b3d-text/javascript">LUX=(function(){var a=("undefined"!==typeof(LUX)&&"undefined"!==typeof(LUX.gaMarks)?LUX.gaMarks:[]);var d=("undefined"!==typeof(LUX)&&"undefined"!==typeof(LUX.gaMeasures)?LUX.gaMeasures:[]);var j="LUX_start";var k=window.performance;var l=("undefined"!==typeof(LUX)&&LUX.ns?LUX.ns:(Date.now?Date.now():+(new Date())));if(k&&k.timing&&k.timing.navigationStart){l=k.timing.navigationStart}function f(){if(k&&k.now){return k.now()}var o=Date.now?Date.now():+(new Date());return o-l}function b(n){if(k){if(k.mark){return k.mark(n)}else{if(k.webkitMark){return k.webkitMark(n)}}}a.push({name:n,entryType:"mark",startTime:f(),duration:0});return}function m(p,t,n){if("undefined"===typeof(t)&&h(j)){t=j}if(k){if(k.measure){if(t){if(n){return k.measure(p,t,n)}else{return k.measure(p,t)}}else{return k.measure(p)}}else{if(k.webkitMeasure){return k.webkitMeasure(p,t,n)}}}var r=0,o=f();if(t){var s=h(t);if(s){r=s.startTime}else{if(k&&k.timing&&k.timing[t]){r=k.timing[t]-k.timing.navigationStart}else{return}}}if(n){var q=h(n);if(q){o=q.startTime}else{if(k&&k.timing&&k.timing[n]){o=k.timing[n]-k.timing.navigationStart}else{return}}}d.push({name:p,entryType:"measure",startTime:r,duration:(o-r)});return}function h(n){return c(n,g())}function c(p,o){for(i=o.length-1;i>=0;i--){var n=o[i];if(p===n.name){return n}}return undefined}function g(){if(k){if(k.getEntriesByType){return k.getEntriesByType("mark")}else{if(k.webkitGetEntriesByType){return k.webkitGetEntriesByType("mark")}}}return a}return{mark:b,measure:m,gaMarks:a,gaMeasures:d}})();LUX.ns=(Date.now?Date.now():+(new Date()));LUX.ac=[];LUX.cmd=function(a){LUX.ac.push(a)};LUX.init=function(){LUX.cmd(["init"])};LUX.send=function(){LUX.cmd(["send"])};LUX.addData=function(a,b){LUX.cmd(["addData",a,b])};LUX_ae=[];window.addEventListener("error",function(a){LUX_ae.push(a)});LUX_al=[];if("function"===typeof(PerformanceObserver)&&"function"===typeof(PerformanceLongTaskTiming)){var LongTaskObserver=new PerformanceObserver(function(c){var b=c.getEntries();for(var a=0;a<b.length;a++){var d=b[a];LUX_al.push(d)}});try{LongTaskObserver.observe({type:["longtask"]})}catch(e){}};</script>
<script src="https://cdn.speedcurve.com/js/lux.js?id=4261351494" defer crossorigin="anonymous" type="1829c5604bde31646f390b3d-text/javascript"></script>
<script src="https://config.htplayground.com/load-vs-cmp.js" async data-cfasync="false"></script>
<script data-cfasync="false">window.deployads=window.deployads||[];</script>
<script src="https://config.htplayground.com/config/ratemds.com" async data-cfasync="false"></script>
<script src="https://config.htplayground.com/libs" async data-cfasync="false"></script>
<script src="https://c.amazon-adsystem.com/aax2/apstag.js" async data-cfasync="false"></script>
<script data-cfasync="false">!function(a9,a,p,s,t,A,g){if(a[a9])return;function q(c,r){a[a9]._Q.push([c,r])}a[a9]={unLoaded:1,init:function(){q("i",arguments)},fetchBids:function(){q("f",arguments)},setDisplayBids:function(){},targetingKeys:function(){return[]},dpa:function(){q("di",arguments)},rpa:function(){q("ri",arguments)},upa:function(){q("ui",arguments)},_Q:[]};}("apstag",window);</script>
<script type="1829c5604bde31646f390b3d-text/javascript">var plan=''
if(user){user.is_doctor=!!(user.doctors&&user.doctors.length);ga('set','dimension3',user.test_group||'control');if(user.is_authenticated){ga('set','dimension2','true');if(!user.is_doctor){googletag.cmd.push(function(){googletag.pubads().setTargeting('registered','true');});}}else{ga('set','dimension2','false');googletag.cmd.push(function(){googletag.pubads().setTargeting('registered','false');});}if(user.is_doctor){ga('set','dimension1','true');googletag.cmd.push(function(){googletag.pubads().setTargeting('registered','truedoctor');});}else{ga('set','dimension1','false');}}if(plan==='Claimed'||plan==='Unclaimed'||plan==='Promoted'||plan==='Promoted 1 Yr.'||plan==='Promoted Plus'||plan==='Promoted Plus 1 Yr.'){ga('set','dimension4',plan);}window.clickTrack=function(url,cat,act){ga('send','event',cat,act,url,{'hitCallback':function(){document.location=url}});return false;}</script>
<script type="1829c5604bde31646f390b3d-text/javascript">ga('set','dimension13','ratemds-tapnative-'+window.vsexp);</script>
<script type="1829c5604bde31646f390b3d-text/javascript">window.waitingForOptiyield=true;</script>
<script async src="https://config.htplayground.com/test-scripts/optiyield" type="1829c5604bde31646f390b3d-text/javascript"></script>
<script data-cfasync="false">try{googletag.cmd.push(function(){googletag.pubads().setTargeting("sitename","RateMDs.com");googletag.pubads().setTargeting("google_page_url","https://www.ratemds.com/va/ashburn/");if(typeof document.amzn_slots!='undefined'){googletag.pubads().setTargeting("passback",document.amzn_slots);}googletag.defineSlot('/1030735/RateMDs_com_300x250_TopRight_OH_Content',[300,250],'RateMDs_com_300x250_TopRight_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([992,0],[300,250]).addSize([0,0],[]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_300x250_BottomLeft_OH_Content',[300,250],'RateMDs_com_300x250_BottomLeft_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([1374,0],[300,250]).addSize([0,0],[]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_300x600_BottomLeft_OH_Content',[300,600],'RateMDs_com_300x600_BottomLeft_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([992,0],[300,600]).addSize([0,0],[]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_728x90_Top_OH_Content',[728,90],'RateMDs_com_728x90_Top_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([992,0],[728,90]).addSize([768,0],[728,90]).addSize([0,0],[]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_300x250_Bottom_OH_Content',[[300,250]],'RateMDs_com_300x250_Bottom_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([768,0],[]).addSize([0,0],[300,250]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMds_com_320x50_Bottom_OH_Content',[320,50],'RateMds_com_320x50_Bottom_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([768,0],[]).addSize([0,0],[320,50]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_160x600_LeftUpper_OH_Content',[160,600],'RateMDs_com_160x600_LeftUpper_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([768,0],[160,600]).addSize([0,0],[]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_728x90_DesktopAdhesion_OH_Content',[728,90],'RateMDs_com_728x90_DesktopAdhesion_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([768,0],[728,90]).addSize([0,0],[]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_300x250_MiddleRight_OH_Content',[300,250],'RateMDs_com_300x250_MiddleRight_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([768,0],[300,250]).addSize([0,0],[]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_320x50_InContentMobile_OH_Content',[320,50],'RateMDs_com_320x50_InContentMobile_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([768,0],[]).addSize([0,0],[320,50]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_320x50_InContentMobile2_OH_Content',[320,50],'RateMDs_com_320x50_InContentMobile2_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([768,0],[]).addSize([0,0],[320,50]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_728x90_InContent_OH_Content',[728,90],'RateMDs_com_728x90_InContent_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([767,0],[728,90]).addSize([0,0],[]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_728x90_InContent2_OH_Content',[728,90],'RateMDs_com_728x90_InContent2_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([767,0],[728,90]).addSize([0,0],[]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_300x250_AfterPaginationMobile_OH_Content',[300,250],'RateMDs_com_300x250_AfterPaginationMobile_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([768,0],[]).addSize([0,0],[300,250]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_728x90_AfterPagination_OH_Content',[728,90],'RateMDs_com_728x90_AfterPagination_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([768,0],[728,90]).addSize([0,0],[]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_300x250_AfterPaginationDetailPageMobile_OH_Content',[300,250],'RateMDs_com_300x250_AfterPaginationDetailPageMobile_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([769,0],[]).addSize([0,0],[300,250]).build()).addService(googletag.pubads());googletag.defineSlot('/1030735/RateMDs_com_728x90_AfterPaginationDetailPage_OH_Content',[728,90],'RateMDs_com_728x90_AfterPaginationDetailPage_OH_Content').defineSizeMapping(googletag.sizeMapping().addSize([768,0],[728,90]).addSize([0,0],[]).build()).addService(googletag.pubads());googletag.pubads().set('adsense_background_color','ffffff');googletag.pubads().set('adsense_border_color','ffffff');googletag.pubads().set('adsense_link_color','3d999d');googletag.pubads().set('adsense_text_color','3d999d');googletag.pubads().set('adsense_url_color','3d999d');googletag.pubads().setCentering(true);googletag.pubads().enableSingleRequest();deployads.push(function(){deployads.gpt.enableServices()});});}catch(err){}</script>
<script type="1829c5604bde31646f390b3d-text/javascript">ga('send','pageview');</script>
<!-- Facebook Pixel Code -->
<script data-cfasync="false">!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script','//connect.facebook.net/en_US/fbevents.js');fbq('init','857395057690441');fbq('track','PageView');</script>
<!-- End Facebook Pixel Code -->
<script type="1829c5604bde31646f390b3d-text/javascript">(d7scisa=window.d7scisa||[]).push({});</script>
<script type="1829c5604bde31646f390b3d-text/javascript" src="https://pdi.doctor.com/js/tracking.js"></script>
<script type="1829c5604bde31646f390b3d-text/javascript">function footerGA(button){var header_props=window.DATA.Header_props;ga('send','event','footer-'+button+'-click','home',user.location.city+'-'+user.location.province+('False'?'':'null'))}</script>
</head>
<body class="home">
<!-- Facebook Pixel Code (no script) -->
<noscript>
<img height="1" width="1" style="display:none" alt="Facebook Pixel" src="https://www.facebook.com/tr?id=857395057690441&ev=PageView&noscript=1" data-pagespeed-url-hash="1842101892"/>
</noscript>
<!-- End Facebook Pixel Code (no script)-->
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T3L947P" height="0" width="0" style="display:none;visibility:hidden">
</iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="page-header"><div data-reactid=".1v20xv4r0us" data-react-checksum="-1200089480"><noscript data-reactid=".1v20xv4r0us.5"></noscript><header class="main-header centered" data-reactid=".1v20xv4r0us.6"><nav class="main-header-nav" data-reactid=".1v20xv4r0us.6.0"><div data-reactid=".1v20xv4r0us.6.0.0"><button type="button" class="side-nav-open-btn" data-cy="side-nav-open-btn" aria-label="Side Nav" data-reactid=".1v20xv4r0us.6.0.0.0"><span class="burger-menu-icon icon" data-reactid=".1v20xv4r0us.6.0.0.0.0"></span></button><div id="side-nav" data-cy="side-nav" class="side-nav visible-xs-block visible-sm-block" data-reactid=".1v20xv4r0us.6.0.0.1"><div class="side-nav-header" data-reactid=".1v20xv4r0us.6.0.0.1.0"><div class="col-sm-3" data-reactid=".1v20xv4r0us.6.0.0.1.0.0"><a href="/" class="header-logo" aria-label="Homepage" data-reactid=".1v20xv4r0us.6.0.0.1.0.0.0"><script data-pagespeed-no-defer type="1829c5604bde31646f390b3d-text/javascript">//<![CDATA[
(function(){for(var g="function"==typeof Object.defineProperties?Object.defineProperty:function(b,c,a){if(a.get||a.set)throw new TypeError("ES3 does not support getters and setters.");b!=Array.prototype&&b!=Object.prototype&&(b[c]=a.value)},h="undefined"!=typeof window&&window===this?this:"undefined"!=typeof global&&null!=global?global:this,k=["String","prototype","repeat"],l=0;l<k.length-1;l++){var m=k[l];m in h||(h[m]={});h=h[m]}var n=k[k.length-1],p=h[n],q=p?p:function(b){var c;if(null==this)throw new TypeError("The 'this' value for String.prototype.repeat must not be null or undefined");c=this+"";if(0>b||1342177279<b)throw new RangeError("Invalid count value");b|=0;for(var a="";b;)if(b&1&&(a+=c),b>>>=1)c+=c;return a};q!=p&&null!=q&&g(h,n,{configurable:!0,writable:!0,value:q});var t=this;function u(b,c){var a=b.split("."),d=t;a[0]in d||!d.execScript||d.execScript("var "+a[0]);for(var e;a.length&&(e=a.shift());)a.length||void 0===c?d[e]?d=d[e]:d=d[e]={}:d[e]=c};function v(b){var c=b.length;if(0<c){for(var a=Array(c),d=0;d<c;d++)a[d]=b[d];return a}return[]};function w(b){var c=window;if(c.addEventListener)c.addEventListener("load",b,!1);else if(c.attachEvent)c.attachEvent("onload",b);else{var a=c.onload;c.onload=function(){b.call(this);a&&a.call(this)}}};var x;function y(b,c,a,d,e){this.h=b;this.j=c;this.l=a;this.f=e;this.g={height:window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight,width:window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth};this.i=d;this.b={};this.a=[];this.c={}}function z(b,c){var a,d,e=c.getAttribute("data-pagespeed-url-hash");if(a=e&&!(e in b.c))if(0>=c.offsetWidth&&0>=c.offsetHeight)a=!1;else{d=c.getBoundingClientRect();var f=document.body;a=d.top+("pageYOffset"in window?window.pageYOffset:(document.documentElement||f.parentNode||f).scrollTop);d=d.left+("pageXOffset"in window?window.pageXOffset:(document.documentElement||f.parentNode||f).scrollLeft);f=a.toString()+","+d;b.b.hasOwnProperty(f)?a=!1:(b.b[f]=!0,a=a<=b.g.height&&d<=b.g.width)}a&&(b.a.push(e),b.c[e]=!0)}y.prototype.checkImageForCriticality=function(b){b.getBoundingClientRect&&z(this,b)};u("pagespeed.CriticalImages.checkImageForCriticality",function(b){x.checkImageForCriticality(b)});u("pagespeed.CriticalImages.checkCriticalImages",function(){A(x)});function A(b){b.b={};for(var c=["IMG","INPUT"],a=[],d=0;d<c.length;++d)a=a.concat(v(document.getElementsByTagName(c[d])));if(a.length&&a[0].getBoundingClientRect){for(d=0;c=a[d];++d)z(b,c);a="oh="+b.l;b.f&&(a+="&n="+b.f);if(c=!!b.a.length)for(a+="&ci="+encodeURIComponent(b.a[0]),d=1;d<b.a.length;++d){var e=","+encodeURIComponent(b.a[d]);131072>=a.length+e.length&&(a+=e)}b.i&&(e="&rd="+encodeURIComponent(JSON.stringify(B())),131072>=a.length+e.length&&(a+=e),c=!0);C=a;if(c){d=b.h;b=b.j;var f;if(window.XMLHttpRequest)f=new XMLHttpRequest;else if(window.ActiveXObject)try{f=new ActiveXObject("Msxml2.XMLHTTP")}catch(r){try{f=new ActiveXObject("Microsoft.XMLHTTP")}catch(D){}}f&&(f.open("POST",d+(-1==d.indexOf("?")?"?":"&")+"url="+encodeURIComponent(b)),f.setRequestHeader("Content-Type","application/x-www-form-urlencoded"),f.send(a))}}}function B(){var b={},c;c=document.getElementsByTagName("IMG");if(!c.length)return{};var a=c[0];if(!("naturalWidth"in a&&"naturalHeight"in a))return{};for(var d=0;a=c[d];++d){var e=a.getAttribute("data-pagespeed-url-hash");e&&(!(e in b)&&0<a.width&&0<a.height&&0<a.naturalWidth&&0<a.naturalHeight||e in b&&a.width>=b[e].o&&a.height>=b[e].m)&&(b[e]={rw:a.width,rh:a.height,ow:a.naturalWidth,oh:a.naturalHeight})}return b}var C="";u("pagespeed.CriticalImages.getBeaconData",function(){return C});u("pagespeed.CriticalImages.Run",function(b,c,a,d,e,f){var r=new y(b,c,a,e,f);x=r;d&&w(function(){window.setTimeout(function(){A(r)},0)})});})();pagespeed.CriticalImages.Run('/mod_pagespeed_beacon','http://www.ratemds.com/va/ashburn/','nXzXivl0t7',true,false,'cA7_AG3_QEE');
//]]></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="//www.ratemds.com/static/img/header-logo.svg" alt="RateMDs Logo" width="159" height="43" data-reactid=".1v20xv4r0us.6.0.0.1.0.0.0.0" data-pagespeed-url-hash="3224171809" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"></a></div></div><div class="side-nav-body" data-reactid=".1v20xv4r0us.6.0.0.1.1"><nav data-reactid=".1v20xv4r0us.6.0.0.1.1.0"><div class="side-nav-links" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.0"><ul class="header-links-side-nav" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.0.0"><li class="" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.0.0.0"><a href="/doctors/local/" data-cy="doctor-list-local-link-side-nav" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.0.0.0.0">Find a Doctor</a></li><li class="" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.0.0.1"><a href="/facilities/local/" data-cy="location-list-local-link-side-nav" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.0.0.1.0">Find a Facility</a></li><li data-reactid=".1v20xv4r0us.6.0.0.1.1.0.0.0.2"><a href="/blog/" data-cy="blog-link-side-nav" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.0.0.2.0">Health News</a></li></ul></div><div class="side-nav-auth" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.1"><ul data-reactid=".1v20xv4r0us.6.0.0.1.1.0.1.0"><li data-reactid=".1v20xv4r0us.6.0.0.1.1.0.1.0.0"><button type="button" data-cy="side-nav-login-form" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.1.0.0.0">Log in</button></li><li data-reactid=".1v20xv4r0us.6.0.0.1.1.0.1.0.1"><button type="button" data-cy="side-nav-signup" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.1.0.1.0">Sign up</button></li></ul></div><div class="side-nav-socials" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.2"><a href="https://www.facebook.com/ratemdsdotcom" data-cy="side-nav-facebook-link" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.2.0"><span class="icon facebook-icon" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.2.0.0"></span><span class="sr-only" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.2.0.1">RateMDs Facebook</span></a><a href="https://twitter.com/RateMDsdotcom" data-cy="side-nav-twitter-link" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.2.1"><span class="icon twitter-icon" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.2.1.0"></span><span class="sr-only" data-reactid=".1v20xv4r0us.6.0.0.1.1.0.2.1.1">RateMDs Twitter</span></a></div></nav></div></div><div class="side-nav-backdrop" data-reactid=".1v20xv4r0us.6.0.0.2"><div class="btn-close-wrapper" data-reactid=".1v20xv4r0us.6.0.0.2.0"><button type="button" data-cy="side-nav-close-btn" class="side-nav-close-btn" data-reactid=".1v20xv4r0us.6.0.0.2.0.0"><span class="close-btn-icon icon" data-reactid=".1v20xv4r0us.6.0.0.2.0.0.0"></span></button></div></div></div><div class="col-sm-3" data-reactid=".1v20xv4r0us.6.0.1"><a href="/" class="header-logo" aria-label="Homepage" data-reactid=".1v20xv4r0us.6.0.1.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="//www.ratemds.com/static/img/header-logo.svg" alt="RateMDs Logo" width="159" height="43" data-reactid=".1v20xv4r0us.6.0.1.0.0" data-pagespeed-url-hash="3224171809" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"></a></div><ul class="header-links-main-header" data-reactid=".1v20xv4r0us.6.0.2"><li class="" data-reactid=".1v20xv4r0us.6.0.2.0"><a href="/doctors/local/" data-cy="doctor-list-local-link-main-header" data-reactid=".1v20xv4r0us.6.0.2.0.0">Find a Doctor</a></li><li class="" data-reactid=".1v20xv4r0us.6.0.2.1"><a href="/facilities/local/" data-cy="location-list-local-link-main-header" data-reactid=".1v20xv4r0us.6.0.2.1.0">Find a Facility</a></li><li data-reactid=".1v20xv4r0us.6.0.2.2"><a href="/blog/" data-cy="blog-link-main-header" data-reactid=".1v20xv4r0us.6.0.2.2.0">Health News</a></li></ul></nav><div class="header-right" data-reactid=".1v20xv4r0us.6.1"><button type="button" data-cy="show-search-modal-btn" class="show-search-modal-btn visible-xs-block" aria-label="Search Button" data-reactid=".1v20xv4r0us.6.1.0"><span class="search-icon icon" data-reactid=".1v20xv4r0us.6.1.0.0"></span></button><div class="header-search-bar-wrapper" data-reactid=".1v20xv4r0us.6.1.1"><div class="header-search-bar" data-reactid=".1v20xv4r0us.6.1.1.0"><form role="search" data-cy="header-search-form" autocomplete="off" novalidate data-reactid=".1v20xv4r0us.6.1.1.0.0"><div class="input-group" data-reactid=".1v20xv4r0us.6.1.1.0.0.0"><div class="search-wrapper" data-reactid=".1v20xv4r0us.6.1.1.0.0.0.0"><button type="submit" data-cy="header-search-submit-icon" aria-label="search" class="search-icon" data-reactid=".1v20xv4r0us.6.1.1.0.0.0.0.0"><span class="search-icon icon" data-reactid=".1v20xv4r0us.6.1.1.0.0.0.0.0.0"></span></button></div><input class="form-control" id="doctor-search" data-cy="header-search-input" placeholder="Search by name or specialty" type="search" autocomplete="off" name="text" aria-label="Doctor Name or Specialty" value="" data-reactid=".1v20xv4r0us.6.1.1.0.0.0.1"><span data-reactid=".1v20xv4r0us.6.1.1.0.0.0.2"></span></div><span data-reactid=".1v20xv4r0us.6.1.1.0.0.1"></span></form></div></div><div class="auth" data-reactid=".1v20xv4r0us.6.1.2"><div class="auth-logged-out" data-reactid=".1v20xv4r0us.6.1.2.1"><button type="button" class="mobile-auth-btn visible-xs-block visible-sm-block" data-cy="mobile-login-form" aria-label="Auth Button" data-reactid=".1v20xv4r0us.6.1.2.1.0"><span class="mobile-auth-icon icon" data-reactid=".1v20xv4r0us.6.1.2.1.0.0"></span></button><div class="desktop-auth-wrapper visible-md-block visible-lg-block" data-reactid=".1v20xv4r0us.6.1.2.1.1"><button type="button" data-cy="login-form" class="btn btn-header-mobile" aria-label="Log In" data-reactid=".1v20xv4r0us.6.1.2.1.1.0">Log in</button><span class="btn-separator" data-reactid=".1v20xv4r0us.6.1.2.1.1.1"></span><button type="button" data-cy="signup" class="btn btn-header-mobile" aria-label="Sign Up" data-reactid=".1v20xv4r0us.6.1.2.1.1.2">Sign up</button></div></div></div></div></header></div></div>
<div class="header-ad hidden-xs">
<div id="RateMDs_com_728x90_Top_OH_Content">
<script data-cfasync="false" type="text/javascript">googletag.cmd.push(function(){deployads.push(function(){deployads.gpt.display("RateMDs_com_728x90_Top_OH_Content");});});</script>
</div>
</div>
<main>
<!-- Google Identity Service -->
<script src="https://accounts.google.com/gsi/client" type="1829c5604bde31646f390b3d-text/javascript"></script>
<div class="search-banner" style="background-image:url(//www.ratemds.com/static/img/doctors/home/xbanner.a0a50116b3ae.jpg.pagespeed.ic.hkH4jQ5DUl.jpg)">
<div class="container">
<div class="row">
<div id="home-banner-panel"><div class="col-sm-6 home-banner-panel" data-reactid=".f7fmddgvp0" data-react-checksum="-2033100903"><form novalidate data-reactid=".f7fmddgvp0.0"><h1 data-reactid=".f7fmddgvp0.0.0">Search over 2 million Doctor reviews and ratings.</h1><div class="row" data-reactid=".f7fmddgvp0.0.1"><div class="facet-group col-sm-12" data-reactid=".f7fmddgvp0.0.1.0"><div class="dropdown btn-group" data-reactid=".f7fmddgvp0.0.1.0.0"><button class="dropdown-toggle btn btn-default" type="button" data-reactid=".f7fmddgvp0.0.1.0.0.$0"><span data-reactid=".f7fmddgvp0.0.1.0.0.$0.0">Choose a Specialty</span><span data-reactid=".f7fmddgvp0.0.1.0.0.$0.1"> </span><span class="caret" data-reactid=".f7fmddgvp0.0.1.0.0.$0.2"></span></button><ul class="dropdown-menu" role="menu" data-reactid=".f7fmddgvp0.0.1.0.0.$1"><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$=2$0:$0"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$=2$0:$0.0">All Specialties</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$acupuncturist=2$acupuncturist:$acupuncturist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$acupuncturist=2$acupuncturist:$acupuncturist.0">Acupuncturist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$addiction-medicine=2$addiction-medicine:$addiction-medicine"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$addiction-medicine=2$addiction-medicine:$addiction-medicine.0">Addiction Medicine Specialist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$allergist-immunologist=2$allergist-immunologist:$allergist-immunologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$allergist-immunologist=2$allergist-immunologist:$allergist-immunologist.0">Allergist / Immunologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$anesthesiologist=2$anesthesiologist:$anesthesiologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$anesthesiologist=2$anesthesiologist:$anesthesiologist.0">Anesthesiologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$audiologist=2$audiologist:$audiologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$audiologist=2$audiologist:$audiologist.0">Audiologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$bariatric-weight-loss=2$bariatric-weight-loss:$bariatric-weight-loss"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$bariatric-weight-loss=2$bariatric-weight-loss:$bariatric-weight-loss.0">Bariatric / Weight Loss Specialist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$cardiologist=2$cardiologist:$cardiologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$cardiologist=2$cardiologist:$cardiologist.0">Cardiologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$cardiothoracic-surgeon=2$cardiothoracic-surgeon:$cardiothoracic-surgeon"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$cardiothoracic-surgeon=2$cardiothoracic-surgeon:$cardiothoracic-surgeon.0">Cardiothoracic Surgeon</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$chiropractor=2$chiropractor:$chiropractor"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$chiropractor=2$chiropractor:$chiropractor.0">Chiropractor</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$colorectal-proctologist=2$colorectal-proctologist:$colorectal-proctologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$colorectal-proctologist=2$colorectal-proctologist:$colorectal-proctologist.0">Colorectal Surgeon / Proctologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$cosmetic-plastic-surgeon=2$cosmetic-plastic-surgeon:$cosmetic-plastic-surgeon"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$cosmetic-plastic-surgeon=2$cosmetic-plastic-surgeon:$cosmetic-plastic-surgeon.0">Plastic / Cosmetic Surgeon, Physician</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$dentist=2$dentist:$dentist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$dentist=2$dentist:$dentist.0">Dentist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$dermatologist=2$dermatologist:$dermatologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$dermatologist=2$dermatologist:$dermatologist.0">Dermatologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$dietitian=2$dietitian:$dietitian"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$dietitian=2$dietitian:$dietitian.0">Dietitian</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$ear-nose-and-throat-ent=2$ear-nose-and-throat-ent:$ear-nose-and-throat-ent"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$ear-nose-and-throat-ent=2$ear-nose-and-throat-ent:$ear-nose-and-throat-ent.0">Ear, Nose, and Throat Doctor / Otolaryngologist (ENT)</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$emergency-critical=2$emergency-critical:$emergency-critical"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$emergency-critical=2$emergency-critical:$emergency-critical.0">Emergency Room Doctor</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$endocrinologist=2$endocrinologist:$endocrinologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$endocrinologist=2$endocrinologist:$endocrinologist.0">Endocrinologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$endodontist-root-canal=2$endodontist-root-canal:$endodontist-root-canal"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$endodontist-root-canal=2$endodontist-root-canal:$endodontist-root-canal.0">Endodontist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$family-gp=2$family-gp:$family-gp"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$family-gp=2$family-gp:$family-gp.0">Family Doctor / General Practitioner</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$gastroenterologist=2$gastroenterologist:$gastroenterologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$gastroenterologist=2$gastroenterologist:$gastroenterologist.0">Gastroenterologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$geneticist=2$geneticist:$geneticist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$geneticist=2$geneticist:$geneticist.0">Geneticist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$gynecologist-obgyn=2$gynecologist-obgyn:$gynecologist-obgyn"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$gynecologist-obgyn=2$gynecologist-obgyn:$gynecologist-obgyn.0">Gynecologists and Obstetricians (OBGYN)</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$homeopath=2$homeopath:$homeopath"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$homeopath=2$homeopath:$homeopath.0">Homeopath</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$infectious-disease=2$infectious-disease:$infectious-disease"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$infectious-disease=2$infectious-disease:$infectious-disease.0">Infectious Disease Specialist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$internist-geriatrician=2$internist-geriatrician:$internist-geriatrician"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$internist-geriatrician=2$internist-geriatrician:$internist-geriatrician.0">Internist / Geriatrician</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$midwife=2$midwife:$midwife"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$midwife=2$midwife:$midwife.0">Midwife</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$naturopath=2$naturopath:$naturopath"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$naturopath=2$naturopath:$naturopath.0">Naturopath</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$nephrologist-kidney=2$nephrologist-kidney:$nephrologist-kidney"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$nephrologist-kidney=2$nephrologist-kidney:$nephrologist-kidney.0">Nephrologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$neurologist=2$neurologist:$neurologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$neurologist=2$neurologist:$neurologist.0">Neurologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$neurosurgeon=2$neurosurgeon:$neurosurgeon"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$neurosurgeon=2$neurosurgeon:$neurosurgeon.0">Neurosurgeon</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$nurse-practitioner=2$nurse-practitioner:$nurse-practitioner"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$nurse-practitioner=2$nurse-practitioner:$nurse-practitioner.0">Nurse Practitioner</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$occupational-therapist=2$occupational-therapist:$occupational-therapist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$occupational-therapist=2$occupational-therapist:$occupational-therapist.0">Occupational Therapist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$oncologist-hematologist=2$oncologist-hematologist:$oncologist-hematologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$oncologist-hematologist=2$oncologist-hematologist:$oncologist-hematologist.0">Oncologist / Hematologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$ophthalmologist=2$ophthalmologist:$ophthalmologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$ophthalmologist=2$ophthalmologist:$ophthalmologist.0">Ophthalmologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$optometrist=2$optometrist:$optometrist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$optometrist=2$optometrist:$optometrist.0">Optometrist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$oral-surgeon=2$oral-surgeon:$oral-surgeon"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$oral-surgeon=2$oral-surgeon:$oral-surgeon.0">Oral Surgeon</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$orthodontist=2$orthodontist:$orthodontist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$orthodontist=2$orthodontist:$orthodontist.0">Orthodontist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$orthopedics-sports=2$orthopedics-sports:$orthopedics-sports"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$orthopedics-sports=2$orthopedics-sports:$orthopedics-sports.0">Orthopedic Surgeon</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$osteopath=2$osteopath:$osteopath"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$osteopath=2$osteopath:$osteopath.0">Osteopath</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$pain-medicine-specialist=2$pain-medicine-specialist:$pain-medicine-specialist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$pain-medicine-specialist=2$pain-medicine-specialist:$pain-medicine-specialist.0">Pain Medicine Specialist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$pain-mgmt-physical-rehab=2$pain-mgmt-physical-rehab:$pain-mgmt-physical-rehab"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$pain-mgmt-physical-rehab=2$pain-mgmt-physical-rehab:$pain-mgmt-physical-rehab.0">Pain Management Specialist / Physical Therapist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$pathologist=2$pathologist:$pathologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$pathologist=2$pathologist:$pathologist.0">Pathologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$pediatrician=2$pediatrician:$pediatrician"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$pediatrician=2$pediatrician:$pediatrician.0">Pediatrician</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$perinatologist-maternal-fetal-medicine=2$perinatologist-maternal-fetal-medicine:$perinatologist-maternal-fetal-medicine"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$perinatologist-maternal-fetal-medicine=2$perinatologist-maternal-fetal-medicine:$perinatologist-maternal-fetal-medicine.0">Perinatologist / Maternal-Fetal Medicine Specialist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$periodontist-gums=2$periodontist-gums:$periodontist-gums"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$periodontist-gums=2$periodontist-gums:$periodontist-gums.0">Periodontist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$physiatrist-physical-medicine-rehabilitation=2$physiatrist-physical-medicine-rehabilitation:$physiatrist-physical-medicine-rehabilitation"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$physiatrist-physical-medicine-rehabilitation=2$physiatrist-physical-medicine-rehabilitation:$physiatrist-physical-medicine-rehabilitation.0">Physiatrist / Physical Medicine & Rehabilitation</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$physical-therapist-physiotherapist=2$physical-therapist-physiotherapist:$physical-therapist-physiotherapist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$physical-therapist-physiotherapist=2$physical-therapist-physiotherapist:$physical-therapist-physiotherapist.0">Physical Therapist / Physiotherapist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$physician-assistant=2$physician-assistant:$physician-assistant"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$physician-assistant=2$physician-assistant:$physician-assistant.0">Physician Assistant</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$podiatrist=2$podiatrist:$podiatrist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$podiatrist=2$podiatrist:$podiatrist.0">Podiatrist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$psychiatrist=2$psychiatrist:$psychiatrist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$psychiatrist=2$psychiatrist:$psychiatrist.0">Psychiatrist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$psychologist=2$psychologist:$psychologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$psychologist=2$psychologist:$psychologist.0">Psychologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$pulmonologist-lungs=2$pulmonologist-lungs:$pulmonologist-lungs"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$pulmonologist-lungs=2$pulmonologist-lungs:$pulmonologist-lungs.0">Pulmonologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$radiation-oncologist=2$radiation-oncologist:$radiation-oncologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$radiation-oncologist=2$radiation-oncologist:$radiation-oncologist.0">Radiation Oncologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$radiologist=2$radiologist:$radiologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$radiologist=2$radiologist:$radiologist.0">Radiologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$registered-massage-therapist=2$registered-massage-therapist:$registered-massage-therapist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$registered-massage-therapist=2$registered-massage-therapist:$registered-massage-therapist.0">Massage Therapist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$reproductive-endocrinologist=2$reproductive-endocrinologist:$reproductive-endocrinologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$reproductive-endocrinologist=2$reproductive-endocrinologist:$reproductive-endocrinologist.0">Reproductive Endocrinologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$rheumatologist=2$rheumatologist:$rheumatologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$rheumatologist=2$rheumatologist:$rheumatologist.0">Rheumatologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$sleep-disorders=2$sleep-disorders:$sleep-disorders"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$sleep-disorders=2$sleep-disorders:$sleep-disorders.0">Sleep Doctor</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$sports-medicine-physicians=2$sports-medicine-physicians:$sports-medicine-physicians"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$sports-medicine-physicians=2$sports-medicine-physicians:$sports-medicine-physicians.0">Sports Medicine Physician</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$surgeon-general=2$surgeon-general:$surgeon-general"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$surgeon-general=2$surgeon-general:$surgeon-general.0">General Surgeon</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$therapist=2$therapist:$therapist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$therapist=2$therapist:$therapist.0">Therapist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$urogynecologist=2$urogynecologist:$urogynecologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$urogynecologist=2$urogynecologist:$urogynecologist.0">Urogynecologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$urologist=2$urologist:$urologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$urologist=2$urologist:$urologist.0">Urologist</a></li><li role="menuitem" class="" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$vascular-phlebologist=2$vascular-phlebologist:$vascular-phlebologist"><a href="#" tabindex="-1" data-reactid=".f7fmddgvp0.0.1.0.0.$1.$=1$=01$vascular-phlebologist=2$vascular-phlebologist:$vascular-phlebologist.0">Vascular Surgeon / Phlebologist</a></li></ul></div></div></div><div class="row" data-reactid=".f7fmddgvp0.0.2"><div class="facet-group col-sm-6" data-reactid=".f7fmddgvp0.0.2.0"><div data-reactid=".f7fmddgvp0.0.2.0.0"><label for="city-selector" class="hidden" data-reactid=".f7fmddgvp0.0.2.0.0.0">City</label><input id="city-selector" type="text" class="form-control" placeholder="City Name" value="" autocomplete="off" aria-label="Select a City" data-reactid=".f7fmddgvp0.0.2.0.0.1"></div></div><div class="facet-group col-sm-6" data-reactid=".f7fmddgvp0.0.2.1"><label for="name" class="hidden" data-reactid=".f7fmddgvp0.0.2.1.0">Name</label><input class="form-control" id="name" placeholder="Doctor Name" type="text" title="Search by Doctor Name" data-reactid=".f7fmddgvp0.0.2.1.1"></div></div><div class="row" data-reactid=".f7fmddgvp0.0.3"><div class="facet-group gender-group col-sm-6" data-reactid=".f7fmddgvp0.0.3.0"><ul class="list-inline" data-reactid=".f7fmddgvp0.0.3.0.0"><li data-reactid=".f7fmddgvp0.0.3.0.0.$0"><button type="button" class="link-plain" data-reactid=".f7fmddgvp0.0.3.0.0.$0.0"><i class="fa fa-dot-circle-o text-primary" data-reactid=".f7fmddgvp0.0.3.0.0.$0.0.0"></i><span data-reactid=".f7fmddgvp0.0.3.0.0.$0.0.1"> </span><span data-reactid=".f7fmddgvp0.0.3.0.0.$0.0.2">All</span></button></li><li data-reactid=".f7fmddgvp0.0.3.0.0.$1"><button type="button" class="link-plain" data-reactid=".f7fmddgvp0.0.3.0.0.$1.0"><i class="fa fa-circle-o" data-reactid=".f7fmddgvp0.0.3.0.0.$1.0.0"></i><span data-reactid=".f7fmddgvp0.0.3.0.0.$1.0.1"> </span><span data-reactid=".f7fmddgvp0.0.3.0.0.$1.0.2">Male</span></button></li><li data-reactid=".f7fmddgvp0.0.3.0.0.$2"><button type="button" class="link-plain" data-reactid=".f7fmddgvp0.0.3.0.0.$2.0"><i class="fa fa-circle-o" data-reactid=".f7fmddgvp0.0.3.0.0.$2.0.0"></i><span data-reactid=".f7fmddgvp0.0.3.0.0.$2.0.1"> </span><span data-reactid=".f7fmddgvp0.0.3.0.0.$2.0.2">Female</span></button></li></ul></div><div class="facet-group col-sm-6" data-reactid=".f7fmddgvp0.0.3.1"><button class="btn btn-success btn-block" type="submit" data-reactid=".f7fmddgvp0.0.3.1.0"><i class="fa fa-search" data-reactid=".f7fmddgvp0.0.3.1.0.0"></i><span data-reactid=".f7fmddgvp0.0.3.1.0.1"> Find a Doctor</span></button></div></div></form></div></div>
</div>
</div>
</div>
<div class="home-bar stats-bar hidden-xs">
<div class="container">
<div class="row">
<div class="col-sm-4 home-bar-item">
<div class="number">1.7 Million +</div>
<div class="description">Healthcare Providers</div>
</div>
<div class="col-sm-4 home-bar-item">
<div class="number">2.6 Million +</div>
<div class="description">Doctor Reviews</div>
</div>
<div class="col-sm-4 home-bar-item">
<div class="number">161 Million +</div>
<div class="description">People Helped</div>
</div>
</div>
</div>
</div>
<div class="container content-body">
<div class="row">
<div class="col-md-8 col-sm-12 col-main">
<h2>
The Best Doctors
near Ashburn, VA
</h2>
<div id="home-specialties"><div class="home-specialties" data-reactid=".ccqoezkm9q" data-react-checksum="-1479414997"><div class="row" data-reactid=".ccqoezkm9q.0"><div class="col-sm-4 home-specialties-menu" data-reactid=".ccqoezkm9q.0.0"><ul class="nav home-specialties-nav hidden-xs" data-reactid=".ccqoezkm9q.0.0.0"><li class="active" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-family-gp"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-family-gp.0">Family Doctor / General Practitioner</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-gynecologist-obgyn"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-gynecologist-obgyn.0">Gynecologists and Obstetricians (OBGYN)</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-dentist"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-dentist.0">Dentist</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-orthopedics-sports"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-orthopedics-sports.0">Orthopedic Surgeon</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-internist-geriatrician"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-internist-geriatrician.0">Internist / Geriatrician</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-cosmetic-plastic-surgeon"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-cosmetic-plastic-surgeon.0">Plastic / Cosmetic Surgeon, Physician</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-dermatologist"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-dermatologist.0">Dermatologist</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-psychologist"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-psychologist.0">Psychologist</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-psychiatrist"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-psychiatrist.0">Psychiatrist</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-chiropractor"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-chiropractor.0">Chiropractor</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-surgeon-general"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-surgeon-general.0">General Surgeon</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-ear-nose-and-throat-ent"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-ear-nose-and-throat-ent.0">Ear, Nose, and Throat Doctor / Otolaryngologist (ENT)</button></li><li class="" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-pediatrician"><button type="button" class="home-specialties-button" data-reactid=".ccqoezkm9q.0.0.0.0:$specialty-pediatrician.0">Pediatrician</button></li><li data-reactid=".ccqoezkm9q.0.0.0.1"><a class="home-specialties-button" href="/specialties/" data-reactid=".ccqoezkm9q.0.0.0.1.0">View all specialties</a></li></ul><div class="visible-xs-block" data-reactid=".ccqoezkm9q.0.0.1"><div class="dropdown btn-group" data-reactid=".ccqoezkm9q.0.0.1.0"><button class="dropdown-toggle btn btn-default" type="button" data-reactid=".ccqoezkm9q.0.0.1.0.$0"><span data-reactid=".ccqoezkm9q.0.0.1.0.$0.0">Family Doctor / General Practitioner</span><span data-reactid=".ccqoezkm9q.0.0.1.0.$0.1"> </span><span class="caret" data-reactid=".ccqoezkm9q.0.0.1.0.$0.2"></span></button><ul class="dropdown-menu" role="menu" data-reactid=".ccqoezkm9q.0.0.1.0.$1"><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$family-gp=2$family-gp:$family-gp"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$family-gp=2$family-gp:$family-gp.0">Family Doctor / General Practitioner</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$gynecologist-obgyn=2$gynecologist-obgyn:$gynecologist-obgyn"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$gynecologist-obgyn=2$gynecologist-obgyn:$gynecologist-obgyn.0">Gynecologists and Obstetricians (OBGYN)</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$dentist=2$dentist:$dentist"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$dentist=2$dentist:$dentist.0">Dentist</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$orthopedics-sports=2$orthopedics-sports:$orthopedics-sports"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$orthopedics-sports=2$orthopedics-sports:$orthopedics-sports.0">Orthopedic Surgeon</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$internist-geriatrician=2$internist-geriatrician:$internist-geriatrician"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$internist-geriatrician=2$internist-geriatrician:$internist-geriatrician.0">Internist / Geriatrician</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$cosmetic-plastic-surgeon=2$cosmetic-plastic-surgeon:$cosmetic-plastic-surgeon"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$cosmetic-plastic-surgeon=2$cosmetic-plastic-surgeon:$cosmetic-plastic-surgeon.0">Plastic / Cosmetic Surgeon, Physician</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$dermatologist=2$dermatologist:$dermatologist"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$dermatologist=2$dermatologist:$dermatologist.0">Dermatologist</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$psychologist=2$psychologist:$psychologist"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$psychologist=2$psychologist:$psychologist.0">Psychologist</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$psychiatrist=2$psychiatrist:$psychiatrist"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$psychiatrist=2$psychiatrist:$psychiatrist.0">Psychiatrist</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$chiropractor=2$chiropractor:$chiropractor"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$chiropractor=2$chiropractor:$chiropractor.0">Chiropractor</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$surgeon-general=2$surgeon-general:$surgeon-general"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$surgeon-general=2$surgeon-general:$surgeon-general.0">General Surgeon</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$ear-nose-and-throat-ent=2$ear-nose-and-throat-ent:$ear-nose-and-throat-ent"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$ear-nose-and-throat-ent=2$ear-nose-and-throat-ent:$ear-nose-and-throat-ent.0">Ear, Nose, and Throat Doctor / Otolaryngologist (ENT)</a></li><li role="menuitem" class="" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$pediatrician=2$pediatrician:$pediatrician"><a href="#" tabindex="-1" data-reactid=".ccqoezkm9q.0.0.1.0.$1.$=1$=01$pediatrician=2$pediatrician:$pediatrician.0">Pediatrician</a></li></ul></div></div></div><div class="col-sm-8" data-reactid=".ccqoezkm9q.0.1"><div data-reactid=".ccqoezkm9q.0.1.0"><a href="/best-doctors/va/ashburn/family-gp/" class="home-specialties-name" data-reactid=".ccqoezkm9q.0.1.0.0"><h3 data-reactid=".ccqoezkm9q.0.1.0.0.0">Family Doctor / General Practitioner</h3><small data-reactid=".ccqoezkm9q.0.1.0.0.1">View All</small></a><div data-reactid=".ccqoezkm9q.0.1.0.1"><div class="home-specialties-doctor" data-reactid=".ccqoezkm9q.0.1.0.1.$546601"><a href="/doctor-ratings/3379891/Dr-MINH-TA-Allentown-PA.html/" class="search-item-doctor-link" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img class="doctor-image" src="https://cdn1.ratemds.com/media/doctors/doctor/image/doctor-minh-ta-family-gp.jpg_thumbs/v1_at_77x77.jpg" alt="" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.0.0" data-pagespeed-url-hash="1177156683" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><h4 class="search-item-doctor-name" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.0.1">Dr. Minh Ta</h4></a><div title="4.86" class="star-rating" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1"><span class="stars" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1.0"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1.0.0"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1.0.0.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1.0.1"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1.0.1.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1.0.2"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1.0.2.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1.0.3"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1.0.3.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1.0.4"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$546601.1.0.4.0"></path></svg></span></div><p data-reactid=".ccqoezkm9q.0.1.0.1.$546601.2"><span data-reactid=".ccqoezkm9q.0.1.0.1.$546601.2.0">"</span><span data-reactid=".ccqoezkm9q.0.1.0.1.$546601.2.1">Amazing bedside manner, straight to the point, clear on explanation, he f...</span><span data-reactid=".ccqoezkm9q.0.1.0.1.$546601.2.2">"</span></p></div><div class="home-specialties-doctor" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099"><a href="/doctor-ratings/374312/Dr-Holger-Noelle-ASHBURN-VA.html/" class="search-item-doctor-link" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img class="doctor-image" src="https://cdn1.ratemds.com/media/doctors/doctor/image/doctor-holger-noelle-family-gp.jpg_thumbs/v1_at_77x77.jpg" alt="" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.0.0" data-pagespeed-url-hash="1115450468" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><h4 class="search-item-doctor-name" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.0.1">Dr. Holger Noelle</h4></a><div title="4.96" class="star-rating" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1"><span class="stars" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1.0"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1.0.0"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1.0.0.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1.0.1"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1.0.1.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1.0.2"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1.0.2.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1.0.3"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1.0.3.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1.0.4"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.1.0.4.0"></path></svg></span></div><p data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.2"><span data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.2.0">"</span><span data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.2.1">Patience with patients is how I would characterize Dr. Noelle. Excellent ...</span><span data-reactid=".ccqoezkm9q.0.1.0.1.$1888099.2.2">"</span></p></div><div class="home-specialties-doctor" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952"><a href="/doctor-ratings/2968490/Dr-HANNAH+E.-PHILLIPS-Ashburn-VA.html/" class="search-item-doctor-link" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img class="doctor-image" src="https://cdn1.ratemds.com/media/doctors/doctor/image/doctor-hannah-e-phillips-family-gp.jpg_thumbs/v1_at_77x77.jpg" alt="" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.0.0" data-pagespeed-url-hash="3747927519" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><h4 class="search-item-doctor-name" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.0.1">Dr. Hannah E. Phillips</h4></a><div title="4.90" class="star-rating" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1"><span class="stars" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1.0"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1.0.0"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1.0.0.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1.0.1"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1.0.1.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1.0.2"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1.0.2.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1.0.3"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1.0.3.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1.0.4"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.1.0.4.0"></path></svg></span></div><p data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.2"><span data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.2.0">"</span><span data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.2.1">She is excellent. Knowledgeable, professional and very courteous. </span><span data-reactid=".ccqoezkm9q.0.1.0.1.$1026952.2.2">"</span></p></div><div class="home-specialties-doctor" data-reactid=".ccqoezkm9q.0.1.0.1.$546532"><a href="/doctor-ratings/3379960/Dr-RYUN+J.-LEE-Newport+News-VA.html/" class="search-item-doctor-link" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img class="doctor-image" src="https://cdn1.ratemds.com/media/doctors/doctor/image/doctor-ryun-j-lee-family-gp.jpg_thumbs/v1_at_77x77.jpg" alt="" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.0.0" data-pagespeed-url-hash="245636317" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><h4 class="search-item-doctor-name" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.0.1">Dr. Ryun J. Lee</h4></a><div title="5.00" class="star-rating" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1"><span class="stars" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1.0"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1.0.0"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1.0.0.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1.0.1"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1.0.1.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1.0.2"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1.0.2.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1.0.3"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1.0.3.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1.0.4"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$546532.1.0.4.0"></path></svg></span></div><p data-reactid=".ccqoezkm9q.0.1.0.1.$546532.2"><span data-reactid=".ccqoezkm9q.0.1.0.1.$546532.2.0">"</span><span data-reactid=".ccqoezkm9q.0.1.0.1.$546532.2.1">I highly recommend Dr. Lee's services! She was very professional all the ...</span><span data-reactid=".ccqoezkm9q.0.1.0.1.$546532.2.2">"</span></p></div><div class="home-specialties-doctor" data-reactid=".ccqoezkm9q.0.1.0.1.$872622"><a href="/doctor-ratings/3180125/Dr-KIMBERLY-ZAWISTOSKI-ASHBURN-VA.html/" class="search-item-doctor-link" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img class="doctor-image" src="https://cdn1.ratemds.com/media/doctors/doctor/image/doctor-kimberly-zawistoski-family-gp.jpg_thumbs/v1_at_77x77.jpg" alt="" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.0.0" data-pagespeed-url-hash="1297170343" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><h4 class="search-item-doctor-name" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.0.1">Dr. Kimberly Zawistoski</h4></a><div title="4.64" class="star-rating" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1"><span class="stars" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1.0"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="half" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1.0.0"><path d="M16.751 7.625C17.238 7.15 16.969 6.323 16.296 6.225L12.19 5.628C11.923 5.589 11.692 5.421 11.572 5.179L9.73598 1.458C9.58498 1.152 9.29298 1 8.99998 1C8.70698 1 8.41498 1.153 8.26398 1.457L6.42798 5.178C6.30798 5.42 6.07698 5.588 5.80998 5.627L1.70398 6.224C1.03098 6.322 0.761979 7.149 1.24898 7.624L4.21998 10.52C4.41298 10.709 4.50198 10.981 4.45598 11.247L3.75498 15.336C3.66398 15.866 4.08598 16.297 4.56398 16.297C4.68998 16.297 4.81998 16.267 4.94598 16.201L8.61798 14.27C8.73798 14.207 8.86898 14.175 8.99998 14.175C9.13098 14.175 9.26298 14.207 9.38198 14.27L13.054 16.201C13.18 16.267 13.31 16.297 13.437 16.297C13.915 16.297 14.336 15.866 14.245 15.336L13.544 11.247C13.498 10.98 13.587 10.709 13.78 10.52L16.751 7.625ZM13.08 9.806C12.652 10.225 12.457 10.828 12.558 11.416L13.198 15.147L9.84798 13.385C9.58798 13.248 9.29398 13.175 8.99998 13.175V2.226L10.676 5.623C10.942 6.159 11.454 6.531 12.046 6.617L15.793 7.162L13.08 9.806Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1.0.0.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1.0.1"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1.0.1.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1.0.2"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1.0.2.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1.0.3"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1.0.3.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1.0.4"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".ccqoezkm9q.0.1.0.1.$872622.1.0.4.0"></path></svg></span></div><p data-reactid=".ccqoezkm9q.0.1.0.1.$872622.2"><span data-reactid=".ccqoezkm9q.0.1.0.1.$872622.2.0">"</span><span data-reactid=".ccqoezkm9q.0.1.0.1.$872622.2.1">She is very incompetent and does not know what she is doing. My wife was ...</span><span data-reactid=".ccqoezkm9q.0.1.0.1.$872622.2.2">"</span></p></div></div></div></div></div></div></div>
</div>
<div class="col-md-4 hidden-sm hidden-xs col-right col-ads ">
<div class="col-right-sticky-ad">
<div>
<div class="search-sidebar-top">
<a href="/doctors/create/" class="btn btn-success" onclick="if (!window.__cfRLUnblockHandlers) return false; return window.ga('send','event','homepage-add-doctor-click','click', user.location.city+'-'+user.location.province)" data-cf-modified-1829c5604bde31646f390b3d-="">
<i class="fa fa-plus-circle"></i>
Add a Doctor
</a>
</div>
<div id="doctor-detail-side-ad-container">
<div data-reactid=".11h5u942q9o" data-react-checksum="-877583455"><div class="featured" id="" role="tooltip" data-reactid=".11h5u942q9o.0"><p class="text" data-reactid=".11h5u942q9o.0.0"> Featured </p><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img class="image" src="//www.ratemds.com/static/img/core/icons/green-tooltip.svg" alt="tooltip icon" data-reactid=".11h5u942q9o.0.1:0" data-pagespeed-url-hash="1124896650" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><div class="tooltip-container" data-reactid=".11h5u942q9o.0.1:1"><div class="feature-tooltip-inner" data-reactid=".11h5u942q9o.0.1:1.0"><span data-reactid=".11h5u942q9o.0.1:1.0.0">Featured profiles are placed at the top of relevant search results and on profiles for similar local providers. These are paid advertising placements. To learn more, visit</span><span data-reactid=".11h5u942q9o.0.1:1.0.1"> Â </span><a href="/plans/doctor/?utm_source=sideadtooltip&utm_medium=doctordetailpage&utm_campaign=patient" class="link" data-reactid=".11h5u942q9o.0.1:1.0.2">RateMDs for Doctors</a><span data-reactid=".11h5u942q9o.0.1:1.0.3">.</span></div></div></div><hr class="invisible-divider" data-reactid=".11h5u942q9o.1"><div id="doctor-detail-ad-sidenav" data-reactid=".11h5u942q9o.2"><div class="widget doctor-detail-ad-container doctor-detail-ad-container--sidebar" data-reactid=".11h5u942q9o.2.0"><div class="ad-doctor-container-side-ad" data-reactid=".11h5u942q9o.2.0.0"><div class="search-item doctor-profile" data-reactid=".11h5u942q9o.2.0.0.0"><div class="search-item doctor-profile__container" data-reactid=".11h5u942q9o.2.0.0.0.0"><div class="search-item doctor-profile__left-col" data-reactid=".11h5u942q9o.2.0.0.0.0.0"><span class="doctor-image" data-reactid=".11h5u942q9o.2.0.0.0.0.0.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img class="search-item-image search-item-image-sm" src="https://cdn1.ratemds.com/media/doctors/doctor/image/doctor-michael-s-oberschneider-psychologist.jpg_thumbs/v1_at_77x77.jpg" alt="Doctor Profile" data-reactid=".11h5u942q9o.2.0.0.0.0.0.0.0" data-pagespeed-url-hash="159812610" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><div class="verified-container" role="tooltip" data-reactid=".11h5u942q9o.2.0.0.0.0.0.0.1"><p class="verified-tooltip" data-reactid=".11h5u942q9o.2.0.0.0.0.0.0.1.0">Verified providers have claimed their profile through our verification process. These providers can
update their credentials, location details, and respond to ratings. Verifying a profile is free.</p><svg width="14" height="14" viewBox="0 0 14 14" fill="none" class="verified_small" data-reactid=".11h5u942q9o.2.0.0.0.0.0.0.1.1"><circle cx="7" cy="7" r="7" fill="white" data-reactid=".11h5u942q9o.2.0.0.0.0.0.0.1.1.0"></circle><circle cx="7" cy="7" r="6" fill="#1D9DFA" data-reactid=".11h5u942q9o.2.0.0.0.0.0.0.1.1.1"></circle><path d="M9.90313 5.21929L6.91849 9.32222C6.88326 9.36958 6.83906 9.40936 6.78848 9.43923C6.73791 9.4691 6.68196 9.48846
6.62392 9.49619C6.56588 9.50392 6.50689 9.49986 6.45041 9.48425C6.39393 9.46864 6.34109 9.44179 6.29497 9.40526L4.16364
7.67911C4.11892 7.64285 4.08169 7.59803 4.05407 7.5472C4.02645 7.49637 4.00898 7.44053 4.00266 7.38286C3.98991 7.2664 4.02334
7.14957 4.09562 7.05808C4.1679 6.96659 4.27309 6.90793 4.38806 6.895C4.50303 6.88208 4.61836 6.91596 4.70868 6.98917L6.48595
8.42955L9.20112 4.69676C9.23381 4.64707 9.2761 4.60461 9.32545 4.57195C9.37479 4.53928 9.43016 4.51709 9.4882 4.50672C9.54625
4.49634 9.60577 4.498 9.66317 4.51158C9.72057 4.52517 9.77465 4.5504 9.82215 4.58576C9.86965 4.62111 9.90958 4.66586 9.93953
4.71729C9.96948 4.76872 9.98882 4.82576 9.99639 4.88498C10.004 4.94419 9.9996 5.00435 9.98357 5.06181C9.96754 5.11927 9.94018
5.17284 9.90313 5.21929Z" fill="white" data-reactid=".11h5u942q9o.2.0.0.0.0.0.0.1.1.2"></path></svg></div></span></div><div class="search-item doctor-profile__right-col" data-reactid=".11h5u942q9o.2.0.0.0.0.1"><span class="ad-item-container" data-reactid=".11h5u942q9o.2.0.0.0.0.1.0"><a href="/doctor-ratings/3118418/Dr-Michael+S.-Oberschneider-Ashburn-VA.html/" class="doctor-ad-link-name" data-reactid=".11h5u942q9o.2.0.0.0.0.1.0.0">Michael S. Oberschneider</a><a href="/best-doctors/?specialty=psychologist" aria-label="Find other Psychologist" class="search-item-specialty-link" data-reactid=".11h5u942q9o.2.0.0.0.0.1.0.1">Psychologist</a></span><div class="doctor-info" data-reactid=".11h5u942q9o.2.0.0.0.0.1.1"><div class="side-ad-info" data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0"><div data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.0"><span data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.0.0"> </span><span data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.0.2"> </span></div><div class="doctor-badges" data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.1"><div class="accepting-new-patients" data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.1.0"><svg width="14" height="14" viewBox="0 0 14 14" fill="none" class="patient-icon" data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.1.0.0"><path d="M5 5C6.24264 5 7.25 3.99264 7.25 2.75C7.25 1.50736 6.24264 0.5 5 0.5C3.75736 0.5 2.75 1.50736 2.75 2.75C2.75 3.99264 3.75736 5 5 5Z" stroke="#008085" stroke-linecap="round" data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.1.0.0.0"></path><path d="M4.5 12.5H0.5V11C0.507961 10.2378 0.708977 9.49005 1.08427 8.82659C1.45957 8.16314 1.9969 7.60562 2.64607 7.20613C3.29525 6.80664 4.03509 6.5782 4.79648 6.54216C5.55788 6.50611 6.31599 6.66363 7 7.00001" stroke="#008085" stroke-linecap="round" data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.1.0.0.1"></path><path d="M10.5 7.5V13.5" stroke="#008085" stroke-linecap="round" data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.1.0.0.2"></path><path d="M7.5 10.5H13.5" stroke="#008085" stroke-linecap="round" data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.1.0.0.3"></path></svg><p class="text" data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.1.0.1"> Accepting new patients </p></div></div><div class="extra-info" data-reactid=".11h5u942q9o.2.0.0.0.0.1.1.0.2"></div></div></div></div></div><span data-reactid=".11h5u942q9o.2.0.0.0.1"></span></div></div><div class="doctor-request-appointment-buttons" data-reactid=".11h5u942q9o.2.0.1"><span class="button-container" data-reactid=".11h5u942q9o.2.0.1.0"><a class="call-now request-btn call-now-container call-now-side-ad" data-reactid=".11h5u942q9o.2.0.1.0.0"><span class="call-icon" data-reactid=".11h5u942q9o.2.0.1.0.0.0"></span><span class="text" data-reactid=".11h5u942q9o.2.0.1.0.0.1"> Call now</span></a><span data-reactid=".11h5u942q9o.2.0.1.0.1"></span></span></div></div></div></div>
</div>
<div id="social-widget">
<div class="widget widget-social" data-reactid=".1et2s5jg14o" data-react-checksum="-1120279503"><h3 data-reactid=".1et2s5jg14o.0"> Follow us </h3><ul class="list-unstyled list-inline" data-reactid=".1et2s5jg14o.1"><li class="facebook" data-reactid=".1et2s5jg14o.1.0"><a href="https://www.facebook.com/ratemdsdotcom" aria-label="Facebook" title="Facebook" data-reactid=".1et2s5jg14o.1.0.0"><i class="fa fa-facebook-square" data-reactid=".1et2s5jg14o.1.0.0.0"></i></a></li><li class="twitter" data-reactid=".1et2s5jg14o.1.1"><a href="https://twitter.com/RateMDsdotcom" aria-label="Twitter" title="Twitter" data-reactid=".1et2s5jg14o.1.1.0"><i class="fa fa-twitter-square" data-reactid=".1et2s5jg14o.1.1.0.0"></i></a></li></ul></div>
</div>
</div>
<div id="RateMDs_com_300x250_TopRight_OH_Content" class="ad">
<script data-cfasync="false" type="text/javascript">googletag.cmd.push(function(){deployads.push(function(){deployads.gpt.display("RateMDs_com_300x250_TopRight_OH_Content");});});</script>
</div>
</div>
</div>
</div>
</div>
<div class="home-bar hidden-xs">
<div class="container home-news">
<div><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAAA4CAMAAACyquSWAAAAM1BMVEUAAAB/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1KFQ2UAAAAEHRSTlMAECAwQFBgcICPn6+/z9/vIxqCigAAAwVJREFUWMPtl9mCpCAMRWWRNYD//7UjhCCgWDXT89g8VKPCIcsF0tv2237bT5s0tYnyqOuT+neiOWpz+YnTE4yjhDE7o55i3xFTMfGRyKAMEH3vC+KRh/lHItQ1edf7QHT5x54m5L9+Ju60jBVDiN6IJpw/sc5VM7G5Aa0XPhI1up1tBbkmKkhd0F+JJcdmy+NVR5QOQDN1BdfVnt92D069ELfsdigsdhEtesjTLY4K0cDWRE05cVsjSjKNLDNETKQyuyY2ae8XsUmJ3JYbocnqgy2JxW0MeSM2pXogxdZRl4jlmqibG43YDCECad2Fb4i8bZy714eLBwrWTCamdRyr23Hb7pk5J9r6rngSrqXMA5HLs/G+w3KnnAVqdJsicpm43IxcWaDMgDcUGyEEBSw6NChv/ERiSvuKdzlB8/NQFfNkS8KrWciG1YyBziMe/G47IgK0HGrKfdQRpwMed0BOJ+NXntteB7wygV+xQiddFk/Ovy9LBNW0pVZEUILycyZGXzEIxUwXI0oDk2Sv737pdXHcGy3Ho53mu3J47NFnA2P3Fe6BdGnKTFCbHl/odGLL+XbCzbDcAzGP0xbigBDjGmce6t3iow7jN70+fJlUlszVdrIbFMrUmMmjcDt+xpV4C/c8E/XMYF7pfi3SDgAt5W5jOyZxN/at7KPp3dPNfVs126N+WPq4ISvJfyhDPjSU9G60ygXU6Tk6y3hzrLwcay8AcMZI9l6lqCFV0kyHh+VVvJNw3yop8UasudZ05lHwH+7XMjP15VFPxJA4ugHwZSxZ38PzrsZBWNBUrfbE4TSpYqWVGQqWPxNRlbAgsoDVkxvvlpJLsyLiJDcToTSKWGx15seKFMgHtcpMal+O7UviJlLdfYtcR/23RLxLTw3d48jxwYZVGbEgViGxh1zXeseNV5UtQRYvRMxleCDWm2NP/e4Si+qsJ7KuQqoVTmlAxTfG+nDyPA7sqk7piSTax8wc7rRGxPm22N6JZMSNeNbc1TvVVSCg+f/5V1Ksj+/f9vP2B4+7bq0gaz2NAAAAAElFTkSuQmCC" alt="MSNBC" data-pagespeed-url-hash="3968806222" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"></div>
<div><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAAA4CAYAAABuQ6+nAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABKBJREFUeNrsW/9x2jAUdnIZgE6AMwHeAGeCwgRJJwCu/T/h//YSJgAmCJkAM0HkCepMUHeDSrnnq07Re3oSEMSd3p3OxpZl6fP3ftpcZkkOIpcJggRkAjIBmSQBmYBMQCYgkyQgTydX5zDJ+5+/SrmZyKa2PTjcyFbJtp7/+F5p/XL5e/XZc7ywTPpBbRjXqsnvuH3l4m60xW49+i/l5o4xl7Fsrwrg7lrmA9p64HXTPTQOIwVMLIeGTXwNrOg7FroCwDONSXPkOnXvFsY2Qeyua+C3YuZXOK8A+aP140o35kC2EdFvI1tNjX0R8LTUE782+qrFLC1957LvA3GPR7mZws9W9v2CnZPtWp5vLWOY9664jGRqIrkGp7MBCtto3Fr6rognTslfbX+hLSrXQHxntQ1E7d7zA5i5yvO4l9d+sRwrkL7CcmzgsZAnbX9inNsxrm1jDn8EofacvoVj/L6mji1xHQkSXLuKFkjMQyFOqA4AMqcemMc4HNaePCBvmCprA6MH9g6TkgkCx0RUsQPJUlmCvQViHgqXCdFk5Jok5oxiArImmLSPncy1sMfl3RWzpzGz8jJ0cgajKCCHDqZWTHt3DzHj2RYthIfKvnkwckgw3uaBVSazjBVMJ5Bge7gOZ4CoZY9Q7cpyz4ZQ0yVkITZZd+lljIz0sX0Fh70ArCv0mVEZHeThH7KcU1R+fIDkOpzcEeaYwDZE6iccqd+dDcyYbSTlcHJHtoOpfMHxslAsqM4BzH1U21TZ3CMzGRBMN2XsiDOjAJMFJOFwCgs4NhuVGw6Hmxp291ZlsU3MYPq8s3HFiB2oL0iRoTBtJpENfQBTtnHMNtMHSFdRQrd7qJfXAnnhO1mwmWOiGnQHBeGogaywogQ4nZ7mhXeEw8n3Sefk+BtQdQzMqcPxRanaHdNMm0fFnYWHo8mI0IgC8zZaIB0OpzTAoYAchqo2AqZVxWNmJOVw+rq6Qopne1FVduwFIDIkPi05OTWMMcPGiBlIzOHYHIhAMpycYR9VvwmTmU/EvT5NfL+0UADcW6oyhSXd21kWc6udc0nho+myPRvH+pb8fgoa9J5+HrIY7MvIxkPtBZGLi0OyATx5i+X9AOJvIEEJgD6eTLUx24ewTAREAGguH1oPABll/78ZOopDCvkaTXCOE6BzXi2E2DkqnJpkR5YQIHcIWysm6D6B+HCPtTUOeytiZKTwAN0nEB8h1XWOvDEc1NkA2ezJyM7ThrB3g8xDxZ3X4KA4UYI4CpCI7asPADpq35A3lqZT0u1pYwT8OmgCsdF921y5IVLop8+cUMeWvTQBsZti5RYDE1TfLJ+Z2c6CkYfbxl8cU7U/2D5HXbEKVGtdJRVYr6pE1gEKVScVwmwNNq5MtQUGzjS7O9LZDG8lSwsbV8fKbDJmKmj2LQMrPjcQWOuBtCqT2foqps+wxatUUl43gPjxWe53XweXyJy9PlY9BJAultUB9rEBZjWwXwETRxanosasOeyRfb7JcWqIK7GQaBHySvci1N1r1ZWGCrDBhhUME/CpAg8m1xynOPWHWEmy9IelBGQCMgGZJAGZgDwf+SfAACSC8D0KNzy4AAAAAElFTkSuQmCC" alt="Wall Street Journal" width="81" height="56" data-pagespeed-url-hash="2390040682" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"></div>
<div><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALYAAAA4CAMAAABnlPKeAAAAM1BMVEUAAAB/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1KFQ2UAAAAEHRSTlMAECAwQFBgcICPn6+/z9/vIxqCigAAA1hJREFUaN7tWEm23CAMNAYzT/c/bWzEPNg/2STvhVo1BqRClAT0cWxsbGxsbGxsbGxsbPzfQJTfuNC/wcZ5gO6AoTs1kIzjvCLQw0OPqEy1BuizVKYe+04zWC3NvYLhMvEMn+QFXRw+tq0O3Hvr7RNGkmACu0gOqBJkfIEMwY+Ns9jyDfiBuCtNgcBbgaVpooimopPgGsFcd0723TWODKzPTWjrelxwx2KDLWlj07Qt7mjfDnGz4xzHkc8K1WC+bA50OetgPwB2pM0a/6HDNq0JbdXG5HaDe9rPp0cO2VTsv5VHo3QnrK3vsYp2DLbkwsVg4zwHL2iPcKin3QTW++tIMjnXEinDn/kl3pNoF00jrsJ32Sod8iRPzj+C9LJYJNC2F+EmZ0Da82AqyUSvJWInAVlEe9ixKitcYxT8FS7iDGtNvIodmmdXCkStjGYSOZQeslGLt2h7y9Km0T5De9qs7cNuYMOTxqrw3dGt8vhTImXkPNrFsuWhAoNxGKlmtHWSQAQbaMcKykhlytRJM5XIIW6GgajLsQZ1T6Jdb52jWQJkKN2Zdtr04Vgrex9XBsKhNuU3f5XIrZFI23Yn5Kxui7Zui2hXDVFpaOv55ur6kBHgDrGc3+ZFIkBb2/5YF9Nok4O5upC5SJ/2pXtNWy5o20gX5fzGLxK57QSaVTq+0r5vUjKnsM4uXFe6W9r1esxCJNmByjnsawJz2qGomh/QDlkk5ukrR9qmc01WKelToVe575U2qATOAqeHAsjq459c+O0gdCNtWQ7BwNGsCmCP82e07XBvddV1ISYSdi4UPrw4tulAO0bXgvN0q7KF9rUwxb9ol6TM4X6CzaPmXNaLN0/snOTcLXypgXZWruaUq1z0wRzBl1xdXOwnbTO/SumBnPi6JJXSnWnPNoZw/43rizbE2+TDXcSbqxkW8xJg21arTLs5/9P+89fUoDG/v2h3z4Ss7pa3QdTNglKf2nakPfDmQxpa2RSiWFvQZ7ShDj4XRcVr1Lyf19RZpOhMWzzO9tZd0T5Ifce0V1897iy3bdmX9ZuE/NETGBSueVTtyZSBtgi9rLnbwIO3tFIfTes38Aam1QFBUXz6lnwm0NO8wf/S3xSEcU7O/X/NxsbGxsbGxsbG7+EX+jGYWX+XAIcAAAAASUVORK5CYII=" alt="USA Today" class="home-news-usat" data-pagespeed-url-hash="749067388" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"></div>
<div><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGIAAAA4CAMAAAAxbt2tAAAAM1BMVEUAAAB/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1KFQ2UAAAAEHRSTlMAECAwQFBgcICPn6+/z9/vIxqCigAAAsdJREFUWMPtl9vS6iAMhcsZyvH9n3YrCTS0herMf7fNhaNI8wVYXcC2/eIXv/ifQmjbQtYG9fpm+KkXe/dStKU+gZ+rkHsuR7z7ygTf3dDPQmMikNqAn/PQqQzxQuj+I7Kj495b9VcIHko5IzgZlDuPoYb4AqFyuSJ2+lO2daCN8XNEn5HsrZIQHJ6ICspO2NXAoFToC/YRohGC2uShKFkzMysNzVaBVlgWa0n8M4REhUhOp8bW5iBLZoFMfP0ubXECqvoIwWAdPHfjWjRE8TRbQxTpiKoeEFD6DiO/Q9SMrzADIrGq8syeERxKPBMoomXjFIEdin9G7FALvhd5N01RB6K4I9uBKMJ3OS8RoHNjsHR2UgEgioDZVAMiwCom9oAw0Kt2zuIiNERE7MAoohjd3vwlog7W6uENviKKVZiNIjLajlwjanWidt23OaJno4iX0NFHVoi6FBn+5AtECWCKaUAUdBe7QkAeQV3oHlGUIZ7YEJlqfYmQxAtmCJqtI5qc/wZRdnGDaD7yNwiSmCAiSw8IDqtQ/2RTRISl5mlAeCrnhWgheRq34ssANbGtjgABF+4fEHUNtTtM834OA/WRhkCTx91ginAg+ss544SAtwJ9pCHwqNAMboaASiSUF/lUCZhNDYgtUZuemnmig83ucEI1ii0SH+kISX1kioCVNLLcxoGQxEc6ArdM8JH5xgpK1PoBAasGPnIg2pYRlwisX4u0RrS9OlLEpg4fWRxy0AIcs3mFwGxvHyEIlPPbR1ZHNdy3k2ban4ayU2/Bvdq1RQd/QDknUH6+R3QPTU6xu4030BNX4igRQY+g+8b8ndN1hi/LsMOBttUzGEQLMz382yWCn6Z0vF0I0pjZ9sUF4+5yQa4c4TSZpR2DlvewCYEeG7qyPduujKyfLpNMuXB+ObIfjz7MhGvjxvfXc9Hx34X8F794iH8hFX4S3IfbxQAAAABJRU5ErkJggg==" alt="CNN" data-pagespeed-url-hash="2270525208" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"></div>
<div><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFQAAAA4CAMAAABUgy/SAAAAM1BMVEUAAAB/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1KFQ2UAAAAEHRSTlMAECAwQFBgcICPn6+/z9/vIxqCigAAA/1JREFUWMPtmEm27CgMREMgAwYBsf/V1gBwnzWo2a/zmbxM7LxGTUjyA/6u/9Py/t+vq/6+Fkon2Uu47bq8b8Gyh48pJTOznFLK0c3rkltKNYdkH8itca22nduxBwAIJBMAzr9SuQsA+J4BIJMf0Mzr2s/tMuF3KJSsAkhr47p9QO9MMo/tnVz+tDsU49FpfoN7Q+NAVUtWx8cAABvZjmg8oEZ2oC4oyhPqOsmefCxWgk+dZBcA7eII2AtK4HTl9oTuJLP4EarmJY+fBpLxjOTXSZdNAJ7QToZxXI5DBrIBleQlBePTp3l8zwIASI/kJsM1VhkIpAPvULlCtxF9I0mWIO8U5T7vn0cFkKlKku5+K0lmVQ29HvlLkrTwgKYmNygBSB9QfENjr1GA4aKZOvfTJvoXVPkTmgBAOrsCkNNr90gpqwAXmQLSfpuf5kmmMNy+fnmrO44s466xEqSS8gyU3qCepOnwpGaeF9ZqpIks91RIJes4+wmVe56OR+Z1rvqCRpJNpYyEEm0jp/cbNHxB+/HI+oRKG1mxxRQ12PQr3O3p9gXlduYlH1mlfC4/5Zt/FRQhWfQMub6CeiYxL0UKUs8qVR/QjexOeRx1O59/UvsF2bfTU3oU3GdB6R5K9plIVt9Shbto/7RD9r4BkGyp3NpJ7lkA7Xvrcdwgn43PxWJmJbrHbk5pVwA+XdYmACAC+L1YKeEPHhbMzMxGdHb7vTzWJwAIZmYBWmrJG/RRpEW1kmyjkWuOOjaiqureyayNZFGBFpJ1jCROLakv1Q+Vvlu0Xbp90rmhS9YJ+xQZNpJcge4O1mVq8gPaz9r1gMIzDZZb6pyh1oqwUn77gsazzD6hyAnoq7OWy6gR54gBAO0DOvpCeEM9oGGwyhL0rE3N4SwO8QuqXCPEDSq8FAeZhWT4yTfglKn7gmJfsbpBtwkVchaPukIad4AcrQpA/oJKn+3jBjUeVWqYKqM5AKh+NjYLMrvNCzosrDeoK0c/jTOpRg13gGtzYCLJEj/qiR3JGk9otXY2aT99OYQQgZCxzPtoewfUj1hdzY9n55+shn0kQtlGtH5T7Zj+mG8+zbyOhoYtDyFAZl5JPLDuEzqMsa/oL4Hu2xDCtuXjvcXv/dKDntDZqm7J368DJ0OTKaocgKM0Seof9tu1sDxlOuZdFJK1zEe3LkP9K479N9R/QnM6zAgrVcvoy/7Sj39BkT6g0tMhKreEEAb0MhfQ/4JKe0PXe02dUkJc9AtJ37XPLmP1E6rLsLjeK/yi6znr5u5/Q2F3qMvX6dEtIcRjXKpuDCP+q/GtTWfePzvezMD1zoh9Wu02+L3lGEt2/7Xtbmsc8rdAO1X5+w+Muf4BWxVS/yRCumkAAAAASUVORK5CYII=" alt="CBS News" data-pagespeed-url-hash="829207692" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"></div>
<div>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMwAAAA4CAMAAACG/+fPAAAAM1BMVEUAAAB/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1/jI1KFQ2UAAAAEHRSTlMAECAwQFBgcICPn6+/z9/vIxqCigAABRlJREFUaN7tmNty4zoORTdIiuKd6/+/dh4o2ZbbyXRnzlT1qdJ+SOKYt0WAIEDp1q1bt27dunXr1q1bt279fbIQ/op1uOB/3jmUVqKT5MrwkuR+p9M/sOrt+jG2ljdJ2kazHw6ZAaDvXjtdstI+tkuwWH0LSul7I++teClIOX7ZpnD52Nc6anSq7D80KhfJdT7CbADTJBsA38N0AKdkDaJtH007uMDsl2UkbT/hCZdBWph8hskdIJ87+K0rxlKBpDIAPvqMda4w7bKOPUL8CUyUbWta2NS/gCkL29U4YDw322+fDoMDkrL1L43o32DKNPm9TgCmP9zgT9WdpeoVYh4lSO0LGJMAqiT3smeRz6EHSEoKX3vkG4zvcqVI2157Nu3Mn8Q020a3UJDSYe72RcsygXAJZZ5/CkZun7viaMfw+XdZLnHVT1KFC4wf51CuPs2QEot09beclGBukqzv0ku3X2F8K6tX3WQ17mHB1BrSfti4p+XjQZJSXCHP6wiJ8bnHqR52qN1t7Rp5ekhXmAjTm0lK83RdX0k2gXjMFie4DWCX61AUJ8T0EcYVoJtknRk6sM5MfAQTD8W1B0yBbbX21iAqQ5E/4+AmSftcs786PZsSoDjjgpkFmMUUxwDyGW2SdmBIQQqdCVUFQA2YAY6ryMo6+MUnIMkKJKDv+QxaTYDcc/wKayetdG9lwiypA7MClAm0KLlGW4sY1AnTXUOiUwLiOhANmjIQlKClc+fWFg9gV1B4dKiAjBPVnmE2KccFEwBFoHvrwN6KCVCrcbmTDNqavMCQRSB5FSBkIPnjzjiMmtQgub3ub+fQ3izTpAeMjcOQY8a0rs5pC0Yd8vpLzzUfYy7L5PryRYamNdXRaD/8ZV137WmZ0xOOhXRIR3cBKtBXAz+3N5igtzPzAnMgSr5bOjY9HTCBpI8wo6+zkrW9fJF+gRnPyyTAPCcPeoNpkI7uAmSzmhrMfV7PDJCVYEhJyu8wrjxDZDoThgVjJegzjC92CQBfwezHxXUMc6xaQT58C5PiyhVJb/nKgGl5RElJ+zvMyC/XcDoO6gFTTF/AvEezr2DUOR3NA029OElB7VuYY38jUdsVpgCHJ6VIfIPpkuRslRnFjsQ0PNZt9j/BvGQtA6juqEmw72DcqlNiPI/aNWtuTpI1pr3BUKSQTbICkC2ovFjGFwuALWf9FiZ/gPHKQJU7vIZkktygSg2KZMCmdh4FM637yorfxujpDeaoZ1pqE5K2CZQNCG4F+H1/qXpGlE2ClQn0/YxvHmAP9M8ZQAYoiRFWtlySVwRmcQOo/lHPzJob4OUHkNLyGwA/gJ7yBEasppWRM6+lQnkk3kVu7zC8B5yzOGGu3GVls6yTF8z8XN4ZcgX6vuB+yc02YDfnJ9CjpD1MmF57ntBNG+cOnNXZmmXzE4qsQ1GFIj8hyZ2J+FG61PdaJK78fzFab3YESsnP7s7F1VBWmmUjSPLzTMQy1eQ69TVWtJRSqvG8ol1fLrTGtPW7mKTaz26Wz5rqaLevVpL1ImlbFY71lQ1Stz4/1X0hpbRdS+SVZDh7JArukaAGt87+I1WVJHvNcs+kcksprd2w5w6eHZ2uwxztH+O45097+cc5VKxmv1Px+El/a+dHsT8o+KokH1Nrrf7fnnzc7zy8KM+Rfl35HzxEBRjjcQL+jgesH8u/PU78u/V4nWj93w9jqbWWo5fU/+1udnke2+6H71u3bt26devWrf+q/wAH/2XvxSG9SgAAAABJRU5ErkJggg==" alt="New York Times" class="home-news-nyt" data-pagespeed-url-hash="3483006084" onload="pagespeed.CriticalImages.checkImageForCriticality(this);">
<a href="/about/press/">View press ></a>
</div>
</div>
</div>
<div class="container content-body">
<div class="row">
<div class="col-md-8 col-sm-12">
<div id="bottom-widgets"><div class="bottom-widgets" data-reactid=".1w79rewakdo" data-react-checksum="125054610"><div id="specialty-widget" data-reactid=".1w79rewakdo.1"><div class="widget-specialties-main hidden-xs" data-reactid=".1w79rewakdo.1.0"><h3 data-reactid=".1w79rewakdo.1.0.0"> Find a Doctor by Specialty </h3><div class="row" data-reactid=".1w79rewakdo.1.0.1"><div class="col-sm-6" data-reactid=".1w79rewakdo.1.0.1.0"><ul class="list-unstyled first" data-reactid=".1w79rewakdo.1.0.1.0.0"><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-45"><a href="/best-doctors/va/ashburn/acupuncturist/" aria-label="Best Acupuncturist near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-45.0">Acupuncturist</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-41"><a href="/best-doctors/va/ashburn/allergist-immunologist/" aria-label="Best Allergist / Immunologist near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-41.0">Allergist / Immunologist</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-34"><a href="/best-doctors/va/ashburn/anesthesiologist/" aria-label="Best Anesthesiologist near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-34.0">Anesthesiologist</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-51"><a href="/best-doctors/va/ashburn/audiologist/" aria-label="Best Audiologist near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-51.0">Audiologist</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-43"><a href="/best-doctors/va/ashburn/bariatric-weight-loss/" aria-label="Best Bariatric / Weight Loss Specialist near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-43.0">Bariatric / Weight Loss Specialist</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-31"><a href="/best-doctors/va/ashburn/cardiologist/" aria-label="Best Cardiologist near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-31.0">Cardiologist</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-46"><a href="/best-doctors/va/ashburn/cardiothoracic-surgeon/" aria-label="Best Cardiothoracic Surgeon near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-46.0">Cardiothoracic Surgeon</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-5"><a href="/best-doctors/va/ashburn/chiropractor/" aria-label="Best Chiropractor near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-5.0">Chiropractor</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-13"><a href="/best-doctors/va/ashburn/colorectal-proctologist/" aria-label="Best Colorectal Surgeon / Proctologist near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-13.0">Colorectal Surgeon / Proctologist</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-2"><a href="/best-doctors/va/ashburn/dentist/" aria-label="Best Dentist near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-2.0">Dentist</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-18"><a href="/best-doctors/va/ashburn/dermatologist/" aria-label="Best Dermatologist near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-18.0">Dermatologist</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-96"><a href="/best-doctors/va/ashburn/dietitian/" aria-label="Best Dietitian near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-96.0">Dietitian</a></li><li data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-9"><a href="/best-doctors/va/ashburn/ear-nose-and-throat-ent/" aria-label="Best Ear, Nose, and Throat Doctor / Otolaryngologist (ENT) near you" data-reactid=".1w79rewakdo.1.0.1.0.0.0:$specialty-9.0">Ear, Nose, and Throat Doctor / Otolaryngologist (ENT)</a></li></ul></div><div class="col-sm-6" data-reactid=".1w79rewakdo.1.0.1.1"><ul class="list-unstyled " data-reactid=".1w79rewakdo.1.0.1.1.0"><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-29"><a href="/best-doctors/va/ashburn/emergency-critical/" aria-label="Best Emergency Room Doctor near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-29.0">Emergency Room Doctor</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-12"><a href="/best-doctors/va/ashburn/endocrinologist/" aria-label="Best Endocrinologist near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-12.0">Endocrinologist</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-49"><a href="/best-doctors/va/ashburn/endodontist-root-canal/" aria-label="Best Endodontist near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-49.0">Endodontist</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-1"><a href="/best-doctors/va/ashburn/family-gp/" aria-label="Best Family Doctor / General Practitioner near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-1.0">Family Doctor / General Practitioner</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-21"><a href="/best-doctors/va/ashburn/gastroenterologist/" aria-label="Best Gastroenterologist near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-21.0">Gastroenterologist</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-23"><a href="/best-doctors/va/ashburn/surgeon-general/" aria-label="Best General Surgeon near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-23.0">General Surgeon</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-50"><a href="/best-doctors/va/ashburn/geneticist/" aria-label="Best Geneticist near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-50.0">Geneticist</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-3"><a href="/best-doctors/va/ashburn/gynecologist-obgyn/" aria-label="Best Gynecologists and Obstetricians (OBGYN) near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-3.0">Gynecologists and Obstetricians (OBGYN)</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-88"><a href="/best-doctors/va/ashburn/homeopath/" aria-label="Best Homeopath near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-88.0">Homeopath</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-33"><a href="/best-doctors/va/ashburn/infectious-disease/" aria-label="Best Infectious Disease Specialist near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-33.0">Infectious Disease Specialist</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-17"><a href="/best-doctors/va/ashburn/internist-geriatrician/" aria-label="Best Internist / Geriatrician near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-17.0">Internist / Geriatrician</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-85"><a href="/best-doctors/va/ashburn/registered-massage-therapist/" aria-label="Best Massage Therapist near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-85.0">Massage Therapist</a></li><li data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-47"><a href="/best-doctors/va/ashburn/midwife/" aria-label="Best Midwife near you" data-reactid=".1w79rewakdo.1.0.1.1.0.0:$specialty-47.0">Midwife</a></li><li class="widget-specialties-all" data-reactid=".1w79rewakdo.1.0.1.1.0.1"><a href="/specialties/" data-reactid=".1w79rewakdo.1.0.1.1.0.1.0"> View all Specialties </a></li></ul></div></div></div></div></div></div>
</div>
<div class="hidden-xs hidden-sm col-md-4 col-right">
<div id="location-detail-side-top-locations-list-container"><div class="widget widget-locations-top" data-reactid=".12c4tzgf7ui" data-react-checksum="-599843787"><h3 data-reactid=".12c4tzgf7ui.0">Top Facilities</h3><div class="widget-subheading" data-reactid=".12c4tzgf7ui.1"><span data-reactid=".12c4tzgf7ui.1.0">in </span><span data-reactid=".12c4tzgf7ui.1.1">Ashburn</span><span data-reactid=".12c4tzgf7ui.1.2"> </span></div><div class="widget-location-container" data-reactid=".12c4tzgf7ui.2"><div class="widget-underline" data-reactid=".12c4tzgf7ui.2.$0"><div class="widget-location widget-item" data-reactid=".12c4tzgf7ui.2.$0.0"><a href="/clinic/us-va-ashburn-ashburn-psychological-services/" data-reactid=".12c4tzgf7ui.2.$0.0.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCABGAEYDASIAAhEBAxEB/8QAGwABAQADAQEBAAAAAAAAAAAAAAYFBwgCBAP/xAA2EAABAwMDAgMEBwkAAAAAAAABAgMEAAURBiExBxITM1FBcpGxFBVCYXGBoSIkNVJ0grLB0f/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP/xAAcEQEBAAIDAQEAAAAAAAAAAAAAAQIREjFBUXH/2gAMAwEAAhEDEQA/AOtqUpQKV4kOpYjuPrz2toKzgZOACTj4Vr259RnXCW7Vb0pzsFvnuO/GEjb4k1ZNpcpO2xaVonVmrep+n7yiWlqSqKtkKLL0QLbByc7AZTwPaK+3T/XmKshrUFjdYUNlOwl94H3lCsEfkTTVTlPW6aVN6d11pK/lKLbfIqnlcMPHwnM+narBP5ZqkqLLspSlFKUrG6nuwslocuCo6nwlaUBAV25JOAc4NEt0+i8fwib/AE7n+BrULt3iHStutjUdYkx5BfccIACtzgZG5OCOeKyd119dpjLjDMeLGacSUnAK1YIwdyccH0rGPyrQNK2+Ky0kXFEguPrDWCUAnAKvbsRtWpNOeWUvTEa56k3ePf21v2iOI6mQUjK0HGTnCjsfhWMOstHXoBN6sym1HlamQ4B/cnCh8Kotd9TLYu9pYkWZ9bHgDcrQs7k8pIx+tTq7n01ux/eYaYjh5UWFNEH8UZFaiX9YfUEDSjUm0zNOzA6pc9pDjPilQQO4EHBGRvtvXVjvmr94/OuU79Z9NwpVpmWC5/Si5PaQtvxgvsHcDngEbjG9dWO+av3j86zk1g80pSsuhUz1OGdJODOMyGhn8VVTVM9ThnSTic4zIaGfT9qk7SsHI0bp2BEdcl3kuOpbUUpLyEAqAJAwMk742qYfFmTpW3qbLZuhkEyQCSoIBOMjgDjiqd/QlmixHXnbw4pxDalgZbRkgEge081NOwbUnS9umh8Gc9J7X2y8D2oyd+3kcDc1tzs14/HX+ounr14bjyLc0UhgAKMDAAyeCN6mVQ+mE7y5bUVR/leW3j8lAiqbX9q6auXltCpsVtYZAymYsEjJxuSRU2rSWhZAzHvvhk8YnIP6EUnSXe2Gv1hsVslWqXZrr9M8We0hSPFQvtHcDnI39mN66sd81fvH51ypf9MWuxyrTKt10MwuzmmykqQcDuBzlJ+7HFdVu+av3j86mTWHrzSlKy6FTPU4Z0k4M4zIaGfxVVNWN1NaE3u0Lt6n1MBS0q7wnuIwc4xkc1YmU3EdI6fQWYjz5u7iyhtSwA2gZIBIHJ9KnZNiYa0fbr2H3S7LkFpTZA7UgFW4POdhz61SL6bH7N5+Mf8A4qshM0jPkabi2P6xiBiM8XUr8FYWSc7HfH2j8Ku3PjfiD1/04sirw2freU2fAAwS2fad9wKmV9NLWc9t/WPebQf9iqnUfRa6Xa4pkov0FtIbCCFMrJ2JOdj99fCjoFOwPE1REB9Ew1n5qFXcON+Iu+6Sj6dl2qSxc0yy7PabKQ2EkDuBzsT6V1c75q/ePzrSEDoO5HmMSF6nbV4TqHClMIjOCDjJX7cVu9RyonjJJrOV21jLO3mlKVGylKUClKUClKUClKUClKUH/9k=" alt="Image link for Ashburn Psychological Services" data-reactid=".12c4tzgf7ui.2.$0.0.0.0" data-pagespeed-url-hash="1834789204" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><span class="widget-location-name" data-reactid=".12c4tzgf7ui.2.$0.0.0.1">Ashburn Psychological Services</span></a><div title="5.00" class="star-rating" data-reactid=".12c4tzgf7ui.2.$0.0.1"><span class="stars" data-reactid=".12c4tzgf7ui.2.$0.0.1.0"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$0.0.1.0.0"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$0.0.1.0.0.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$0.0.1.0.1"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$0.0.1.0.1.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$0.0.1.0.2"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$0.0.1.0.2.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$0.0.1.0.3"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$0.0.1.0.3.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$0.0.1.0.4"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$0.0.1.0.4.0"></path></svg></span></div><span data-reactid=".12c4tzgf7ui.2.$0.0.2"><span data-reactid=".12c4tzgf7ui.2.$0.0.2.0">#</span><span data-reactid=".12c4tzgf7ui.2.$0.0.2.1">1</span><span data-reactid=".12c4tzgf7ui.2.$0.0.2.2"> of </span><span data-reactid=".12c4tzgf7ui.2.$0.0.2.3">330</span></span></div><hr data-reactid=".12c4tzgf7ui.2.$0.1"></div><div class="widget-underline" data-reactid=".12c4tzgf7ui.2.$1"><div class="widget-location widget-item" data-reactid=".12c4tzgf7ui.2.$1.0"><a href="/clinic/us-va-ashburn-ebc-llc/" data-reactid=".12c4tzgf7ui.2.$1.0.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCABGAEYDASIAAhEBAxEB/8QAGwABAQADAQEBAAAAAAAAAAAAAAYFBwgCBAP/xAA2EAABAwMDAgMEBwkAAAAAAAABAgMEAAURBiExBxITM1FBcpGxFBVCYXGBoSIkNVJ0grLB0f/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP/xAAcEQEBAAIDAQEAAAAAAAAAAAAAAQIREjFBUXH/2gAMAwEAAhEDEQA/AOtqUpQKV4kOpYjuPrz2toKzgZOACTj4Vr259RnXCW7Vb0pzsFvnuO/GEjb4k1ZNpcpO2xaVonVmrep+n7yiWlqSqKtkKLL0QLbByc7AZTwPaK+3T/XmKshrUFjdYUNlOwl94H3lCsEfkTTVTlPW6aVN6d11pK/lKLbfIqnlcMPHwnM+narBP5ZqkqLLspSlFKUrG6nuwslocuCo6nwlaUBAV25JOAc4NEt0+i8fwib/AE7n+BrULt3iHStutjUdYkx5BfccIACtzgZG5OCOeKyd119dpjLjDMeLGacSUnAK1YIwdyccH0rGPyrQNK2+Ky0kXFEguPrDWCUAnAKvbsRtWpNOeWUvTEa56k3ePf21v2iOI6mQUjK0HGTnCjsfhWMOstHXoBN6sym1HlamQ4B/cnCh8Kotd9TLYu9pYkWZ9bHgDcrQs7k8pIx+tTq7n01ux/eYaYjh5UWFNEH8UZFaiX9YfUEDSjUm0zNOzA6pc9pDjPilQQO4EHBGRvtvXVjvmr94/OuU79Z9NwpVpmWC5/Si5PaQtvxgvsHcDngEbjG9dWO+av3j86zk1g80pSsuhUz1OGdJODOMyGhn8VVTVM9ThnSTic4zIaGfT9qk7SsHI0bp2BEdcl3kuOpbUUpLyEAqAJAwMk742qYfFmTpW3qbLZuhkEyQCSoIBOMjgDjiqd/QlmixHXnbw4pxDalgZbRkgEge081NOwbUnS9umh8Gc9J7X2y8D2oyd+3kcDc1tzs14/HX+ounr14bjyLc0UhgAKMDAAyeCN6mVQ+mE7y5bUVR/leW3j8lAiqbX9q6auXltCpsVtYZAymYsEjJxuSRU2rSWhZAzHvvhk8YnIP6EUnSXe2Gv1hsVslWqXZrr9M8We0hSPFQvtHcDnI39mN66sd81fvH51ypf9MWuxyrTKt10MwuzmmykqQcDuBzlJ+7HFdVu+av3j86mTWHrzSlKy6FTPU4Z0k4M4zIaGfxVVNWN1NaE3u0Lt6n1MBS0q7wnuIwc4xkc1YmU3EdI6fQWYjz5u7iyhtSwA2gZIBIHJ9KnZNiYa0fbr2H3S7LkFpTZA7UgFW4POdhz61SL6bH7N5+Mf8A4qshM0jPkabi2P6xiBiM8XUr8FYWSc7HfH2j8Ku3PjfiD1/04sirw2freU2fAAwS2fad9wKmV9NLWc9t/WPebQf9iqnUfRa6Xa4pkov0FtIbCCFMrJ2JOdj99fCjoFOwPE1REB9Ew1n5qFXcON+Iu+6Sj6dl2qSxc0yy7PabKQ2EkDuBzsT6V1c75q/ePzrSEDoO5HmMSF6nbV4TqHClMIjOCDjJX7cVu9RyonjJJrOV21jLO3mlKVGylKUClKUClKUClKUClKUH/9k=" alt="Image link for EBC, LLC" data-reactid=".12c4tzgf7ui.2.$1.0.0.0" data-pagespeed-url-hash="1834789204" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><span class="widget-location-name" data-reactid=".12c4tzgf7ui.2.$1.0.0.1">EBC, LLC</span></a><div title="5.00" class="star-rating" data-reactid=".12c4tzgf7ui.2.$1.0.1"><span class="stars" data-reactid=".12c4tzgf7ui.2.$1.0.1.0"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$1.0.1.0.0"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$1.0.1.0.0.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$1.0.1.0.1"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$1.0.1.0.1.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$1.0.1.0.2"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$1.0.1.0.2.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$1.0.1.0.3"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$1.0.1.0.3.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$1.0.1.0.4"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$1.0.1.0.4.0"></path></svg></span></div><span data-reactid=".12c4tzgf7ui.2.$1.0.2"><span data-reactid=".12c4tzgf7ui.2.$1.0.2.0">#</span><span data-reactid=".12c4tzgf7ui.2.$1.0.2.1">2</span><span data-reactid=".12c4tzgf7ui.2.$1.0.2.2"> of </span><span data-reactid=".12c4tzgf7ui.2.$1.0.2.3">330</span></span></div><hr data-reactid=".12c4tzgf7ui.2.$1.1"></div><div class="widget-underline" data-reactid=".12c4tzgf7ui.2.$2"><div class="widget-location widget-item" data-reactid=".12c4tzgf7ui.2.$2.0"><a href="/clinic/us-va-ashburn-elle-aesthetic-arts-plastic-surgery/" data-reactid=".12c4tzgf7ui.2.$2.0.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="https://cdn1.ratemds.com/media/locations/location/image/image_upload_o4pIR0p.jpg_thumbs/v1_at_70x70.jpg" width="70" height="70" alt="Image link for Elle Aesthetic Arts & Plastic Surgery" data-reactid=".12c4tzgf7ui.2.$2.0.0.0" data-pagespeed-url-hash="2296912216" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><span class="widget-location-name" data-reactid=".12c4tzgf7ui.2.$2.0.0.1">Elle Aesthetic Arts & Plastic Surgery</span></a><div title="5.00" class="star-rating" data-reactid=".12c4tzgf7ui.2.$2.0.1"><span class="stars" data-reactid=".12c4tzgf7ui.2.$2.0.1.0"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$2.0.1.0.0"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$2.0.1.0.0.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$2.0.1.0.1"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$2.0.1.0.1.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$2.0.1.0.2"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$2.0.1.0.2.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$2.0.1.0.3"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$2.0.1.0.3.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$2.0.1.0.4"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$2.0.1.0.4.0"></path></svg></span></div><span data-reactid=".12c4tzgf7ui.2.$2.0.2"><span data-reactid=".12c4tzgf7ui.2.$2.0.2.0">#</span><span data-reactid=".12c4tzgf7ui.2.$2.0.2.1">3</span><span data-reactid=".12c4tzgf7ui.2.$2.0.2.2"> of </span><span data-reactid=".12c4tzgf7ui.2.$2.0.2.3">330</span></span></div><hr data-reactid=".12c4tzgf7ui.2.$2.1"></div><div class="widget-underline" data-reactid=".12c4tzgf7ui.2.$3"><div class="widget-location widget-item" data-reactid=".12c4tzgf7ui.2.$3.0"><a href="/clinic/us-va-ashburn-dr-pouran-nikkhah-dmd/" data-reactid=".12c4tzgf7ui.2.$3.0.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCABGAEYDASIAAhEBAxEB/8QAGwABAQADAQEBAAAAAAAAAAAAAAYFBwgCBAP/xAA2EAABAwMDAgMEBwkAAAAAAAABAgMEAAURBiExBxITM1FBcpGxFBVCYXGBoSIkNVJ0grLB0f/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP/xAAcEQEBAAIDAQEAAAAAAAAAAAAAAQIREjFBUXH/2gAMAwEAAhEDEQA/AOtqUpQKV4kOpYjuPrz2toKzgZOACTj4Vr259RnXCW7Vb0pzsFvnuO/GEjb4k1ZNpcpO2xaVonVmrep+n7yiWlqSqKtkKLL0QLbByc7AZTwPaK+3T/XmKshrUFjdYUNlOwl94H3lCsEfkTTVTlPW6aVN6d11pK/lKLbfIqnlcMPHwnM+narBP5ZqkqLLspSlFKUrG6nuwslocuCo6nwlaUBAV25JOAc4NEt0+i8fwib/AE7n+BrULt3iHStutjUdYkx5BfccIACtzgZG5OCOeKyd119dpjLjDMeLGacSUnAK1YIwdyccH0rGPyrQNK2+Ky0kXFEguPrDWCUAnAKvbsRtWpNOeWUvTEa56k3ePf21v2iOI6mQUjK0HGTnCjsfhWMOstHXoBN6sym1HlamQ4B/cnCh8Kotd9TLYu9pYkWZ9bHgDcrQs7k8pIx+tTq7n01ux/eYaYjh5UWFNEH8UZFaiX9YfUEDSjUm0zNOzA6pc9pDjPilQQO4EHBGRvtvXVjvmr94/OuU79Z9NwpVpmWC5/Si5PaQtvxgvsHcDngEbjG9dWO+av3j86zk1g80pSsuhUz1OGdJODOMyGhn8VVTVM9ThnSTic4zIaGfT9qk7SsHI0bp2BEdcl3kuOpbUUpLyEAqAJAwMk742qYfFmTpW3qbLZuhkEyQCSoIBOMjgDjiqd/QlmixHXnbw4pxDalgZbRkgEge081NOwbUnS9umh8Gc9J7X2y8D2oyd+3kcDc1tzs14/HX+ounr14bjyLc0UhgAKMDAAyeCN6mVQ+mE7y5bUVR/leW3j8lAiqbX9q6auXltCpsVtYZAymYsEjJxuSRU2rSWhZAzHvvhk8YnIP6EUnSXe2Gv1hsVslWqXZrr9M8We0hSPFQvtHcDnI39mN66sd81fvH51ypf9MWuxyrTKt10MwuzmmykqQcDuBzlJ+7HFdVu+av3j86mTWHrzSlKy6FTPU4Z0k4M4zIaGfxVVNWN1NaE3u0Lt6n1MBS0q7wnuIwc4xkc1YmU3EdI6fQWYjz5u7iyhtSwA2gZIBIHJ9KnZNiYa0fbr2H3S7LkFpTZA7UgFW4POdhz61SL6bH7N5+Mf8A4qshM0jPkabi2P6xiBiM8XUr8FYWSc7HfH2j8Ku3PjfiD1/04sirw2freU2fAAwS2fad9wKmV9NLWc9t/WPebQf9iqnUfRa6Xa4pkov0FtIbCCFMrJ2JOdj99fCjoFOwPE1REB9Ew1n5qFXcON+Iu+6Sj6dl2qSxc0yy7PabKQ2EkDuBzsT6V1c75q/ePzrSEDoO5HmMSF6nbV4TqHClMIjOCDjJX7cVu9RyonjJJrOV21jLO3mlKVGylKUClKUClKUClKUClKUH/9k=" alt="Image link for Dr. Pouran Nikkhah, DMD" data-reactid=".12c4tzgf7ui.2.$3.0.0.0" data-pagespeed-url-hash="1834789204" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><span class="widget-location-name" data-reactid=".12c4tzgf7ui.2.$3.0.0.1">Dr. Pouran Nikkhah, DMD</span></a><div title="5.00" class="star-rating" data-reactid=".12c4tzgf7ui.2.$3.0.1"><span class="stars" data-reactid=".12c4tzgf7ui.2.$3.0.1.0"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$3.0.1.0.0"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$3.0.1.0.0.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$3.0.1.0.1"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$3.0.1.0.1.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$3.0.1.0.2"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$3.0.1.0.2.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$3.0.1.0.3"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$3.0.1.0.3.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$3.0.1.0.4"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$3.0.1.0.4.0"></path></svg></span></div><span data-reactid=".12c4tzgf7ui.2.$3.0.2"><span data-reactid=".12c4tzgf7ui.2.$3.0.2.0">#</span><span data-reactid=".12c4tzgf7ui.2.$3.0.2.1">4</span><span data-reactid=".12c4tzgf7ui.2.$3.0.2.2"> of </span><span data-reactid=".12c4tzgf7ui.2.$3.0.2.3">330</span></span></div><hr data-reactid=".12c4tzgf7ui.2.$3.1"></div><div data-reactid=".12c4tzgf7ui.2.$4"><div class="widget-location widget-item" data-reactid=".12c4tzgf7ui.2.$4.0"><a href="/clinic/us-va-ashburn-dr-courtney-j-ullrich-dmd/" data-reactid=".12c4tzgf7ui.2.$4.0.0"><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCABGAEYDASIAAhEBAxEB/8QAGwABAQADAQEBAAAAAAAAAAAAAAYFBwgCBAP/xAA2EAABAwMDAgMEBwkAAAAAAAABAgMEAAURBiExBxITM1FBcpGxFBVCYXGBoSIkNVJ0grLB0f/EABcBAQEBAQAAAAAAAAAAAAAAAAABAgP/xAAcEQEBAAIDAQEAAAAAAAAAAAAAAQIREjFBUXH/2gAMAwEAAhEDEQA/AOtqUpQKV4kOpYjuPrz2toKzgZOACTj4Vr259RnXCW7Vb0pzsFvnuO/GEjb4k1ZNpcpO2xaVonVmrep+n7yiWlqSqKtkKLL0QLbByc7AZTwPaK+3T/XmKshrUFjdYUNlOwl94H3lCsEfkTTVTlPW6aVN6d11pK/lKLbfIqnlcMPHwnM+narBP5ZqkqLLspSlFKUrG6nuwslocuCo6nwlaUBAV25JOAc4NEt0+i8fwib/AE7n+BrULt3iHStutjUdYkx5BfccIACtzgZG5OCOeKyd119dpjLjDMeLGacSUnAK1YIwdyccH0rGPyrQNK2+Ky0kXFEguPrDWCUAnAKvbsRtWpNOeWUvTEa56k3ePf21v2iOI6mQUjK0HGTnCjsfhWMOstHXoBN6sym1HlamQ4B/cnCh8Kotd9TLYu9pYkWZ9bHgDcrQs7k8pIx+tTq7n01ux/eYaYjh5UWFNEH8UZFaiX9YfUEDSjUm0zNOzA6pc9pDjPilQQO4EHBGRvtvXVjvmr94/OuU79Z9NwpVpmWC5/Si5PaQtvxgvsHcDngEbjG9dWO+av3j86zk1g80pSsuhUz1OGdJODOMyGhn8VVTVM9ThnSTic4zIaGfT9qk7SsHI0bp2BEdcl3kuOpbUUpLyEAqAJAwMk742qYfFmTpW3qbLZuhkEyQCSoIBOMjgDjiqd/QlmixHXnbw4pxDalgZbRkgEge081NOwbUnS9umh8Gc9J7X2y8D2oyd+3kcDc1tzs14/HX+ounr14bjyLc0UhgAKMDAAyeCN6mVQ+mE7y5bUVR/leW3j8lAiqbX9q6auXltCpsVtYZAymYsEjJxuSRU2rSWhZAzHvvhk8YnIP6EUnSXe2Gv1hsVslWqXZrr9M8We0hSPFQvtHcDnI39mN66sd81fvH51ypf9MWuxyrTKt10MwuzmmykqQcDuBzlJ+7HFdVu+av3j86mTWHrzSlKy6FTPU4Z0k4M4zIaGfxVVNWN1NaE3u0Lt6n1MBS0q7wnuIwc4xkc1YmU3EdI6fQWYjz5u7iyhtSwA2gZIBIHJ9KnZNiYa0fbr2H3S7LkFpTZA7UgFW4POdhz61SL6bH7N5+Mf8A4qshM0jPkabi2P6xiBiM8XUr8FYWSc7HfH2j8Ku3PjfiD1/04sirw2freU2fAAwS2fad9wKmV9NLWc9t/WPebQf9iqnUfRa6Xa4pkov0FtIbCCFMrJ2JOdj99fCjoFOwPE1REB9Ew1n5qFXcON+Iu+6Sj6dl2qSxc0yy7PabKQ2EkDuBzsT6V1c75q/ePzrSEDoO5HmMSF6nbV4TqHClMIjOCDjJX7cVu9RyonjJJrOV21jLO3mlKVGylKUClKUClKUClKUClKUH/9k=" alt="Image link for Dr. Courtney J. Ullrich, DMD" data-reactid=".12c4tzgf7ui.2.$4.0.0.0" data-pagespeed-url-hash="1834789204" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"><span class="widget-location-name" data-reactid=".12c4tzgf7ui.2.$4.0.0.1">Dr. Courtney J. Ullrich, DMD</span></a><div title="5.00" class="star-rating" data-reactid=".12c4tzgf7ui.2.$4.0.1"><span class="stars" data-reactid=".12c4tzgf7ui.2.$4.0.1.0"><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$4.0.1.0.0"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$4.0.1.0.0.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$4.0.1.0.1"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$4.0.1.0.1.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$4.0.1.0.2"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$4.0.1.0.2.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$4.0.1.0.3"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$4.0.1.0.3.0"></path></svg><svg width="18" height="18" viewBox="0 0 18 18" fill="none" class="selected" data-reactid=".12c4tzgf7ui.2.$4.0.1.0.4"><path d="M9.7361 1.45801L11.5721 5.17901C11.6921 5.42101 11.9231 5.58901 12.1901 5.62801L16.2961 6.22501C16.9691 6.32301 17.2381 7.15001 16.7511 7.62501L13.7801 10.52C13.5871 10.709 13.4981 10.98 13.5441 11.247L14.2451 15.336C14.3601 16.007 13.6561 16.518 13.0541 16.201L9.3821 14.27C9.1431 14.144 8.8571 14.144 8.6181 14.27L4.9461 16.201C4.3441 16.518 3.6401 16.006 3.7551 15.336L4.4561 11.247C4.5021 10.981 4.4131 10.709 4.2201 10.52L1.2491 7.62401C0.762101 7.14901 1.0311 6.32201 1.7041 6.22401L5.8101 5.62701C6.0771 5.58801 6.3081 5.42001 6.4281 5.17801L8.2641 1.45701C8.5651 0.847009 9.4351 0.847009 9.7361 1.45801Z" fill="#FA7D00" data-reactid=".12c4tzgf7ui.2.$4.0.1.0.4.0"></path></svg></span></div><span data-reactid=".12c4tzgf7ui.2.$4.0.2"><span data-reactid=".12c4tzgf7ui.2.$4.0.2.0">#</span><span data-reactid=".12c4tzgf7ui.2.$4.0.2.1">5</span><span data-reactid=".12c4tzgf7ui.2.$4.0.2.2"> of </span><span data-reactid=".12c4tzgf7ui.2.$4.0.2.3">330</span></span></div><hr data-reactid=".12c4tzgf7ui.2.$4.1"></div></div></div></div>
<div id="RateMDs_com_300x600_BottomLeft_OH_Content" class="ad">
<script data-cfasync="false" type="text/javascript">googletag.cmd.push(function(){deployads.push(function(){deployads.gpt.display("RateMDs_com_300x600_BottomLeft_OH_Content");});});</script>
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="ad-footer hidden-sm hidden-md hidden-lg">
<div id="RateMDs_com_300x250_Bottom_OH_Content" class="ad">
<script data-cfasync="false" type="text/javascript">googletag.cmd.push(function(){deployads.push(function(){deployads.gpt.display("RateMDs_com_300x250_Bottom_OH_Content");});});</script>
</div>
</div>
<div class="email-subscription">
<p>Sign up for our newsletter to get the latest health news and tips.</p>
<form action="https://email.ratemds.com/newsletter-signup/" method="post" target="_blank" novalidate>
<div class="input-group">
<label for="newsletter-email" class="hidden">Email Address</label>
<input id="newsletter-email" type="email" name="email" placeholder="Email Address" class="form-control" aria-label="Email Address" required>
<span class="input-group-btn">
<button type="submit" class="btn btn-success">Subscribe</button>
</span>
</div>
</form>
</div>
<div id="main-footer-container">
<div id="footer" class="container">
<div class="col-sm-3 col-xs-6 footer-column"><div>
<div class="list-heading">About RateMDs</div>
<ul class="list-unstyled">
<li><a href="/about/">About</a></li>
<li><a href="/about/press/">Press</a></li>
<li><a href="/about/contact/">Contact</a></li>
<li><a href="/about/faq/" onclick="if (!window.__cfRLUnblockHandlers) return false; return footerGA('FAQ')" data-cf-modified-1829c5604bde31646f390b3d-="">FAQ
</a>
</li>
<li><a href="/about/advertise/">Advertise</a></li>
<li><a href="/about/copyright/">Copyright</a></li>
<li><a href="/about/privacy/">Privacy</a> & <a href="/about/terms/">Terms</a></li>
<li><a href="/accessibility/">Accessibility</a></li>
<li>
<a href="/plans/doctor/" class="claim-doctor-profile" onclick="if (!window.__cfRLUnblockHandlers) return false; return footerGA('claim-doctor')" data-cf-modified-1829c5604bde31646f390b3d-="">
Claim Doctor Profile
</a>
</li>
</ul>
</div></div>
<div class="col-sm-3 col-xs-6 footer-column"><div>
<div class="list-heading">Top Specialties</div>
<ul class="list-unstyled">
<li><a href="/specialties/family-gp/" aria-label="Family G.P. Info">
Family G.P.
</a></li>
<li><a href="/specialties/gynecologist-obgyn/" aria-label="Gynecologist/OBGYN Info">
Gynecologist/OBGYN
</a></li>
<li><a href="/specialties/dentist/" aria-label="Dentist Info">
Dentist
</a></li>
<li><a href="/specialties/orthopedics-sports/" aria-label="Orthopedics/Sports Info">
Orthopedics/Sports
</a></li>
<li><a href="/specialties/cosmetic-plastic-surgeon/" aria-label="Cosmetic Surgeon Info">
Cosmetic Surgeon
</a></li>
<li><a href="/specialties/dermatologist/" aria-label="Dermatologist Info">
Dermatologist
</a></li>
<li><a href="/specialties/gastroenterologist/" aria-label="Gastroenterologist Info">
Gastroenterologist
</a></li>
<li><a href="/specialties/">View all specialties</a></li>
</ul>
</div></div>
<div class="col-sm-3 col-xs-6 footer-column"><div>
<div class="list-heading">Top Local Doctors</div>
<ul class="list-unstyled">
<li><a href="/best-doctors/ny/new-york/" aria-label="Best doctors in New York">
New York
</a></li>
<li><a href="/best-doctors/il/chicago/" aria-label="Best doctors in Chicago">
Chicago
</a></li>
<li><a href="/best-doctors/tx/houston/" aria-label="Best doctors in Houston">
Houston
</a></li>
<li><a href="/best-doctors/ca/los-angeles/" aria-label="Best doctors in Los Angeles">
Los Angeles
</a></li>
<li><a href="/best-doctors/ma/boston/" aria-label="Best doctors in Boston">
Boston
</a></li>
<li><a href="/best-doctors/on/toronto/" aria-label="best doctors in Toronto">
Toronto
</a></li>
<li><a href="/best-doctors/pa/philadelphia/" aria-label="Best doctors in Philadelphia">
Philadelphia
</a></li>
</ul>
</div></div>
<div class="col-sm-3 col-xs-6 footer-column"><div>
<div class="list-heading">Follow Us</div>
<ul class="list-unstyled">
<li><a href="https://www.facebook.com/ratemdsdotcom">
<i class="fa fa-fw fa-facebook-square"></i>
Facebook
</a></li>
<li><a href="https://twitter.com/RateMDsdotcom">
<i class="fa fa-fw fa-twitter-square"></i>
Twitter
</a></li>
</ul>
</div></div>
</div>
</div>
<div class="copyright">
©2004-2025 RateMDs Inc. <span class="hidden-xs">-</span>
<br class="visible-xs-inline">
The original doctor rating site.
<a class="qc-cmp-persistent-link" role="link" tabindex="0" style="display: none; cursor: pointer; float: right; color: #fff; margin-right: 2%;">Manage Consent</a>
<a class="qc-ccpa-persistent-link" role="link" tabindex="0" style="display: none; cursor: pointer; float: right; color: #fff; margin-right: 2%;">Do Not Sell My Data</a>
</div>
<div class="hidden-sm hidden-md hidden-lg mobile-catfish-ad fixed-ad">
<div id="RateMds_com_320x50_Bottom_OH_Content" style="width: auto; height: auto;">
<script data-cfasync="false" type="text/javascript">googletag.cmd.push(function(){deployads.push(function(){deployads.gpt.display("RateMds_com_320x50_Bottom_OH_Content");});});</script>
</div>
</div>
<script type="1829c5604bde31646f390b3d-text/javascript">function dismissCatfishAd(){let vsAdhesion=document.querySelector('.catfish-ad');vsAdhesion.style.display="none";googletag.pubads().getSlots().forEach(function(i){if(i.getSlotElementId()==="RateMDs_com_728x90_DesktopAdhesion_OH_Content"){vsAdhesion=i;}});if(window.deployads){deployads.push(function(){deployads.gpt.destroySlots([vsAdhesion]);});}else{googletag.cmd.push(function(){googletag.destroySlots([vsAdhesion]);});}};</script>
<div class='fixed-ad catfish-ad ad-block'>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49"></script><img class='catfish-ad__close-button' src="//www.ratemds.com/static/img/close-X-dark.8787ea323ecf.svg" alt="Close button" onclick="if (!window.__cfRLUnblockHandlers) return false; dismissCatfishAd()" data-pagespeed-url-hash="33768502" onload="pagespeed.CriticalImages.checkImageForCriticality(this);" data-cf-modified-1829c5604bde31646f390b3d-="" />
<div id='RateMDs_com_728x90_DesktopAdhesion_OH_Content'></div>
<script data-cfasync="false" type="text/javascript">googletag.cmd.push(function(){deployads.push(function(){deployads.gpt.display("RateMDs_com_728x90_DesktopAdhesion_OH_Content");});});</script>
</div>
</footer>
<script type="1829c5604bde31646f390b3d-text/javascript">window.DATA={};window.DATA.Header_props=JSON.parse("{\u0022bannerData\u0022:null,\u0022doctor\u0022:null,\u0022isLoggedIn\u0022:false,\u0022location\u0022:null,\u0022selectPlanView\u0022:false,\u0022user\u0022:{\u0022is_authenticated\u0022:false,\u0022is_superuser\u0022:false,\u0022is_sales\u0022:false,\u0022is_doctor\u0022:false,\u0022location\u0022:{\u0022city_name\u0022:\u0022Ashburn\u0022,\u0022city\u0022:\u0022ashburn\u0022,\u0022province_name\u0022:\u0022Virginia\u0022,\u0022province\u0022:\u0022va\u0022,\u0022country_name\u0022:\u0022united\u002Dstates\u0022,\u0022country\u0022:\u0022us\u0022},\u0022pending_verifications\u0022:[]},\u0022googleClientId\u0022:\u0022423015028912\u002D3lo9ijjc2r0plqst8iroaq98494bqmti.apps.googleusercontent.com\u0022}");window.URLS={"home":[["%(province)s/%(city)s/",["province","city"]],["",[]],["%(province)s/%(city)s/index.jsp",["province","city"]]],"cookie_setter_view":[["p/sc",[]]],"fractl_health_campaign":[["exploring-technology-use-for-health/",[]]],"fractl_campaign":[["dibs-on-the-doctor/",[]]],"doctor-list-amp":[["amp/best-doctors/%(province)s/%(city)s/%(specialty)s",["province","city","specialty"]],["amp/best-doctors/%(province)s/%(city)s",["province","city"]],["amp/best-doctors/%(province)s/",["province"]],["amp/best-doctors/",[]],["amp/best-doctors/%(province)s/%(city)s/%(specialty)s/index.jsp",["province","city","specialty"]],["amp/best-doctors/%(province)s/%(city)s/index.jsp",["province","city"]],["amp/best-doctors/%(province)s/index.jsp",["province"]]],"doctor-list-amp-local":[["amp/best-doctors/local/",[]]],"doctor-detail-amp":[["amp/doctor-ratings/%(slug)s/",["slug"]]],"doctor-com-practice-image":[["third-party/doctor.com/image/practice/%(path)s/",["path"]]],"doctor-com-provider-image":[["third-party/doctor.com/image/provider/%(path)s/",["path"]]],"location-doctors":[["%(category)s/%(slug)s/doctors/",["category","slug"]],["%(category)s/%(slug)s/doctors/index.jsp",["category","slug"]]],"location-detail":[["%(category)s/%(slug)s/",["category","slug"]],["%(category)s/%(slug)s/index.jsp",["category","slug"]]],"doctor-list":[["best-doctors/%(province)s/%(city)s/%(specialty)s/",["province","city","specialty"]],["best-doctors/%(province)s/%(city)s/",["province","city"]],["best-doctors/%(province)s/",["province"]],["best-doctors/",[]],["best-doctors/%(province)s/%(city)s/%(specialty)s/index.jsp",["province","city","specialty"]],["best-doctors/%(province)s/%(city)s/index.jsp",["province","city"]],["best-doctors/%(province)s/index.jsp",["province"]]],"doctor-detail":[["doctor-ratings/%(slug)s/",["slug"]]],"doctor-qr-code-template":[["doctors/%(pk)s/dashboard/qr-code-template/",["pk"]]],"doctor-hours-of-operation":[["doctors/%(pk)s/dashboard/my-hours/",["pk"]]],"doctor-dashboard-management":[["doctors/%(pk)s/dashboard/management/",["pk"]]],"doctor-dashboard-trusted-associates":[["doctors/%(pk)s/dashboard/associates/",["pk"]]],"doctor-dashboard-gallery":[["doctors/%(pk)s/dashboard/gallery/",["pk"]]],"doctor-dashboard-appointments":[["doctors/%(pk)s/dashboard/appointments/",["pk"]]],"doctor-dashboard-invoice-list":[["doctors/%(pk)s/dashboard/invoices/",["pk"]]],"doctor-dashboard-billing":[["doctors/%(pk)s/dashboard/billing/",["pk"]]],"doctor-dashboard-insurances":[["doctors/%(pk)s/dashboard/insurances/",["pk"]]],"doctor-dashboard-credentials":[["doctors/%(pk)s/dashboard/credentials/",["pk"]]],"doctor-dashboard-locations":[["doctors/%(pk)s/dashboard/facilities/",["pk"]]],"doctor-dashboard-profile":[["doctors/%(pk)s/dashboard/profile/",["pk"]]],"doctor-dashboard-rating-request-tools":[["doctors/%(pk)s/dashboard/rating-request-tools/",["pk"]]],"doctor-dashboard-ratings":[["doctors/%(pk)s/dashboard/ratings/",["pk"]]],"doctor-dashboard-analytics":[["doctors/%(pk)s/dashboard/analytics/",["pk"]]],"doctor-dashboard":[["doctors/%(pk)s/dashboard/",["pk"]]],"doctor-rating-appeal-success":[["doctors/%(pk)s/appeal/success/",["pk"]]],"doctor-rating-appeal":[["doctors/%(pk)s/appeal/%(ratingId)s/%(key)s/",["pk","ratingId","key"]]],"doctor-unsubscribe":[["doctors/%(pk)s/unsubscribe/%(key)s/",["pk","key"]]],"doctor-reindex":[["doctors/%(pk)s/reindex/",["pk"]]],"doctor-subpoena":[["doctors/%(pk)s/subpoena/",["pk"]]],"doctor-verify":[["doctors/verify/",[]],["doctors/verify/index.jsp",[]]],"doctor-create":[["doctors/create/",[]],["doctors/create/index.jsp",[]]],"doctor-list-local":[["doctors/local/",[]],["doctors/local/index.jsp",[]]],"location-list":[["facilities/%(province)s/%(city)s/",["province","city"]],["facilities/",[]]],"location-reindex":[["facilities/%(pk)s/reindex/",["pk"]]],"location-subpoena":[["facilities/%(pk)s/subpoena/",["pk"]]],"location-data":[["facilities/data/",[]]],"location-list-local":[["facilities/local/",[]]],"specialty-detail":[["specialties/%(slug)s/",["slug"]]],"specialty-list":[["specialties/",[]]],"accessibility":[["accessibility/",[]]],"cookie_setter":[["about/p/sc",[]]],"copyright":[["about/copyright/",[]]],"privacy":[["about/privacy/",[]]],"paid_terms":[["about/terms/paid/",[]]],"terms":[["about/terms/",[]]],"advertise":[["about/advertise/",[]]],"press":[["about/press/",[]]],"contact":[["about/contact/",[]]],"faq":[["about/faq/",[]]],"about":[["about/",[]]],"user-dashboard-claimed-profiles":[["accounts/dashboard/claimed-profiles/",[]]],"user-dashboard-account":[["accounts/dashboard/account/",[]]],"user-dashboard-ratings":[["accounts/dashboard/ratings/",[]]],"user-dashboard-following":[["accounts/dashboard/following/",[]]],"user-dashboard":[["accounts/dashboard/",[]]],"login-form":[["accounts/login/",[]]],"owner_invite":[["accounts/owner_invite/%(invite_id)s/",["invite_id"]]],"verify_email":[["accounts/verify-email/%(user_id)s/",["user_id"]]],"update_card":[["accounts/update_card/",[]]],"change_password":[["accounts/change_password/",[]]],"forgot_password":[["accounts/forgot_password/",[]]],"django.contrib.sitemaps.views.sitemap":[["sitemap-%(section)s.xml",["section"]]],"plans:invoice-detail":[["plans/%(doctor_id)s/invoices/%(id)s/",["doctor_id","id"]]],"plans:select-success":[["plans/%(doctor_id)s/success/",["doctor_id"]]],"plans:select-plan":[["plans/%(doctor_id)s/",["doctor_id"]]],"plans:stripe-events":[["plans/stripe_events/",[]]],"plans:admin":[["plans/admin/",[]]],"plans:select-doctor":[["plans/doctor/",[]]],"sales:organic-reports":[["sales/organic-reports/",[]]],"sales:reports":[["sales/reports/",[]]],"sales:history":[["sales/history/",[]]],"sales:home":[["sales/",[]]],"reports:sales_tagged_csv":[["reports/sales_tagged_view.csv",[]]],"reports:sales_tagged_view":[["reports/sales_tagged_view/",[]]],"reports:doctors_appointments_disabled_csv":[["reports/doctors_appointments_disabled.csv",[]]],"reports:doctors_appointments_disabled":[["reports/doctors_appointments_disabled/",[]]],"reports:american_doctor_claimed_csv":[["reports/american_doctor_claimed.csv",[]]],"reports:american_doctor_claimed":[["reports/american_doctor_claimed/",[]]],"reports:canadian_doctor_claimed_csv":[["reports/canadian_doctor_claimed.csv",[]]],"reports:canadian_doctor_claimed":[["reports/canadian_doctor_claimed/",[]]],"reports:simple_sales_log_csv":[["reports/simple_sales_log.csv",[]]],"reports:simple_sales_log":[["reports/simple_sales_log/",[]]],"reports:sales_log_csv":[["reports/sales_log.csv",[]]],"reports:sales_log":[["reports/sales_log/",[]]],"reports:sales_history_log_csv":[["reports/sales_history_log_%(from)s_to_%(to)s.csv",["from","to"]]],"reports:sales_history_log":[["reports/sales_history_log/",[]]],"reports:doctor_analytics_csv":[["reports/doctor_analytics_%(from)s_to_%(to)s.csv",["from","to"]]],"reports:doctor_analytics":[["reports/doctor_analytics/",[]]],"reports:verifications_csv":[["reports/verifications_%(from)s_to_%(to)s.csv",["from","to"]]],"reports:verifications":[["reports/verifications/",[]]],"reports:metrics_csv":[["reports/metrics_%(from)s_to_%(to)s.csv",["from","to"]]],"reports:metrics":[["reports/metrics/",[]]],"reports:base":[["reports/",[]]],"api:demo_viewed":[["api/auth/demo_viewed/",[]]],"api:banner_viewed":[["api/auth/banner_viewed/",[]]],"api:announcement_viewed":[["api/auth/announcement_viewed/",[]]],"api:current_user":[["api/auth/current_user/",[]]],"api:owner_invite":[["api/auth/owner_invite/",[]]],"api:send_verification_email":[["api/auth/send_verification_email/",[]]],"api:change_marketing_okay":[["api/auth/change_marketing_okay/",[]]],"api:change_email":[["api/auth/change_email/",[]]],"api:change_password":[["api/auth/change_password/",[]]],"api:forgot_password":[["api/auth/forgot_password/",[]]],"api:create_password":[["api/auth/create_password/",[]]],"api:signup_success":[["api/auth/signup_success/",[]]],"api:signup":[["api/auth/signup/",[]]],"api:logout":[["api/auth/logout/",[]]],"api:google_unlink_account":[["api/auth/google_unlink_account/",[]]],"api:google_link_redirect":[["api/auth/google_link_redirect/",[]]],"api:google_login_redirect":[["api/auth/google_login_redirect/",[]]],"api:google_login":[["api/auth/google_login/",[]]],"api:login":[["api/auth/login/",[]]],"api:ratingrecaptcha":[["api/core/rating_recaptcha_api/",[]]],"api:contact":[["api/core/contact/",[]]],"api:advertise":[["api/core/advertise/",[]]],"api:typeform_update_or_create":[["api/doctors/typeform-update-or-create",[]]],"api:doctor_external_appointment":[["api/doctors/external-appointments/%(doctor_id)s/",["doctor_id"]]],"api:rating_email_notification":[["api/doctors/rating-email-notification",[]]],"api:doctor_feature_activity":[["api/doctors/feature-activity/",[]]],"api:doctordistance":[["api/doctors/distance/",[]]],"api:doctorsearch":[["api/doctors/search/",[]]],"api:doctoranalytics":[["api/doctors/analytics/",[]]],"api:doctorupdaterequest":[["api/doctors/doctor_update_request/%(doctor_id)s/",["doctor_id"]]],"api:coupon":[["api/coupon/",[]]],"api:soci":[["api/third_party/soci/",[]]],"api:ratings":[["api/third_party/ratings/",[]]],"api:doctor_com":[["api/third_party/",[]]],"api:location-search":[["api/location-search/",[]]],"api:geoip":[["api/geoip/",[]]],"api:banner-detail":[["api/banner/%(pk)s/",["pk"]]],"api:banner-list":[["api/banner/",[]]],"api:sales-detail":[["api/sales/%(pk)s/",["pk"]]],"api:sales-list":[["api/sales/",[]]],"api:invoice-detail":[["api/invoices/%(pk)s/",["pk"]]],"api:invoice-list":[["api/invoices/",[]]],"api:plan-tax":[["api/plans/%(pk)s/tax/",["pk"]]],"api:plan-admin":[["api/plans/%(pk)s/admin/",["pk"]]],"api:plan-detail":[["api/plans/%(pk)s/",["pk"]]],"api:card-detail":[["api/cards/%(pk)s/",["pk"]]],"api:subscription-reason":[["api/subscriptions/%(pk)s/reason/",["pk"]]],"api:subscription-alacarte":[["api/subscriptions/%(pk)s/alacarte/",["pk"]]],"api:subscription-detail":[["api/subscriptions/%(pk)s/",["pk"]]],"api:flag-list":[["api/flag/",[]]],"api:expertise-detail":[["api/expertise/%(pk)s/",["pk"]]],"api:expertise-list":[["api/expertise/",[]]],"api:country-detail":[["api/country/%(pk)s/",["pk"]]],"api:country-list":[["api/country/",[]]],"api:province-detail":[["api/province/%(pk)s/",["pk"]]],"api:province-list":[["api/province/",[]]],"api:city-detail":[["api/city/%(pk)s/",["pk"]]],"api:city-list":[["api/city/",[]]],"api:locationrating-detail":[["api/location_rating/%(pk)s/",["pk"]]],"api:locationrating-list":[["api/location_rating/",[]]],"api:location-detail":[["api/location/%(pk)s/",["pk"]]],"api:location-list":[["api/location/",[]]],"api:specialty-detail":[["api/specialty/%(pk)s/",["pk"]]],"api:specialty-list":[["api/specialty/",[]]],"api:doctorassociateprovider-widget-enabled":[["api/doctor_associate_provider/%(pk)s/widget_enabled/",["pk"]]],"api:doctorassociateprovider-detail":[["api/doctor_associate_provider/%(pk)s/",["pk"]]],"api:doctorassociateprovider-list":[["api/doctor_associate_provider/",[]]],"api:associateprovider-detail":[["api/associate_provider/%(pk)s/",["pk"]]],"api:associateprovider-list":[["api/associate_provider/",[]]],"api:doctorgallery-toggle-visible":[["api/doctor_gallery/%(pk)s/toggle_visible/",["pk"]]],"api:doctorgallery-detail":[["api/doctor_gallery/%(pk)s/",["pk"]]],"api:doctorgallery-sort-gallery":[["api/doctor_gallery/sort_gallery/",[]]],"api:doctorgallery-list":[["api/doctor_gallery/",[]]],"api:publication-detail":[["api/publication/%(pk)s/",["pk"]]],"api:publication-list":[["api/publication/",[]]],"api:award-detail":[["api/award/%(pk)s/",["pk"]]],"api:award-list":[["api/award/",[]]],"api:language-detail":[["api/language/%(pk)s/",["pk"]]],"api:language-list":[["api/language/",[]]],"api:school-detail":[["api/school/%(pk)s/",["pk"]]],"api:school-list":[["api/school/",[]]],"api:insuranceplan-detail":[["api/insurance_plan/%(pk)s/",["pk"]]],"api:insuranceplan-list":[["api/insurance_plan/",[]]],"api:doctorappointment-mark-read":[["api/doctor_appointment/%(pk)s/mark_read/",["pk"]]],"api:doctorappointment-detail":[["api/doctor_appointment/%(pk)s/",["pk"]]],"api:doctorappointment-list":[["api/doctor_appointment/",[]]],"api:doctoradcity-detail":[["api/doctor_ad_city/%(pk)s/",["pk"]]],"api:doctoradcity-list":[["api/doctor_ad_city/",[]]],"api:doctoradspecialty-detail":[["api/doctor_ad_specialty/%(pk)s/",["pk"]]],"api:doctoradspecialty-list":[["api/doctor_ad_specialty/",[]]],"api:doctor_insurance_plans-detail":[["api/doctor_insurance_plan/%(pk)s/",["pk"]]],"api:doctor_insurance_plans-list":[["api/doctor_insurance_plan/",[]]],"api:doctorexpertise-detail":[["api/doctor_expertise/%(pk)s/",["pk"]]],"api:doctorexpertise-list":[["api/doctor_expertise/",[]]],"api:doctorspecialty-detail":[["api/doctor_specialty/%(pk)s/",["pk"]]],"api:doctorspecialty-list":[["api/doctor_specialty/",[]]],"api:doctorlanguage-detail":[["api/doctor_language/%(pk)s/",["pk"]]],"api:doctorlanguage-list":[["api/doctor_language/",[]]],"api:doctorschool-detail":[["api/doctor_school/%(pk)s/",["pk"]]],"api:doctorschool-list":[["api/doctor_school/",[]]],"api:doctorupdate-detail":[["api/doctor_update/%(pk)s/",["pk"]]],"api:doctorupdate-list":[["api/doctor_update/",[]]],"api:doctorlocationverificationrequest-detail":[["api/doctor_location_verification_request/%(pk)s/",["pk"]]],"api:doctorlocationverificationrequest-list":[["api/doctor_location_verification_request/",[]]],"api:doctorverificationrequest-list":[["api/doctor_verification_request/",[]]],"api:doctorcreationrequest-detail":[["api/doctor_creation_request/%(pk)s/",["pk"]]],"api:doctorcreationrequest-list":[["api/doctor_creation_request/",[]]],"api:doctorlocation-verify":[["api/doctor_location/%(pk)s/verify/",["pk"]]],"api:doctorlocation-primary":[["api/doctor_location/%(pk)s/primary/",["pk"]]],"api:doctorlocation-detail":[["api/doctor_location/%(pk)s/",["pk"]]],"api:doctorlocation-list":[["api/doctor_location/",[]]],"api:doctorratingcomment-detail":[["api/doctor_rating_comment/%(pk)s/",["pk"]]],"api:doctorratingcomment-list":[["api/doctor_rating_comment/",[]]],"api:doctorrating-update-email":[["api/doctor_rating/%(pk)s/update_email/",["pk"]]],"api:doctorrating-toggle-vote":[["api/doctor_rating/%(pk)s/toggle_vote/",["pk"]]],"api:doctorrating-toggle-visible":[["api/doctor_rating/%(pk)s/toggle_visible/",["pk"]]],"api:doctorrating-toggle-featured":[["api/doctor_rating/%(pk)s/toggle_featured/",["pk"]]],"api:doctorrating-flag":[["api/doctor_rating/%(pk)s/flag/",["pk"]]],"api:doctorrating-appeal":[["api/doctor_rating/%(pk)s/appeal/",["pk"]]],"api:doctorrating-detail":[["api/doctor_rating/%(pk)s/",["pk"]]],"api:doctorrating-list":[["api/doctor_rating/",[]]],"api:top-doctor-detail":[["api/top_doctor/%(pk)s/",["pk"]]],"api:top-doctor-list":[["api/top_doctor/",[]]],"api:doctor-search-detail":[["api/doctor_search/%(pk)s/",["pk"]]],"api:doctor-search-list":[["api/doctor_search/",[]]],"api:doctor-user-state":[["api/doctor/%(pk)s/user_state/",["pk"]]],"api:doctor-unfollow":[["api/doctor/%(pk)s/unfollow/",["pk"]]],"api:doctor-profile-progress":[["api/doctor/%(pk)s/profile_progress/",["pk"]]],"api:doctor-follow":[["api/doctor/%(pk)s/follow/",["pk"]]],"api:doctor-doctor-sales-detail":[["api/doctor/%(pk)s/doctor_sales_detail/",["pk"]]],"api:doctor-autoverify":[["api/doctor/%(pk)s/autoverify/",["pk"]]],"api:doctor-detail":[["api/doctor/%(pk)s/",["pk"]]],"api:doctor-list":[["api/doctor/",[]]],"tools:doctor-index":[["admin/tools/doctor-index/",[]]],"tools:doctor-score":[["admin/tools/doctor-score/",[]]],"tools:autoverify-generator":[["admin/tools/autoverify-generator/",[]]],"tools:es_info":[["admin/tools/es-info/",[]]],"tools:emails":[["admin/tools/emails/%(email)s/",["email"]]],"oauth2_provider:dashboard":[["developer/dashboard/",[]]],"oauth2_provider:introspect":[["developer/introspect/",[]]],"oauth2_provider:revoke-token":[["developer/revoke_token/",[]]],"oauth2_provider:token":[["developer/token/",[]]],"oauth2_provider:authorize":[["developer/authorize/",[]]]};window.STATIC_URL='//www.ratemds.com/static/';window.MEDIA_URL='//https://staging-cdn.ratemds.com/media/';window.DATA.bottomWidgetProps=JSON.parse("{\u0022city\u0022:{\u0022id\u0022:2516,\u0022province_name\u0022:\u0022Virginia\u0022,\u0022province_slug\u0022:\u0022va\u0022,\u0022country_name\u0022:\u0022United States\u0022,\u0022country_slug\u0022:\u0022us\u0022,\u0022cover_images\u0022:{\u0022253x83\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg_thumbs/v1_at_253x83.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg\u0022},\u0022modified\u0022:\u00222018\u002D12\u002D10T15:14:58.538585\u002D05:00\u0022,\u0022created\u0022:\u00222014\u002D06\u002D25T11:34:15.276000\u002D04:00\u0022,\u0022deleted\u0022:false,\u0022slug\u0022:\u0022ashburn\u0022,\u0022name\u0022:\u0022Ashburn\u0022,\u0022cover_image\u0022:null,\u0022province\u0022:14},\u0022hospital_data\u0022:[],\u0022urgent_care_data\u0022:[{\u0022id\u0022:2126299,\u0022category\u0022:\u0022urgent\u002Dcare\u0022,\u0022created\u0022:\u00222014\u002D07\u002D28T17:26:45.597752\u002D04:00\u0022,\u0022modified\u0022:\u00222016\u002D02\u002D11T00:46:00.604339\u002D05:00\u0022,\u0022longitude\u0022:\u002D77.457697,\u0022latitude\u0022:39.012458,\u0022slug\u0022:\u0022us\u002Dva\u002Dashburn\u002Dnova\u002Durgent\u002Dcare\u002Dashburn\u0022,\u0022city\u0022:{\u0022id\u0022:2516,\u0022province_name\u0022:\u0022Virginia\u0022,\u0022province_slug\u0022:\u0022va\u0022,\u0022country_name\u0022:\u0022United States\u0022,\u0022country_slug\u0022:\u0022us\u0022,\u0022cover_images\u0022:{\u0022253x83\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg_thumbs/v1_at_253x83.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg\u0022},\u0022modified\u0022:\u00222018\u002D12\u002D10T15:14:58.538585\u002D05:00\u0022,\u0022created\u0022:\u00222014\u002D06\u002D25T11:34:15.276000\u002D04:00\u0022,\u0022deleted\u0022:false,\u0022slug\u0022:\u0022ashburn\u0022,\u0022name\u0022:\u0022Ashburn\u0022,\u0022cover_image\u0022:null,\u0022province\u0022:14},\u0022suite_on_display\u0022:null,\u0022accepting_cdcp\u0022:false,\u0022name\u0022:\u0022NOVA Urgent Care \u002D Ashburn\u0022,\u0022address\u0022:\u002221785 Filigree Court\u0022,\u0022suite\u0022:null,\u0022postal_code\u0022:\u002296028\u002D9787\u0022,\u0022city_id\u0022:2516,\u0022phone_number\u0022:\u0022+17035541100\u0022,\u0022website\u0022:null,\u0022image\u0022:null,\u0022images\u0022:{\u002277x77\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_77x77.269637122d38.jpg\u0022,\u002270x70\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_70x70.269637122d38.jpg\u0022,\u0022100x100\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_100x100.831ca232d56c.jpg\u0022,\u0022165x165\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_165x165.831ca232d56c.jpg\u0022,\u0022autoxauto\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_autoxauto.577b407f46a9.jpg\u0022},\u0022rating\u0022:{\u0022cleanliness\u0022:0,\u0022facilities\u0022:0,\u0022services\u0022:0,\u0022value\u0022:0,\u0022count\u0022:0,\u0022average\u0022:0,\u0022bestRating\u0022:0},\u0022url\u0022:\u0022/urgent\u002Dcare/us\u002Dva\u002Dashburn\u002Dnova\u002Durgent\u002Dcare\u002Dashburn/\u0022,\u0022geocode_address\u0022:\u0022nova urgent care \u002D ashburn, 21785 filigree court, ashburn, virginia, united states, 96028\u002D9787\u0022},{\u0022id\u0022:2126300,\u0022category\u0022:\u0022urgent\u002Dcare\u0022,\u0022created\u0022:\u00222014\u002D07\u002D28T17:26:45.678795\u002D04:00\u0022,\u0022modified\u0022:\u00222016\u002D02\u002D09T21:21:09.844670\u002D05:00\u0022,\u0022longitude\u0022:\u002D77.466812,\u0022latitude\u0022:39.062457,\u0022slug\u0022:\u0022us\u002Dva\u002Dashburn\u002Dloudoun\u002Dwalk\u002Din\u002Dmedical\u002Dcenter\u002Dashburn\u0022,\u0022city\u0022:{\u0022id\u0022:2516,\u0022province_name\u0022:\u0022Virginia\u0022,\u0022province_slug\u0022:\u0022va\u0022,\u0022country_name\u0022:\u0022United States\u0022,\u0022country_slug\u0022:\u0022us\u0022,\u0022cover_images\u0022:{\u0022253x83\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg_thumbs/v1_at_253x83.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg\u0022},\u0022modified\u0022:\u00222018\u002D12\u002D10T15:14:58.538585\u002D05:00\u0022,\u0022created\u0022:\u00222014\u002D06\u002D25T11:34:15.276000\u002D04:00\u0022,\u0022deleted\u0022:false,\u0022slug\u0022:\u0022ashburn\u0022,\u0022name\u0022:\u0022Ashburn\u0022,\u0022cover_image\u0022:null,\u0022province\u0022:14},\u0022suite_on_display\u0022:null,\u0022accepting_cdcp\u0022:false,\u0022name\u0022:\u0022Loudoun Walk In Medical Center Ashburn\u0022,\u0022address\u0022:\u002244320 Premier Plz\u0022,\u0022suite\u0022:null,\u0022postal_code\u0022:\u002296028\u002D9787\u0022,\u0022city_id\u0022:2516,\u0022phone_number\u0022:\u0022+17037269056\u0022,\u0022website\u0022:null,\u0022image\u0022:null,\u0022images\u0022:{\u002277x77\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_77x77.269637122d38.jpg\u0022,\u002270x70\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_70x70.269637122d38.jpg\u0022,\u0022100x100\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_100x100.831ca232d56c.jpg\u0022,\u0022165x165\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_165x165.831ca232d56c.jpg\u0022,\u0022autoxauto\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_autoxauto.577b407f46a9.jpg\u0022},\u0022rating\u0022:{\u0022cleanliness\u0022:0,\u0022facilities\u0022:0,\u0022services\u0022:0,\u0022value\u0022:0,\u0022count\u0022:0,\u0022average\u0022:0,\u0022bestRating\u0022:0},\u0022url\u0022:\u0022/urgent\u002Dcare/us\u002Dva\u002Dashburn\u002Dloudoun\u002Dwalk\u002Din\u002Dmedical\u002Dcenter\u002Dashburn/\u0022,\u0022geocode_address\u0022:\u0022loudoun walk in medical center ashburn, 44320 premier plz, ashburn, virginia, united states, 96028\u002D9787\u0022},{\u0022id\u0022:2126301,\u0022category\u0022:\u0022urgent\u002Dcare\u0022,\u0022created\u0022:\u00222014\u002D07\u002D28T17:26:45.758760\u002D04:00\u0022,\u0022modified\u0022:\u00222016\u002D02\u002D09T15:03:46.949114\u002D05:00\u0022,\u0022longitude\u0022:\u002D77.475934,\u0022latitude\u0022:39.044768,\u0022slug\u0022:\u0022us\u002Dva\u002Dashburn\u002Dmedics\u002Dusa\u002Dashburn\u002Dvirginia\u0022,\u0022city\u0022:{\u0022id\u0022:2516,\u0022province_name\u0022:\u0022Virginia\u0022,\u0022province_slug\u0022:\u0022va\u0022,\u0022country_name\u0022:\u0022United States\u0022,\u0022country_slug\u0022:\u0022us\u0022,\u0022cover_images\u0022:{\u0022253x83\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg_thumbs/v1_at_253x83.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg\u0022},\u0022modified\u0022:\u00222018\u002D12\u002D10T15:14:58.538585\u002D05:00\u0022,\u0022created\u0022:\u00222014\u002D06\u002D25T11:34:15.276000\u002D04:00\u0022,\u0022deleted\u0022:false,\u0022slug\u0022:\u0022ashburn\u0022,\u0022name\u0022:\u0022Ashburn\u0022,\u0022cover_image\u0022:null,\u0022province\u0022:14},\u0022suite_on_display\u0022:null,\u0022accepting_cdcp\u0022:false,\u0022name\u0022:\u0022Medics USA \u002D Ashburn Virginia\u0022,\u0022address\u0022:\u002244050 Ashburn shopping Plaza\u0022,\u0022suite\u0022:null,\u0022postal_code\u0022:\u002296028\u002D9787\u0022,\u0022city_id\u0022:2516,\u0022phone_number\u0022:\u0022+17037269401\u0022,\u0022website\u0022:null,\u0022image\u0022:null,\u0022images\u0022:{\u002277x77\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_77x77.269637122d38.jpg\u0022,\u002270x70\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_70x70.269637122d38.jpg\u0022,\u0022100x100\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_100x100.831ca232d56c.jpg\u0022,\u0022165x165\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_165x165.831ca232d56c.jpg\u0022,\u0022autoxauto\u0022:\u0022//www.ratemds.com/static/img/locations/urgent\u002Dcare.png_thumbs/v1_at_autoxauto.577b407f46a9.jpg\u0022},\u0022rating\u0022:{\u0022cleanliness\u0022:0,\u0022facilities\u0022:0,\u0022services\u0022:0,\u0022value\u0022:0,\u0022count\u0022:0,\u0022average\u0022:0,\u0022bestRating\u0022:0},\u0022url\u0022:\u0022/urgent\u002Dcare/us\u002Dva\u002Dashburn\u002Dmedics\u002Dusa\u002Dashburn\u002Dvirginia/\u0022,\u0022geocode_address\u0022:\u0022medics usa \u002D ashburn virginia, 44050 ashburn shopping plaza, ashburn, virginia, united states, 96028\u002D9787\u0022}],\u0022gaAction\u0022:\u0022home\u0022,\u0022specialities\u0022:[{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:44:58.055002\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:45,\u0022slug\u0022:\u0022acupuncturist\u0022,\u0022name\u0022:\u0022Acupuncturist\u0022,\u0022url\u0022:\u0022/specialties/acupuncturist/\u0022,\u0022name_plural\u0022:\u0022Acupuncturists\u0022,\u0022has_phd\u0022:false,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/acupuncturist_2.png\u0022,\u0022html_title\u0022:\u0022Acupuncturist\u0022,\u0022html_title_plural\u0022:\u0022Acupuncturists\u0022,\u0022short_description\u0022:\u0022An acupuncturist utilizes techniques to relieve pain and promote the body’s natural healing process through the insertion of thin needles on the surface of the body as well as the use of heat and pressure.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/acupuncturist_2.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:44:34.156513\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:41,\u0022slug\u0022:\u0022allergist\u002Dimmunologist\u0022,\u0022name\u0022:\u0022Allergist / Immunologist\u0022,\u0022url\u0022:\u0022/specialties/allergist\u002Dimmunologist/\u0022,\u0022name_plural\u0022:\u0022Allergists / Immunologists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/allergist_1.png\u0022,\u0022html_title\u0022:\u0022Allergist / Immunologist\u0022,\u0022html_title_plural\u0022:\u0022Allergists / Immunologists\u0022,\u0022short_description\u0022:\u0022Specializes in the diagnosis and treatment of allergies and diseases affecting the immune system, patients can look to an allergist/immunologist for management of conditions including asthma, eczema, hives, food allergies and more.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/allergist_1.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:43:56.593473\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:34,\u0022slug\u0022:\u0022anesthesiologist\u0022,\u0022name\u0022:\u0022Anesthesiologist\u0022,\u0022url\u0022:\u0022/specialties/anesthesiologist/\u0022,\u0022name_plural\u0022:\u0022Anesthesiologists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/anesthesiologist_2.png\u0022,\u0022html_title\u0022:\u0022Anesthesiologist\u0022,\u0022html_title_plural\u0022:\u0022Anesthesiologists\u0022,\u0022short_description\u0022:\u0022The role of an Anesthesiologist is to provide safe and controlled sedation of patients before, during and after medical procedures including both minor and major surgeries, from having a tooth removed to having open heart surgery, as well as various other medical operations.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/anesthesiologist_2.png\u0022},{\u0022created\u0022:\u00222015\u002D01\u002D14T09:49:24.863000\u002D05:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:43:40.957323\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:51,\u0022slug\u0022:\u0022audiologist\u0022,\u0022name\u0022:\u0022Audiologist\u0022,\u0022url\u0022:\u0022/specialties/audiologist/\u0022,\u0022name_plural\u0022:\u0022Audiologists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/audiologist.png\u0022,\u0022html_title\u0022:\u0022Audiologist\u0022,\u0022html_title_plural\u0022:\u0022Audiologists\u0022,\u0022short_description\u0022:\u0022An Audiologist is a specialist that provides diagnosis and treatment of disorders involving hearing and balance systems comprising the anatomy and physiology of the ear.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/audiologist.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:43:26.132413\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:43,\u0022slug\u0022:\u0022bariatric\u002Dweight\u002Dloss\u0022,\u0022name\u0022:\u0022Bariatric / Weight Loss Specialist\u0022,\u0022url\u0022:\u0022/specialties/bariatric\u002Dweight\u002Dloss/\u0022,\u0022name_plural\u0022:\u0022Bariatric / Weight Loss Specialists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/bariatric_2.png\u0022,\u0022html_title\u0022:\u0022Bariatric / Weight Loss Specialist\u0022,\u0022html_title_plural\u0022:\u0022Bariatric / Weight Loss Specialists\u0022,\u0022short_description\u0022:\u0022Bariatric/Weight loss doctors specialize in the treatment of patients affected by obesity and weight\u002Drelated illness, providing advice and expertise in the areas of nutrition, behavioral therapy and exercise.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/bariatric_2.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:43:17.805116\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:31,\u0022slug\u0022:\u0022cardiologist\u0022,\u0022name\u0022:\u0022Cardiologist\u0022,\u0022url\u0022:\u0022/specialties/cardiologist/\u0022,\u0022name_plural\u0022:\u0022Cardiologists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/cardiologist_3.png\u0022,\u0022html_title\u0022:\u0022Cardiologist\u0022,\u0022html_title_plural\u0022:\u0022Cardiologists\u0022,\u0022short_description\u0022:\u0022Cardiologists provide diagnosis and treatment for illnesses dealing with the heart and blood vessels. They specialize in treating patients with heart disease, cardiovascular disease and other conditions relating to heart health.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/cardiologist_3.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:43:08.093166\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:46,\u0022slug\u0022:\u0022cardiothoracic\u002Dsurgeon\u0022,\u0022name\u0022:\u0022Cardiothoracic Surgeon\u0022,\u0022url\u0022:\u0022/specialties/cardiothoracic\u002Dsurgeon/\u0022,\u0022name_plural\u0022:\u0022Cardiothoracic Surgeons\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/cardiothoracic_1.png\u0022,\u0022html_title\u0022:\u0022Cardiothoracic Surgeon\u0022,\u0022html_title_plural\u0022:\u0022Cardiothoracic Surgeons\u0022,\u0022short_description\u0022:\u0022A cardiothoracic surgeon performs a combination of cardiac surgery (the heart and blood vessels) and thoracic surgery (lung and chest) including procedures such as open heart surgery, bypass surgery and heart transplants.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/cardiothoracic_1.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:45:52.062073\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:5,\u0022slug\u0022:\u0022chiropractor\u0022,\u0022name\u0022:\u0022Chiropractor\u0022,\u0022url\u0022:\u0022/specialties/chiropractor/\u0022,\u0022name_plural\u0022:\u0022Chiropractors\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/chiropractor_1.png\u0022,\u0022html_title\u0022:\u0022Chiropractor\u0022,\u0022html_title_plural\u0022:\u0022Chiropractors\u0022,\u0022short_description\u0022:\u0022Chiropractors apply a form of alternative treatment focusing on pain or injury of the musculoskeletal system.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/chiropractor_1.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:42:56.360582\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:13,\u0022slug\u0022:\u0022colorectal\u002Dproctologist\u0022,\u0022name\u0022:\u0022Colorectal Surgeon / Proctologist\u0022,\u0022url\u0022:\u0022/specialties/colorectal\u002Dproctologist/\u0022,\u0022name_plural\u0022:\u0022Colorectal Surgeons / Proctologists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/colorectal_2.png\u0022,\u0022html_title\u0022:\u0022Colorectal Surgeon\u0022,\u0022html_title_plural\u0022:\u0022Colorectal Surgeons\u0022,\u0022short_description\u0022:\u0022Colorectal Surgeons, also known as Proctologists, provide diagnosis and treatment of disorders involving the colon, rectum and anus.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/colorectal_2.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T13:12:18.966265\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:2,\u0022slug\u0022:\u0022dentist\u0022,\u0022name\u0022:\u0022Dentist\u0022,\u0022url\u0022:\u0022/specialties/dentist/\u0022,\u0022name_plural\u0022:\u0022Dentists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/dentist.png\u0022,\u0022html_title\u0022:\u0022Dentist\u0022,\u0022html_title_plural\u0022:\u0022Dentists\u0022,\u0022short_description\u0022:\u0022Dentists are medical specialists who provide advanced medical treatment and care of teeth and oral health services for people of all ages from regular dental exams through tooth extraction.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/dentist.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T13:13:29.551865\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:18,\u0022slug\u0022:\u0022dermatologist\u0022,\u0022name\u0022:\u0022Dermatologist\u0022,\u0022url\u0022:\u0022/specialties/dermatologist/\u0022,\u0022name_plural\u0022:\u0022Dermatologists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/dermatologist.png\u0022,\u0022html_title\u0022:\u0022Dermatologist\u0022,\u0022html_title_plural\u0022:\u0022Dermatologists\u0022,\u0022short_description\u0022:\u0022Dermatologists specialize in the area of medicine dealing with illnesses and conditions involving the hair, nails, skin, treating ailments including hair loss, skin cancer, psoriasis and more.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/dermatologist.png\u0022},{\u0022created\u0022:\u00222022\u002D04\u002D20T11:46:33.582304\u002D04:00\u0022,\u0022modified\u0022:\u00222022\u002D04\u002D20T11:49:47.373926\u002D04:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:96,\u0022slug\u0022:\u0022dietitian\u0022,\u0022name\u0022:\u0022Dietitian\u0022,\u0022url\u0022:\u0022/specialties/dietitian/\u0022,\u0022name_plural\u0022:\u0022Dietitians\u0022,\u0022has_phd\u0022:false,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/dietitian.png\u0022,\u0022html_title\u0022:\u0022Dietitian\u0022,\u0022html_title_plural\u0022:\u0022Dietitians\u0022,\u0022short_description\u0022:\u0022Registered Dietitians provide care to patients by helping them understand the science of nutrition through personalized programs which help to guide them to make healthy food and lifestyle choices.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/dietitian.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D06\u002D03T14:43:41.486560\u002D04:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:9,\u0022slug\u0022:\u0022ear\u002Dnose\u002Dand\u002Dthroat\u002Dent\u0022,\u0022name\u0022:\u0022Ear, Nose, and Throat Doctor / Otolaryngologist (ENT)\u0022,\u0022url\u0022:\u0022/specialties/ear\u002Dnose\u002Dand\u002Dthroat\u002Dent/\u0022,\u0022name_plural\u0022:\u0022Ear, Nose, and Throat Doctors / Otolaryngologists (ENTs)\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/ent.png\u0022,\u0022html_title\u0022:\u0022Otolaryngologist\u0022,\u0022html_title_plural\u0022:\u0022Otolaryngologists\u0022,\u0022short_description\u0022:\u0022Otolaryngologists, commonly referred to as ENT (Ear, Nose and Throat) Doctors specialize in the diagnosis and treatment of conditions that affect the ear, nose and throat and related parts of the body including the sinuses, head and neck.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/ent.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:42:38.263616\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:29,\u0022slug\u0022:\u0022emergency\u002Dcritical\u0022,\u0022name\u0022:\u0022Emergency Room Doctor\u0022,\u0022url\u0022:\u0022/specialties/emergency\u002Dcritical/\u0022,\u0022name_plural\u0022:\u0022Emergency Room Doctors\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/emergency.png\u0022,\u0022html_title\u0022:\u0022Emergency Room Doctor\u0022,\u0022html_title_plural\u0022:\u0022Emergency Room Doctors\u0022,\u0022short_description\u0022:\u0022Emergency physicians provide urgent medical care for patients of all ages requiring immediate treatment of injury, critical illness and life\u002Dthreatening conditions.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/emergency.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:42:30.373396\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:12,\u0022slug\u0022:\u0022endocrinologist\u0022,\u0022name\u0022:\u0022Endocrinologist\u0022,\u0022url\u0022:\u0022/specialties/endocrinologist/\u0022,\u0022name_plural\u0022:\u0022Endocrinologists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/Endocrinologist.png\u0022,\u0022html_title\u0022:\u0022Endocrinologist\u0022,\u0022html_title_plural\u0022:\u0022Endocrinologists\u0022,\u0022short_description\u0022:\u0022Endocrinologists specialize in the diagnosis and treatment of conditions affecting the health of the endocrine system involving the endrocrine glands (hormone\u002Dproducing glands) such as thyroid disorders and diabetes mellitus.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/Endocrinologist.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:42:20.721374\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:49,\u0022slug\u0022:\u0022endodontist\u002Droot\u002Dcanal\u0022,\u0022name\u0022:\u0022Endodontist\u0022,\u0022url\u0022:\u0022/specialties/endodontist\u002Droot\u002Dcanal/\u0022,\u0022name_plural\u0022:\u0022Endodontists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/endodontist.png\u0022,\u0022html_title\u0022:\u0022Endodontist\u0022,\u0022html_title_plural\u0022:\u0022Endodontists\u0022,\u0022short_description\u0022:\u0022A branch of dental medicine specializing in the treatment and health of dental pulp and the inside of the tooth including root canal.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/endodontist.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T13:11:57.180667\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:1,\u0022slug\u0022:\u0022family\u002Dgp\u0022,\u0022name\u0022:\u0022Family Doctor / General Practitioner\u0022,\u0022url\u0022:\u0022/specialties/family\u002Dgp/\u0022,\u0022name_plural\u0022:\u0022Family Doctors / General Practitioners\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/family.png\u0022,\u0022html_title\u0022:\u0022Family Doctor\u0022,\u0022html_title_plural\u0022:\u0022Family Doctors\u0022,\u0022short_description\u0022:\u0022Family Doctors treat patients on both individual and family basis, providing health care for people of all ages, genders and illnesses and offering everything from basic checkups through to diagnosis.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/family.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:42:10.789094\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:21,\u0022slug\u0022:\u0022gastroenterologist\u0022,\u0022name\u0022:\u0022Gastroenterologist\u0022,\u0022url\u0022:\u0022/specialties/gastroenterologist/\u0022,\u0022name_plural\u0022:\u0022Gastroenterologists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/gastroenterologist.png\u0022,\u0022html_title\u0022:\u0022Gastroenterologist\u0022,\u0022html_title_plural\u0022:\u0022Gastroenterologists\u0022,\u0022short_description\u0022:\u0022Gastroenterology is an area of medicine that is focused on the digestive system and illnesses occurring in the gastrointestinal tract, including conditions such as irritable bowel syndrome, heart burn and indigestion.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/gastroenterologist.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:45:44.258519\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:23,\u0022slug\u0022:\u0022surgeon\u002Dgeneral\u0022,\u0022name\u0022:\u0022General Surgeon\u0022,\u0022url\u0022:\u0022/specialties/surgeon\u002Dgeneral/\u0022,\u0022name_plural\u0022:\u0022General Surgeons\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/General_Surgeon.png\u0022,\u0022html_title\u0022:\u0022General Surgeon\u0022,\u0022html_title_plural\u0022:\u0022General Surgeons\u0022,\u0022short_description\u0022:\u0022General surgeons perform surgical operations on all areas of the body providing treatment to repair damage caused by injury, complete organ transplants and prevent disease.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/General_Surgeon.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:42:01.536421\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:50,\u0022slug\u0022:\u0022geneticist\u0022,\u0022name\u0022:\u0022Geneticist\u0022,\u0022url\u0022:\u0022/specialties/geneticist/\u0022,\u0022name_plural\u0022:\u0022Geneticists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/geneticist.png\u0022,\u0022html_title\u0022:\u0022Geneticist\u0022,\u0022html_title_plural\u0022:\u0022Geneticists\u0022,\u0022short_description\u0022:\u0022Geneticists specialize in the science and study of genes and the diagnosis of hereditary conditions such as color blindness, cystic fibrosis and haemophilia.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/geneticist.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T13:12:08.582789\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:3,\u0022slug\u0022:\u0022gynecologist\u002Dobgyn\u0022,\u0022name\u0022:\u0022Gynecologists and Obstetricians (OBGYN)\u0022,\u0022url\u0022:\u0022/specialties/gynecologist\u002Dobgyn/\u0022,\u0022name_plural\u0022:\u0022Gynecologists and Obstetricians (OBGYN)\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/gynecologist.png\u0022,\u0022html_title\u0022:\u0022Gynecologists and Obstetricians\u0022,\u0022html_title_plural\u0022:\u0022Gynecologists and Obstetricians\u0022,\u0022short_description\u0022:\u0022The area of medical practice dealing with the health, diagnosis and treatment of disorders affecting the female reproductive organs and systems.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/gynecologist.png\u0022},{\u0022created\u0022:\u00222016\u002D12\u002D13T17:29:20.506388\u002D05:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:41:52.316176\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:88,\u0022slug\u0022:\u0022homeopath\u0022,\u0022name\u0022:\u0022Homeopath\u0022,\u0022url\u0022:\u0022/specialties/homeopath/\u0022,\u0022name_plural\u0022:\u0022Homeopaths\u0022,\u0022has_phd\u0022:false,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/homeopath.png\u0022,\u0022html_title\u0022:\u0022Homeopath\u0022,\u0022html_title_plural\u0022:\u0022Homeopaths\u0022,\u0022short_description\u0022:\u0022Homeopathy is a form of alternative medicine developed in 1796. It is based on holistic symptom treatment and the doctrine that like cures like.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/homeopath.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:41:41.027289\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:33,\u0022slug\u0022:\u0022infectious\u002Ddisease\u0022,\u0022name\u0022:\u0022Infectious Disease Specialist\u0022,\u0022url\u0022:\u0022/specialties/infectious\u002Ddisease/\u0022,\u0022name_plural\u0022:\u0022Infectious Disease Specialists\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/infectious\u002Ddisease_1.png\u0022,\u0022html_title\u0022:\u0022Infectious Disease Specialist\u0022,\u0022html_title_plural\u0022:\u0022Infectious Disease Specialists\u0022,\u0022short_description\u0022:\u0022The diagnosis and treatment of Infectious Diseases are carried out by Infectious Disease Specialists who provide care and management of illness due to bacteria or virus.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/infectious\u002Ddisease_1.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T13:12:58.977664\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:17,\u0022slug\u0022:\u0022internist\u002Dgeriatrician\u0022,\u0022name\u0022:\u0022Internist / Geriatrician\u0022,\u0022url\u0022:\u0022/specialties/internist\u002Dgeriatrician/\u0022,\u0022name_plural\u0022:\u0022Internists / Geriatricians\u0022,\u0022has_phd\u0022:true,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/internist_1.png\u0022,\u0022html_title\u0022:\u0022Internist\u0022,\u0022html_title_plural\u0022:\u0022Internists\u0022,\u0022short_description\u0022:\u0022Specializing in the practice of internal medicine or general medicine, Internists provide care for the seriously ill or those who require advanced care and treatment.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/internist_1.png\u0022},{\u0022created\u0022:\u00222016\u002D03\u002D21T12:00:07.958753\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D01\u002D16T15:41:32.059837\u002D05:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:85,\u0022slug\u0022:\u0022registered\u002Dmassage\u002Dtherapist\u0022,\u0022name\u0022:\u0022Massage Therapist\u0022,\u0022url\u0022:\u0022/specialties/registered\u002Dmassage\u002Dtherapist/\u0022,\u0022name_plural\u0022:\u0022Massage Therapists\u0022,\u0022has_phd\u0022:false,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/massage_therapist.png\u0022,\u0022html_title\u0022:\u0022Massage Therapist\u0022,\u0022html_title_plural\u0022:\u0022Massage Therapists\u0022,\u0022short_description\u0022:\u0022Registered Massage Therapists or RMTs specialize in massage for therapeutic purposes. They use different massage techniques to treat short or long term muscular pain, such as back pain, neck pain, and sports strains or injuries. Massage has also been shown to aid relaxation and reduce anxiety and depression.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/massage_therapist.png\u0022},{\u0022created\u0022:\u00222014\u002D06\u002D17T14:36:43.596339\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D06\u002D03T22:04:42.924415\u002D04:00\u0022,\u0022deleted\u0022:false,\u0022id\u0022:47,\u0022slug\u0022:\u0022midwife\u0022,\u0022name\u0022:\u0022Midwife\u0022,\u0022url\u0022:\u0022/specialties/midwife/\u0022,\u0022name_plural\u0022:\u0022Midwives\u0022,\u0022has_phd\u0022:false,\u0022image\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/midwife_1.png\u0022,\u0022html_title\u0022:\u0022Midwife\u0022,\u0022html_title_plural\u0022:\u0022Midwives\u0022,\u0022short_description\u0022:\u0022A midwife is a primary care provider for women specializing in female reproductive health from pregnancy through to delivery and postpartum care.\u0022,\u0022image_url\u0022:\u0022https://cdn1.ratemds.com/media/specialties/specialty/image/midwife_1.png\u0022}]}");</script>
<script type="1829c5604bde31646f390b3d-text/javascript">window.gtag_id='G-K8PKFWCRDN';window.gtag_page_id='G-9TT7LM8GH5';</script>
<script src="//www.ratemds.com/static/js/base.a31faafb76ff.js.pagespeed.ce.ox-q-3b_y1.js" type="1829c5604bde31646f390b3d-text/javascript"></script>
<script type="1829c5604bde31646f390b3d-text/javascript">//<![CDATA[
(function(modules){var installedModules={};function __webpack_require__(moduleId){if(installedModules[moduleId])return installedModules[moduleId].exports;var module=installedModules[moduleId]={exports:{},id:moduleId,loaded:false};modules[moduleId].call(module.exports,module,module.exports,__webpack_require__);module.loaded=true;return module.exports;}__webpack_require__.m=modules;__webpack_require__.c=installedModules;__webpack_require__.p="";})([]);
//]]></script>
<script src="//www.ratemds.com/static/js/entries/core/login_header.jsx.4743e2966d20.js.pagespeed.jm.tIEW9ylD4f.js" type="1829c5604bde31646f390b3d-text/javascript"></script>
<script src="//www.ratemds.com/static/js/entries/core/navigation_bar.jsx.95cb55d06f51.js.pagespeed.ce.lctV0G9RFJ.js" type="1829c5604bde31646f390b3d-text/javascript"></script>
<script type="1829c5604bde31646f390b3d-text/javascript">window.DATA.countries=JSON.parse("[[\u0022au\u0022, \u0022Australia \u0026 New Zealand\u0022], [\u0022ca\u0022, \u0022Canada\u0022], [\u0022in\u0022, \u0022India\u0022], [\u0022za\u0022, \u0022South Africa\u0022], [\u0022uk\u0022, \u0022United Kingdom\u0022], [\u0022us\u0022, \u0022United States\u0022]]");window.DATA.home_banner_panel_props=JSON.parse("{\u0022specialties\u0022:[[\u0022\u0022,\u0022All Specialties\u0022,\u0022All Specialties\u0022],[\u0022family\u002Dgp\u0022,\u0022Family Doctor / General Practitioner\u0022,\u0022Family Doctors / General Practitioners\u0022],[\u0022gynecologist\u002Dobgyn\u0022,\u0022Gynecologists and Obstetricians (OBGYN)\u0022,\u0022Gynecologists and Obstetricians (OBGYN)\u0022],[\u0022dentist\u0022,\u0022Dentist\u0022,\u0022Dentists\u0022],[\u0022orthopedics\u002Dsports\u0022,\u0022Orthopedic Surgeon\u0022,\u0022Orthopedic Surgeons\u0022],[\u0022internist\u002Dgeriatrician\u0022,\u0022Internist / Geriatrician\u0022,\u0022Internists / Geriatricians\u0022],[\u0022cosmetic\u002Dplastic\u002Dsurgeon\u0022,\u0022Plastic / Cosmetic Surgeon, Physician\u0022,\u0022Plastic / Cosmetic Surgeons, Physicians\u0022],[\u0022dermatologist\u0022,\u0022Dermatologist\u0022,\u0022Dermatologists\u0022],[\u0022psychologist\u0022,\u0022Psychologist\u0022,\u0022Psychologists\u0022],[\u0022psychiatrist\u0022,\u0022Psychiatrist\u0022,\u0022Psychiatrists\u0022],[\u0022chiropractor\u0022,\u0022Chiropractor\u0022,\u0022Chiropractors\u0022],[\u0022surgeon\u002Dgeneral\u0022,\u0022General Surgeon\u0022,\u0022General Surgeons\u0022],[\u0022ear\u002Dnose\u002Dand\u002Dthroat\u002Dent\u0022,\u0022Ear, Nose, and Throat Doctor / Otolaryngologist (ENT)\u0022,\u0022Ear, Nose, and Throat Doctors / Otolaryngologists (ENTs)\u0022],[\u0022pediatrician\u0022,\u0022Pediatrician\u0022,\u0022Pediatricians\u0022],[\u0022podiatrist\u0022,\u0022Podiatrist\u0022,\u0022Podiatrists\u0022],[\u0022ophthalmologist\u0022,\u0022Ophthalmologist\u0022,\u0022Ophthalmologists\u0022],[\u0022acupuncturist\u0022,\u0022Acupuncturist\u0022,\u0022Acupuncturists\u0022],[\u0022addiction\u002Dmedicine\u0022,\u0022Addiction Medicine Specialist\u0022,\u0022Addiction Medicine Specialists\u0022],[\u0022allergist\u002Dimmunologist\u0022,\u0022Allergist / Immunologist\u0022,\u0022Allergists / Immunologists\u0022],[\u0022anesthesiologist\u0022,\u0022Anesthesiologist\u0022,\u0022Anesthesiologists\u0022],[\u0022audiologist\u0022,\u0022Audiologist\u0022,\u0022Audiologists\u0022],[\u0022bariatric\u002Dweight\u002Dloss\u0022,\u0022Bariatric / Weight Loss Specialist\u0022,\u0022Bariatric / Weight Loss Specialists\u0022],[\u0022cardiologist\u0022,\u0022Cardiologist\u0022,\u0022Cardiologists\u0022],[\u0022cardiothoracic\u002Dsurgeon\u0022,\u0022Cardiothoracic Surgeon\u0022,\u0022Cardiothoracic Surgeons\u0022],[\u0022colorectal\u002Dproctologist\u0022,\u0022Colorectal Surgeon / Proctologist\u0022,\u0022Colorectal Surgeons / Proctologists\u0022],[\u0022dietitian\u0022,\u0022Dietitian\u0022,\u0022Dietitians\u0022],[\u0022emergency\u002Dcritical\u0022,\u0022Emergency Room Doctor\u0022,\u0022Emergency Room Doctors\u0022],[\u0022endocrinologist\u0022,\u0022Endocrinologist\u0022,\u0022Endocrinologists\u0022],[\u0022endodontist\u002Droot\u002Dcanal\u0022,\u0022Endodontist\u0022,\u0022Endodontists\u0022],[\u0022gastroenterologist\u0022,\u0022Gastroenterologist\u0022,\u0022Gastroenterologists\u0022],[\u0022geneticist\u0022,\u0022Geneticist\u0022,\u0022Geneticists\u0022],[\u0022homeopath\u0022,\u0022Homeopath\u0022,\u0022Homeopaths\u0022],[\u0022infectious\u002Ddisease\u0022,\u0022Infectious Disease Specialist\u0022,\u0022Infectious Disease Specialists\u0022],[\u0022registered\u002Dmassage\u002Dtherapist\u0022,\u0022Massage Therapist\u0022,\u0022Massage Therapists\u0022],[\u0022midwife\u0022,\u0022Midwife\u0022,\u0022Midwives\u0022],[\u0022naturopath\u0022,\u0022Naturopath\u0022,\u0022Naturopaths\u0022],[\u0022nephrologist\u002Dkidney\u0022,\u0022Nephrologist\u0022,\u0022Nephrologists\u0022],[\u0022neurologist\u0022,\u0022Neurologist\u0022,\u0022Neurologists\u0022],[\u0022neurosurgeon\u0022,\u0022Neurosurgeon\u0022,\u0022Neurosurgeons\u0022],[\u0022nurse\u002Dpractitioner\u0022,\u0022Nurse Practitioner\u0022,\u0022Nurse Practitioners\u0022],[\u0022occupational\u002Dtherapist\u0022,\u0022Occupational Therapist\u0022,\u0022Occupational Therapists\u0022],[\u0022oncologist\u002Dhematologist\u0022,\u0022Oncologist / Hematologist\u0022,\u0022Oncologists / Hematologists\u0022],[\u0022optometrist\u0022,\u0022Optometrist\u0022,\u0022Optometrists\u0022],[\u0022oral\u002Dsurgeon\u0022,\u0022Oral Surgeon\u0022,\u0022Oral Surgeons\u0022],[\u0022orthodontist\u0022,\u0022Orthodontist\u0022,\u0022Orthodontists\u0022],[\u0022osteopath\u0022,\u0022Osteopath\u0022,\u0022Osteopaths\u0022],[\u0022pain\u002Dmgmt\u002Dphysical\u002Drehab\u0022,\u0022Pain Management Specialist / Physical Therapist\u0022,\u0022Pain Management Specialists / Physical Therapists\u0022],[\u0022pain\u002Dmedicine\u002Dspecialist\u0022,\u0022Pain Medicine Specialist\u0022,\u0022Pain Medicine Specialists\u0022],[\u0022pathologist\u0022,\u0022Pathologist\u0022,\u0022Pathologists\u0022],[\u0022perinatologist\u002Dmaternal\u002Dfetal\u002Dmedicine\u0022,\u0022Perinatologist / Maternal\u002DFetal Medicine Specialist\u0022,\u0022Perinatologists\u0022],[\u0022periodontist\u002Dgums\u0022,\u0022Periodontist\u0022,\u0022Periodontists\u0022],[\u0022physiatrist\u002Dphysical\u002Dmedicine\u002Drehabilitation\u0022,\u0022Physiatrist / Physical Medicine \u0026 Rehabilitation\u0022,\u0022Physiatrists / Physical Medicine \u0026 Rehabilitation\u0022],[\u0022physical\u002Dtherapist\u002Dphysiotherapist\u0022,\u0022Physical Therapist / Physiotherapist\u0022,\u0022Physical Therapists / Physiotherapists\u0022],[\u0022physician\u002Dassistant\u0022,\u0022Physician Assistant\u0022,\u0022Physician Assistants\u0022],[\u0022pulmonologist\u002Dlungs\u0022,\u0022Pulmonologist\u0022,\u0022Pulmonologists\u0022],[\u0022radiation\u002Doncologist\u0022,\u0022Radiation Oncologist\u0022,\u0022Radiation Oncologists\u0022],[\u0022radiologist\u0022,\u0022Radiologist\u0022,\u0022Radiologists\u0022],[\u0022reproductive\u002Dendocrinologist\u0022,\u0022Reproductive Endocrinologist\u0022,\u0022Reproductive Endocrinologists\u0022],[\u0022rheumatologist\u0022,\u0022Rheumatologist\u0022,\u0022Rheumatologists\u0022],[\u0022sleep\u002Ddisorders\u0022,\u0022Sleep Doctor\u0022,\u0022Sleep Doctors\u0022],[\u0022sports\u002Dmedicine\u002Dphysicians\u0022,\u0022Sports Medicine Physician\u0022,\u0022Sports Medicine Physicians\u0022],[\u0022therapist\u0022,\u0022Therapist\u0022,\u0022Therapists\u0022],[\u0022urogynecologist\u0022,\u0022Urogynecologist\u0022,\u0022Urogynecologists\u0022],[\u0022urologist\u0022,\u0022Urologist\u0022,\u0022Urologists\u0022],[\u0022vascular\u002Dphlebologist\u0022,\u0022Vascular Surgeon / Phlebologist\u0022,\u0022Vascular Surgeons / Phlebologists\u0022]],\u0022selected\u0022:{\u0022specialty\u0022:\u0022family\u002Dgp\u0022,\u0022city\u0022:\u0022ashburn\u0022,\u0022province\u0022:\u0022va\u0022,\u0022country\u0022:\u0022us\u0022}}");window.DATA.home_specialties_props=JSON.parse("{\u0022topDoctors\u0022:[{\u0022id\u0022:546601,\u0022url\u0022:\u0022/doctor\u002Dratings/3379891/Dr\u002DMINH\u002DTA\u002DAllentown\u002DPA.html/\u0022,\u0022full_name\u0022:\u0022Dr. Minh Ta\u0022,\u0022images\u0022:{\u002232x32\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dminh\u002Dta\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_32x32.jpg\u0022,\u002270x70\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dminh\u002Dta\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_70x70.jpg\u0022,\u002277x77\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dminh\u002Dta\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_77x77.jpg\u0022,\u0022100x100\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dminh\u002Dta\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_100x100.jpg\u0022,\u0022165x165\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dminh\u002Dta\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_165x165.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dminh\u002Dta\u002Dfamily\u002Dgp.jpg\u0022},\u0022rating\u0022:{\u0022staff\u0022:4.885245901639344,\u0022punctuality\u0022:4.868852459016393,\u0022helpfulness\u0022:4.80327868852459,\u0022knowledge\u0022:4.868852459016393,\u0022count\u0022:61,\u0022distribution\u0022:{\u00221\u0022:1,\u00222\u0022:1,\u00223\u0022:1,\u00224\u0022:0,\u00225\u0022:58},\u0022average\u0022:4.85655737704918,\u0022bestRating\u0022:5.0},\u0022specialty\u0022:\u0022family\u002Dgp\u0022,\u0022specialty_name\u0022:\u0022Family Doctor / General Practitioner\u0022,\u0022sample_rating_comment\u0022:\u0022Amazing bedside manner, straight to the point, clear on explanation, he fights the system to protect his patients, I feel very well taken care of by this physician.\u0022,\u0022ga_provider_data\u0022:{\u0022provider_id\u0022:546601,\u0022profile_status\u0022:\u0022claimed\u0022,\u0022profile_data_source\u0022:\u0022RateMDs\u0022,\u0022provider_ranking\u0022:1,\u0022provider_review_count\u0022:61,\u0022provider_city\u0022:\u0022Ashburn\u0022,\u0022provider_province\u0022:\u0022Virginia\u0022,\u0022provider_country\u0022:\u0022United States\u0022,\u0022provider_status\u0022:\u0022Practicing\u0022,\u0022specialty\u0022:\u0022Family Doctor / General Practitioner\u0022,\u0022star_rating\u0022:4.9,\u0022booking_source\u0022:null,\u0022free_profile_attribution_activation\u0022:\u0022insurance\u0022,\u0022paid_profile_attribution_activation\u0022:\u0022\u0022}},{\u0022id\u0022:1888099,\u0022url\u0022:\u0022/doctor\u002Dratings/374312/Dr\u002DHolger\u002DNoelle\u002DASHBURN\u002DVA.html/\u0022,\u0022full_name\u0022:\u0022Dr. Holger Noelle\u0022,\u0022images\u0022:{\u002232x32\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dholger\u002Dnoelle\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_32x32.jpg\u0022,\u002270x70\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dholger\u002Dnoelle\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_70x70.jpg\u0022,\u002277x77\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dholger\u002Dnoelle\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_77x77.jpg\u0022,\u0022100x100\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dholger\u002Dnoelle\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_100x100.jpg\u0022,\u0022165x165\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dholger\u002Dnoelle\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_165x165.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dholger\u002Dnoelle\u002Dfamily\u002Dgp.jpg\u0022},\u0022rating\u0022:{\u0022staff\u0022:4.92,\u0022punctuality\u0022:4.96,\u0022helpfulness\u0022:4.96,\u0022knowledge\u0022:5.0,\u0022count\u0022:25,\u0022distribution\u0022:{\u00221\u0022:0,\u00222\u0022:0,\u00223\u0022:0,\u00224\u0022:1,\u00225\u0022:24},\u0022average\u0022:4.96,\u0022bestRating\u0022:5.0},\u0022specialty\u0022:\u0022family\u002Dgp\u0022,\u0022specialty_name\u0022:\u0022Family Doctor / General Practitioner\u0022,\u0022sample_rating_comment\u0022:\u0022Patience with patients is how I would characterize Dr. Noelle. Excellent care!\u0022,\u0022ga_provider_data\u0022:{\u0022provider_id\u0022:1888099,\u0022profile_status\u0022:\u0022claimed\u0022,\u0022profile_data_source\u0022:\u0022RateMDs\u0022,\u0022provider_ranking\u0022:2,\u0022provider_review_count\u0022:25,\u0022provider_city\u0022:\u0022Ashburn\u0022,\u0022provider_province\u0022:\u0022Virginia\u0022,\u0022provider_country\u0022:\u0022United States\u0022,\u0022provider_status\u0022:\u0022Practicing\u0022,\u0022specialty\u0022:\u0022Family Doctor / General Practitioner\u0022,\u0022star_rating\u0022:5.0,\u0022booking_source\u0022:null,\u0022free_profile_attribution_activation\u0022:\u0022insurance\u0022,\u0022paid_profile_attribution_activation\u0022:\u0022\u0022}},{\u0022id\u0022:1026952,\u0022url\u0022:\u0022/doctor\u002Dratings/2968490/Dr\u002DHANNAH+E.\u002DPHILLIPS\u002DAshburn\u002DVA.html/\u0022,\u0022full_name\u0022:\u0022Dr. Hannah E. Phillips\u0022,\u0022images\u0022:{\u002232x32\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dhannah\u002De\u002Dphillips\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_32x32.jpg\u0022,\u002270x70\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dhannah\u002De\u002Dphillips\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_70x70.jpg\u0022,\u002277x77\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dhannah\u002De\u002Dphillips\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_77x77.jpg\u0022,\u0022100x100\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dhannah\u002De\u002Dphillips\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_100x100.jpg\u0022,\u0022165x165\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dhannah\u002De\u002Dphillips\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_165x165.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dhannah\u002De\u002Dphillips\u002Dfamily\u002Dgp.jpg\u0022},\u0022rating\u0022:{\u0022staff\u0022:4.870967741935484,\u0022punctuality\u0022:4.870967741935484,\u0022helpfulness\u0022:4.903225806451613,\u0022knowledge\u0022:4.967741935483871,\u0022count\u0022:31,\u0022distribution\u0022:{\u00221\u0022:0,\u00222\u0022:0,\u00223\u0022:1,\u00224\u0022:2,\u00225\u0022:28},\u0022average\u0022:4.903225806451613,\u0022bestRating\u0022:5.0},\u0022specialty\u0022:\u0022family\u002Dgp\u0022,\u0022specialty_name\u0022:\u0022Family Doctor / General Practitioner\u0022,\u0022sample_rating_comment\u0022:\u0022She is excellent. Knowledgeable, professional and very courteous. \u0022,\u0022ga_provider_data\u0022:{\u0022provider_id\u0022:1026952,\u0022profile_status\u0022:\u0022claimed\u0022,\u0022profile_data_source\u0022:\u0022RateMDs\u0022,\u0022provider_ranking\u0022:3,\u0022provider_review_count\u0022:31,\u0022provider_city\u0022:\u0022Ashburn\u0022,\u0022provider_province\u0022:\u0022Virginia\u0022,\u0022provider_country\u0022:\u0022United States\u0022,\u0022provider_status\u0022:\u0022Practicing\u0022,\u0022specialty\u0022:\u0022Family Doctor / General Practitioner\u0022,\u0022star_rating\u0022:4.9,\u0022booking_source\u0022:null,\u0022free_profile_attribution_activation\u0022:\u0022insurance\u0022,\u0022paid_profile_attribution_activation\u0022:\u0022\u0022}},{\u0022id\u0022:546532,\u0022url\u0022:\u0022/doctor\u002Dratings/3379960/Dr\u002DRYUN+J.\u002DLEE\u002DNewport+News\u002DVA.html/\u0022,\u0022full_name\u0022:\u0022Dr. Ryun J. Lee\u0022,\u0022images\u0022:{\u002232x32\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dryun\u002Dj\u002Dlee\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_32x32.jpg\u0022,\u002270x70\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dryun\u002Dj\u002Dlee\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_70x70.jpg\u0022,\u002277x77\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dryun\u002Dj\u002Dlee\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_77x77.jpg\u0022,\u0022100x100\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dryun\u002Dj\u002Dlee\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_100x100.jpg\u0022,\u0022165x165\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dryun\u002Dj\u002Dlee\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_165x165.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dryun\u002Dj\u002Dlee\u002Dfamily\u002Dgp.jpg\u0022},\u0022rating\u0022:{\u0022staff\u0022:5.0,\u0022punctuality\u0022:5.0,\u0022helpfulness\u0022:5.0,\u0022knowledge\u0022:5.0,\u0022count\u0022:14,\u0022distribution\u0022:{\u00221\u0022:0,\u00222\u0022:0,\u00223\u0022:0,\u00224\u0022:0,\u00225\u0022:14},\u0022average\u0022:5.0,\u0022bestRating\u0022:5.0},\u0022specialty\u0022:\u0022family\u002Dgp\u0022,\u0022specialty_name\u0022:\u0022Family Doctor / General Practitioner\u0022,\u0022sample_rating_comment\u0022:\u0022I highly recommend Dr. Lee\u0027s services! She was very professional all the way, and answered all my questions with calm. \u0022,\u0022ga_provider_data\u0022:{\u0022provider_id\u0022:546532,\u0022profile_status\u0022:\u0022claimed\u0022,\u0022profile_data_source\u0022:\u0022DoctorDotCom\u0022,\u0022provider_ranking\u0022:4,\u0022provider_review_count\u0022:14,\u0022provider_city\u0022:\u0022Ashburn\u0022,\u0022provider_province\u0022:\u0022Virginia\u0022,\u0022provider_country\u0022:\u0022United States\u0022,\u0022provider_status\u0022:\u0022Practicing\u0022,\u0022specialty\u0022:\u0022Family Doctor / General Practitioner\u0022,\u0022star_rating\u0022:5.0,\u0022booking_source\u0022:null,\u0022free_profile_attribution_activation\u0022:\u0022\u0022,\u0022paid_profile_attribution_activation\u0022:\u0022\u0022}},{\u0022id\u0022:872622,\u0022url\u0022:\u0022/doctor\u002Dratings/3180125/Dr\u002DKIMBERLY\u002DZAWISTOSKI\u002DASHBURN\u002DVA.html/\u0022,\u0022full_name\u0022:\u0022Dr. Kimberly Zawistoski\u0022,\u0022images\u0022:{\u002232x32\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dkimberly\u002Dzawistoski\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_32x32.jpg\u0022,\u002270x70\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dkimberly\u002Dzawistoski\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_70x70.jpg\u0022,\u002277x77\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dkimberly\u002Dzawistoski\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_77x77.jpg\u0022,\u0022100x100\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dkimberly\u002Dzawistoski\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_100x100.jpg\u0022,\u0022165x165\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dkimberly\u002Dzawistoski\u002Dfamily\u002Dgp.jpg_thumbs/v1_at_165x165.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dkimberly\u002Dzawistoski\u002Dfamily\u002Dgp.jpg\u0022},\u0022rating\u0022:{\u0022staff\u0022:4.666666666666667,\u0022punctuality\u0022:4.611111111111111,\u0022helpfulness\u0022:4.555555555555555,\u0022knowledge\u0022:4.722222222222222,\u0022count\u0022:18,\u0022distribution\u0022:{\u00221\u0022:1,\u00222\u0022:1,\u00223\u0022:0,\u00224\u0022:0,\u00225\u0022:16},\u0022average\u0022:4.638888888888889,\u0022bestRating\u0022:5.0},\u0022specialty\u0022:\u0022family\u002Dgp\u0022,\u0022specialty_name\u0022:\u0022Family Doctor / General Practitioner\u0022,\u0022sample_rating_comment\u0022:\u0022She is very incompetent and does not know what she is doing. My wife was pregnant so we went to see her. after 1.5 hours she came to see my wife however, after 45 minutes and about 6 to 7 pokes on my wife\u0027s arm, she told us that she could not find a vein to put the IV. we ended up in emergency room due to that. she still expected us to pay for the visit. horrible....AVOID her.\u0022,\u0022ga_provider_data\u0022:{\u0022provider_id\u0022:872622,\u0022profile_status\u0022:\u0022unclaimed\u0022,\u0022profile_data_source\u0022:\u0022RateMDs\u0022,\u0022provider_ranking\u0022:5,\u0022provider_review_count\u0022:18,\u0022provider_city\u0022:\u0022Ashburn\u0022,\u0022provider_province\u0022:\u0022Virginia\u0022,\u0022provider_country\u0022:\u0022United States\u0022,\u0022provider_status\u0022:\u0022Practicing\u0022,\u0022specialty\u0022:\u0022Family Doctor / General Practitioner\u0022,\u0022star_rating\u0022:4.6,\u0022booking_source\u0022:null,\u0022free_profile_attribution_activation\u0022:\u0022insurance\u0022,\u0022paid_profile_attribution_activation\u0022:\u0022\u0022}}],\u0022specialties\u0022:[[\u0022family\u002Dgp\u0022,\u0022Family Doctor / General Practitioner\u0022,\u0022Family Doctors / General Practitioners\u0022],[\u0022gynecologist\u002Dobgyn\u0022,\u0022Gynecologists and Obstetricians (OBGYN)\u0022,\u0022Gynecologists and Obstetricians (OBGYN)\u0022],[\u0022dentist\u0022,\u0022Dentist\u0022,\u0022Dentists\u0022],[\u0022orthopedics\u002Dsports\u0022,\u0022Orthopedic Surgeon\u0022,\u0022Orthopedic Surgeons\u0022],[\u0022internist\u002Dgeriatrician\u0022,\u0022Internist / Geriatrician\u0022,\u0022Internists / Geriatricians\u0022],[\u0022cosmetic\u002Dplastic\u002Dsurgeon\u0022,\u0022Plastic / Cosmetic Surgeon, Physician\u0022,\u0022Plastic / Cosmetic Surgeons, Physicians\u0022],[\u0022dermatologist\u0022,\u0022Dermatologist\u0022,\u0022Dermatologists\u0022],[\u0022psychologist\u0022,\u0022Psychologist\u0022,\u0022Psychologists\u0022],[\u0022psychiatrist\u0022,\u0022Psychiatrist\u0022,\u0022Psychiatrists\u0022],[\u0022chiropractor\u0022,\u0022Chiropractor\u0022,\u0022Chiropractors\u0022],[\u0022surgeon\u002Dgeneral\u0022,\u0022General Surgeon\u0022,\u0022General Surgeons\u0022],[\u0022ear\u002Dnose\u002Dand\u002Dthroat\u002Dent\u0022,\u0022Ear, Nose, and Throat Doctor / Otolaryngologist (ENT)\u0022,\u0022Ear, Nose, and Throat Doctors / Otolaryngologists (ENTs)\u0022],[\u0022pediatrician\u0022,\u0022Pediatrician\u0022,\u0022Pediatricians\u0022]],\u0022city\u0022:{\u0022name\u0022:\u0022Ashburn\u0022,\u0022slug\u0022:\u0022ashburn\u0022,\u0022province_slug\u0022:\u0022va\u0022}}");window.DATA.location_detail_side_top_locations_list_props=JSON.parse("{\u0022top_locations\u0022:[{\u0022id\u0022:913194,\u0022url\u0022:\u0022/clinic/us\u002Dva\u002Dashburn\u002Dashburn\u002Dpsychological\u002Dservices/\u0022,\u0022name\u0022:\u0022Ashburn Psychological Services\u0022,\u0022images\u0022:{\u002277x77\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_77x77.8dbdd6486c65.jpg\u0022,\u002270x70\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_70x70.8dbdd6486c65.jpg\u0022,\u0022100x100\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_100x100.c205560f7442.jpg\u0022,\u0022165x165\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_165x165.7ed2777bc15f.jpg\u0022,\u0022autoxauto\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_autoxauto.7ed2777bc15f.jpg\u0022},\u0022rating\u0022:{\u0022cleanliness\u0022:5.0,\u0022facilities\u0022:5.0,\u0022services\u0022:5.0,\u0022value\u0022:5.0,\u0022count\u0022:10,\u0022average\u0022:5.0,\u0022bestRating\u0022:5.0}},{\u0022id\u0022:2163300,\u0022url\u0022:\u0022/clinic/us\u002Dva\u002Dashburn\u002Debc\u002Dllc/\u0022,\u0022name\u0022:\u0022EBC, LLC\u0022,\u0022images\u0022:{\u002277x77\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_77x77.8dbdd6486c65.jpg\u0022,\u002270x70\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_70x70.8dbdd6486c65.jpg\u0022,\u0022100x100\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_100x100.c205560f7442.jpg\u0022,\u0022165x165\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_165x165.7ed2777bc15f.jpg\u0022,\u0022autoxauto\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_autoxauto.7ed2777bc15f.jpg\u0022},\u0022rating\u0022:{\u0022cleanliness\u0022:5.0,\u0022facilities\u0022:5.0,\u0022services\u0022:5.0,\u0022value\u0022:5.0,\u0022count\u0022:3,\u0022average\u0022:5.0,\u0022bestRating\u0022:5.0}},{\u0022id\u0022:2213816,\u0022url\u0022:\u0022/clinic/us\u002Dva\u002Dashburn\u002Delle\u002Daesthetic\u002Darts\u002Dplastic\u002Dsurgery/\u0022,\u0022name\u0022:\u0022Elle Aesthetic Arts \u0026 Plastic Surgery\u0022,\u0022images\u0022:{\u002277x77\u0022:\u0022https://cdn1.ratemds.com/media/locations/location/image/image_upload_o4pIR0p.jpg_thumbs/v1_at_77x77.jpg\u0022,\u002270x70\u0022:\u0022https://cdn1.ratemds.com/media/locations/location/image/image_upload_o4pIR0p.jpg_thumbs/v1_at_70x70.jpg\u0022,\u0022100x100\u0022:\u0022https://cdn1.ratemds.com/media/locations/location/image/image_upload_o4pIR0p.jpg_thumbs/v1_at_100x100.jpg\u0022,\u0022165x165\u0022:\u0022https://cdn1.ratemds.com/media/locations/location/image/image_upload_o4pIR0p.jpg_thumbs/v1_at_165x165.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/locations/location/image/image_upload_o4pIR0p.jpg\u0022},\u0022rating\u0022:{\u0022cleanliness\u0022:5.0,\u0022facilities\u0022:5.0,\u0022services\u0022:5.0,\u0022value\u0022:5.0,\u0022count\u0022:2,\u0022average\u0022:5.0,\u0022bestRating\u0022:5.0}},{\u0022id\u0022:1073778,\u0022url\u0022:\u0022/clinic/us\u002Dva\u002Dashburn\u002Ddr\u002Dpouran\u002Dnikkhah\u002Ddmd/\u0022,\u0022name\u0022:\u0022Dr. Pouran Nikkhah, DMD\u0022,\u0022images\u0022:{\u002277x77\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_77x77.8dbdd6486c65.jpg\u0022,\u002270x70\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_70x70.8dbdd6486c65.jpg\u0022,\u0022100x100\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_100x100.c205560f7442.jpg\u0022,\u0022165x165\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_165x165.7ed2777bc15f.jpg\u0022,\u0022autoxauto\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_autoxauto.7ed2777bc15f.jpg\u0022},\u0022rating\u0022:{\u0022cleanliness\u0022:5.0,\u0022facilities\u0022:5.0,\u0022services\u0022:5.0,\u0022value\u0022:5.0,\u0022count\u0022:1,\u0022average\u0022:5.0,\u0022bestRating\u0022:5.0}},{\u0022id\u0022:885942,\u0022url\u0022:\u0022/clinic/us\u002Dva\u002Dashburn\u002Ddr\u002Dcourtney\u002Dj\u002Dullrich\u002Ddmd/\u0022,\u0022name\u0022:\u0022Dr. Courtney J. Ullrich, DMD\u0022,\u0022images\u0022:{\u002277x77\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_77x77.8dbdd6486c65.jpg\u0022,\u002270x70\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_70x70.8dbdd6486c65.jpg\u0022,\u0022100x100\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_100x100.c205560f7442.jpg\u0022,\u0022165x165\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_165x165.7ed2777bc15f.jpg\u0022,\u0022autoxauto\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_autoxauto.7ed2777bc15f.jpg\u0022},\u0022rating\u0022:{\u0022cleanliness\u0022:5.0,\u0022facilities\u0022:5.0,\u0022services\u0022:5.0,\u0022value\u0022:5.0,\u0022count\u0022:1,\u0022average\u0022:5.0,\u0022bestRating\u0022:5.0}}],\u0022city\u0022:\u0022Ashburn\u0022,\u0022locations_count\u0022:330}")
window.DATA.doctorDetailSideAdData=JSON.parse("{\u0022adDoctor\u0022:{\u0022slug\u0022:\u00223118418/Dr\u002DMichael+S.\u002DOberschneider\u002DAshburn\u002DVA.html\u0022,\u0022created\u0022:\u00222014\u002D06\u002D13T12:12:35.718502\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D05\u002D28T11:01:11.160148\u002D04:00\u0022,\u0022id\u0022:913293,\u0022facet_url\u0022:\u0022/best\u002Ddoctors/?specialty\u003Dpsychologist\u0022,\u0022full_name\u0022:\u0022Michael S. Oberschneider\u0022,\u0022full_name_specialty\u0022:\u0022Michael S. Oberschneider\u0022,\u0022location\u0022:{\u0022id\u0022:913194,\u0022category\u0022:\u0022clinic\u0022,\u0022created\u0022:\u00222014\u002D06\u002D13T12:12:35.741682\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D04\u002D26T07:37:59.460848\u002D04:00\u0022,\u0022longitude\u0022:\u002D77.477792,\u0022latitude\u0022:39.022779,\u0022slug\u0022:\u0022us\u002Dva\u002Dashburn\u002Dashburn\u002Dpsychological\u002Dservices\u0022,\u0022city\u0022:{\u0022id\u0022:2516,\u0022province_name\u0022:\u0022Virginia\u0022,\u0022province_slug\u0022:\u0022va\u0022,\u0022country_name\u0022:\u0022United States\u0022,\u0022country_slug\u0022:\u0022us\u0022,\u0022cover_images\u0022:{\u0022253x83\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg_thumbs/v1_at_253x83.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg\u0022},\u0022modified\u0022:\u00222018\u002D12\u002D10T15:14:58.538585\u002D05:00\u0022,\u0022created\u0022:\u00222014\u002D06\u002D25T11:34:15.276000\u002D04:00\u0022,\u0022deleted\u0022:false,\u0022slug\u0022:\u0022ashburn\u0022,\u0022name\u0022:\u0022Ashburn\u0022,\u0022cover_image\u0022:null,\u0022province\u0022:14},\u0022suite_on_display\u0022:\u0022Suite 240\u0022,\u0022accepting_cdcp\u0022:false,\u0022name\u0022:\u0022Ashburn Psychological Services\u0022,\u0022address\u0022:\u002244095 Pipeline Plaza\u0022,\u0022suite\u0022:\u0022Suite 240\u0022,\u0022postal_code\u0022:\u002220147\u0022,\u0022city_id\u0022:2516,\u0022phone_number\u0022:\u0022(703) 723\u002D2999\u0022,\u0022website\u0022:\u0022http://www.ashburnpsych.com\u0022,\u0022image\u0022:null,\u0022images\u0022:{\u002277x77\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_77x77.8dbdd6486c65.jpg\u0022,\u002270x70\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_70x70.8dbdd6486c65.jpg\u0022,\u0022100x100\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_100x100.c205560f7442.jpg\u0022,\u0022165x165\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_165x165.7ed2777bc15f.jpg\u0022,\u0022autoxauto\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_autoxauto.7ed2777bc15f.jpg\u0022},\u0022rating\u0022:{\u0022cleanliness\u0022:5.0,\u0022facilities\u0022:5.0,\u0022services\u0022:5.0,\u0022value\u0022:5.0,\u0022count\u0022:10,\u0022average\u0022:5.0,\u0022bestRating\u0022:5.0},\u0022url\u0022:\u0022/clinic/us\u002Dva\u002Dashburn\u002Dashburn\u002Dpsychological\u002Dservices/\u0022,\u0022geocode_address\u0022:\u0022ashburn psychological services, 44095 pipeline plaza, ashburn, virginia, united states, 20147\u0022},\u0022images\u0022:{\u002232x32\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dmichael\u002Ds\u002Doberschneider\u002Dpsychologist.jpg_thumbs/v1_at_32x32.jpg\u0022,\u002270x70\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dmichael\u002Ds\u002Doberschneider\u002Dpsychologist.jpg_thumbs/v1_at_70x70.jpg\u0022,\u002277x77\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dmichael\u002Ds\u002Doberschneider\u002Dpsychologist.jpg_thumbs/v1_at_77x77.jpg\u0022,\u0022100x100\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dmichael\u002Ds\u002Doberschneider\u002Dpsychologist.jpg_thumbs/v1_at_100x100.jpg\u0022,\u0022165x165\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dmichael\u002Ds\u002Doberschneider\u002Dpsychologist.jpg_thumbs/v1_at_165x165.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/doctors/doctor/image/doctor\u002Dmichael\u002Ds\u002Doberschneider\u002Dpsychologist.jpg\u0022},\u0022rating\u0022:{\u0022staff\u0022:4.868421052631579,\u0022punctuality\u0022:4.815789473684211,\u0022helpfulness\u0022:4.921052631578948,\u0022knowledge\u0022:4.921052631578948,\u0022count\u0022:38,\u0022distribution\u0022:{\u00221\u0022:0,\u00222\u0022:1,\u00223\u0022:0,\u00224\u0022:1,\u00225\u0022:36},\u0022average\u0022:4.881578947368421,\u0022bestRating\u0022:5.0},\u0022sample_rating_comment\u0022:\u0022Dr. Oberschneider was selected by our judge to be our custody evaluator. The attorneys offered six names (three each), and our judge chose Dr. Oberschneider saying that he is \u005C\u0022excellent\u005C\u0022 and that he has been in his court room many times. It was also comforting to know that both attorneys (mine and my ex\u0027s) have worked with Dr. Oberschneider on many cases like ours. I am so pleased with Dr. Oberschneider\u0027s work. He thoroughly evaluated our toxic co parenting relationship and was able to come to the correct conclusions for our children. I don\u0027t agree with everything he recommended (like my having to spend some time with my ex\u002Dhusband in the presence of our children during visitation pick ups and drop offs), but it\u0027s probably all good for our kids. If you ever have to do a custody evaluator, I give Dr. Oberschneider 5 stars. His staff was also outstanding. Thank you!!! \u0022,\u0022sample_rating_pk\u0022:\u00223352767\u0022,\u0022vanity_specialty\u0022:\u0022\u0022,\u0022specialty\u0022:\u0022psychologist\u0022,\u0022specialty_name\u0022:\u0022Psychologist\u0022,\u0022url\u0022:\u0022/doctor\u002Dratings/3118418/Dr\u002DMichael+S.\u002DOberschneider\u002DAshburn\u002DVA.html/\u0022,\u0022verified\u0022:true,\u0022enhanced_ad_enabled\u0022:false,\u0022appointments_enabled\u0022:true,\u0022appointments_available\u0022:false,\u0022appointments_enabled_zocdoc\u0022:false,\u0022zocdoc_doctor_profile_url\u0022:\u0022\u0022,\u0022accepting_virtual_appointments\u0022:null,\u0022accepting_virtual_appointments_zocdoc\u0022:false,\u0022ratings_disabled\u0022:false,\u0022doctor_location_hours\u0022:[],\u0022doctor_locations\u0022:[{\u0022id\u0022:913191,\u0022primary\u0022:true,\u0022verified\u0022:true,\u0022source\u0022:null,\u0022location\u0022:{\u0022id\u0022:913194,\u0022category\u0022:\u0022clinic\u0022,\u0022created\u0022:\u00222014\u002D06\u002D13T12:12:35.741682\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D04\u002D26T07:37:59.460848\u002D04:00\u0022,\u0022longitude\u0022:\u002D77.477792,\u0022latitude\u0022:39.022779,\u0022slug\u0022:\u0022us\u002Dva\u002Dashburn\u002Dashburn\u002Dpsychological\u002Dservices\u0022,\u0022city\u0022:{\u0022id\u0022:2516,\u0022province_name\u0022:\u0022Virginia\u0022,\u0022province_slug\u0022:\u0022va\u0022,\u0022country_name\u0022:\u0022United States\u0022,\u0022country_slug\u0022:\u0022us\u0022,\u0022cover_images\u0022:{\u0022253x83\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg_thumbs/v1_at_253x83.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg\u0022},\u0022modified\u0022:\u00222018\u002D12\u002D10T15:14:58.538585\u002D05:00\u0022,\u0022created\u0022:\u00222014\u002D06\u002D25T11:34:15.276000\u002D04:00\u0022,\u0022deleted\u0022:false,\u0022slug\u0022:\u0022ashburn\u0022,\u0022name\u0022:\u0022Ashburn\u0022,\u0022cover_image\u0022:null,\u0022province\u0022:14},\u0022suite_on_display\u0022:\u0022Suite 240\u0022,\u0022accepting_cdcp\u0022:false,\u0022name\u0022:\u0022Ashburn Psychological Services\u0022,\u0022address\u0022:\u002244095 Pipeline Plaza\u0022,\u0022suite\u0022:\u0022Suite 240\u0022,\u0022postal_code\u0022:\u002220147\u0022,\u0022city_id\u0022:2516,\u0022phone_number\u0022:\u0022(703) 723\u002D2999\u0022,\u0022website\u0022:\u0022http://www.ashburnpsych.com\u0022,\u0022image\u0022:null,\u0022images\u0022:{\u002277x77\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_77x77.8dbdd6486c65.jpg\u0022,\u002270x70\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_70x70.8dbdd6486c65.jpg\u0022,\u0022100x100\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_100x100.c205560f7442.jpg\u0022,\u0022165x165\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_165x165.7ed2777bc15f.jpg\u0022,\u0022autoxauto\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_autoxauto.7ed2777bc15f.jpg\u0022},\u0022rating\u0022:{\u0022cleanliness\u0022:5.0,\u0022facilities\u0022:5.0,\u0022services\u0022:5.0,\u0022value\u0022:5.0,\u0022count\u0022:10,\u0022average\u0022:5.0,\u0022bestRating\u0022:5.0},\u0022url\u0022:\u0022/clinic/us\u002Dva\u002Dashburn\u002Dashburn\u002Dpsychological\u002Dservices/\u0022,\u0022geocode_address\u0022:\u0022ashburn psychological services, 44095 pipeline plaza, ashburn, virginia, united states, 20147\u0022},\u0022location_id\u0022:913194}],\u0022appointments_enabled_doctor_com\u0022:false,\u0022is_promoted_doctor\u0022:true,\u0022doctor_com_id\u0022:\u0022\u0022,\u0022is_doctor_com_provider_enhanced\u0022:\u0022\u0022,\u0022accepting_patients\u0022:true,\u0022display_address_on_listings\u0022:true,\u0022display_call_now_button\u0022:true,\u0022accepting_patients_badge\u0022:true,\u0022virtual_visits_badge\u0022:false,\u0022online_scheduling_badge\u0022:false,\u0022doctor_locations_on_display\u0022:[{\u0022id\u0022:913191,\u0022primary\u0022:true,\u0022verified\u0022:true,\u0022source\u0022:null,\u0022location\u0022:{\u0022id\u0022:913194,\u0022category\u0022:\u0022clinic\u0022,\u0022created\u0022:\u00222014\u002D06\u002D13T12:12:35.741682\u002D04:00\u0022,\u0022modified\u0022:\u00222025\u002D04\u002D26T07:37:59.460848\u002D04:00\u0022,\u0022longitude\u0022:\u002D77.477792,\u0022latitude\u0022:39.022779,\u0022slug\u0022:\u0022us\u002Dva\u002Dashburn\u002Dashburn\u002Dpsychological\u002Dservices\u0022,\u0022city\u0022:{\u0022id\u0022:2516,\u0022province_name\u0022:\u0022Virginia\u0022,\u0022province_slug\u0022:\u0022va\u0022,\u0022country_name\u0022:\u0022United States\u0022,\u0022country_slug\u0022:\u0022us\u0022,\u0022cover_images\u0022:{\u0022253x83\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg_thumbs/v1_at_253x83.jpg\u0022,\u0022autoxauto\u0022:\u0022https://cdn1.ratemds.com/media/locations/country/united\u002Dstates.jpg\u0022},\u0022modified\u0022:\u00222018\u002D12\u002D10T15:14:58.538585\u002D05:00\u0022,\u0022created\u0022:\u00222014\u002D06\u002D25T11:34:15.276000\u002D04:00\u0022,\u0022deleted\u0022:false,\u0022slug\u0022:\u0022ashburn\u0022,\u0022name\u0022:\u0022Ashburn\u0022,\u0022cover_image\u0022:null,\u0022province\u0022:14},\u0022suite_on_display\u0022:\u0022Suite 240\u0022,\u0022accepting_cdcp\u0022:false,\u0022name\u0022:\u0022Ashburn Psychological Services\u0022,\u0022address\u0022:\u002244095 Pipeline Plaza\u0022,\u0022suite\u0022:\u0022Suite 240\u0022,\u0022postal_code\u0022:\u002220147\u0022,\u0022city_id\u0022:2516,\u0022phone_number\u0022:\u0022(703) 723\u002D2999\u0022,\u0022website\u0022:\u0022http://www.ashburnpsych.com\u0022,\u0022image\u0022:null,\u0022images\u0022:{\u002277x77\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_77x77.8dbdd6486c65.jpg\u0022,\u002270x70\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_70x70.8dbdd6486c65.jpg\u0022,\u0022100x100\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_100x100.c205560f7442.jpg\u0022,\u0022165x165\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_165x165.7ed2777bc15f.jpg\u0022,\u0022autoxauto\u0022:\u0022//www.ratemds.com/static/img/locations/clinic.png_thumbs/v1_at_autoxauto.7ed2777bc15f.jpg\u0022},\u0022rating\u0022:{\u0022cleanliness\u0022:5.0,\u0022facilities\u0022:5.0,\u0022services\u0022:5.0,\u0022value\u0022:5.0,\u0022count\u0022:10,\u0022average\u0022:5.0,\u0022bestRating\u0022:5.0},\u0022url\u0022:\u0022/clinic/us\u002Dva\u002Dashburn\u002Dashburn\u002Dpsychological\u002Dservices/\u0022,\u0022geocode_address\u0022:\u0022ashburn psychological services, 44095 pipeline plaza, ashburn, virginia, united states, 20147\u0022},\u0022location_id\u0022:913194}],\u0022ga_provider_data\u0022:{\u0022provider_id\u0022:913293,\u0022profile_status\u0022:\u0022promoted\u0022,\u0022profile_data_source\u0022:\u0022RateMDs\u0022,\u0022provider_ranking\u0022:1,\u0022provider_review_count\u0022:38,\u0022provider_city\u0022:\u0022Ashburn\u0022,\u0022provider_province\u0022:\u0022Virginia\u0022,\u0022provider_country\u0022:\u0022United States\u0022,\u0022provider_status\u0022:\u0022Practicing\u0022,\u0022specialty\u0022:\u0022Psychologist\u0022,\u0022star_rating\u0022:4.9,\u0022booking_source\u0022:null,\u0022free_profile_attribution_activation\u0022:\u0022bio, areas\u002Dof\u002Dexpertise, publications, awards, accepting patients\u0022,\u0022paid_profile_attribution_activation\u0022:\u0022featured rating, appear_in_ads, display_ads_disabled\u0022}},\u0022adDoctorPromotionMessage\u0022:\u0022Featured profiles are placed at the top of relevant search results and on profiles for similar local providers. These are paid advertising placements. To learn more, visit\u0022,\u0022thirdPartyData\u0022:\u0022\u0022}");window.DATA.pageType='homepage';</script>
<script src="//www.ratemds.com/static/js/entries/doctors/doctor_home.jsx.e112988a0b2a.js.pagespeed.jm.QDaUKL-Woe.js" type="1829c5604bde31646f390b3d-text/javascript"></script>
<script src="//www.ratemds.com/static/js/entries/locations/side_top_location_list.jsx.bebde39ae57d.js.pagespeed.jm.BWOMGwmpHy.js" type="1829c5604bde31646f390b3d-text/javascript"></script>
<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1829c5604bde31646f390b3d-|49" defer></script></body>
</html>