It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: http://careercenter.ohiopharmacists.org/rss/feed.xml

  1.  
  2. <!DOCTYPE HTML>
  3. <html lang="en">
  4. <head><!-- Begin Bootstrap Header -->
  5.      <meta charset="utf-8">
  6.      <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.      <meta name="viewport" content="width=device-width, initial-scale=1">
  8.      <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  9.  
  10.      <script src="http://careercenter.ohiopharmacists.org/bootstrap4/js/jquery-3.7.1.min.js"></script>
  11.  
  12. <!--  <link rel="stylesheet" href="/bootstrap4/css/fontawesome-all.min.css">-->
  13.      <link rel="stylesheet" href="http://careercenter.ohiopharmacists.org/fontawesome-6.4.2/css/all.min.css?ver=002" />
  14.  
  15.      <link href="http://careercenter.ohiopharmacists.org/bootstrap4/css/bootstrap.min.css" rel="stylesheet">
  16.  
  17.      <link rel="stylesheet" href="http://careercenter.ohiopharmacists.org/bootstrap4/css/mdb.min.css" xmlns="http://www.w3.org/1999/html">
  18.      
  19.      
  20.  
  21.  
  22.  
  23. <!-- End Bootstrap Header -->
  24.  
  25.  
  26.  
  27. <title>Ohio Pharmacists Association. For pharmacists, for patients, for you.</title>
  28. <meta name="description" content="The Ohio Pharmacists Association is a valuable resource for pharmacists in all practice settings. Vital information including current pharmacy news, continuing education opportunities, OPA activities and links to other pharmacy resources can be found within these pages." />
  29. <link rel="icon" type="image/x-icon" href="http://careercenter.ohiopharmacists.org/aws/OPA/am/gi/favicon.ico?ver=45" />
  30.  
  31. <link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900" rel="stylesheet">
  32.  
  33. <style type='text/css'>.temp {color:#FFF;}</style><link href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/css/css-screen.css?ver=161' media='screen' rel='Stylesheet' type='text/css' />
  34. <style type='text/css'>.temp {color:#FFF;}</style><link href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/css/css-print.css' media='print' rel='Stylesheet' type='text/css' />
  35.  
  36. <!--[if lt IE 9]>
  37.  <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  38.  <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  39. <![endif]-->
  40.  
  41. <!-- Google Tag Manager -->
  42. <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  43. new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  44. j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  45. 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  46. })(window,document,'script','dataLayer','GTM-W4W9CN4');</script>
  47. <!-- End Google Tag Manager -->
  48.  
  49.  
  50.  
  51. <!-- Google tag (gtag.js) -->
  52. <script async src="https://www.googletagmanager.com/gtag/js?id=G-DRSXL14NGH"></script>
  53. <script>
  54.  window.dataLayer = window.dataLayer || [];
  55.  function gtag(){dataLayer.push(arguments);}
  56.  gtag('js', new Date());
  57.  
  58.  gtag('config', 'G-DRSXL14NGH');
  59. </script>
  60.  
  61.    <script src="/assets/application-60ff8bc8de862bde836e2c338c572e8df15124a40a140181527d5b5681022dd3.js"></script>
  62.    <link rel="stylesheet" media="screen" href="/assets/application-9503260fc8cec2d000c4c32051a873aa71b2f0bb6ef8a8d7cc04cf73a27f7e73.css" />
  63. </head>
  64.  
  65. <body><script type="text/javascript"><!-- jquery.calendarbox -->
  66.  
  67. // function to bind the event popup window behavior
  68. function activate_event_popups() {
  69.  
  70.      (function($) {
  71.            $(function () {
  72.                    $('.eventdate').each(function () {
  73.                            // options
  74.                            var distance = 3;
  75.                            var time = 250;
  76.                            var hideDelay = 500;
  77.  
  78.                            var hideDelayTimer = null;
  79.  
  80.                            // tracker
  81.                            var beingShown = false;
  82.                            var shown = false;
  83.  
  84.                            var trigger = $(this);
  85.                            var popup = $('.events ul', this).css('opacity', 0);
  86.  
  87.                            // set the mouseover and mouseout on both element
  88.                            $([trigger.get(0), popup.get(0)]).mouseover(function () {
  89.                                    // stops the hide event if we move from the trigger to the popup element
  90.                                    if (hideDelayTimer) clearTimeout(hideDelayTimer);
  91.  
  92.                                    // don't trigger the animation again if we're being shown, or already visible
  93.                                    if (beingShown || shown) {
  94.                                            return;
  95.                                    } else {
  96.                                            beingShown = true;
  97.  
  98.                                            // reset position of popup box
  99.                                            popup.css({
  100.                                                    bottom: 10,
  101.                                                    left: -50,
  102.                                                    display: 'block' // brings the popup back in to view
  103.                                            })
  104.  
  105.                                            // (we're using chaining on the popup) now animate it's opacity and position
  106.                                            .animate({
  107.                                                    bottom: '+=' + distance + 'px',
  108.                                                    opacity: 1
  109.                                            }, time, 'swing', function() {
  110.                                                    // once the animation is complete, set the tracker variables
  111.                                                    beingShown = false;
  112.                                                    shown = true;
  113.                                            });
  114.                                    }
  115.                            }).mouseout(function () {
  116.                                    // reset the timer if we get fired again - avoids double animations
  117.                                    if (hideDelayTimer) clearTimeout(hideDelayTimer);
  118.  
  119.                                    // store the timer so that it can be cleared in the mouseover if required
  120.                                    hideDelayTimer = setTimeout(function () {
  121.                                            hideDelayTimer = null;
  122.                                            popup.animate({
  123.                                                    bottom: '-=' + distance + 'px',
  124.                                                    opacity: 0
  125.                                            }, time, 'swing', function () {
  126.                                                    // once the animate is complete, set the tracker variables
  127.                                                    shown = false;
  128.                                                    // hide the popup entirely after the effect (opacity alone doesn't do the job)
  129.                                                    popup.css('display', 'none');
  130.                                            });
  131.                                    }, hideDelay);
  132.                            });
  133.                    });
  134.            });
  135.  
  136.      })(jQuery);
  137.  
  138. }
  139. function handle_calendar_nav() {
  140.  
  141.      (function($) {
  142.        // handle prev and next month calendar navigation
  143.        var url        = "/aws/OPA/page_template";
  144.        var parameters = {};
  145.        parameters['component']     = "calendarbox";
  146.  
  147.        $("#component_calendarbox").on('click','a.month_link', function(ev){
  148.            ev.preventDefault();
  149.            if (this.classList.contains('prev')) {
  150.                parameters['month']   = $("#calendar_prev_month").val();
  151.            } else {
  152.                parameters['month']   = $("#calendar_next_month").val();
  153.            }
  154.            $.getJSON(url+"/jq_update_calendar_nav", parameters,
  155.              function(data){
  156.                $("#component_calendarbox").html(data.calendar_html);
  157.                activate_event_popups();
  158.              });
  159.        });
  160.      })(jQuery);
  161.  
  162. }
  163.  
  164. // Bind, the jQuery.ready function to the DOM, which is
  165. // executed once the document has finished loading.
  166. jQuery(document).ready(function($) {
  167.     activate_event_popups();
  168.     handle_calendar_nav();
  169. });
  170.  
  171. </script>
  172.  
  173. <!-- Google Tag Manager (noscript) -->
  174. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W4W9CN4"
  175. height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  176. <!-- End Google Tag Manager (noscript) -->
  177.  
  178. <div id="page-container">
  179.  
  180.  
  181. <div id="social-links" class="z-depth-1 hide_on_print wow fadeInUp">
  182.  <ul>
  183.    <li id="site_search">
  184. <div class="tcssearch">
  185. <form action="/aws/OPA/page_template/get_search_results" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="&#x2713;" /><input type="hidden" name="authenticity_token" value="TZYFEKhsWUwuiJzBi938UxG9e68xiXtcC8sL4d2/VsXzk/RPdTQpiXfOFAL9r4UV+ep0jOyxa2PvSC4fjYB1sQ==" />
  186.    <input type="hidden" name="component_name" id="component_name" value="search-sitewide" />
  187.    <!-- <input type="text" id="dba-name-tcs" name="dba-name-tcs" />  -->
  188.    <input type="text" name="search_phrase" id="search_phrase" value="" size="10" class="search_input" aria-label="Site Search" onFocus="javascript:this.value='';" placeholder="minimum 3 chars" /><input class="search_button" type="submit" value="Search" name="submit" />
  189. </form>
  190.  
  191.  
  192. </div></li>
  193.    <li class="social_icon"><a href="http://www.youtube.com/user/OhioPharmacists?feature=watch" target="_blank"><i class="fab fa-youtube"></i></a></li>
  194.    <li class="social_icon"><a href="https://www.instagram.com/ohiopharmacists/" target="_blank"><i class="fab fa-instagram"></i></a></li>
  195.    <li class="social_icon"><a href="https://www.linkedin.com/company/ohio-pharmacists-association" target="_blank"><i class="fab fa-linkedin-in"></i></a></li>
  196.    <li class="social_icon"><a href="http://twitter.com/OhioPharmacists" target="_blank"><i class="fa-brands fa-x-twitter"></i></a></li>
  197.    <li class="social_icon"><a href="https://www.facebook.com/Ohio.Pharmacists" target="_blank"><i class="fab fa-facebook-f"></i></a></li>
  198.    <li class="social_icon"><a href="https://www.tiktok.com/@ohiopharmacists0" target="_blank"><i class="fa-brands fa-tiktok"></i></a></li>
  199.  </ul>
  200. </div>
  201.  
  202.  
  203. <div id="header" class="wow fadeInDown z-depth-1">
  204.  <div id="logo">
  205.    <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/home_page">
  206.    <img src="http://careercenter.ohiopharmacists.org/aws/OPA/am/gi/opa-logo-new-white.png?ver=1" border="0" alt="Ohio Pharmacists Association"/></a>
  207.    <h6>You Take Care of Patients. We Take Care of You.</h6>
  208.  </div>
  209.  <div id="header-buttons">
  210.    <div id="header-button-donate" class="tcsloginbutton z-depth-1">
  211.      <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/donate" >Donate <i class="fas fa-chevron-circle-right"></i></a>
  212.    </div>
  213. <div id="header-button-login" class="tcsloginbutton z-depth-1">
  214.      <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/members" >My Profile <i class="fas fa-user"></i></a>
  215.    </div>
  216.  
  217.    <div id="header-button-join" class="tcsloginbutton z-depth-1">
  218.      <A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/input_form/display_form_01_show?form_no=144&host=retain&contact_id=$$Contact ID$$" CLASS="tcs_button" TARGET="_parent">Join Today <i class="fas fa-chevron-circle-right"></i></a>
  219.    </div>
  220.    <div id="header-button-renew" class="tcsloginbutton z-depth-1">
  221.      <A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/input_form/display_form_01_show?form_no=145&host=retain&contact_id=$$Contact ID$$" CLASS="tcs_button" TARGET="_parent">Renew <i class="fas fa-chevron-circle-right"></i></a>
  222.    </div>
  223.  
  224.  </div>
  225. </div>
  226.  
  227.  
  228. <div id="nav" class="hide_on_print z-depth-1">
  229.  <div class="navbar-expand-md">
  230.    <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
  231.    <span class="navbar-toggler-icon"><i class="far fa-bars"></i> Menu</span>
  232.    </button>
  233.    <div class="collapse navbar-collapse" id="navbarSupportedContent">
  234.      <div class="nav-item">
  235.        <a href="#" data-toggle="dropdown">About</a>
  236.        <div class="dropdown-menu">
  237.          
  238.  
  239. <div class="subnav z-depth-1-half">
  240.  <div class="container-fluid">
  241.    <div class="row">
  242.      <div class="subnav-col subnav-dark col-md-4 col-lg-5">
  243.        <h3>About OPA</h3>
  244.        
  245.  
  246. <p>The Ohio Pharmacists Association (OPA) was formed September 2, 1879 in Columbus, Ohio under the name Ohio State Pharmaceutical Association (OSPA).</p>
  247.  
  248. <p>The purpose of the Association was to elevate the character of the pharmaceutical profession, by uniting the reputable druggists of the state in order to foster the education of those learning the art and thereby stimulate the talent of those engaged in pharmacy. In cooperation with its members and leaders, the present-day OPA continues to function by this purpose and act to positively impact the profession as these past extraordinary individuals did.</p>
  249.  
  250. <p>The mission of the Ohio Pharmacists Association is to invest in and empower Ohio pharmacists in every setting as the medication expert.</p>
  251.        <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/about" class="learn-more">Learn More About OPA</a>
  252.      </div>
  253.      <div class="subnav-col subnav-links col-md">
  254.        <h4 class="title">Leadership</h4>
  255.        
  256.  
  257. <div class="subnav-item">
  258. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/about_officers" ><i class="fas fa-circle"></i> OPA Officers</a>
  259. </div>
  260. <div class="subnav-item">
  261. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/about_staff" ><i class="fas fa-circle"></i> Staff Directory</a>
  262. </div>
  263. <div class="subnav-item">
  264. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/elections" ><i class="fas fa-circle"></i>Elections</a>
  265. </div>
  266.        <br/>
  267.      </div>
  268.  
  269.      <div class="subnav-col subnav-links col-md">
  270.        <h4 class="title">Contact Us</h4>
  271.        
  272.  
  273. <p>2674 Federated Blvd<br/>
  274. Columbus, Ohio 43235<br/>
  275. (614) 389-3236 phone<br/>
  276. (614) 389-4582 fax<br/>
  277. </p>
  278. <a href="mailto:info@ohiopharmacists.org" class="learn-more">Contact Us</a>
  279. </br>
  280.      </div>
  281.      <div class="subnav-col subnav-links col-md">
  282.        <h4 class="title">Social Media</h4>
  283.        
  284.  
  285. <div class="subnav-item">
  286. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/about_socialmedia" ><i class="fas fa-circle"></i> Social Media Feeds</a>
  287. </div>
  288. <div class="subnav-item">
  289. <a href="https://www.facebook.com/Ohio.Pharmacists"><i class="fab fa-facebook"></i>Facebook</a>
  290. </div>
  291. <div class="subnav-item">
  292. <a href="https://x.com/OhioPharmacists"><i class="fa-brands fa-square-x-twitter"></i>X</a>
  293. </div>
  294. <div class="subnav-item">
  295. <a href="https://www.linkedin.com/company/ohio-pharmacists-association"><i class="fab fa-linkedin"></i>LinkedIn</a>
  296. </div>
  297. <div class="subnav-item">
  298. <a href="https://www.instagram.com/company/ohiopharmacists"><i class="fab fa-instagram"></i>Instagram</a>
  299. </div>
  300. <div class="subnav-item">
  301. <a href="https://www.youtube.com/user/OhioPharmacists"><i class="fab fa-youtube"></i>YouTube</a>
  302. </div>
  303. </div>
  304.    </div>
  305.  </div>
  306. </div>
  307.  
  308.        </div>
  309.      </div>
  310.      <div class="nav-item">
  311.        <a href="#" data-toggle="dropdown">Membership</a>
  312.        <div class="dropdown-menu">
  313.          
  314.  
  315. <div class="subnav z-depth-1-half">
  316.  <div class="container-fluid">
  317.    <div class="row">
  318.      <div class="subnav-col subnav-dark col-md-4 col-lg-5">
  319.        <h3>Membership</h3>
  320.        
  321.  
  322. <p>Impact the future of your profession through OPA advocacy and receive monthly legislative updates. Continue your professional growth with cutting-edge continuing pharmacy education (CPE) which is discounted for members. Keep up-to-date on industry developments via Ohio Pharmacy Newsline, OPA’s bi-weekly e-news brief, and the Ohio Pharmacist bi-monthly journal. Stay connected with Ohio’s pharmacy community through networking opportunities such as OPA’s committees and special interest groups as well as OPA social media. Gain exclusive access to Members Only content including salary surveys, collaborative practice agreements, and more!</p>
  323.        <a href="/aws/OPA/input_form/display_form_01_show?form_no=144" class="learn-more-green">Join OPA</a>
  324.        <a href="/aws/OPA/input_form/display_form_01_show?form_no=145" class="learn-more-green">Renew</a>
  325.      </div>
  326.      <div class="subnav-col subnav-links col-md">
  327.        <h4 class="title">Membership</h4>
  328.        
  329.  
  330. <div class="subnav-item">
  331. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/membership" ><i class="fas fa-circle"></i> Membership Benefits</a>
  332. </div>
  333. <div class="subnav-item">
  334. <a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/398712/_parent/layout_interior_details/false' target='_parent'><i class="fas fa-circle"></i> Membership Options</a>
  335. </div>
  336.  
  337.      </div>
  338.      <div class="subnav-col col-md">
  339.        <h4 class="title">Network</h4>
  340.        
  341.  
  342. <div class="subnav-item">
  343. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/committees" ><i class="fas fa-circle"></i>Committees, SIGs & Workgroups</a>
  344. </div>
  345. <div class="subnav-item">
  346. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/npx" ><i class="fas fa-circle"></i>New Practitioner Experience (NPX)</a>
  347. </div>
  348.  
  349. <div class="subnav-item">
  350. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/calendar" ><i class="fas fa-circle"></i>View All Events</a>
  351. </div>
  352.      </div>
  353.      <div class="subnav-col col-md">
  354.        <h4 class="title">Leadership</h4>
  355.        
  356.  
  357. <div class="subnav-item">
  358. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/elections" ><i class="fas fa-circle"></i>Elections</a>
  359. </div>
  360. <div class="subnav-item">
  361. <a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/230715/_parent/layout_interior_details/false' target='_parent'><i class="fas fa-circle"></i> OPA Award Recipients</a>
  362. </div>
  363.      </div>
  364.    </div>
  365.  </div>
  366. </div>
  367.  
  368.        </div>
  369.      </div>
  370.      <div class="nav-item">
  371.        <a href="#" data-toggle="dropdown">Education</a>
  372.        <div class="dropdown-menu">
  373.          
  374.  
  375. <div class="subnav z-depth-1-half">
  376.  <div class="container-fluid">
  377.    <div class="row">
  378.      <div class="subnav-col subnav-dark col-md-4 col-lg-5">
  379.        <h3>Education</h3>
  380.        
  381.  
  382. <p>OPA, in conjunction with the ACPE-accredited provider Ohio Pharmacists Foundation, provides the quality Continuing Education Programs you need to ensure your professional and business development. We make it simple to obtain your credits toward relicensure and, as an OPA member, you receive substantial discounts on all CPE offerings including:</p>
  383. <ul>
  384. <li>Live seminars with cutting edge topics and top-notch speakers</li>
  385. <li>In-depth certificate programs on topics such as Immunization and Smoking Cessation</li>
  386. <li>Jurisprudence Education, qualifying for Ohio's CE requirement and much more</li>
  387. <li>Online Education</li>
  388. </ul>
  389.        <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/education" class="learn-more">Learn More</a>
  390.      </div>
  391.      <div class="subnav-col subnav-links col-md">
  392.        <h4 class="title">Continuing Education Programs</h4>
  393.        
  394.  
  395. <div class="subnav-item">
  396. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/training-programs" ><i class="fas fa-circle"></i> Certificate Training Programs</a>
  397. </div>
  398. <div class="subnav-item">
  399. <a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/325629/_parent/layout_interior_details/false' target='_parent'><i class="fas fa-circle"></i> OPA / ODH Nicotine Use Disorder Certificate Program</a>
  400. </div>
  401. <div class="subnav-item">
  402. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/home-study" ><i class="fas fa-circle"></i> Home-Study CPE Online Catalog</a>
  403. </div>
  404. <div class="subnav-item">
  405. <a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/420850/_parent/layout_interior_details/false' target='_parent'><i class="fas fa-lock"></i> Ohio Pharmacist Journal Online CPE Credit</a>
  406. </div>
  407. <div class="subnav-item">
  408. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/live-programming" ><i class="fas fa-circle"></i> Live Programming</a>
  409. </div>
  410. <div class="subnav-item">
  411. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/protocol-packages" ><i class="fas fa-circle"></i> Protocol Packages</a>
  412. </div>
  413.      </div>
  414.    </div>
  415.  </div>
  416. </div>
  417.  
  418.        </div>
  419.      </div>
  420.      <div class="nav-item">
  421.        <a href="#" data-toggle="dropdown">Advocacy</a>
  422.        <div class="dropdown-menu">
  423.          
  424.  
  425. <div class="subnav z-depth-1-half">
  426.  <div class="container-fluid">
  427.    <div class="row">
  428.      <div class="subnav-col subnav-links col-md">
  429.        <h3>Legislative Advocacy</h3>
  430.        
  431.  
  432. <p>Pharmacy is facing more legislative battles than ever before, and we know these fights will continue into the future. Obtaining provider status, opening restrictive networks, regulating PBMs, and increasing vaccination authority, expanding consult agreements with physicians. OPA and Ohio pharmacists are actively involved in these issues, and we must keep making progress.</p>
  433.        <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/legislative" class="learn-more">Find Out More!</a>
  434.      </div>
  435.      <div class="subnav-col subnav-links col-md">
  436.        <h4 class="title">Legislative Updates</h4>
  437.        
  438.  
  439. <p>OPA lobbyists are hard at work to impact the pharmacy profession in Ohio. Find out the latest initiatives and bills that are being pushed through the Ohio General Assembly.</p>
  440.        <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/legislative_updates" class="learn-more">Read the latest updates</a>
  441.      </div>
  442.      <div class="subnav-col subnav-links col-md">
  443.        <h4 class="title">Political Action Committee</h4>
  444.        
  445.  
  446. <p>The Pharmacy Political Action Committee is a voluntary, nonprofit, nonpartisan organization of pharmacists who are interested in promoting good government and public health. Pharmacy PAC money contributed by pharmacists goes to help candidates who support pharmacy in Ohio.</p>
  447.        <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/pac" class="learn-more">Learn more about Ohio Pharmacy PAC</a>
  448.      </div>
  449.      <div class="subnav-col subnav-links col-md">
  450.        <h4 class="title">Legislative Defense Funds</h4>
  451.        
  452.  
  453. <p>The OPA LDF was created in 2014 at the request of an independent pharmacy owner seeking to help OPA boost its advocacy efforts for pharmacists. Unlike a Political Action Committee (PAC) fund, where personal funds are given directly to political campaigns, both personal and corporate funds are accepted by the LDF to enhance our government affairs endeavors, and there are no limits on the amount you can give. Contributions from corporate funds may be tax deductible as a business expense.</p>
  454.        <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/ldf" class="learn-more">Learn more LDF</a>
  455.      </div>
  456.    </div>
  457.  </div>
  458. </div>
  459.  
  460.        </div>
  461.      </div>
  462.  
  463.      <div class="nav-item">
  464.        <a href="#" data-toggle="dropdown">ISIG</a>
  465.        <div class="dropdown-menu">
  466.          
  467.  
  468. <div class="subnav z-depth-1-half">
  469.  <div class="container-fluid">
  470.    <div class="row">
  471.      <div class="subnav-col subnav-dark col-md-4 col-lg-5">
  472.        <h3>ISIG Membership</h3>
  473.        
  474.  
  475. <p>OPA has created the Independent Special Interest Group (SIG) to help ensure not only independent pharmacy's survival in Ohio, but success. The Independent SIG is providing its members with important benefits, and is a key resource and activist in independent pharmacy matters. Members receive valuable assistance in pharmacy management, help with third-party issues (including audits), an information source on specific issues affecting independents, and an advocate/representative on pertinent committees.</p>
  476.          <a href="/aws/OPA/input_form/display_form_01_show?form_no=33" class="learn-more-green">Join Now</a>
  477.      </div>
  478.      <div class="subnav-col subnav-links col-md">
  479.        <h4 class="title">Benefits</h4>
  480.        
  481.  
  482. <div class="subnav-item">
  483. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/independent_sig" ><i class="fas fa-circle"></i> ISIG Membership Benefits</a>
  484. </div>
  485.      </div>
  486. <div class="subnav-col subnav-links col-md">
  487.        <h4 class="title">ISIG Resources</h4>
  488.        
  489.  
  490. <div class="subnav-item">
  491. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/directory/user_run?group=224&size=0&submit=Search"><i class="fas fa-circle"></i>Vendor Directory</a>
  492. </div>
  493.  
  494.      </div>
  495.    </div>
  496.  </div>
  497. </div>
  498.        </div>
  499.      </div>
  500.      <div class="nav-item">
  501.        <a href="#" data-toggle="dropdown">Clinical Services</a>
  502.        <div class="dropdown-menu">
  503.          
  504.  
  505. <div class="subnav z-depth-1-half">
  506.  <div class="container-fluid">
  507.    <div class="row">
  508.      <div class="subnav-col subnav-dark col-md-4 col-lg-5">
  509.        <h3>Clinical Services Updates</h3>
  510.        
  511.  
  512. <p>Clinical services allow pharmacists to practice at the top of their license. And, as the most accessible healthcare professionals, pharmacists are well-positioned to take on expanded patient care roles. Whether the focus is to improve patient outcomes or reduce overall health costs, pharmacists are an important part of the healthcare.</p>
  513.        <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/clinical-services" class="learn-more">Learn More</a>
  514.      </div>
  515.      <div class="subnav-col subnav-links col-md">
  516.        <h4 class="title">Clinical Service Resources</h4>
  517.        
  518.  
  519. <div class="subnav-item">
  520. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/provider-status" ><i class="fas fa-circle"></i> Provider Status</a>
  521. </div>
  522. <div class="subnav-item">
  523. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/resources_immunization" ><i class="fas fa-circle"></i> Immunization</a>
  524. </div>
  525. <div class="subnav-item">
  526. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/mtm" ><i class="fas fa-circle"></i> Medication Therapy Management (MTM)</a>
  527. </div>
  528. <div class="subnav-item">
  529. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/collaborative-practice-agreements" ><i class="fas fa-circle"></i> Collaborative Practice Agreements</a>
  530. </div>
  531. <div class="subnav-item">
  532. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/point-of-care" ><i class="fas fa-circle"></i> Point-of-Care Testing</a>
  533. </div>
  534. <div class="subnav-item">
  535. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/protocol-packages" ><i class="fas fa-circle"></i> Protocol Packages</a>
  536. </div>
  537.      </div>
  538.    </div>
  539.  </div>
  540. </div>
  541.        </div>
  542.      </div>
  543.      <div class="nav-item">
  544.        <a href="#" data-toggle="dropdown">Students</a>
  545.        <div class="dropdown-menu">
  546.          
  547.  
  548. <div class="subnav z-depth-1-half">
  549.  <div class="container-fluid">
  550.    <div class="row">
  551.      <div class="subnav-col subnav-dark col-md-4 col-lg-5">
  552.        <h3>Student Membership</h3>
  553.        
  554.  
  555. <p>Impact the future of your profession through OPA advocacy and receive monthly legislative updates. Keep up-to-date on industry developments via Ohio Pharmacy Newsline, OPA’s bi-weekly e-news brief. Stay connected with Ohio’s pharmacy community through networking opportunities such as OPA’s committees and special interest groups. Gain exclusive access to Members Only content including salary surveys, collaborative practice agreements, and more. Student membership pays for itself by attending 2 OPA events!</p>
  556.        <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/students_membership" class="learn-more">Join Now</a>
  557.      </div>
  558.      <div class="subnav-col subnav-links col-md">
  559.        <h4 class="title">Student Resources</h4>
  560.        
  561.  
  562. <div class="subnav-item">
  563. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/students_membership" ><i class="fas fa-circle"></i> Student Membership</a>
  564. </div>
  565. <div class="subnav-item">
  566. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/student_legislative_day" ><i class="fas fa-circle"></i>Student Pharmacist Legislative Day</a>
  567. </div>
  568. <div class="subnav-item">
  569. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/conference" ><i class="fas fa-circle"></i>Annual Conference</a>
  570. </div>
  571. <div class="subnav-item">
  572. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/appe-profiles" ><i class="fas fa-circle"></i> APPE Student Rotation</a>
  573. </div>
  574. <div class="subnav-item">
  575. <a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/353040/_parent/layout_interior_details/false' target='_parent'><i class="fas fa-circle"></i> OPA Executive Fellowship in Leadership and Association Management</a>
  576. </div>
  577. <div class="subnav-item">
  578. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/npx" ><i class="fas fa-circle"></i> New Practitioner Experience</a>
  579. </div>
  580.  
  581.  
  582.      </div>
  583.    </div>
  584.  </div>
  585. </div>
  586.  
  587.        </div>
  588.      </div>
  589.      <div class="nav-item">
  590.     <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/technicians" >Technicians</a>
  591.      </div>
  592.      <div class="nav-item">
  593.     <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/foundation" >Foundation</a>
  594.      </div>
  595.      
  596.  
  597.      <div class="nav-item">
  598.        <a href="#" data-toggle="dropdown">Members Only</a>
  599.        <div class="dropdown-menu">
  600.          
  601.  
  602. <div class="subnav z-depth-1-half">
  603.  <div class="container-fluid">
  604.    <div class="row">
  605.      <div class="subnav-col subnav-links col-md">
  606.        <h4 class="title">Members Only</h4>
  607.        
  608.  
  609. <div class="subnav-item">
  610. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/show_detail/38522?layout_name=layout_details&model_name=news_article"><i class="fas fa-lock"></i> Ohio Pharmacist Journal Online</a>
  611. </div>
  612.  
  613. <div class="subnav-item">
  614. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/show_detail/420850?layout_name=layout_details&model_name=news_article"><i class="fas fa-lock"></i> Ohio Pharmacist Journal Online CPE Credit</a>
  615. </div>
  616.  
  617. <div class="subnav-item">
  618. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/show_detail/373957?layout_name=layout_details&model_name=news_article"><i class="fas fa-lock"></i> OPA Home-Study and On-Demand CPE Member Discount Codes</a>
  619. </div>
  620.  
  621. <div class="subnav-item">
  622. <a href="https://www.ohiopharmacists.org/aws/OPA/pt/sp/members_only_CE_Archives">
  623. <i class="fas fa-lock"></i> CPE Articles</a>
  624. </div>
  625.  
  626. <div class="subnav-item">
  627. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/news_newsline_archives" ><i class="fas fa-lock"></i>Ohio Pharmacy Newsline</a>
  628. </div>
  629.  
  630. <div class="subnav-item">
  631. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/legislative_updates" ><i class="fas fa-lock"></i>Legislative Updates</a>
  632. </div>
  633.  
  634. <div class="subnav-item">
  635. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/show_detail/115437?layout_name=layout_details&model_name=news_article"><i class="fas fa-lock"></i> Salary Surveys</a>
  636. </div>
  637.  
  638.      </div>
  639.  
  640.      <div class="subnav-col subnav-links col-md">
  641.        <h4 class="title"><span style="visibility:hidden; ">Members Only</span></h4>
  642.        
  643.  
  644.  
  645. <div class="subnav-item">
  646. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/show_detail/141593?layout_name=layout_details&model_name=news_article"><i class="fas fa-lock"></i> Complimentary Career Center Listing</a>
  647. </div>
  648.  
  649. <div class="subnav-item">
  650. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/show_detail/224487?layout_name=layout_details&model_name=news_article"><i class="fas fa-lock"></i> Payor Toolkit</a>
  651. </div>
  652.  
  653. <div class="subnav-item">
  654. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/collaborative-practice-agreements" ><i class="fas fa-lock"></i>Collaborative Practice Agreements</a>
  655. </div>
  656.  
  657. <div class="subnav-item">
  658. <a target="_blank" href="https://phmic.com/">
  659.  <i class="fas fa-lock"></i> Pharmacists Mutual</a>
  660. </div>
  661.  
  662. <div class="subnav-item">
  663. <a target="_blank" href="https://pmgrx.com/">
  664.  <i class="fas fa-lock"></i> Pharmacy Marketing Group, Inc.</a>
  665. </div>
  666.  
  667. <div class="subnav-item">
  668. <a target="_blank" href="http://careercenter.ohiopharmacists.org/aws/OPA/directory/user_run?group=224&size=0&submit=Search">
  669.  <i class="fas fa-lock"></i> Vendor Directory</a>
  670. </div>
  671.      </div>
  672.    </div>
  673.  </div>
  674. </div>
  675.  
  676.        </div>
  677.      </div>
  678.  
  679.  </div>
  680. </div>
  681. </div>
  682.  <div id="promotions">
  683.    <div class="container">
  684.      <div class="row">
  685.        <div class="col-md wow fadeInUp">    
  686.          <div class="promo-article"><!-- Begin BOOTSRAP CAROUSEL -->
  687. <div id="tcs-carousel-promo-article_187759" class="carousel slide" data-ride="carousel">
  688.  <!-- Indicators -->
  689.  <ol class="carousel-indicators">
  690.          <li data-target="#tcs-carousel-promo-article_187759" data-slide-to="0" class="active"></li>
  691.          <li data-target="#tcs-carousel-promo-article_187759" data-slide-to="1"></li>
  692.          <li data-target="#tcs-carousel-promo-article_187759" data-slide-to="2"></li>
  693.          <li data-target="#tcs-carousel-promo-article_187759" data-slide-to="3"></li>
  694.          <li data-target="#tcs-carousel-promo-article_187759" data-slide-to="4"></li>
  695.  </ol>
  696.  <!-- Wrapper for slides -->
  697.  <div class="carousel-inner">
  698.      <div class="carousel-item active">
  699.              <div class="promo-article-item "><div class='tcsnewsarticle_photo'><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/586716?ver=10' border='0px' alt='OPA offers Pharmacy Technician Membership Scholarship' ></div><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/586716/_PARENT/layout_details/false" >OPA offers Pharmacy Technician Membership Scholarship</a></h3><p><span style="color: #d4d4d4;">OPA has established the <strong>Pharmacy Technician Scholarship Fund </strong>to ensure that passionate technicians have the opportunity to become an OPA member to engage, grow, and contribute to our profession, regardless of financial circumstances.&nbsp;A limited number of scholarship awards are available.</span></p>
  700. <p style="text-align: center;"><strong><span class="primary-button"><a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/show_detail/586630?layout_name=layout_details&amp;model_name=news_article" target="_blank" rel="noopener"><span style="color: #d4d4d4;">Apply Today</span></a></span></strong></p>
  701. <p>&nbsp;</p></div>
  702.      </div>
  703.      <div class="carousel-item">
  704.              <div class="promo-article-item "><div class='tcsnewsarticle_photo'><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/594791?ver=53' border='0px' alt='Annual Conference &amp; Trade Show' ></div><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/594791/_PARENT/layout_details/false" >Annual Conference & Trade Show</a></h3><h4>NEW 2026 LOCATION - Hilton Columbus at Easton - April 9-11</h4><p><span style="color: #ffffff;">Join us for the&nbsp;OPA&nbsp;2026&nbsp;Annual Conference &amp; Trade Show, April 9-11, at the Hilton Columbus at Easton. It will be held for the first time with a <strong>Thursday through Saturday schedule</strong>. Pharmacists and technicians can earn continuing pharmacy education credits.&nbsp;Vendors will be available in the Trade Show to discuss their products and services designed to meet your practice needs. Details coming soon.&nbsp;</span></p>
  705. <p style="text-align: center;"><span class="secondary-button" style="color: #f56800;"><strong><a href="http://careercenter.ohiopharmacists.org/conference" target="_blank" rel="noopener">Conference Information</a></strong></span></p>
  706. <p style="text-align: center;"><span class="primary-button" style="color: #f56800;"><strong><a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/600395/_PARENT/layout_interior_details/false" target="_blank" rel="noopener">October 26: Call for Speakers for OPA 2026 Annual Conference</a></strong></span></p></div>
  707.      </div>
  708.      <div class="carousel-item">
  709.              <div class="promo-article-item "><div class='tcsnewsarticle_photo'><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/603424?ver=21' border='0px' alt='2025 Pharmacist Legislative Day' ></div><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/603424/_PARENT/layout_details/false" >2025 Pharmacist Legislative Day</a></h3><h4>November 18: Columbus, Ohio</h4><p>There are big&nbsp;pharmacy issues this year:&nbsp;PBM Reform, State of Ohio Board of Pharmacy Rules, Test &amp; Treat, and more! Hear from the State of Ohio Board of Pharmacy, Ohio state senators and state representatives. We need your help to stand up for pharmacists and their patients!</p>
  710. <p style="text-align: center;"><span class="secondary-button"><a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/show_detail/603381?layout_name=layout_details&amp;model_name=news_article" target="_blank" rel="noopener">Click HERE for details and registration</a> &nbsp;</span></p></div>
  711.      </div>
  712.      <div class="carousel-item">
  713.              <div class="promo-article-item "><div class='tcsnewsarticle_photo'><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/603711?ver=23' border='0px' alt='2026 Membership Renewal' ></div><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/603711/_PARENT/layout_details/false" >2026 Membership Renewal</a></h3><h4>Renew your OPA membership for 2026!</h4><div class="x_elementToProof" data-ogsc="rgb(0, 0, 0)" data-olk-copy-source="MessageBody"><span style="color: #ffffff;">We are working to Expand Our Success from 2025 into 2026 and we need you!</span></div>
  714. <div class="x_elementToProof" data-ogsc="rgb(0, 0, 0)">&nbsp;</div>
  715. <div class="x_elementToProof" data-ogsc="rgb(0, 0, 0)"><span style="color: #ffffff;">Renewing your membership now helps OPA maintain our advocacy, continued education and networking success. Pushing back on the PBMS while growing the pharmacist&rsquo;s role in providing care is a team effort.</span></div>
  716. <p style="text-align: center;"><span class="secondary-button"><a href="https://www.ohiopharmacists.org/aws/OPA/input_form/display_form_01_show?contact_id=$$Contact%20ID$$&amp;form_no=145" target="_blank" rel="noopener">Renew Here!</a> &nbsp;</span></p></div>
  717.      </div>
  718.      <div class="carousel-item">
  719.              <div class="promo-article-item "><div class='tcsnewsarticle_photo'><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/602996?ver=2159' border='0px' alt='OPA Midyear Meeting &amp; Trade Show' ></div><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/602996/_PARENT/layout_details/false" >OPA Midyear Meeting & Trade Show</a></h3><h4>Sunday, November 2, 2025 | Makoy Center, Hilliard, Ohio</h4><p style="text-align: left;">Earn continuing pharmacy education (CPE) credits by attending the OPA Midyear Meeting. There will be six hours of continuing pharmacy education (CPE), including one hour of jurisprudence CPE and one of patient medication safety CPE. Session topics include Wellness, Compounding Errors, Digital Health Literacy, Dementia Treatment, Diabetes, and Audits.</p>
  720. <p style="text-align: center;"><span class="secondary-button"><a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/601573/_PARENT/layout_interior_details/false" target="_blank" rel="noopener">Click HERE for details and registration</a> &nbsp; <br /></span></p></div>
  721.      </div>
  722.  </div>
  723.  <!-- Controls -->
  724.  <a class="carousel-control-prev" href="#tcs-carousel-promo-article_187759" role="button" data-slide="prev">
  725.    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
  726.    <span class="sr-only">Previous</span>
  727.  </a>
  728.  <a class="carousel-control-next" href="#tcs-carousel-promo-article_187759" role="button" data-slide="next">
  729.    <span class="carousel-control-next-icon" aria-hidden="true"></span>
  730.    <span class="sr-only">Next</span>
  731.  </a>
  732. </div>
  733. <!-- End BOOTSRAP CAROUSEL --></div>
  734.        </div>
  735.      </div>
  736.    </div>
  737.  </div>
  738.  
  739.  
  740. <div id="boxes">
  741.  <div class="container-fluid">
  742.    <div class="row">
  743.      <div class="col-md wow fadeInLeft" data-wow-delay=".7s">
  744.        
  745.  
  746. <div id="box-01" class="box z-depth-1">
  747.  <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/conference" class="box-link">
  748.    <i class="fas fa-calendar-alt"></i>
  749.    <h2>Annual<br/>Conference</h2>
  750.  </a>
  751.  <div class="box-color"></div>
  752. </div>
  753.      </div>
  754.      <div class="col-md wow fadeInLeft" data-wow-delay=".2s">
  755.        
  756.        
  757. <div id="box-02" class="box z-depth-1">
  758.  <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/legislative" class="box-link">
  759.    <i class="fas fa-university"></i>
  760.    <h2>Advocacy</h2>
  761.  </a>
  762.  <div class="box-color"></div>
  763. </div>
  764.      </div>
  765.      <div class="col-md wow fadeInDown"  data-wow-delay=".1s">
  766.        
  767.  
  768. <div id="box-03" class="box z-depth-1">
  769.  <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/education" class="box-link">
  770.    <i class="fas fa-graduation-cap"></i>
  771.    <h2>Continuing<br/>Education</h2>
  772.  </a>
  773.  <div class="box-color"></div>
  774. </div>
  775.      </div>
  776.      <div class="col-md wow fadeInRight"  data-wow-delay=".3s">
  777.        
  778.  
  779. <div id="box-04" class="box z-depth-1">
  780.  <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/sponsors" class="box-link">
  781.    <i class="fas fa-handshake"></i>
  782.    <h2>Exhibitors &<br/>Sponsors</h2>
  783.  </a>
  784.  <div class="box-color"></div>
  785. </div>
  786.      </div>
  787.      <div class="col-md wow fadeInRight" data-wow-delay=".5s">
  788.        
  789.  
  790. <div id="box-05" class="box z-depth-1">
  791.  <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/members" class="box-link">
  792.    <i class="fas fa-lock-alt"></i>
  793.    <h2>Members<br/>Only</h2>
  794.  </a>
  795.  <div class="box-color"></div>
  796. </div>
  797.      </div>
  798.    </div>
  799.  </div>
  800. </div>
  801.  <div id="content-container">
  802.    <div class="container-fluid">
  803.      <div id="homepage-events" class="row">
  804.        <div class="col-md">
  805.          <div class="content-box z-depth-1 wow fadeInUp">
  806.            <div class="row">
  807.              <div id="homepage-calendarlist" class="col-md">
  808.                <h2 class="title">Calendar</h2>
  809.                <div class="tcscalendars"><div class="tcscalendars_odd  "><div class="datestamp"><h5>Sun<br/><span class="bignumber">2</span><br/>2025</h5></div><h6><span class="tcs-calendar-date-range">November 2, 2025</span><br/><span class="time_format">8:00AM - 4:20PM</span></h6><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/calendar/368085/_PARENT/layout_details/false" TARGET="_blank">2025 Midyear Meeting & Trade Show</a></h3><p>Makoy Center, 5462 Center Street, Hilliard, Ohio 43026</p></div><div class="tcscalendars_even  "><div class="datestamp"><h5>Wed<br/><span class="bignumber">5</span><br/>2025</h5></div><h6><span class="tcs-calendar-date-range">November 5, 2025</span><br/><span class="time_format">12:00PM - 1:00PM EST</span></h6><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/calendar/368803/_blank/layout_details/false" TARGET="_blank">A Deep Dive on Ohio House Bill 229 and other Legislative Developments - OPA Sponsor Webinar</a></h3></div><div class="tcscalendars_odd  "><div class="datestamp"><h5>Tue<br/><span class="bignumber">18</span><br/>2025</h5></div><h6><span class="tcs-calendar-date-range">November 18, 2025</span><br/><span class="time_format">9:00AM - 4:00PM</span></h6><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/calendar/366725/_blank/layout_details/false" TARGET="_blank">OPA Pharmacy Legislative Day 2025</a></h3><p>The Athletic Club of Columbus</p></div></div>
  810.              </div>
  811.              <div id="homepage-calendarbox" class="col-md-5 col-lg-4 col-xl-3 hide_on_print">
  812.                <div id='component_calendarbox'><table class="calendarbox"><input type='hidden' id='calendar_next_month' value='2025-11'><input type='hidden' id='calendar_prev_month' value='2025-09'><thead><tr class="monthrow" ><th style="text-align:left">&nbsp;<a href="#" class="prev month_link">&larr;</a></th><th colspan="5" class="monthname" style="text-align:center">October 2025</th><th style="text-align:right"><a href="#" class="next month_link">&rarr;</a>&nbsp;</th></tr><tr class="dayName"><th scope='col'><abbr title='Sunday'>S</abbr></th><th scope='col'><abbr title='Monday'>M</abbr></th><th scope='col'><abbr title='Tuesday'>T</abbr></th><th scope='col'><abbr title='Wednesday'>W</abbr></th><th scope='col'><abbr title='Thursday'>T</abbr></th><th scope='col'><abbr title='Friday'>F</abbr></th><th scope='col'><abbr title='Saturday'>S</abbr></th></tr></thead>
  813. <tbody><tr><td class="nodate weekendDay">&nbsp;</td><td class="nodate">&nbsp;</td><td class="nodate">&nbsp;</td><td >1</td><td class="eventdate tcs-calendar-section_3 tcs-calendar-section_M tcs-calendar-past">2<div class="events"><ul style="opacity: 0; bottom: 10px; left: -50px; display: none;"><li class="tcs-calendar-listing tcs-calendar-section_3 tcs-calendar-section_M tcs-calendar-past"><h3 class="tcs-calendar-details-link"><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/calendar/367249/_PARENT/layout_details/false" >Practice Advancement and Innovation Committee Meeting</a></h3><h4><span class="tcs-calendar-date-range">October 2, 2025</span><br/><span class="time_format">10:00AM - 12:00PM</span></h4></li></ul></div></td><td >3</td><td class=" weekendDay">4</td></tr><tr><td class=" weekendDay">5</td><td >6</td><td >7</td><td class="eventdate tcs-calendar-section_M tcs-calendar-past">8<div class="events"><ul style="opacity: 0; bottom: 10px; left: -50px; display: none;"><li class="tcs-calendar-listing tcs-calendar-section_M tcs-calendar-past"><h3 class="tcs-calendar-details-link"><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/calendar/368449/_PARENT/layout_details/false" >NPX Lunch + Learn</a></h3><h4 class="tcs-calendar-subtitle">via Teams!</h4><h4><span class="tcs-calendar-date-range">October 8, 2025</span><br/><span class="time_format">12:00PM - 1:00PM</span></h4></li></ul></div></td><td >9</td><td >10</td><td class=" weekendDay">11</td></tr><tr><td class=" weekendDay">12</td><td >13</td><td >14</td><td class="eventdate tcs-calendar-section_1 tcs-calendar-section_M tcs-calendar-past">15<div class="events"><ul style="opacity: 0; bottom: 10px; left: -50px; display: none;"><li class="tcs-calendar-listing tcs-calendar-section_1 tcs-calendar-section_M tcs-calendar-past"><h3 class="tcs-calendar-details-link"><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/calendar/366332/_PARENT/layout_details/false" >Live OSHA Training</a></h3><h4 class="tcs-calendar-location">Virtual via Teams</h4><h4><span class="tcs-calendar-date-range">October 15, 2025</span><br/><span class="time_format">12:00PM - 1:00PM EST</span></h4></li></ul></div></td><td >16</td><td >17</td><td class=" weekendDay">18</td></tr><tr><td class=" weekendDay">19</td><td >20</td><td class="eventdate tcs-calendar-section_3 tcs-calendar-section_M tcs-calendar-past">21<div class="events"><ul style="opacity: 0; bottom: 10px; left: -50px; display: none;"><li class="tcs-calendar-listing tcs-calendar-section_3 tcs-calendar-section_M tcs-calendar-past"><h3 class="tcs-calendar-details-link"><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/calendar/367250/_PARENT/layout_details/false" >Communications Committee Meeting</a></h3><h4><span class="tcs-calendar-date-range">October 21, 2025</span><br/><span class="time_format">12:00PM - 2:00PM</span></h4></li></ul></div></td><td >22</td><td class="eventdate tcs-calendar-section_M tcs-calendar-past">23<div class="events"><ul style="opacity: 0; bottom: 10px; left: -50px; display: none;"><li class="tcs-calendar-listing tcs-calendar-section_M tcs-calendar-past"><h3 class="tcs-calendar-details-link"><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/calendar/368450/_PARENT/layout_details/false" >NPX Open Meeting</a></h3><h4 class="tcs-calendar-subtitle">via Teams!</h4><h4><span class="tcs-calendar-date-range">October 23, 2025</span><br/><span class="time_format">12:00PM - 1:00PM</span></h4></li></ul></div></td><td >24</td><td class=" weekendDay">25</td></tr><tr><td class=" weekendDay">26</td><td class=" todaydate">27</td><td >28</td><td >29</td><td >30</td><td >31</td><td class="nodate weekendDay">&nbsp;</td></tr></tbody></table></div>
  814.              </div>
  815.            </div>
  816.          </div>
  817.        </div>
  818.      </div>
  819.      <div class="row">
  820.        <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/calendar" class="box-viewall">view all events<i class="fas fa-chevron-circle-right"></i></a>
  821.      </div>
  822.      <div class="row">
  823.        <div class="col-md-8 col-lg-9">
  824.          <div class="content-box z-depth-1 wow fadeInLeft">
  825.  
  826. <!-- ==================== Begin TCSRESULTS ==================== -->
  827.  
  828.  
  829.  
  830. <h2 class="title">Featured Articles</h2>
  831. <div class="tcsnews home"><div class="tcsnews home_odd  "><div class='tcsnewsarticle_photo'><a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/602200/_PARENT/layout_details/false' ><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/602200?ver=18' border='0px' alt='Sara Kilpatrick to Lead Ohio Pharmacists Association as Next Chief Executive Officer' ></a></div><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/602200/_PARENT/layout_details/false" >Sara Kilpatrick to Lead Ohio Pharmacists Association as Next Chief Executive Officer</a></h3><p class="tcs-abstract">On September 17, OPA announced Sara Kilpatrick as its next Chief Executive Officer (CEO), beginning November 17, 2025. A proven leader and seasoned association executive with almost two decades of experience, she will bring a fresh perspective and renewed momentum to OPA.</p></div><div class="tcsnews home_even  "><div class='tcsnewsarticle_photo'><a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/584302/_PARENT/layout_details/false' ><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/584302?ver=77' border='0px' alt='McKesson Amplify Program supports OPA mission' ></a></div><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/584302/_PARENT/layout_details/false" >McKesson Amplify Program supports OPA mission</a></h3><p class="tcs-abstract">The Ohio Pharmacists Association (OPA) is pleased to announce the association has been awarded funding from the McKesson Amplify program. This funding supports OPA’s mission to unite the pharmacy profession, advance patient care, and engage pharmacists as vital members of the healthcare team.</p></div><div class="tcsnews home_odd  "><div class='tcsnewsarticle_photo'><a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/294749/_PARENT/layout_details/false' onclick="return tcsOpenTab(this.href)"><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/294749?ver=564' border='0px' alt='Career Center - Post or Find Ohio Pharmacy Jobs' ></a></div><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/294749/_PARENT/layout_details/false" TARGET="_blank">Career Center - Post or Find Ohio Pharmacy Jobs</a></h3><p class="tcs-abstract">Post job listings to find highly qualified applicants. Search job openings … View NEW job listings... Watch for members' job postings in the Ohio Pharmacy Newsline email to all OPA members and on OPA Social Media.</p></div></div>
  832.  
  833. <h2 class="title" style="padding-top:30px;">Latest News</h2>
  834. <div class="tcsnews"><div class="tcsnews_odd  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/601767/_PARENT/layout_interior_details/false" >September/October Legislative Update: PBM Reforms, 340B Access, Test & Treat, and more</a></h3></div><div class="tcsnews_even  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/599448/_PARENT/layout_interior_details/false" > Growing the Independent Pharmacist and Pharmacy Technician Community</a></h3></div><div class="tcsnews_odd  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/586630/_PARENT/layout_interior_details/false" >OPA offers Scholarships for New Technician Membership</a></h3></div><div class="tcsnews_even  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/593703/_PARENT/layout_interior_details/false" >Live OSHA Trainings Offered- July, August, September, October, November</a></h3></div><div class="tcsnews_odd  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/582653/_PARENT/layout_interior_details/false" >Call for Authors - Ohio Pharmacist journal's independent pharmacy column </a></h3></div><div class="tcsnews_even  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/601889/_PARENT/layout_interior_details/false" >Immunization Protocol Package Now Available</a></h3></div><div class="tcsnews_odd  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/572454/_PARENT/layout_interior_details/false" >OPA Members are invited to join an OPA Committee and/or SIG</a></h3></div><div class="tcsnews_even  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/325629/_PARENT/layout_interior_details/false" >OPA | ODH Nicotine Use Disorder Certificate and CE Programs offered</a></h3></div><div class="tcsnews_odd  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/543905/_PARENT/layout_interior_details/false" >OPA Swag Store is open </a></h3></div><div class="tcsnews_even  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/601573/_PARENT/layout_interior_details/false" >November 2: OPA Midyear Meeting</a></h3></div><div class="tcsnews_odd  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/605057/_PARENT/layout_interior_details/false" >November 5: A Deep Dive on Ohio House Bill 229 and other Legislative Developments - OPA Sponsor Webinar</a></h3></div><div class="tcsnews_even  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/603381/_PARENT/layout_interior_details/false" >November 18: Pharmacy Legislative Day 2025</a></h3></div><div class="tcsnews_odd  "><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/595534/_PARENT/layout_interior_details/false" >May 31: On-Demand Spring Pharmacy Technician Seminar CPE</a></h3></div></div>
  835. <a href="http://careercenter.ohiopharmacists.org/aws/OPA/pt/sp/news" class="viewall">View News Archives</a>
  836.  
  837. <!-- ==================== End TCSRESULTS ==================== -->
  838.  
  839. </div>
  840.        </div>
  841.        <div class="col-md-4 col-lg-3">
  842.          <div class="content-box quick-links z-depth-1 wow fadeInRight">
  843.            <h2 class="title">Quick Links</h2>
  844.            <div class="quicklinks"><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/fli/57028/false" TARGET="_BLANK">OPA Membership - Join Now</a></h3><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/fli/153126/false" TARGET="_BLANK">2025 OPA Annual Conference Learning Objectives</a></h3><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/fli/58467/false" TARGET="_BLANK">OPA Membership Renewal Form</a></h3><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/fli/151625/false" TARGET="_BLANK">OPA Weekly Legislative Updates - Member only access</a></h3><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/fli/151982/false" TARGET="_BLANK">OPA Home-Study CPE Online Catalog</a></h3><h3><A HREF="http://careercenter.ohiopharmacists.org/aws/OPA/pt/fli/832/false" TARGET="_BLANK">PRO</a></h3></div>
  845.          </div>
  846.          <div id="sponsors-container" class="content-box z-depth-1 wow fadeInRight">
  847.            <h2 class="title">OEC Partners</h2>
  848.            <div class="sponsors-all mobile"><!-- Begin BOOTSRAP CAROUSEL -->
  849. <div id="tcs-carousel-sponsors-all_mobile_649811" class="carousel slide" data-ride="carousel">
  850.  <!-- Indicators -->
  851.  <ol class="carousel-indicators">
  852.          <li data-target="#tcs-carousel-sponsors-all_mobile_649811" data-slide-to="0" class="active"></li>
  853.          <li data-target="#tcs-carousel-sponsors-all_mobile_649811" data-slide-to="1"></li>
  854.          <li data-target="#tcs-carousel-sponsors-all_mobile_649811" data-slide-to="2"></li>
  855.          <li data-target="#tcs-carousel-sponsors-all_mobile_649811" data-slide-to="3"></li>
  856.          <li data-target="#tcs-carousel-sponsors-all_mobile_649811" data-slide-to="4"></li>
  857.  </ol>
  858.  <!-- Wrapper for slides -->
  859.  <div class="carousel-inner">
  860.      <div class="carousel-item active">
  861.              <div class="sponsors-all mobile-item "><div class='tcsnewsarticle_photo'><a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/596000/_PARENT/layout_details/false' ><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/596000?ver=1' border='0px' alt='McKesson Amplify' ></a></div></div>
  862.      </div>
  863.      <div class="carousel-item">
  864.              <div class="sponsors-all mobile-item "><div class='tcsnewsarticle_photo'><a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/578136/_PARENT/layout_details/false' ><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/578136?ver=0' border='0px' alt='Walmart' ></a></div></div>
  865.      </div>
  866.      <div class="carousel-item">
  867.              <div class="sponsors-all mobile-item "><div class='tcsnewsarticle_photo'><a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/575743/_PARENT/layout_details/false' onclick="return tcsOpenTab(this.href)"><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/575743?ver=4' border='0px' alt='Independent Pharmacy Cooperative' ></a></div></div>
  868.      </div>
  869.      <div class="carousel-item">
  870.              <div class="sponsors-all mobile-item "><div class='tcsnewsarticle_photo'><a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/574794/_blank/layout_details/false' onclick="return tcsOpenTab(this.href)"><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/574794?ver=4' border='0px' alt='American Pharmacy Cooperative Inc.' ></a></div></div>
  871.      </div>
  872.      <div class="carousel-item">
  873.              <div class="sponsors-all mobile-item "><div class='tcsnewsarticle_photo'><a href='http://careercenter.ohiopharmacists.org/aws/OPA/pt/sd/news_article/568696/_blank/layout_details/false' onclick="return tcsOpenTab(this.href)"><img src='http://careercenter.ohiopharmacists.org/aws/OPA/cms/get_photo_news_article/568696?ver=2' border='0px' alt='Kroger Health' ></a></div></div>
  874.      </div>
  875.  </div>
  876.  <!-- Controls -->
  877.  <a class="carousel-control-prev" href="#tcs-carousel-sponsors-all_mobile_649811" role="button" data-slide="prev">
  878.    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
  879.    <span class="sr-only">Previous</span>
  880.  </a>
  881.  <a class="carousel-control-next" href="#tcs-carousel-sponsors-all_mobile_649811" role="button" data-slide="next">
  882.    <span class="carousel-control-next-icon" aria-hidden="true"></span>
  883.    <span class="sr-only">Next</span>
  884.  </a>
  885. </div>
  886. <!-- End BOOTSRAP CAROUSEL --></div>
  887.          </div>
  888.        </div>
  889.      </div>
  890.    </div>
  891.  </div>
  892.  
  893.  
  894.  
  895.  
  896. <div id="footer-top">
  897.  <div class="container-fluid">
  898.    <div class="row">
  899.      <div class="col-md wow fadeInUp">  
  900.  
  901. <script type="text/javascript">var p="http",d="static";if(document.location.protocol=="https:"){p+="s";d="engine";}var z=document.createElement("script");z.type="text/javascript";z.async=true;z.src=p+"://"+d+".multiview.com/ados.js";var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(z,s);</script>
  902. <script type="text/javascript">
  903. var ados = ados || {};
  904. ados.run = ados.run || [];
  905. ados.run.push(function() {
  906. /* load placement for account: Multiview, site: OPAweb - Ohio Pharmacists Association - MultiWeb, size: 400x90 - 400 x 90, zone: OPAweb - Banner (Front Page)*/
  907. ados_add_placement(4466, 56432, "mvBannerHome", 1503).setZone(60001);
  908. /* load placement for account: Multiview, site: OPAweb - Ohio Pharmacists Association - MultiWeb, size: 468x60 - Full Banner, zone: OPAweb - Banner (Interior Pages)*/
  909. ados_add_placement(4466, 56432, "mvBannerInt", 3).setZone(60002);
  910. ados_setDomain('engine.multiview.com');
  911. ados_load();
  912. });</script>
  913.  
  914.  <div id="mvBannerHome" class="footer-logo-25" style="text-align:center;"></div>
  915.  
  916.  <div class="footer-logo-45"><a href="https://www.phmic.com/landing-professional-pharmacy-pmg">
  917.  <img src="http://careercenter.ohiopharmacists.org/aws/OPA/am/gi/OhioPharmacyBannerAd_vF.JPG?ver=1" border="0"alt="Pharmacists Mutual" /></a></div>
  918.  
  919.  <div class="footer-logo-15"><a href="http://pqc.net/"><img src="http://careercenter.ohiopharmacists.org/aws/OPA/am/gi/pqc_2019.png?ver=5" border="0"alt="Pharmacy Quality Commitment" /></a></div>
  920.  
  921.      </div>
  922.    </div>
  923.  </div>
  924. </div>
  925. <div id="footer" class="wow fadeInUp">
  926.  <div class="container-fluid">
  927.    <div class="row">
  928.      <div class="col-md-10">
  929.        
  930.  
  931. &copy;2025 Ohio Pharmacists Association<br />
  932. 2674 Federated Boulevard, Columbus, OH 43235<br />
  933. phone: 614-389-3236  |  fax: 614-389-4582  |  
  934. <a href="mailto:info@ohiopharmacists.org">info@ohiopharmacists.org</a>
  935.      </div>
  936.      <div class="tcspromo col-md">
  937.        <a href="http://www.associationsoftware.com" target="_blank">
  938.        <img src="http://careercenter.ohiopharmacists.org/aws/OPA/am/gi/logo_tcspromo.png?ver=4" alt="Developed by TCS Software" border="0" /></a>
  939.      </div>
  940.    </div>
  941.  </div>
  942. </div>
  943.  
  944. <script>
  945.  !function(f,e,a,t,h,r){if(!f[h]){r=f[h]=function(){r.invoke?
  946.  r.invoke.apply(r,arguments):r.queue.push(arguments)},
  947.  r.queue=[],r.loaded=1*new Date,r.version="1.0.0",
  948.  f.FeathrBoomerang=r;var g=e.createElement(a),
  949.  h=e.getElementsByTagName("head")[0]||e.getElementsByTagName("script")[0].parentNode;
  950.  g.async=!0,g.src=t,h.appendChild(g)}
  951.  }(window,document,"script","https://cdn.feathr.co/js/boomerang.min.js","feathr");
  952.  feathr("fly", "60b14b2597023d65118623f3");
  953.  feathr("sprinkle", "page_view");
  954. </script>
  955. </div>
  956.  
  957. <!-- Begin Bootstrap Footer -->
  958.  
  959.      <!-- Placed at the end of the document so the pages load faster -->
  960.      <script src="http://careercenter.ohiopharmacists.org/bootstrap4/js/popper.min.js"></script>
  961.      <script src="http://careercenter.ohiopharmacists.org/bootstrap4/js/bootstrap.min.js"></script>
  962.  
  963.      <!--<script>jQuery.noConflict();</script>-->
  964.  
  965.  
  966.      <!-- If jQuery options present, then load jQuery add-on (UI) javascripts. But don't reload core jQuery libs since they are loaded above. -->
  967.      
  968.  
  969.      <!-- Other TCS page-specific Bootstrap-related custom javascript -->
  970.      
  971.      <script>
  972.        jQuery('#tcs-carousel-promo-article_187759').carousel({
  973.          interval: 8000
  974.        });
  975.      </script>
  976.  
  977.      <script>
  978.        jQuery('#tcs-carousel-sponsors-all_mobile_649811').carousel({
  979.          interval: 5000
  980.        });
  981.      </script>
  982.  
  983.  
  984. <!-- End Bootstrap Footer -->
  985. <!-- Begin Bootstrap-MDB Footer -->
  986.  
  987.      <style>
  988.          .btn, .btn.btn-sm { font-family: sans-serif;
  989.                                  font-weight: 300;
  990.                                  line-height: 1.255;
  991.                                  color: #fff;
  992.                                  cursor: pointer;
  993.                                  -webkit-appearance: button;
  994.                                  display:inline-block;
  995.                                  white-space: nowrap;
  996.                                  vertical-align: middle;
  997.                                  border: 1px solid transparent;
  998.                                  padding: 0.375em 0.75em;
  999.                                  font-size: 1.0em;
  1000.                                  border-radius: 0.25em;
  1001.                                  text-transform: none;
  1002.                              }
  1003.          
  1004.          .btn-primary,
  1005.          .btn-primary:hover,
  1006.          .btn-primary:focus,
  1007.          .btn-primary:active { background-color:#007bff !important; border-color:#007bff !important; }
  1008.          
  1009.          .btn-secondary,
  1010.          .btn-secondary:hover,
  1011.          .btn-secondary:focus,
  1012.          .btn-secondary:active  { background-color:#6c757d !important;    border-color:#6c757d !important; }
  1013.  
  1014.          .btn-outline-secondary,
  1015.          .btn-outline-secondary:hover,
  1016.          .btn-outline-secondary:focus,
  1017.          .btn-outline-secondary:active  { color: #797979 !important; background-color:#fff !important; border-color:#fff !important; }
  1018.  
  1019.          .btn-danger,
  1020.          .btn-danger:hover,
  1021.          .btn-danger:focus,
  1022.          .btn-danger:active { background-color:#dc3545 !important;    border-color:#dc3545 !important; }
  1023.          
  1024.          .btn-success,
  1025.          .btn-success:hover,
  1026.          .btn-success:focus,
  1027.          .btn-success:active { background-color:#28a745 !important;    border-color:#28a745 !important; }
  1028.  
  1029.      </style>
  1030.  
  1031.    <!-- Placed at the end of the document so the pages load faster -->
  1032.    <!-- add following line to work-around bug in mdb.min.js -->
  1033.    <script>$.fn.pickadate = $.fn.pickadate || {};</script>
  1034.    <script src="http://careercenter.ohiopharmacists.org/bootstrap4/js/mdb.min.js"></script>
  1035.    <script src="http://careercenter.ohiopharmacists.org/bootstrap4/js/wow.min.js"></script>
  1036.    <script>
  1037.        new WOW().init();
  1038.    </script>
  1039.  
  1040. <!-- End Bootstrap-MDB Footer -->
  1041. </body>
  1042. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda