
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>News &amp; Press</title>
<link>https://members.latinoactuaries.org/news/default.asp</link>
<description><![CDATA[  Read about recent events, essential information and the latest community news.  ]]></description>
<lastBuildDate>Sat, 6 Jun 2026 08:15:22 GMT</lastBuildDate>
<pubDate>Fri, 29 May 2026 18:43:00 GMT</pubDate>
<copyright>Copyright &#xA9; 2026 Organization of Latino Actuaries</copyright>
<atom:link href="https://members.latinoactuaries.org/news/news_rss.asp?cat=17249" rel="self" type="application/rss+xml"></atom:link>
<item>
<title>OLA Industry Newsletter: May 2026 </title>
<link>https://members.latinoactuaries.org/news/news.asp?id=728104</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=728104</guid>
<description><![CDATA[<!DOCTYPE html>
<html lang="en"><head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>OLA Industry Newsletter - May 2026</title>
    <style>
        /* --- CSS STYLES --- */
        
        /* 1. Global Reset & Fonts */
        .ola-newsletter {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            
            /* --- LAYOUT FIX --- */
            width: 100%;
            max-width: 650px; /* Restricted width to avoid right sidebar overlap */
            margin: 0;        /* Align left to stay in the main content area */
            /* ------------------ */
            
            background-color: #ffffff;
            box-shadow: none; 
            padding-bottom: 40px;
            box-sizing: border-box;
            overflow-wrap: break-word;
        }
        
        /* Ensure all elements respect padding/borders */
        .ola-newsletter * {
            box-sizing: border-box;
        }

        .ola-newsletter a {
            color: #f57223;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .ola-newsletter a:hover {
            color: #9f151b;
            text-decoration: underline;
        }
        
        /* 2. Headers */
        .ola-header-red {
            background-color: #9f151b;
            color: white;
            padding: 20px;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        .ola-header-orange {
            background-color: #f57223;
            color: white;
            padding: 15px;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        
        .ola-newsletter h1 { margin: 0; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 28px; line-height: 1.2; }
        .ola-newsletter h2 { margin: 0; font-weight: normal; font-size: 18px; }
        .ola-newsletter h3 { margin: 0; text-transform: uppercase; letter-spacing: 1px; color: white; font-size: 22px; }
        
        /* STANDARDIZED SUB-HEADINGS */
        .ola-newsletter h4 { color: #f57223; text-transform: uppercase; margin-bottom: 10px; margin-top: 30px; line-height: 1.3; font-size: 20px; font-weight: bold; border-bottom: 2px solid #f9f9f9; padding-bottom: 5px; }
        .ola-newsletter h5 { color: #f57223; text-transform: uppercase; margin-bottom: 10px; margin-top: 20px; line-height: 1.3; font-size: 16px; font-weight: bold; letter-spacing: 0.5px; }
        
        /* 3. Sections & Content */
        .ola-content {
            padding: 0 40px;
        }
        
        .intro-text {
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        /* 4. Table of Contents */
        .toc-list {
            background-color: #fdfdfd;
            padding: 25px 40px;
            border-left: 5px solid #f57223;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
            margin-bottom: 40px;
        }
        .toc-list li {
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        /* 5. Spotlights (Flexbox Layout) */
        .spotlight-container {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 20px;
            background-color: #fdfdfd;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #eee;
        }
        .spotlight-img {
            flex: 0 0 150px;
        }
        .spotlight-img img {
            width: 100%;
            height: auto;
            border: 4px solid #9f151b;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .spotlight-text {
            flex: 1;
        }
        
        /* 6. Buttons */
        .btn-ola {
            display: inline-block;
            background-color: #f57223;
            color: white !important;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none !important;
            margin: 10px 0;
            box-shadow: 0 4px 6px rgba(245, 114, 35, 0.2);
            transition: all 0.2s ease;
        }
        .btn-ola:hover {
            background-color: #d15b15;
            box-shadow: 0 6px 10px rgba(245, 114, 35, 0.3);
            transform: translateY(-1px);
        }
        
        /* 7. Utilities */
        .text-center { text-align: center; }
        .img-fluid { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.08); }
        .divider { border: 0; border-top: 1px dashed #ddd; margin: 35px 0; }
        .return-top { font-size: 12px; color: #888; display: block; margin-top: 10px; text-align: right; text-transform: uppercase; letter-spacing: 1px; }
        
        /* 8. Social Icons */
        .social-icons {
            font-size: 24px;
            letter-spacing: 15px;
            margin-top: 20px;
        }

        /* Mobile Responsive */
        @media (max-width: 600px) {
            .ola-content { padding: 0 20px; }
            .spotlight-container { flex-direction: column; }
            .spotlight-img { margin: 0 auto 20px auto; }
        }
    </style>
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400&amp;display=swap" rel="stylesheet" />
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
</head>

<body>

    <div class="ola-newsletter">

        <div style="background-color: #9f151b; padding: 45px 20px; text-align: center; border-radius: 0 0 8px 8px; margin-bottom: 30px;">
            <h1 style="color: white;">OLA Industry Newsletter</h1>
            <h2 style="color: #f9d8d9; margin-top: 10px; font-weight: 400; letter-spacing: 2px;"><em>MAY 2026</em></h2>
        </div>

        <div class="ola-content">
            <div class="intro-text">
                <p><strong>Dear OLA Community,</strong></p>
                <p>This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and
                    volunteer opportunities.</p>
                <p>If you are not already on our distribution list, please register for an OLA Member Portal account via the <a href="https://members.latinoactuaries.org/general/register_member_type.asp?" style="font-weight: bold;">OLA website</a>
                    to receive this newsletter and other important communications!</p>
                <p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a> if you have any questions or feedback.</p>
                <p>Thank you for your continued support of OLA!</p>
                <p><strong>Alan Ramirez</strong><br /><em style="color: #666;">Director of Membership</em></p>
            </div>

            <div class="ola-header-orange" style="margin-bottom: 0; border-radius: 8px 8px 0 0;">
                <h3 style="margin: 0; font-size: 20px;">In this Issue</h3>
            </div>

            <div class="toc-list" style="margin-top: 0;">
                <ol style="margin: 0; padding-left: 20px;">
                    <li><a href="#events">Upcoming Events &amp; Announcements</a></li>
                    <li><a href="#mixers">Mixers</a></li>
                    <li><a href="#volunteer">Volunteer Opportunities</a></li>
                    <li><a href="#students">Student Section</a></li>
                    <li><a href="#affinity-events">Affinity Opportunities</a></li>
                    <li><a href="#career">Career Corner</a></li>
                    <li><a href="#spotlights">Community Spotlight</a></li>
                    <li><a href="#support">Support OLA!</a></li>
                    <li><a href="#impact">2025 OLA Impact Report</a></li>
                    <li><a href="#connect">Connect With Us</a></li>
                </ol>
            </div>

            <div id="events" class="ola-header-red">
                <h3>Upcoming Events &amp; Announcements</h3>
            </div>

            <div style="background-color: #fff8f2; border: 2px solid #f57223; border-radius: 12px; padding: 35px 25px; margin: 30px 0; box-shadow: 0 8px 20px rgba(245, 114, 35, 0.08);">
                <h3 style="color: #f57223; font-family: 'Montserrat', sans-serif; font-size: 24px; text-align: center; margin-top: 0; margin-bottom: 25px; font-weight: bold; text-transform: uppercase;">🎉 2026 Avanza Registration is LIVE! 🎉</h3>
                
                <div class="text-center" style="margin-bottom: 25px;">
                    <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2026_march/avanza_early_bird_flyer.jpg" style="border-radius: 8px; border: 1px solid #e0e0e0; max-width: 350px; width: 100%; height: auto; box-shadow: 0 6px 12px rgba(0,0,0,0.1);" alt="Avanza 2026 Early Bird Flyer" />
                </div>
                
                <p style="font-size: 16px; text-align: center;">Join us in <strong>Chicago</strong> from <strong>August 12–14, 2026</strong> for an unforgettable experience offering development and CE sessions, a career expo with industry leaders, and more.</p>
                
                <p style="font-size: 16px; text-align: center;">This conference is open to both students and professionals. Secure your spot today and take advantage of <strong>early bird pricing before June 30</strong>. Learn more at our Avanza Hub below:</p>
                
                <div class="text-center" style="margin-top: 25px; margin-bottom: 5px;">
                    <a href="https://members.latinoactuaries.org/page/Content-Hub-2026-OLA-Avanza-Conference#RegistrationPricing" class="btn-ola" style="font-size: 18px; padding: 15px 35px; border-radius: 30px;">Register &amp; Learn More Here!</a>
                </div>
            </div>

            <a href="#" class="return-top">Return to Top</a>

            <div id="mixers" class="ola-header-red">
                <h3>Mixers</h3>
            </div>

            <h4 style="text-align: center; border: none; font-size: 18px;">Recent Mixers</h4>

            <div style="display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 25px;">
                <div style="flex: 1; min-width: 200px; max-width: 300px; text-align: center;">
                    <p style="margin-bottom: 10px; color: #9f151b; font-weight: bold;">New York City - May 28</p>
                    <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2026_march/nyc_mixer.jpg" class="img-fluid" style="max-width: 250px;" alt="New York City Spring Mixer" />
                </div>
            </div>

            <p>We recently held our OLA Spring Mixer in New York City for an evening of networking, community, and connection at Stout Grand Central! It was a fantastic opportunity to bring together members of the OLA community and allies to meet fellow actuarial professionals and students, expand networks, and celebrate our growing community.</p>
            <p>A special thank you to our co-sponsor, <strong>New York Life</strong>, for supporting this event and for their continued support as a platinum and founding sponsor of OLA.</p>

            <div class="text-center" style="margin-top: 30px; padding: 15px; background-color: #f9f9f9; border-radius: 8px;">
                <p style="margin: 0; color: #666; font-style: italic;">More 2026 Mixer announcements to come soon!</p>
            </div>

            <a href="#" class="return-top">Return to Top</a>

            <div id="volunteer" class="ola-header-red">
                <h3>Volunteer Opportunities</h3>
            </div>

            <h4 style="margin-top: 15px;">🌟 Summer 2026 OLA Academy Volunteer Opportunities</h4>
            <div class="text-center" style="margin-bottom: 15px;">
                <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2026_march/olaa_volunteer_request.png" alt="OLA Academy Volunteer Request" class="img-fluid" style="max-width: 300px;" />
            </div>
            <p>Are you interested in being a Summer 2026 volunteer? We are looking for proactive volunteers to help with mock interviews and action plan assessments.</p>
            <ul style="background-color: #f9f9f9; padding: 20px 20px 20px 40px; border-radius: 8px;">
                <li style="margin-bottom: 8px;"><strong>Time Commitment:</strong> Approximately 1.5 hours per assignment.</li>
                <li style="margin-bottom: 8px;"><strong>Timeline:</strong> Assignments will be distributed by Friday, June 26, and must be completed by Friday, July 10.</li>
                <li style="margin-bottom: 0;"><strong>Requirements:</strong> Volunteers must be proactive in reaching out to assigned prospects and must have an OLA account to submit assessment forms.</li>
            </ul>
            <div class="text-center" style="margin: 25px 0;">
                <a href="https://members.latinoactuaries.org/page/OLAA-Volunteer-Interest-Form-Landing" class="btn-ola">Review Requirements &amp; Apply</a>
            </div>

            <hr class="divider" style="margin: 20px 0;" />

            <h4>🤝 Help Expand OLA's Reach!</h4>
            <p>Help build a more inclusive actuarial community! If you have professional or volunteer contacts at high schools, colleges/universities, or nonprofit organizations, please consider introducing them to OLA. Your introductions help us broaden access to actuarial opportunities and resources.</p>

            <div class="text-center" style="margin: 20px 0;">
                <a href="https://forms.office.com/r/N0fvT8mqNv" class="btn-ola" style="background-color: #9f151b;">Provide a Contact Here</a>
            </div>

            <hr class="divider" style="margin: 20px 0;" />

            <h4>Volunteer with OLA!</h4>
            <p>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests!</p>
            <p>Check out our <a href="https://www.latinoactuaries.org/volunteer/" style="font-weight: bold;">Volunteer Page</a> for more details.</p>
            
            <a href="#" class="return-top">Return to Top</a>


            <div id="students" class="ola-header-red">
                <h3>Student Section</h3>
            </div>

            <h4 style="margin-top: 15px;">🏆 Meet the winners of the Desafiando el Riesgo Case Competition! ✨</h4>
            <p>These talented minds just proved that Latino actuaries are a FORCE 💪🏽</p>

            <ul style="list-style-type: none; padding-left: 0; background-color: #fff8f2; padding: 20px; border-radius: 8px; border: 1px solid #ffe3cd;">
                <li style="margin-bottom: 10px; font-size: 18px;">🥇 <strong>1st Place:</strong> Aziel Gerardo Quesada (Austin, TX)</li>
                <li style="margin-bottom: 0; font-size: 16px;">🥈 <strong>Runners-Up:</strong> Aurora Z., Joaquin C., &amp; Nathalia H.</li>
            </ul>

            <p style="font-weight: bold; color: #9f151b;">So proud of everyone who competed. The future of actuarial science is HERE 🙌🏽</p>

            <div class="text-center" style="margin: 25px 0;">
                <iframe src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7455741160448397312?compact=1" height="320" width="100%" style="max-width: 400px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);" frameborder="0" title="Embedded post"></iframe>
            </div>

            <hr class="divider" style="margin: 20px 0;" />

            <h4 style="line-height: 1.4;">📢 Calling all students interested in a career in actuarial science!</h4>
            <p>Apply now for the <strong>2026 OLA Avanza Conference Travel Sponsorship</strong>! Taking place August 12-14 in Chicago, this premier conference is designed specifically to help you learn, connect, and accelerate your path in the actuarial profession.</p>
            <p>Our travel sponsorship program alleviates the hotel, flight, and other travel costs to bring talented actuarial students together from across the US.</p>
            
            <div class="text-center" style="margin: 25px 0;">
                <iframe src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7463391656852058114?compact=1" height="320" width="100%" style="max-width: 400px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);" frameborder="0" title="Embedded post"></iframe>
            </div>

            <div class="text-center" style="margin-bottom: 25px;">
                <a href="https://members.latinoactuaries.org/page/OLA-Scholarship-Avanza-2026" class="btn-ola">Learn More &amp; Apply Today</a>
            </div>

            <hr class="divider" style="margin: 20px 0;" />
            
            <h4 style="line-height: 1.4;">📢 Become an SOA USA Student Ambassador (Fall 2026)</h4>
            <p>The Society of Actuaries (SOA) is now accepting applications for the <strong>USA Student Ambassador Program</strong> for Fall 2026. This is your opportunity to lead actuarial engagement on your campus and connect with the broader profession. This is a volunteer leadership role open to college students across the U.S.</p>
        
            <p><strong>Why apply?</strong></p>
            <ul style="padding-left: 20px;">
                <li style="margin-bottom: 5px;">Build leadership and represent the SOA on campus</li>
                <li style="margin-bottom: 5px;">Connect nationally through monthly calls with peers and SOA leaders</li>
                <li style="margin-bottom: 5px;">Gain resume-building experience in events and outreach</li>
                <li style="margin-bottom: 5px;">Earn the <strong>SOA Student Ambassador Award</strong> upon completing campus events</li>
                <li style="margin-bottom: 5px;">Expand your professional network within the actuarial pipeline</li>
            </ul>
        
            <p>If you're pursuing a career as an actuary and ready to stand out, this program offers a strong platform to grow and differentiate yourself.</p>
        
            <div class="text-center" style="margin-bottom: 20px; margin-top: 20px;">
                <a href="https://www.soa.org/programs/usa-student-ambassador/" class="btn-ola" style="background-color: #9f151b;">Apply Here</a>
            </div>

            <hr class="divider" style="margin: 20px 0;" />

            <h4>Exam Support!</h4>
            <p>OLA provides the following exam support programs for those in the exam taking process:</p>
            
            <div style="background-color: #fdfdfd; padding: 20px; border-radius: 8px; border: 1px solid #eee;">
                <ul style="list-style-type: none; padding-left: 0; margin: 0;">
                    <li style="margin-bottom: 15px;">
                        <strong style="color: #f57223;">1. First time exam support stipend</strong>
                        <ul style="margin-top: 5px; padding-left: 20px;">
                            <li>Covers first exam only (P or FM)</li>
                            <li>$325 assists in covering the cost of study materials and registration</li>
                        </ul>
                    </li>
                    <li style="margin-bottom: 15px;">
                        <strong style="color: #f57223;">2. Regular exam support stipend</strong>
                        <ul style="margin-top: 5px; padding-left: 20px;">
                            <li>Covers 2 exams (P, FM, FAM, SRM, ASTAM, ALTAM, MAS-1, MAS-2, Exam 5)</li>
                            <li>The program helps students pass a total of 3 exams</li>
                            <li>RLP students can earn points to help pay towards a 4th exam</li>
                        </ul>
                    </li>
                    <li style="margin-bottom: 15px;">
                        <strong style="color: #f57223;">3. Failed exam reimbursement</strong>
                        <ul style="margin-top: 5px; padding-left: 20px;">
                            <li>Covers the cost of exam registration (P or FM)</li>
                        </ul>
                    </li>
                    <li style="margin-bottom: 0;">
                        <strong style="color: #f57223;">4. Study Materials</strong>
                        <ul style="margin-top: 5px; padding-left: 20px;">
                            <li>Partnerships with Coaching Actuaries, ACTEX, and TIA offer discounted materials for stipend recipients.</li>
                        </ul>
                    </li>
                </ul>
            </div>
            <p style="margin-top: 20px;">If you have any questions, please reach out to <a href="mailto:examsupport@latinoactuaries.org" style="font-weight: bold;">examsupport@latinoactuaries.org</a>.</p>
            
            <a href="#" class="return-top">Return to Top</a>

            <div id="affinity-events" class="ola-header-red">
                <h3>Affinity Opportunities</h3>
            </div>

            <h4 style="margin-top: 15px;">CCA 2026 Leadership Seminar</h4>
            <div class="text-center" style="margin-bottom: 15px;">
                <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2026_march/leadership_seminar_web_graph.jpg" alt="CCA Leadership Seminar" class="img-fluid" style="max-width: 200px;" />
            </div>
            <p><strong>Lead with intention. Grow with confidence.</strong></p>
            <p>The Conference of Consulting Actuaries (CCA) invites you to their 3-day virtual <strong>2026 Leadership Seminar</strong> happening <strong>September 15–17, 2026</strong>. Designed for both emerging and experienced actuaries, this interactive experience will help you build your executive presence, deepen your emotional intelligence, and lead with confidence.</p>
            <p>Across the three days, you will engage in core leadership sessions, a cross-disciplinary webinar, and small-group discussions to connect ideas to real-world consulting scenarios. Plus, attendees will earn <strong>8+ hours of CPD credit</strong>.</p>
            
            <div style="background-color: #f9f9f9; padding: 15px 20px; border-radius: 8px; margin-bottom: 20px;">
                <p style="margin-top: 0; font-weight: bold; color: #9f151b;">Registration Details:</p>
                <ul style="list-style-type: none; padding-left: 0; margin-bottom: 0;">
                    <li style="margin-bottom: 5px;">• <strong>Individual Rate:</strong> $250.00 ($350.00 after Sept. 6th)</li>
                    <li style="margin-bottom: 0;">• <strong>Group Option</strong> (5 spots from same company): $1,000.00 ($1,400.00 after Sept. 6th)</li>
                </ul>
            </div>
            
            <div class="text-center" style="margin: 20px 0;">
                <a href="#" class="btn-ola">Learn More &amp; Register</a>
            </div>

            <hr class="divider" style="margin: 20px 0;" />

            <h4>CAS P&amp;C Actuarial Essentials</h4>
            <p><a href="https://www.casact.org/ActuarialEssentials" style="font-weight: bold; font-size: 18px;">Register for the CAS P&amp;C Actuarial Essentials Program</a></p>
            <p>The Casualty Actuarial Society (CAS) is pleased to offer the <a href="https://www.casact.org/ActuarialEssentials">CAS P&amp;C Actuarial Essentials Program</a>, an on-demand learning experience designed to provide a clear, structured introduction to the property and casualty (P&amp;C) insurance industry and the work of P&amp;C actuaries. The program is designed for university students, early-career professionals, and career-changers who are exploring actuarial science and seeking to better understand entry-level P&amp;C actuarial roles.</p>
            <p>Additional information about the CAS P&amp;C Actuarial Essentials Program, including registration and pricing details, is available at <a href="https://www.casact.org/ActuarialEssentials">Casact.org/ActuarialEssentials</a>.</p>

            <hr class="divider" style="margin: 20px 0;" />

            <h4>SOA Affiliate Program</h4>
            <p><strong>For Candidates, Career Changers, and Math Influencers</strong></p>
            <p>The SOA Affiliate Membership is free and open to anyone with an interest in the actuarial profession and not already a member of the SOA. The benefits are built to help anyone get ready for their next step. Whatever questions you have, this
                membership can get you the answer.</p>
            <p><a href="https://www.soa.org/programs/affiliate/membership/" style="font-weight: bold;">Sign up for the SOA Affiliate Program here.</a></p>

            <a href="#" class="return-top">Return to Top</a>

            <div id="career" class="ola-header-red">
                <h3>Career Corner</h3>
            </div>
            
            <h4 style="margin-top: 15px;">Platinum Sponsor Webinar Series</h4>
            <p>Be on the lookout for more details about our Platinum Sponsor Webinar series. Each session will focus on a different topic to inform related to the actuarial profession and the recruiting process. Starting in late June, these will help prepare you for the Avanza conference and the Fall Recruiting season. Thank you again to our Platinum Sponsors for your support!</p>
            
            <hr class="divider" />

            <h4>Do You Have Job Postings to Share?</h4>
            <p>Our Platinum, Gold, and Silver Corporate Sponsors can share job postings on the Career Center portion of our OLA Membership Portal! This platform allows corporate sponsors to post and modify their company’s job openings in real-time, while simultaneously providing OLA’s prospects with real-time access to these openings. OLA prospects will be directed to utilize the Career Center throughout their job search process. Access to the OLA Career Center is a sponsor-only benefit.</p>
            <p>Please reach out to <a href="mailto:corpengagement@latinoactuaries.org">corpengagement@latinoactuaries.org</a> if you have any questions.</p>

            <hr class="divider" />

            <div class="text-center" style="margin-top: 30px; margin-bottom: 20px; background-color: #fff4ea; padding: 25px; border-radius: 8px;">
                <p style="font-size: 18px; font-weight: bold; color: #9f151b; margin-top: 0;">Looking for a new opportunity?</p>
                <p style="margin-bottom: 20px;">Check out the job postings in the link below.</p>
                <a href="https://members.latinoactuaries.org/networking/opening_search.asp" class="btn-ola" style="margin: 0;">Search Career Opportunities</a>
            </div>

            <a href="#" class="return-top">Return to Top</a>

            <div id="spotlights" class="ola-header-orange">
                <h3>Community Spotlight</h3>
            </div>

            <div class="spotlight-container">
                <div class="spotlight-img">
                    <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2026_march/trent_ola.jpg" alt="Trent Perez" /></div>
                <div class="spotlight-text">
                    <p style="margin-top: 0;"><span style="font-size: 22px; font-weight: bold; letter-spacing: 1px; text-transform: uppercase; font-family: Montserrat, sans-serif; color: #f57223;">Trent Perez</span></p>
                    <p style="margin-bottom: 5px;"><strong>Hometown:</strong> Cedar Rapids, IA</p>
                    <p style="margin-bottom: 5px;"><strong>University:</strong> University of Iowa</p>
                    <p style="margin-bottom: 5px;"><strong>Current Role:</strong> Associate Actuary at Principal, disability inforce management and reinsurance</p>
                    <p style="margin-bottom: 15px;"><strong>OLA Role:</strong> Director of Early Career Development</p>
                    
                    <p><strong>About:</strong> Hello! I’m Trent Perez, an actuary based in Des Moines, Iowa. I serve on the board overseeing the OLA Academy and RLP teams, and am in my fourth year on the OLA leadership team.</p>
                    <p>I was born in Iowa, raised in Iowa, went to college in Iowa, and work in Iowa. Since I’ve seen so much of Iowa I love to travel whenever I can. My partner and I try to hit 3 new US cities and 1 new international city every year (this year we’re visiting San Francisco, Portland ME, Burlington VT, and Edinburgh).</p>
                    <p>I also love to cook, hit up happy hours, watch movies, and work out (in that order). If I’m not working I’m most likely doing one of those four things.</p>
                    
                    <div style="background-color: #fff8f2; padding: 15px; border-radius: 6px; margin-top: 15px;">
                        <p style="margin-top: 0; margin-bottom: 5px;"><strong>Favorite meal to cook:</strong> Greek marinated chicken thighs and orzo</p>
                        <p style="margin-bottom: 5px;"><strong>Favorite beer:</strong> Busch Light</p>
                        <p style="margin-bottom: 5px;"><strong>Favorite movie:</strong> Eternal Sunshine of the Spotless Mind</p>
                        <p style="margin-bottom: 0;"><strong>Favorite workout:</strong> Running</p>
                    </div>
                </div>
            </div>

            <div style="background-color: #f9f9f9; padding: 15px; text-align: center; border-radius: 8px; border: 1px dashed #ccc;">
                <em>Do you have a nomination for a spotlight? <a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest" style="font-weight: bold;">Fill out this form</a>.</em>
            </div>
            
            <a href="#" class="return-top">Return to Top</a>

            <div id="support" class="ola-header-red">
                <h3>Support OLA!</h3>
            </div>

            <h4 style="margin-top: 20px; font-size: 18px; text-transform: none;">Interested in becoming an OLA sponsor?</h4>
            <p style="margin-top: 0; margin-bottom: 10px;">If your company or organization isn’t yet an OLA sponsor, now is a great time to get involved—the <strong>2026 sponsorship season is officially open</strong>.</p>
            <p style="margin-top: 0; margin-bottom: 25px;">To explore sponsorship opportunities or connect your employer with OLA, please contact the OLA Corporate Engagement Team at <a href="mailto:corpengagement@latinoactuaries.org">corpengagement@latinoactuaries.org</a>.</p>

            <div style="background-color: #fdfdfd; padding: 25px; border-radius: 8px; border: 1px solid #eee; border-left: 5px solid #f57223; margin-bottom: 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.02);">
                <h5 style="margin-top: 0; color: #9f151b;">Corporate Sponsorship Benefits</h5>
                <div style="margin-bottom: 25px;">
                    <a href="https://cdn.ymaws.com/members.latinoactuaries.org/resource/resmgr/corpengagement/2026/olacorpsponstiers26_20260104.pdf" class="btn-ola" style="margin: 0; padding: 10px 20px; font-size: 14px;">View 2026 Corporate Sponsorship Tiers</a>
                </div>
                
                <h5 style="margin-top: 0; color: #9f151b;">Non-Recruiting Partnership Benefits</h5>
                <div style="margin-bottom: 5px;">
                    <a href="https://cdn.ymaws.com/members.latinoactuaries.org/resource/resmgr/corpengagement/2026/olacommptnrtiers26_20260104.pdf" class="btn-ola" style="margin: 0; padding: 10px 20px; font-size: 14px;">View 2026 Community Partnership Tiers</a>
                </div>
            </div>

            <h4 style="font-size: 18px; text-transform: none;">Individual Donations</h4>
            <p style="margin-top: 0; margin-bottom: 15px;">OLA supports our Latine actuarial prospects via scholarship programs, exam materials, and our travel program. Individual donations of any amount can go a long way.</p>
            <div style="margin-bottom: 20px;">
                <a href="https://www.latinoactuaries.org/donate/" class="btn-ola" style="background-color: #9f151b;">Click here if interested in donating!</a>
            </div>
            
            <a href="#" class="return-top">Return to Top</a>

            <div id="impact" class="ola-header-red">
                <h3>2025 OLA Impact Report</h3>
            </div>

            <p><span style="background-color: #ffffff; font-family: Arial, sans-serif; color: #333333;">Thanks to the unwavering support of our </span><strong style="box-sizing: border-box; color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;">47 corporate sponsors and 4 non-profit partners</strong>
                <span style="background-color: #ffffff; font-family: Arial, sans-serif; color: #333333;">, our community has grown to </span><strong style="box-sizing: border-box; color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;">1,415 members</strong>
                <span style="background-color: #ffffff; font-family: Arial, sans-serif; color: #333333;">, including </span>
                <strong style="box-sizing: border-box; color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;">150 credentialed Latine actuaries. </strong>Together, we delivered tangible results in 2025:</p>
            
            <ul style="background-color: #fdfdfd; padding: 20px 20px 20px 40px; border-radius: 8px; border: 1px solid #eee;">
                <li style="margin-bottom: 10px;"><strong>Financial Support:</strong> We awarded 31 academic scholarships totaling over $127,000 and provided 89 travel scholarships for the OLA Avanza Conference.</li>
                <li style="margin-bottom: 10px;"><strong>Career Development:</strong> Through the OLA Academy, we helped members secure 50 summer internships and 30 full-time positions.</li>
                <li style="margin-bottom: 0;"><strong>Community Connection:</strong> We hosted 250 attendees at our conference in San Diego and connected hundreds more through our speed networking events, career fairs, and regional mixers.</li>
            </ul>

            <p style="text-align: center; margin-top: 25px; font-weight: bold; color: #9f151b;">I invite you to review our collective success in detail in the 2025 OLA Impact Report:</p>

            <div class="text-center" style="margin-bottom: 20px;">
                <a href="https://www.latinoactuaries.org/wp-content/uploads/2025/12/2025-OLA-Impact-Report.pdf" class="btn-ola">View 2025 Impact Report</a>
            </div>

            <a href="#" class="return-top">Return to Top</a>

            <div id="connect" class="ola-header-red">
                <h3>Connect With Us</h3>
            </div>

            <div class="text-center social-icons">
                <a href="https://www.facebook.com/latinoactuaries" style="color: #9f151b;"><i class="fab fa-facebook"></i></a>
                <a href="https://www.instagram.com/latinoactuaries/" style="color: #9f151b;"><i class="fab fa-instagram"></i></a>
                <a href="https://www.linkedin.com/company/latinoactuaries/" style="color: #9f151b;"><i class="fab fa-linkedin"></i></a>
                <a href="https://www.tiktok.com/@latinoactuaries" style="color: #9f151b;"><i class="fab fa-tiktok"></i></a>
            </div>

            <div class="text-center" style="margin-top: 30px; margin-bottom: 20px;">
                <a href="https://www.latinoactuaries.org" class="btn-ola" style="background-color: #333;">Visit Our Website</a>
            </div>

        </div>
    </div>
</body></html>]]></description>
<pubDate>Fri, 29 May 2026 19:43:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: February 2026</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=720297</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=720297</guid>
<description><![CDATA[<!DOCTYPE html>
<html lang="en"><head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>OLA Industry Newsletter - February 2026</title>
    <style>
        /* --- CSS STYLES --- */
        
        /* 1. Global Reset & Fonts */
        .ola-newsletter {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            
            /* --- LAYOUT FIX --- */
            width: 100%;
            max-width: 650px; /* Restricted width to avoid right sidebar overlap */
            margin: 0;        /* Align left to stay in the main content area */
            /* ------------------ */
            
            background-color: #ffffff;
            box-shadow: none; 
            padding-bottom: 40px;
            box-sizing: border-box;
            overflow-wrap: break-word;
        }
        
        /* Ensure all elements respect padding/borders */
        .ola-newsletter * {
            box-sizing: border-box;
        }

        .ola-newsletter a {
            color: #f57223;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .ola-newsletter a:hover {
            color: #9f151b;
            text-decoration: underline;
        }
        
        /* 2. Headers */
        .ola-header-red {
            background-color: #9f151b;
            color: white;
            padding: 20px;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 20px;
        }
        .ola-header-orange {
            background-color: #f57223;
            color: white;
            padding: 15px;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 20px;
        }
        
        .ola-newsletter h1 { margin: 0; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 28px; line-height: 1.2; }
        .ola-newsletter h2 { margin: 0; font-weight: normal; font-size: 18px; }
        .ola-newsletter h3 { margin: 0; text-transform: uppercase; letter-spacing: 1px; color: white; }
        .ola-newsletter h4 { color: #f57223; text-transform: uppercase; margin-bottom: 10px; margin-top: 30px; line-height: 1.3; }
        
        /* 3. Sections & Content */
        .ola-content {
            padding: 0 40px;
        }
        
        .intro-text {
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        /* 4. Table of Contents */
        .toc-list {
            background-color: #f9f9f9;
            padding: 20px 40px;
            border-left: 5px solid #f57223;
        }
        .toc-list li {
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        /* 5. Spotlights (Flexbox Layout) */
        .spotlight-container {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .spotlight-img {
            flex: 0 0 150px;
        }
        .spotlight-img img {
            width: 100%;
            height: auto;
            border: 4px solid #9f151b;
            border-radius: 4px;
        }
        .spotlight-text {
            flex: 1;
        }
        
        /* 6. Buttons */
        .btn-ola {
            display: inline-block;
            background-color: #f57223;
            color: white !important;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: bold;
            text-decoration: none !important;
            margin: 10px 0;
        }
        .btn-ola:hover {
            background-color: #d15b15;
        }
        
        /* 7. Utilities */
        .text-center { text-align: center; }
        .img-fluid { max-width: 100%; height: auto; }
        .divider { border: 0; border-top: 1px solid #ddd; margin: 30px 0; }
        .return-top { font-size: 12px; color: #888; display: block; margin-top: 10px; text-align: right; }
        
        /* 8. Social Icons */
        .social-icons {
            font-size: 24px;
            letter-spacing: 15px;
        }
        
        /* 9. TABLE STYLES - COMPACT VERSION */
        .table-wrapper {
            overflow-x: auto;
            margin-bottom: 20px;
            border: 1px solid #ddd;
        }
        .sponsorship-table {
            width: 100%;
            border-collapse: collapse;
            /* Reduced min-width to help avoid scrolling */
            min-width: 100%; 
            /* Smaller font size to fit more content */
            font-size: 10px; 
            font-family: Arial, sans-serif;
        }
        .sponsorship-table thead tr {
            background-color: #9f151b;
            color: white;
        }
        .sponsorship-table th {
            /* Reduced padding for tighter columns */
            padding: 5px 4px;
            text-align: center;
            border: 1px solid #b02e34;
            vertical-align: middle;
        }
        .sponsorship-table th.th-benefit {
            text-align: left;
            width: 35%; /* Gave slightly more room to the benefit name */
        }
        .sponsorship-table td {
            /* Reduced padding for tighter columns */
            padding: 5px 4px;
            border-bottom: 1px solid #eee;
            border-right: 1px solid #eee;
            vertical-align: middle;
        }
        .sponsorship-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .sponsorship-table .check {
            font-size: 14px;
            font-weight: bold;
            color: #333;
        }
        .tier-price {
            font-size: 9px;
            font-weight: normal;
            display: block;
            margin-top: 2px;
        }

        /* Mobile Responsive */
        @media (max-width: 600px) {
            .ola-content { padding: 0 20px; }
            .spotlight-container { flex-direction: column; }
            .spotlight-img { margin: 0 auto 20px auto; }
            /* On very small screens, let it scroll if needed */
            .sponsorship-table { min-width: 500px; }
        }
    </style>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
</head>

<body>

    <div class="ola-newsletter">

        <div style="background-color: #9f151b; padding: 40px 20px; text-align: center;">
            <h1 style="color: white;">OLA Industry Newsletter</h1>
            <h2 style="color: white; margin-top: 10px;"><em>February 2026</em></h2>
        </div>

        <div class="ola-content">
            <div class="intro-text">
                <p><strong>Dear OLA Community,</strong></p>
                <p>This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and
                    volunteer opportunities.</p>
                <p>If you are not already on our distribution list, please register for an OLA Member Portal account via the <a href="https://members.latinoactuaries.org/general/register_member_type.asp?" style="box-sizing: border-box; text-decoration-line: none; transition: color 0.2s; font-family: Arial, sans-serif; font-size: 16px; background-color: #ffffff;">OLA website</a>
                    <span style="background-color: #ffffff; font-family: Arial, sans-serif; font-size: 16px; color: #333333;"></span>to receive this newsletter and other important communications!</p>
                <p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a> if you have any questions or feedback.</p>
                <p>Thank you for your continued support of OLA!</p>
                <p><strong>Alan Ramirez</strong><br /><em>Director of Membership</em></p>
            </div>

            <hr class="divider" />

            <div class="ola-header-orange">
                <h3>In this Issue</h3>
            </div>

            <div class="toc-list">
                <ol>
                    <li><a href="#president">From the President's Desk</a></li>
                    <li><a href="#leadership">2026 OLA Leadership Meeting</a></li>
                    <li><a href="#proposals">2026 Avanza Call for Proposals</a></li>
                    <li><a href="#events">Upcoming Events &amp; Announcements</a></li>
                    <li><a href="#mixers">Mixers</a></li>
                    <li><a href="#support">Support OLA!</a></li>
                    <li><a href="#career">Career Corner</a></li>
                    <li><a href="#volunteer">Volunteer Opportunities</a></li>
                    <li><a href="#students">Student Section (Scholarships &amp; Exam Support)</a></li>
                    <li><a href="#affinity-events">Affinity Opportunities</a></li>
                    <li><a href="#spotlights">Community Spotlights</a></li>
                    <li><a href="#impact">2025 OLA Impact Report</a></li>
                    <li><a href="#connect">Connect With Us</a></li>
                </ol>
            </div>

            <div id="president" class="ola-header-red">
                <h3>From the President's Desk</h3>
            </div>

            <p>As I step into the role of Organization of Latino Actuaries President, I am filled with excitement and a sense of responsibility to this community that has taught me so much. It is an honor to follow Anthony Lucero, ASA whose leadership and
                unwavering dedication have positioned OLA for continued growth and impact.</p>

            <p>For those who don't know my background, I call myself an accidental actuary. I stumbled across the field after my third year of college and was lucky to meet amazing actuaries, leaders, and mentors who propelled my interest in the profession.
                They saw in me the characteristics of a great actuary before I even knew what they were. But you shouldn't have to be lucky to find out about the field and I vowed to pay it forward.</p>

            <p>I started with OLA volunteering for mock interviews and resume reviews in 2018 and fell in love with the mission. I joined the board in 2023. Serving as President is the culmination of the vow to ensure others have the support and community
                that made my journey possible.</p>

            <p>This year we build on the momentum the 2025 team created. After our successful inaugural Avanza conference in San Diego, we're heading to Chicago this summer. Avanza is a celebration of our community, a catalyst for professional growth, and
                a demonstration of the strength of Latine actuaries. Additionally, our 2nd high school case competition, Desafiando el Riesgo, continues expanding our pipeline, engaging the next generation early.</p>

            <p>As President, I commit to continuing OLA's progress on our three strategic pillars: increase Latine representation in the actuarial profession, empower Latine actuaries to lead and influence, and foster meaningful, sustainable, and scalable
                relationships.
            </p>

            <p>Our mission is clear: We empower future and current Latine actuaries to lead and shape the future of the profession, fostering an influential and inclusive community that increases representation at all levels.</p>

            <p>Our vision is equally compelling: a future where a thriving, well-represented Latine actuarial community helps drives leadership and innovation in the actuarial profession, leaving a lasting legacy of influence.</p>

            <p>These are the commitments we live through our programs, partnerships, and people.</p>

            <p>My confidence in OLA's trajectory comes from the incredible team of board members, program managers, volunteers, corporate and community partners, and members who make OLA what it is. Your passion and commitment make this community unstoppable.
                While there will be challenges, 2026 brings opportunities to deepen our impact, expand our reach, and strengthen the bonds that make OLA the organization it is.</p>

            <p>I am honored to serve as OLA's 2026 President and look forward to working alongside you all to create lasting change.</p>

            <p>Con gratitud y entusiasmo,</p>

            <div style="margin-top: 20px; margin-bottom: 10px;">
                <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2026_march/romina.jpg" alt="Romina Egan" style="max-width: 150px; border-radius: 4px;" />
            </div>

            <p><strong>Romina Egan, FSA, MAAA</strong><br /> 2026 OLA President</p>

            <div id="leadership" class="ola-header-red">
                <h3>2026 OLA Leadership Meeting</h3>
            </div>

            <div class="text-center" style="margin-bottom: 25px;">
                <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2026_march/ola_dm_meeting.jpg" style="border-radius: 4px; border: 1px solid #ddd; max-width: 500px; width: 100%; height: 250px; object-fit: cover; object-position: center bottom;" alt="2026 OLA Leadership Team" />
            </div>

            <p>At the end of January, the 2026 OLA Leadership team gathered in Des Moines, Iowa, for our annual strategic planning meeting. Board members and Program Managers came together to align on our vision for the year ahead, build on the momentum
                achieved in 2025, and define priorities to best support our growing community of Latine actuaries.</p>

            <p>We also had the opportunity to connect with local members, corporate sponsors, and students at our Des Moines networking mixer at Big Grove Brewery. These conversations reinforced the importance of community, collaboration, and engagement
                across all career stages.</p>
            <p>Thank you to everyone who joined us and made the weekend such a success. We are excited, aligned, and ready to make 2026 and impactful year of OLA!</p>

            <a href="#" class="return-top">Return to Top</a>

            <div id="proposals" class="ola-header-red">
                <h3>2026 Avanza Call for Proposals</h3>
            </div>

            <p>Are you passionate about advancing the next generation of actuaries? Do you have the bold ideas, technical expertise, or leadership insights that can drive our industry forward? If so, we invite you to submit a proposal for a session at the
                <strong>2026 Avanza Conference</strong>.</p>

            <h4 style="color: #9f151b;">Why Present at Avanza?</h4>
            <p>This year’s theme, <strong>Strong Foundations. Bold Futures.</strong> invites attendees to honor the resilience, technical rigor, and strength that built our community while developing the next generation of leaders. By sharing your expertise,
                you play a direct role in advancing aspiring actuaries, shaping our industry and impacting bold futures.</p>

            <h4 style="color: #9f151b;">We welcome proposals that:</h4>
            <ul style="list-style-type: none; padding-left: 0;">
                <li style="margin-bottom: 8px;"><strong>• Strengthen the Foundation:</strong> Elevate actuarial thought leadership, core technical skills, and industry innovation.</li>
                <li style="margin-bottom: 8px;"><strong>• Build Bold Futures:</strong> Explore emerging risk topics, data analytics, AI, and the evolving regulatory landscape.</li>
                <li style="margin-bottom: 8px;"><strong>• Navigate the Journey:</strong> Highlight career paths and provide practical advice for professional development.</li>
                <li style="margin-bottom: 8px;"><strong>• Foster Comunidad:</strong> Drive dialogue of the unique experiences of Latine actuarial professionals and allies.</li>
                <li style="margin-bottom: 8px;"><strong>• Empower the Next Generation:</strong> Engage students, career-changers, and early-career professionals with actionable insights.</li>
            </ul>

            <h4 style="color: #9f151b;">Presentation requirements:</h4>
            <ul>
                <li style="margin-bottom: 5px;">Proposals must be submitted by March 16th, 2026 at 11:59pm PST.</li>
                <li style="margin-bottom: 5px;">All presenters must be <strong>in person</strong> during the conference from August 12-14th, 2026 in Chicago, IL and will receive a complimentary Essential Access Pass.</li>
                <li style="margin-bottom: 5px;">Travel, lodging, and any other expenses must be covered by the individual and will not be reimbursed by the Organization of Latino Actuaries.</li>
                <li style="margin-bottom: 5px;">Presenters must participate in pre-event coordination engagements and adhere to all deadlines for submitting materials as informed.</li>
            </ul>

            <div class="text-center" style="margin: 25px 0;">
                <h4 style="color: #f57223; margin-bottom: 15px;">✨ Submit your proposal today!</h4>
                <a href="https://forms.cloud.microsoft/pages/responsepage.aspx?id=R0eL9miPPUmrXt2N2_FEUBiHHWgz3J9Go-sJwl9M32dURjBLRktJSVpCUVBQU1EyNExVNE9CREZIRyQlQCN0PWcu&amp;route=shorturl" class="btn-ola">Submit Proposal</a>
            </div>

            <a href="#" class="return-top">Return to Top</a>

            <div id="events" class="ola-header-red">
                <h3>Upcoming Events &amp; Announcements</h3>
            </div>

            <div class="text-center" style="margin-bottom: 25px;">
                <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_dec/avanza_26_save_the_date.jpg" class="img-fluid" style="border-radius: 4px; border: 1px solid #ddd; max-width: 250px; width: 100%; height: auto;" alt="Avanza 2026 Save The Date" />
            </div>

            <h2 style="color: #f57223; font-size: 24px; font-weight: bold; text-transform: uppercase;">✨ SAVE THE DATE! 🗓️</h2>

            <p>The <strong>OLA Avanza Conference</strong> is returning next year following a successful inaugural event in 2025 in San Diego, California – the 2026 OLA Avanza Conference will be held in <strong>Chicago, Illinois</strong>, from <strong>August 12-14, 2026</strong>!</p>

            <p>Stay tuned for updates on registration, pricing, travel sponsorship opportunities for aspiring actuaries, and the call for session proposals!</p>

            <p>Visit the 2026 OLA Avanza Conference Content Hub on the OLA Member Portal for additional details:</p>

            <div class="text-center">
                <a href="https://members.latinoactuaries.org/page/Content-Hub-2026-OLA-Avanza-Conference" class="btn-ola">Visit Content Hub</a>
            </div>

            <p style="margin-top: 15px;">You can also email us at <a href="mailto:avanza@latinoactuaries.org">avanza@latinoactuaries.org</a> if you have any questions.</p>

            <p>We look forward to seeing you in Chicago in August 2026!</p>

            <p style="margin-top: 15px;"><strong>If you need to access the 2025 Avanza sessions and credits to track continuing education credits, you can access that <a href="https://cvent.me/LMEv15">here</a>.</strong></p>

            <a href="#" class="return-top">Return to Top</a>

            <div id="mixers" class="ola-header-red">
                <h3>Mixers</h3>
            </div>

            <h4 style="margin-bottom: 20px; text-align: center;">Recent Mixers</h4>

            <div style="display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 20px;">
                <div style="flex: 1; min-width: 250px; max-width: 400px; text-align: center;">
                    <p style="margin-bottom: 5px;"><strong>Des Moines - January 30</strong></p>
                    <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2026_march/ola_dm_mixer.jpeg" class="img-fluid" style="border: 1px solid #ddd; border-radius: 4px; width: 100%; height: auto;" alt="Des Moines Mixer" />
                </div>
            </div>

            <div class="text-center" style="margin-bottom: 40px;">
                <p><em>More 2026 Mixer announcements to come soon!</em></p>
            </div>

            <a href="#" class="return-top">Return to Top</a>


            <div id="support" class="ola-header-red">
                <h3>Support OLA!</h3>
            </div>

            <h4 style="color: #f57223; text-transform: uppercase;">Interested in bringing your company/organization on as an OLA sponsor?</h4>

            <p>If your company or organization isn’t yet an OLA sponsor, now is a great time to get involved—the <strong>2026 sponsorship season is officially open</strong>.</p>

            <p>To explore sponsorship opportunities or connect your employer with OLA, please contact the OLA Corporate Engagement Team at <a href="mailto:corpengagement@latinoactuaries.org">corpengagement@latinoactuaries.org</a>.</p>

            <p>Below is a summary of our sponsorship offerings for 2026.</p>

            <h4 style="margin-top: 30px;">Corporate Sponsorship Benefits</h4>

            <div class="table-wrapper">
                <table class="sponsorship-table">
                    <thead>
                        <tr>
                            <th class="th-benefit">Benefit</th>
                            <th>Platinum<span class="tier-price">$25,000</span></th>
                            <th>Gold<span class="tier-price">$12,500</span></th>
                            <th>Silver<span class="tier-price">$7,500</span></th>
                            <th>Career Fair<span class="tier-price">$4,500</span></th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td><strong>1. Number of Career Fairs</strong></td>
                            <td class="text-center">Up to 2</td>
                            <td class="text-center">1</td>
                            <td class="text-center">1</td>
                            <td class="text-center">1</td>
                        </tr>
                        <tr>
                            <td><strong>2. Career Fair Format(s)</strong></td>
                            <td class="text-center">In-Person + Option for Virtual</td>
                            <td class="text-center">Choice of In-Person or Virtual</td>
                            <td class="text-center">Choice of In-Person or Virtual</td>
                            <td class="text-center">Virtual Only</td>
                        </tr>
                        <tr>
                            <td><strong>3. Resume Book Access</strong></td>
                            <td class="text-center">Quarterly</td>
                            <td class="text-center">Quarterly</td>
                            <td class="text-center">One-Time</td>
                            <td class="text-center">One-Time</td>
                        </tr>
                        <tr>
                            <td><strong>4. Logo Recognition on OLA's Website</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>5. Job Postings on OLA's Website</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>6. Sponsor Programs/Events Promoted by OLA</strong></td>
                            <td class="text-center">3</td>
                            <td class="text-center">2</td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>7. Invitation to Spring Speed Networking Event</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>8. Invitation to Volunteer with HS Case Comp</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>9. Newsletter Mentions</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>10. Opportunity to Cohost OLA-Branded Mixer</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>11. Opportunity to Host Webinar for Students</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>12. Opportunity to Host OLA Sponsor Day</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>13. Invitation to Semi-Annual Platinum Sponsor Roundtables</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>14. OLA Avanza Conference Event Sponsorship</strong></td>
                            <td class="text-center">Premier Tier Included</td>
                            <td class="text-center">Innovator Tier Included</td>
                            <td class="text-center">Standard Tier Included</td>
                            <td class="text-center">None</td>
                        </tr>
                    </tbody>
                </table>
            </div>

            <h4 style="margin-top: 30px;">Non-Recruiting Partnership Benefits</h4>

            <div class="table-wrapper">
                <table class="sponsorship-table">
                    <thead>
                        <tr>
                            <th class="th-benefit">Benefit</th>
                            <th>Champion<span class="tier-price">$25,000+</span></th>
                            <th>Advocate<span class="tier-price">$12,500</span></th>
                            <th>Connector<span class="tier-price">$7,500</span></th>
                            <th>Ally<span class="tier-price">$4,500</span></th>
                            <th>Affinity<span class="tier-price">Free*</span></th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td><strong>1. Logo Recognition on OLA's Website</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                        </tr>
                        <tr>
                            <td><strong>2. Virtual Booth at OLA Virtual Career Fair</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>3. Opportunity to Provide Mentors for OLA Programs</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>4. Financial Support of OLA Programs</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>5. One-time Social Media Shoutout</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"><span class="check">✓</span></td>
                        </tr>
                        <tr>
                            <td><strong>6. One-time Newsletter Mention</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"><span class="check">✓</span></td>
                        </tr>
                        <tr>
                            <td><strong>7. OLA Avanza Conference Engagement</strong></td>
                            <td class="text-center">Premier Tier Included</td>
                            <td class="text-center">Innovator Tier Included</td>
                            <td class="text-center">Standard Tier Included</td>
                            <td class="text-center">None</td>
                            <td class="text-center">1 Full-Experience Pass</td>
                        </tr>
                        <tr>
                            <td><strong>8. In-Person Career Fair Engagement</strong></td>
                            <td class="text-center">One Booth</td>
                            <td class="text-center">One Booth</td>
                            <td class="text-center">One Booth</td>
                            <td class="text-center">None</td>
                            <td class="text-center">Shared Table Opportunity</td>
                        </tr>
                        <tr>
                            <td><strong>9. Opportunity to Cohost Mixers &amp; Networking Events</strong></td>
                            <td class="text-center">Sponsor-funded</td>
                            <td class="text-center">Sponsor-funded</td>
                            <td class="text-center">Sponsor-funded</td>
                            <td class="text-center"></td>
                            <td class="text-center">Cost-shared (proportional)</td>
                        </tr>
                        <tr>
                            <td><strong>10. Number of Sponsor Programs/Events Promoted by OLA</strong></td>
                            <td class="text-center">3</td>
                            <td class="text-center">2</td>
                            <td class="text-center">1</td>
                            <td class="text-center"></td>
                            <td class="text-center">Annual Conference &amp; Mixers only</td>
                        </tr>
                        <tr>
                            <td><strong>11. Priority Consideration for Panel/Speaker Opportunities</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>12. Invitation to Volunteer with High School Case Competition</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>13. Opportunity to Cohost Events/Workshops for OLA Members</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>14. Strategic Planning Input</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>15. OLA Attendance at Annual Meetings</strong><br /><span style="font-style: italic; font-size: 10px;">(requires complimentary passes or additional sponsorship)</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                    </tbody>
                </table>
            </div>
            <p style="font-size: 11px; color: #666; font-style: italic; margin-top: -15px;">* Must meet specific requirements to be eligible for Affinity tier.</p>

            <hr class="divider" />

            <h4>Individual Donations</h4>
            <p>OLA supports our Latine actuarial prospects via scholarship programs, exam materials, and our travel program.</p>
            <p>Individual donations of any amount can go a long way. <a href="https://www.latinoactuaries.org/donate/">Click here if interested in donating!</a></p>
            <a href="#" class="return-top">Return to Top</a>


            <div id="career" class="ola-header-red">
                <h3>Career Corner</h3>
            </div>

            <h4 style="color: #f57223; margin-top: 0;">📣 Featured Job Opportunity: WTW</h4>
            <p><strong>Early Careers: Property &amp; Casualty Analyst – R&amp;A Corporate Practice</strong></p>
            <p>Join our dynamic Risk &amp; Analytics Corporate practice where you will work on project teams focused on performing reserve studies, pricing analysis, and capital management activities, all while supporting key client initiatives. In this role,
                you’ll dive into hands‑on actuarial modeling, data analysis, problem‑solving, client communication, and real‑world presentations—all while advancing your career through ongoing actuarial exams.</p>
            <p>We’re seeking candidates who thrive on solving complex problems, excel at managing multiple priorities, communicate with clarity, and bring a strong attention to detail. This role does require a minimum of one passed actuarial exam.</p>
            <p><strong>Our hiring locations are Atlanta, Arlington, Boston, and Detroit.</strong></p>
            <p>If you’re ready to take the first step in your actuarial career—this is a fantastic opportunity to grow within a collaborative and high‑impact team.</p>

            <div class="text-center" style="margin-bottom: 20px;">
                <a href="https://careers.wtwco.com/jobs/early-careers-property-casualty-actuarial-analyst-risk-and-analytics-corporate-practice-2026-arlington-virginia-united-states-atlanta-georgia-boston-massa-c0f9368d-35f3-4016-8060-8223f4a0f4c7" class="btn-ola">Apply to WTW</a>
            </div>

            <div class="text-center">
                <p>Looking for a new opportunity? Check out the job postings in the link below.</p>
                <a href="https://members.latinoactuaries.org/networking/opening_search.asp" class="btn-ola">Search Career Opportunities</a>
            </div>

            <hr class="divider" />

            <h4>Do You Have Job Postings to Share?</h4>
            <p>Our Platinum and Gold Corporate Sponsors can now share job postings on our new Career Center portion of our OLA Membership Portal!</p>
            <p>Silver sponsors can only post entry-level and intern job postings. Please reach out to <a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a> if you have any questions.</p>
            <a href="#" class="return-top">Return to Top</a>

            <div id="volunteer" class="ola-header-red">
                <h3>Volunteer Opportunities</h3>
            </div>

            <h4 style="color: #f57223; margin-top: 0;">🌟 Now Open: OLA Academy Actuarial Mentorship Program Interest Form!</h4>
            <p>We’re excited to announce that the interest form for the <strong>OLA Academy Actuarial Mentorship Program</strong> running from April 2026 - October 2026 is now open, and we're inviting both mentors and mentees to be part of this impactful
                initiative.
            </p>

            <p>Whether you are:</p>
            <ul style="list-style-type: none; padding-left: 0;">
                <li>✅ An experienced actuary or industry professional ready to give back and guide the next generation, or</li>
                <li>✅ A student or aspiring actuary seeking support, exam guidance, and career direction,</li>
            </ul>
            <p>this program is designed for you.</p>

            <p>💡 <strong>Why Join?</strong></p>
            <ul style="list-style-type: none; padding-left: 0;">
                <li>🔷 Gain insights into actuarial exams and career pathways</li>
                <li>🔷 Receive personalized guidance and professional support</li>
                <li>🔷 Build strong industry connections</li>
                <li>🔷 Grow within a collaborative actuarial community</li>
            </ul>

            <p>At OLA Academy, we believe mentorship plays a vital role in shaping successful actuarial careers and we’re committed to creating that bridge.</p>

            <p>📌 <strong>Interested in joining?</strong><br /> Complete the interest form today and take the first step toward your actuarial journey.</p>

            <ul>
                <li style="margin-bottom: 10px;"><strong>Mentor Interest Form (Deadline March 13):</strong> <a href="https://members.latinoactuaries.org/general/custom.asp?page=OLAA-Mentor-Interest-Form">Apply Here</a></li>
                <li><strong>Mentee Interest Form (Deadline March 31):</strong> <a href="https://members.latinoactuaries.org/page/OLAA-Mentee-Interest-Form">Apply Here</a></li>
            </ul>

            <p>Let’s build the future of the actuarial profession together. 🚀</p>

            <hr class="divider" style="margin: 20px 0;" />

            <h4 style="color: #f57223; margin-top: 0;">✍️ Call for Volunteers: 2026-2027 Scholarship Reviewers</h4>
            <p>Attention OLA Community! We’re looking for volunteers to serve as Scholarship Reviewers for the 2026–2027 OLA Scholarship Cycle.</p>

            <p>As the 2026–2027 Scholarship Application deadline approaches, we are preparing to begin the application review process and would love your support.</p>

            <p><strong>Timeline &amp; Expectations:</strong></p>
            <ul>
                <li style="margin-bottom: 5px;"><strong>Kick-off session:</strong> Thursday, April 2nd at 4 PM ET. We'll walk through the review process, expectations, and timeline. (Highly encouraged, but will be recorded for those unable to join. Meeting invites will be forwarded
                    to the selected review committee).</li>
                <li style="margin-bottom: 5px;"><strong>Workload:</strong> Based on the number of submissions, OLA will assign each reviewer up to 20 applications following the kick-off sessions.</li>
                <li style="margin-bottom: 5px;"><strong>Individual reviews due:</strong> April 24th.</li>
                <li style="margin-bottom: 5px;"><strong>Team reviews completed:</strong> April 30th.</li>
            </ul>

            <p>Help us select our 2026–2027 scholarship recipients and make a meaningful impact in our community! If you’re interested in volunteering for this year’s scholarship review cycle, please complete the interest form.</p>

            <p>📅 <strong>Volunteer sign-up deadline:</strong> March 31, 2026<br /> ✉️ <strong>Questions?</strong> Email us at <a href="mailto:scholarships@latinoactuaries.org">scholarships@latinoactuaries.org</a></p>

            <div class="text-center" style="margin: 20px 0;">
                <a href="https://members.latinoactuaries.org/page/OLA-Scholarship-Reviewer-Interest-Form-2026-Cycle" class="btn-ola">Complete Interest Form</a>
            </div>

            <hr class="divider" style="margin: 20px 0;" />

            <h4 style="color: #f57223; margin-top: 0;">📣 Upcoming Outreach Volunteer Opportunities</h4>
            <p>We are looking for enthusiastic volunteers to help us inspire the next generation of Latine actuaries! Sharing your experiences and representing OLA at these upcoming events makes a huge impact on students exploring the profession.</p>

            <ul>
                <li style="margin-bottom: 5px;"><strong>Career Fair at UNC Charlotte:</strong> March 17th in Charlotte, NC – seeking 1-2 volunteers to promote the actuarial profession and OLA resources.</li>
                <li style="margin-bottom: 5px;"><strong>College Actuarial Club at Florida International University:</strong> March 18th in Miami, FL – seeking 1-2 professionals (preferably one male, one female) to speak on the actuarial profession and their "Day in the Life Of".</li>
                <li style="margin-bottom: 5px;"><strong>College &amp; Career Fair at Alliance Patti &amp; Peter Neuwirth Leadership Academy:</strong> March 27th in Los Angeles, CA – seeking 2-3 volunteers to introduce the actuarial profession and OLA’s resources.</li>
            </ul>

            <p>If you are interested in being a speaker or volunteering for any of these events, please reach out to <a href="mailto:futureactuaries@latinoactuaries.org">futureactuaries@latinoactuaries.org</a>.</p>

            <hr class="divider" style="margin: 20px 0;" />

            <h4 style="color: #f57223;">Volunteer with OLA!</h4>
            <p>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests!</p>
            <p>Check out our <a href="https://www.latinoactuaries.org/volunteer/">Volunteer Page</a> for more details.</p>
            <a href="#" class="return-top">Return to Top</a>


            <div id="students" class="ola-header-red">
                <h3>Student Section</h3>
            </div>

            <h2 style="color: #f57223; font-size: 24px; font-weight: bold; text-transform: uppercase; margin-top: 15px;">📢 Attention Aspiring Actuaries: 2026-2027 OLA Scholarship Application is LIVE!</h2>
            <p>Are you a student looking for a scholarship? Do you know anyone who is? OLA is awarding scholarships to high school seniors, undergrads, and graduate students who are ready to make their mark in the actuarial field.</p>

            <p><strong>Why apply?</strong></p>
            <ul style="list-style-type: none; padding-left: 0;">
                <li style="margin-bottom: 5px;">💰 <strong>Financial Support:</strong> Our premier Cresta Scholarship is $7,500!</li>
                <li>✈️ <strong>Travel Opportunities:</strong> Applicants who apply before <strong>March 31st</strong> will be automatically considered for the OLA Avanza Conference travel sponsorship.</li>
            </ul>

            <p>📅 <strong>Deadline:</strong> March 31, 2026<br /> ✉️ <strong>Questions?</strong> E-mail us at <a href="mailto:scholarships@latinoactuaries.org">scholarships@latinoactuaries.org</a></p>

            <div class="text-center" style="margin-bottom: 20px;">
                <a href="https://lnkd.in/gPrmTbSc" class="btn-ola">Apply for Scholarships</a>
            </div>

            <hr class="divider" style="margin: 20px 0;" />

            <h2 style="color: #f57223; text-transform: uppercase;">Exam Support!</h2>
            <p>OLA provides the following exam support programs for those in the exam taking process:</p>
            <ul style="list-style-type: none; padding-left: 0;">
                <li style="margin-bottom: 15px;">
                    <strong>1. First time exam support stipend</strong>
                    <ul style="margin-top: 5px;">
                        <li>Covers first exam only (P or FM)</li>
                        <li>$325 assists in covering the cost of study materials and registration</li>
                    </ul>
                </li>
                <li style="margin-bottom: 15px;">
                    <strong>2. Regular exam support stipend</strong>
                    <ul style="margin-top: 5px;">
                        <li>Covers 2 exams (P, FM, FAM, SRM, ASTAM, ALTAM, MAS-1, MAS-2, Exam 5)</li>
                        <li>The program helps students pass a total of 3 exams</li>
                        <li>RLP students can earn points to help pay towards a 4th exam</li>
                    </ul>
                </li>
                <li style="margin-bottom: 15px;">
                    <strong>3. Failed exam reimbursement</strong>
                    <ul style="margin-top: 5px;">
                        <li>Covers the cost of exam registration (P or FM)</li>
                    </ul>
                </li>
                <li style="margin-bottom: 15px;">
                    <strong>4. Study Materials</strong>
                    <ul style="margin-top: 5px;">
                        <li>Partnerships with Coaching Actuaries, ACTEX, and TIA offer discounted materials for stipend recipients.</li>
                    </ul>
                </li>
            </ul>
            <p>If you have any questions, please reach out to <a href="mailto:examsupport@latinoactuaries.org">examsupport@latinoactuaries.org</a>.</p>
            <a href="#" class="return-top">Return to Top</a>

            <div id="affinity-events" class="ola-header-red">
                <h3>Affinity opportunITIES</h3>
            </div>

            <h4 style="color: #9f151b;">American Academy of Actuaries Award for Research</h4>
            <p><strong>Now Accepting Submissions for 2026: Annual Award for Outstanding Public Policy Research from an Actuarial Perspective by an Early Career Scholar</strong></p>
            <p>The American Academy of Actuaries Award for Research recognizes an early-career scholar whose work contributes significantly to an actuarial perspective on a public policy issue of interest to U.S. actuaries and public policy makers. Each
                year, the Award is devoted to research on a particular theme with broad applicability across different policymaking and regulatory environments and across actuarial practice areas.</p>
            <p>For 2026, the Award theme is: <em>Access, Affordability, and The Protection Gap: Determinants, consequences, and policy recommendations to manage financial risk</em></p>
            <p>The American Academy of Actuaries’ Research Committee invites submissions for consideration by <strong>March 31, 2026</strong>. The winner will be announced in early summer of 2026. The Award will include a monetary prize of $7,500 and presentations
                of the work, both virtually in an Academy webinar and in person at the Actuarial Research Conference (ARC) in late July at Ohio State University in Columbus, OH. The Academy will cover reasonable travel expenses.</p>
            <div class="text-center" style="margin: 15px 0;">
                <a href="https://actuary.org/award-for-research/" class="btn-ola">Learn More &amp; Submit</a>
            </div>

            <hr class="divider" style="margin: 20px 0;" />

            <h4 style="color: #9f151b;">CAS P&amp;C Actuarial Essentials Program</h4>
            <p>The Casualty Actuarial Society (CAS) is pleased to announce the launch of the <strong>CAS P&amp;C Actuarial Essentials Program</strong>, a new on-demand learning experience designed to provide a clear, structured introduction to the property and
                casualty (P&amp;C) insurance industry and the work of P&amp;C actuaries. The program is designed for university students, early-career professionals, and career-changers who are exploring actuarial science and seeking to better understand entry-level
                P&amp;C actuarial roles.
            </p>
            <p><strong>Limited-time offer!</strong> Full-time students with CAS Student Central membership can register for $49.50 (regular student price $99). Individual and CAS member registration is $199. Registration requires signing in to the CAS Portal.</p>
            <p>Additional information about the CAS P&amp;C Actuarial Essentials Program, including registration details, is available at <a href="https://www.casact.org/ActuarialEssentials">Casact.org/ActuarialEssentials</a>.</p>

            <hr class="divider" style="margin: 20px 0;" />

            <h4 style="color: #9f151b;">SOA Affiliate Program</h4>
            <p><strong>For Candidates, Career Changers, and Math Influencers</strong></p>
            <p>The SOA Affiliate Membership is free and open to anyone with an interest in the actuarial profession and not already a member of the SOA. The benefits are built to help anyone get ready for their next step. Whatever questions you have, this
                membership can get you the answer.</p>
            <p><a href="https://www.soa.org/programs/affiliate/membership/" style="font-weight: bold;">Sign up for the SOA Affiliate Program here.</a></p>

            <a href="#" class="return-top">Return to Top</a>

            <div id="spotlights" class="ola-header-orange">
                <h3>Community Spotlights</h3>
            </div>

            <div class="spotlight-container">
                <div class="spotlight-img">
                    <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2026_march/christian.jpg" alt="Christian Valerio" /></div>
                <div class="spotlight-text">
                    <p><span style="font-size: 20px; letter-spacing: 1px; text-transform: uppercase; background-color: #ffffff; font-family: Montserrat, sans-serif; color: #f57223;">C</span><span style="font-size: 20px; letter-spacing: 1px; text-transform: uppercase; background-color: #ffffff; font-family: Montserrat, sans-serif; color: #f57223;">hristian Valerio, ACAS</span></p>
                    <p><strong>Hometown:</strong> San Antonio, TX</p>
                    <p><strong>University:</strong> University of Notre Dame</p>
                    <p><strong>Current Position:</strong> Actuarial Consultant at Oliver Wyman, working for their P&amp;C Self-Insurance Team</p>
                    <p><strong>OLA Involvement:</strong>&nbsp;Pipeline Outreach Senior Program Manager for 2026.</p>
                    <p><strong>Tell us a little about yourself:</strong> Hi there, I’m Christian! I was born and raised in San Antonio although my family is originally from northern Mexico. I moved to the Midwest for college, going to Notre Dame for 4 years
                        and then living in my favorite city of Chicago for 3 years to start my actuarial career. I’ve always been a huge sports fan, loving everything basketball related since I was a kid and more recently getting to volleyball and college
                        football. This past summer I moved back to San Antonio so be closer to family and get to do more volunteer work with my hometown nonprofit (Students of Service) that I’ve been a part of for over 10 years now.</p>
                    <p><strong>How has OLA impacted your career:</strong> I first joined OLA in 2020, where I was excited to join a community of professionals from similar backgrounds to mine that were aspiring to enter the actuarial workforce. Getting the
                        opportunity to network with like-minded individuals has helped me feel like I belong in this profession, can make a difference through my work, and become a role model for other aspiring Latinos who are starting to build their
                        own careers.</p>
                    <p><strong>What is your favorite thing of being an actuary?</strong> My favorite thing about being an actuary has been the people I’ve gotten to work with. As this job requires a good balance of math, business, and interpersonal skills,
                        the individuals that are called to be an actuary are some of the most talented and intellectually diverse people I’ve met. Because of how tight-knit the actuarial community is, it is a great space to network and learn extensively
                        from your peers, especially as we bond over our exam journeys.</p>
                    <p><em style="box-sizing: border-box; color: #333333; background-color: #ffffff;"><a href="https://www.linkedin.com/in/christian-a-valerio/" style="box-sizing: border-box; background-color: transparent; color: #9f151b; text-decoration-line: none; outline: 0px;">Click here to connect with Christian on LinkedIn!</a></em>
                        <a href="https://www.linkedin.com/in/gerardo-duarte/" style="box-sizing: border-box; background-color: #ffffff; text-decoration-line: none;">     </a>
                    </p>
                </div>
            </div>

            <div style="background-color: #f9f9f9; padding: 15px; text-align: center; border-radius: 4px;">
                <em>Do you have a nomination for a spotlight? <a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">Fill out this form</a>.</em>
            </div>
            <a href="#" class="return-top">Return to Top</a>

            <div id="impact" class="ola-header-red">
                <h3>2025 OLA Impact Report</h3>
            </div>

            <p><span style="background-color: #ffffff; font-family: Arial, sans-serif; color: #333333;">Thanks to the unwavering support of our </span><strong style="box-sizing: border-box; color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;">47 corporate sponsors and 4 non-profit partners</strong>
                <span style="background-color: #ffffff; font-family: Arial, sans-serif; color: #333333;">, our community has grown to </span><strong style="box-sizing: border-box; color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;">1,415 members</strong>
                <span style="background-color: #ffffff; font-family: Arial, sans-serif; color: #333333;">, including </span>
                <strong style="box-sizing: border-box; color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;">150 credentialed Latine actuaries. </strong>Together, we delivered tangible results in 2025:</p>
            <ul>
                <li><strong>Financial Support:</strong> We awarded 31 academic scholarships totaling over $127,000 and provided 89 travel scholarships for the OLA Avanza Conference.</li>
                <li><strong>Career Development:</strong> Through the OLA Academy, we helped members secure 50 summer internships and 30 full-time positions.</li>
                <li><strong>Community Connection:</strong> We hosted 250 attendees at our conference in San Diego and connected hundreds more through our speed networking events, career fairs, and regional mixers.</li>
            </ul>

            <p>I invite you to review our collective success in detail in the <strong>2025 OLA Impact Report</strong>:</p>

            <div class="text-center">
                <a href="https://www.latinoactuaries.org/wp-content/uploads/2025/12/2025-OLA-Impact-Report.pdf" class="btn-ola">View 2025 Impact Report</a>
            </div>

            <a href="#" class="return-top">Return to Top</a>

            <div id="connect" class="ola-header-red">
                <h3>Connect With Us</h3>
            </div>

            <div class="text-center social-icons">
                <a href="https://www.facebook.com/latinoactuaries"><i class="fab fa-facebook"></i></a>
                <a href="https://www.instagram.com/latinoactuaries/"><i class="fab fa-instagram"></i></a>
                <a href="https://www.linkedin.com/company/latinoactuaries/"><i class="fab fa-linkedin"></i></a>
                <a href="https://www.tiktok.com/@latinoactuaries"><i class="fab fa-tiktok"></i></a>
            </div>

            <div class="text-center" style="margin-top: 30px;">
                <a href="https://www.latinoactuaries.org" class="btn-ola">Visit Our Website</a>
            </div>

        </div>
    </div>
</body></html>]]></description>
<pubDate>Fri, 27 Feb 2026 20:55:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: December 2025</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=716849</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=716849</guid>
<description><![CDATA[<!DOCTYPE html>
<html lang="en"><head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>OLA Industry Newsletter - December 2025</title>
    <style>
        /* --- CSS STYLES --- */
        
        /* 1. Global Reset & Fonts */
        .ola-newsletter {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            
            /* --- LAYOUT FIX --- */
            width: 100%;
            max-width: 650px; /* Restricted width to avoid right sidebar overlap */
            margin: 0;        /* Align left to stay in the main content area */
            /* ------------------ */
            
            background-color: #ffffff;
            box-shadow: none; 
            padding-bottom: 40px;
            box-sizing: border-box;
            overflow-wrap: break-word;
        }
        
        /* Ensure all elements respect padding/borders */
        .ola-newsletter * {
            box-sizing: border-box;
        }

        .ola-newsletter a {
            color: #f57223;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .ola-newsletter a:hover {
            color: #9f151b;
            text-decoration: underline;
        }
        
        /* 2. Headers */
        .ola-header-red {
            background-color: #9f151b;
            color: white;
            padding: 20px;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 20px;
        }
        .ola-header-orange {
            background-color: #f57223;
            color: white;
            padding: 15px;
            text-align: center;
            margin-top: 30px;
            margin-bottom: 20px;
        }
        
        .ola-newsletter h1 { margin: 0; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 28px; line-height: 1.2; }
        .ola-newsletter h2 { margin: 0; font-weight: normal; font-size: 18px; }
        .ola-newsletter h3 { margin: 0; text-transform: uppercase; letter-spacing: 1px; color: white; }
        .ola-newsletter h4 { color: #f57223; text-transform: uppercase; margin-bottom: 10px; margin-top: 30px; line-height: 1.3; }
        
        /* 3. Sections & Content */
        .ola-content {
            padding: 0 40px;
        }
        
        .intro-text {
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        /* 4. Table of Contents */
        .toc-list {
            background-color: #f9f9f9;
            padding: 20px 40px;
            border-left: 5px solid #f57223;
        }
        .toc-list li {
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        /* 5. Spotlights (Flexbox Layout) */
        .spotlight-container {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .spotlight-img {
            flex: 0 0 150px;
        }
        .spotlight-img img {
            width: 100%;
            height: auto;
            border: 4px solid #9f151b;
            border-radius: 4px;
        }
        .spotlight-text {
            flex: 1;
        }
        
        /* 6. Buttons */
        .btn-ola {
            display: inline-block;
            background-color: #f57223;
            color: white !important;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: bold;
            text-decoration: none !important;
            margin: 10px 0;
        }
        .btn-ola:hover {
            background-color: #d15b15;
        }
        
        /* 7. Utilities */
        .text-center { text-align: center; }
        .img-fluid { max-width: 100%; height: auto; }
        .divider { border: 0; border-top: 1px solid #ddd; margin: 30px 0; }
        .return-top { font-size: 12px; color: #888; display: block; margin-top: 10px; text-align: right; }
        
        /* 8. Social Icons */
        .social-icons {
            font-size: 24px;
            letter-spacing: 15px;
        }
        
        /* 9. TABLE STYLES - COMPACT VERSION */
        .table-wrapper {
            overflow-x: auto;
            margin-bottom: 20px;
            border: 1px solid #ddd;
        }
        .sponsorship-table {
            width: 100%;
            border-collapse: collapse;
            /* Reduced min-width to help avoid scrolling */
            min-width: 100%; 
            /* Smaller font size to fit more content */
            font-size: 10px; 
            font-family: Arial, sans-serif;
        }
        .sponsorship-table thead tr {
            background-color: #9f151b;
            color: white;
        }
        .sponsorship-table th {
            /* Reduced padding for tighter columns */
            padding: 5px 4px;
            text-align: center;
            border: 1px solid #b02e34;
            vertical-align: middle;
        }
        .sponsorship-table th.th-benefit {
            text-align: left;
            width: 35%; /* Gave slightly more room to the benefit name */
        }
        .sponsorship-table td {
            /* Reduced padding for tighter columns */
            padding: 5px 4px;
            border-bottom: 1px solid #eee;
            border-right: 1px solid #eee;
            vertical-align: middle;
        }
        .sponsorship-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .sponsorship-table .check {
            font-size: 12px;
            font-weight: bold;
            color: #333;
        }
        .tier-price {
            font-size: 9px;
            font-weight: normal;
            display: block;
            margin-top: 2px;
        }

        /* Mobile Responsive */
        @media (max-width: 600px) {
            .ola-content { padding: 0 20px; }
            .spotlight-container { flex-direction: column; }
            .spotlight-img { margin: 0 auto 20px auto; }
            /* On very small screens, let it scroll if needed */
            .sponsorship-table { min-width: 500px; }
        }
    </style>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
</head>

<body>

    <div class="ola-newsletter">

        <div style="background-color: #9f151b; padding: 40px 20px; text-align: center;">
            <h1 style="color: white;">OLA Industry Newsletter</h1>
            <h2 style="color: white; margin-top: 10px;"><em>December  2025</em></h2>
        </div>

        <div class="ola-content">
            <div class="intro-text">
                <p><strong>Dear OLA Community,</strong></p>
                <p>This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and
                    volunteer opportunities.</p>
                <p>If you are not already on our distribution list, please register for an OLA Member Portal account at <a href="mailto:members@latinoactuaries.org">members@latinoactuaries.org</a> to receive this newsletter and other important communications!</p>
                <p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a> if you have any questions or feedback.</p>
                <p>Thank you for your continued support of OLA!</p>
                <p><strong>Alan Ramirez</strong><br /><em>Director of Membership</em></p>
            </div>

            <hr class="divider" />

            <div class="ola-header-orange">
                <h3>In this Issue</h3>
            </div>

            <div class="toc-list">
                <ol>
                    <li><a href="#farewell">From the President's Desk</a></li>
                    <li><a href="#impact">2025 OLA Impact Report</a></li>
                    <li><a href="#events">Upcoming Events &amp; Announcements</a></li>
                    <li><a href="#mixers">Mixers</a></li>
                    <li><a href="#support">Support OLA!</a></li>
                    <li><a href="#career">Career Corner</a></li>
                    <li><a href="#volunteer">Volunteer Opportunities</a></li>
                    <li><a href="#students">Student Section</a></li>
                    <li><a href="#connect">Connect With Us</a></li>
                </ol>
            </div>

            <div id="farewell" class="ola-header-red">
                <h3>From the President's Desk</h3>
            </div>

            <h4 style="color: #f57223; margin-top: 25px;">Celebrating Shared Achievements and Unstoppable Momentum in 2025</h4>

            <p><strong>Dear OLA Community,</strong></p>

            <p>As my term as President of the Organization of Latino Actuaries (OLA) concludes at the end of 2025, I am filled with profound gratitude and a powerful sense of accomplishment for the organization. Serving this community has been the honor
                of my career so far, and one of the true highlights of these past few years.</p>

            <p style="margin-top: 25px;"><strong>A Personal Milestone, A Shared Journey</strong></p>
            <p>When I assumed this role, I reflected on the personal milestone of becoming OLA's youngest and first LGBTQ+ President. While I could not have imagined the extent of our growth just a few short years after joining the Board in 2022, I am not
                surprised that such a feat could be possible in a community that empowers its members of all backgrounds. On a personal note, my time in OLA has profoundly shaped my personal growth and development, bringing immense joy, mentors, and friends
                that now feel like family.</p>

            <p>This year, we successfully executed on various areas laid out in our strategic plan, with some notable themes present throughout the various initiatives we took on as a team:</p>

            <ul>
                <li style="margin-bottom: 10px;"><strong>Thriving Community:</strong> We successfully hosted our inaugural OLA Avanza Conference this August in San Diego, California, bringing together 250 attendees for networking, professional development, and community building opportunities.
                    In an effort to expand our pipeline outreach, we also launched our Desafiando el Riesgo Case Competition (DRCC) to engage high school students early on in their potential actuarial careers.</li>

                <li style="margin-bottom: 10px;"><strong>Teamwork &amp; Collaboration:</strong> We stressed that it truly does take a village to make OLA what it is, believing in the power of teamwork. Our leadership team has grown from just nine Board members and four Program Managers (PMs)
                    in 2022 to a robust team of ten Board members, 25 PMs, and numerous committees. We know that the bonds between the people in this community are what make this organization the unstoppable force that it is.</li>

                <li style="margin-bottom: 10px;"><strong>Sustainable Growth:</strong> We committed to increasing internal efficiencies to ensure our operations and relationships are sustainable and scalable for future growth. Amid this growth, our three-year presidential cycle (one year
                    as President-Elect, one year as President, and one year as Immediate Past President) has ensured that our strategy is shaped by the collective wisdom of the Board, supporting steady, long-term progress.</li>
            </ul>

            <p style="margin-top: 25px;"><strong>Resilience and Unstoppable Momentum</strong></p>
            <p>Our mission is clear: to empower future and current Latine actuaries to lead and shape the profession, fostering an influential and inclusive community that increases representation at all levels. This year, we unquestionably affirmed that
                the Latine actuarial community is growing, thriving, and here to stay. The past year has presented unprecedented challenges to our community and our work, requiring us to reassess how we operate.</p>

            <p>I would like to extend special gratitude to my team: your dedication, passion, and resourcefulness are admirable to say the least, especially when required to redirect our focus and efforts to ensure we could still make the greatest impact
                possible. Your support both personally and professionally has meant the world to me. Reiterating the theme of my remarks at the OLA Avanza Conference Recognition Dinner in August, you are the reason I do not worry about OLA’s future; we
                will continue to overcome the challenges that come our way.</p>

            <p style="margin-top: 25px;"><strong>The Direct Impact of Every Contribution</strong></p>
            <p>Our ability to achieve this impact is a testament to the generosity of our entire community and its allies. While the foundational generosity of our corporate partners enables large-scale, high-impact programs, I want to specifically recognize
                the power of individual contribution. Every contribution, large or small, has a direct, measurable impact on the careers and development of our members. Whether it is volunteering an hour toward a mock interview or donating $100 toward
                an exam support stipend, every effort makes a difference and builds confidence. Please reach out to our team (<a href="mailto:info@latinoactuaries.org">info@latinoactuaries.org</a>) if you are interested in contributing in any way!</p>

            <p style="margin-top: 25px;"><strong>Moving Forward Together</strong></p>
            <p>While I will soon pass the torch to my successor, Romina Egan, OLA’s 2026 President, rest assured that I will continue to work with Romina and the team during my remaining term on the Board as Immediate Past President and incoming Secretary.
                We are just at the beginning of an exciting and fruitful journey, and I am elated to see what 2026 will bring!</p>

            <p>With immense gratitude,</p>

            <div style="margin-top: 20px; margin-bottom: 10px;">
                <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_dec/anthony_2025_avanza.jpeg" alt="Anthony Lucero" style="max-width: 150px; border-radius: 4px;" />
            </div>

            <p><strong>Anthony Lucero, ASA</strong><br /> 2025 OLA President</p>

            <div id="impact" class="ola-header-red">
                <h3>2025 OLA Impact Report</h3>
            </div>

            <p><span style="background-color: #ffffff; font-family: Arial, sans-serif; color: #333333;">Thanks to the unwavering support of our </span><strong style="box-sizing: border-box; color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;">47 corporate sponsors and 4 non-profit partners</strong>
                <span style="background-color: #ffffff; font-family: Arial, sans-serif; color: #333333;">, our community has grown to </span><strong style="box-sizing: border-box; color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;">1,415 members</strong><span style="background-color: #ffffff; font-family: Arial, sans-serif; color: #333333;">, including </span>
                    <strong style="box-sizing: border-box; color: #333333; font-family: Arial, sans-serif; background-color: #ffffff;">150 credentialed Latine actuaries. </strong>Together, we delivered tangible results in 2025:</p>
            <ul>
                <li><strong>Financial Support:</strong> We awarded 31 academic scholarships totaling over $127,000 and provided 89 travel scholarships for the OLA Avanza Conference.</li>
                <li><strong>Career Development:</strong> Through the OLA Academy, we helped members secure 50 summer internships and 30 full-time positions.</li>
                <li><strong>Community Connection:</strong> We hosted 250 attendees at our conference in San Diego and connected hundreds more through our speed networking events, career fairs, and regional mixers.</li>
            </ul>

            <p>I invite you to review our collective success in detail in the <strong>2025 OLA Impact Report</strong>:</p>

            <div class="text-center">
                <a href="https://www.latinoactuaries.org/wp-content/uploads/2025/12/2025-OLA-Impact-Report.pdf" class="btn-ola">View 2025 Impact Report</a>
            </div>

            <div id="events" class="ola-header-red">
                <h3>Upcoming Events &amp; Announcements</h3>
            </div>

            <div class="text-center" style="margin-bottom: 25px;">
                <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_dec/avanza_26_save_the_date.jpg" class="img-fluid" style="border-radius: 4px; border: 1px solid #ddd; max-width: 250px; width: 100%; height: auto;" alt="Avanza 2026 Save The Date" />
            </div>

            <h2 style="color: #f57223; font-size: 24px; font-weight: bold; text-transform: uppercase;">✨ SAVE THE DATE! 🗓️</h2>

            <p>The <strong>OLA Avanza Conference</strong> is returning next year following a successful inaugural event in 2025 in San Diego, California – the 2026 OLA Avanza Conference will be held in <strong>Chicago, Illinois</strong>, from <strong>August 12-14, 2026</strong>!</p>

            <p>Stay tuned for updates on registration, pricing, travel sponsorship opportunities for aspiring actuaries, and the call for session proposals!</p>

            <p>Visit the 2026 OLA Avanza Conference Content Hub on the OLA Member Portal for additional details:</p>

            <div class="text-center">
                <a href="https://members.latinoactuaries.org/page/Content-Hub-2026-OLA-Avanza-Conference" class="btn-ola">Visit Content Hub</a>
            </div>

            <p style="margin-top: 15px;">You can also email us at <a href="mailto:avanza@latinoactuaries.org">avanza@latinoactuaries.org</a> if you have any questions.</p>

            <p>We look forward to seeing you in Chicago in August 2026!</p>

            <p style="margin-top: 15px;"><strong>If you need to access the 2025 Avanza sessions and credits to track continuing education credits, you can access that <a href="https://cvent.me/LMEv15">here</a>.</strong></p>

            <hr class="divider" />

            <h4 style="color: #f57223; font-size: 20px; font-weight: bold; text-transform: uppercase; word-wrap: break-word; line-height: 1.3;">Desafiando el Riesgo Case Competition</h4>

            <p><strong>Do you know high school students passionate about Math?</strong> Invite them to participate in Desafiando el Riesgo – A Math Case Competition! <strong>Registration is open through January 25th.</strong></p>

            <p>Step beyond textbook problems and into real-world complexity. This year's challenge tasks teams with advising a snack manufacturer through a critical product recall decision. Balance ethics, reputation, and costs as you navigate contaminated
                production lots, media scrutiny, and the company's goals for growth.</p>

            <p>Real problems don't have single correct answers—they require strategic thinking, risk analysis, and defendable recommendations. Will you play it safe or take calculated risks?</p>

            <div style="background-color: #fff8f2; border-left: 6px solid #f57223; padding: 15px; margin: 20px 0;">
                <p style="margin: 0;"><strong>Register for FREE</strong> to tackle the case for a chance to win up to <strong>$3,000 in scholarship awards</strong> and travel sponsorship to the 2026 OLA Avanza Conference to be held in Chicago, IL!</p>
                <p style="margin-top: 10px; font-size: 14px;"><em>Open to all students in 10th-12th grade attending high school in the United States or its territories.</em></p>
                <div class="text-center" style="margin-top: 15px;">
                    <a href="https://dr.competitionsciences.org/" class="btn-ola">Register Here</a>
                </div>
            </div>

            <a href="#" class="return-top">Return to Top</a>

            <div id="mixers" class="ola-header-red">
                <h3>Mixers</h3>
            </div>

            <h4 style="color: #f57223; font-weight: bold; text-transform: uppercase; margin-bottom: 20px; text-align: center;">Upcoming Mixers</h4>

            <div style="margin-bottom: 30px;">
                <p style="font-size: 18px; font-weight: bold; text-align: center; color: #9f151b;">2026 Des Moines Mixer - Meet the OLA Leadership Team</p>

                <p>Join the Organization of Latino Actuaries (OLA) on <strong>Friday, January 30th</strong> at <strong>Big Grove Brewery &amp; Taproom</strong> in Des Moines, IA and meet the 2026 OLA Leadership team. This networking mixer is open to all OLA
                    members, corporate sponsors, allies, and students.</p>

                <p>A variety of complimentary drinks and appetizers will be served. Those under 21 will be admitted, but IDs will be checked for drink restrictions.</p>

                <div class="text-center" style="margin: 20px 0;">
                    <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_dec/mixer_2026_meet_ola_leadersh.png" class="img-fluid" style="border: 1px solid #ddd; border-radius: 4px; max-width: 300px; width: 100%; height: auto;" alt="Des Moines Mixer Flyer" />
                </div>

                <div class="text-center" style="margin-top: 15px;">
                    <a href="https://members.latinoactuaries.org/event/desmoinesmixer" class="btn-ola">Register for Des Moines Mixer</a>
                </div>
            </div>

            <hr class="divider" />

            <h4 style="margin-bottom: 20px; text-align: center;">Hispanic Heritage Month Mixers</h4>

            <div style="display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 40px;">

                <div style="flex: 1; min-width: 220px; max-width: 300px; text-align: center;">
                    <p style="margin-bottom: 5px;"><strong>Chicago - October 8</strong></p>
                    <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_dec/chicago_2026_hhm_mixer.jpg" class="img-fluid" style="border: 1px solid #ddd; border-radius: 4px; width: 100%; height: auto;" alt="Chicago Mixer" />
                </div>

                <div style="flex: 1; min-width: 220px; max-width: 300px; text-align: center;">
                    <p style="margin-bottom: 5px;"><strong>New York City - October 2</strong></p>
                    <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_dec/nyc_2026_hhm_mixer.jpg" class="img-fluid" style="border: 1px solid #ddd; border-radius: 4px; width: 100%; height: auto;" alt="NYC Mixer" />
                </div>

                <div style="flex: 1; min-width: 220px; max-width: 300px; text-align: center;">
                    <p style="margin-bottom: 5px;"><strong>Philadelphia - October 1</strong></p>
                    <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_dec/philly_2026_hhm_mixer.jpg" class="img-fluid" style="border: 1px solid #ddd; border-radius: 4px; width: 100%; height: auto;" alt="Philadelphia Mixer" />
                </div>

                <div style="flex: 1; min-width: 220px; max-width: 300px; text-align: center;">
                    <p style="margin-bottom: 5px;"><strong>Dallas - September 25</strong></p>
                    <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_dec/dallas_2026_hhm_mixer.jpg" class="img-fluid" style="border: 1px solid #ddd; border-radius: 4px; width: 100%; height: auto;" alt="Dallas Mixer" />
                </div>

            </div>

            <hr class="divider" style="width: 50%; margin: 20px auto;" />

            <h4 style="text-align: center; margin-top: 20px;">Past OLA 2025 Mixers</h4>
            <div style="display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;">
                <div style="flex: 1; min-width: 250px; max-width: 300px; text-align: center;">
                    <p style="margin-bottom: 5px;"><strong>Boston - June 17</strong></p>
                    <img src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2025_aug/boston_mixer_v2.png" class="img-fluid" style="border: 1px solid #ddd; border-radius: 4px; width: 100%;" alt="Boston Mixer Flyer" />
                </div>
                <div style="flex: 1; min-width: 250px; max-width: 300px; text-align: center;">
                    <p style="margin-bottom: 5px;"><strong>Phoenix - June 12 w/ CADS</strong></p>
                    <img src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2025_aug/phoenix_mixer.png" class="img-fluid" style="border: 1px solid #ddd; border-radius: 4px; width: 100%;" alt="Phoenix Mixer Flyer" />
                </div>
            </div>

            <hr class="divider" style="width: 50%; margin: 20px auto;" />

            <h4 style="text-align: center; margin-top: 20px;">Affinity Mixers</h4>
            <div style="display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 40px;">
                <div style="flex: 1; min-width: 220px; max-width: 300px; text-align: center;">
                    <p style="margin-bottom: 5px;"><strong>Hartford - December 4</strong></p>
                    <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_dec/hartford_mixer.jpeg" class="img-fluid" style="border: 1px solid #ddd; border-radius: 4px; width: 100%; height: auto;" alt="Hartford Mixer" />
                </div>
            </div>

            <a href="#" class="return-top">Return to Top</a>

            <div id="support" class="ola-header-red">
                <h3>Support OLA!</h3>
            </div>

            <h4 style="color: #f57223; text-transform: uppercase;">Interested in bringing your company/organization on as an OLA sponsor?</h4>

            <p>If your company or organization isn’t yet an OLA sponsor, now is a great time to get involved—the <strong>2026 sponsorship season is officially open</strong>.</p>

            <p>To explore sponsorship opportunities or connect your employer with OLA, please contact the OLA Corporate Engagement Team at <a href="mailto:corpengagement@latinoactuaries.org">corpengagement@latinoactuaries.org</a>.</p>

            <p>Below is a summary of our sponsorship offerings for 2026.</p>

            <h4 style="margin-top: 30px;">Corporate Sponsorship Benefits</h4>

            <div class="table-wrapper">
                <table class="sponsorship-table">
                    <thead>
                        <tr>
                            <th class="th-benefit">Benefit</th>
                            <th>Platinum<span class="tier-price">$25,000</span></th>
                            <th>Gold<span class="tier-price">$12,500</span></th>
                            <th>Silver<span class="tier-price">$7,500</span></th>
                            <th>Career Fair<span class="tier-price">$4,500</span></th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td><strong>1. Number of Career Fairs</strong></td>
                            <td class="text-center">Up to 2</td>
                            <td class="text-center">1</td>
                            <td class="text-center">1</td>
                            <td class="text-center">1</td>
                        </tr>
                        <tr>
                            <td><strong>2. Career Fair Format(s)</strong></td>
                            <td class="text-center">In-Person + Option for Virtual</td>
                            <td class="text-center">Choice of In-Person or Virtual</td>
                            <td class="text-center">Choice of In-Person or Virtual</td>
                            <td class="text-center">Virtual Only</td>
                        </tr>
                        <tr>
                            <td><strong>3. Resume Book Access</strong></td>
                            <td class="text-center">Quarterly</td>
                            <td class="text-center">Quarterly</td>
                            <td class="text-center">One-Time</td>
                            <td class="text-center">One-Time</td>
                        </tr>
                        <tr>
                            <td><strong>4. Logo Recognition on OLA's Website</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>5. Job Postings on OLA's Website</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>6. Sponsor Programs/Events Promoted by OLA</strong></td>
                            <td class="text-center">3</td>
                            <td class="text-center">2</td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>7. Invitation to Spring Speed Networking Event</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>8. Invitation to Volunteer with HS Case Comp</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>9. Newsletter Mentions</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>10. Opportunity to Cohost OLA-Branded Mixer</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>11. Opportunity to Host Webinar for Students</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>12. Opportunity to Host OLA Sponsor Day</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>13. Invitation to Semi-Annual Platinum Sponsor Roundtables</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>14. OLA Avanza Conference Event Sponsorship</strong></td>
                            <td class="text-center">Premier Tier Included</td>
                            <td class="text-center">Innovator Tier Included</td>
                            <td class="text-center">Standard Tier Included</td>
                            <td class="text-center">None</td>
                        </tr>
                    </tbody>
                </table>
            </div>

            <h4 style="margin-top: 30px;">Non-Recruiting Partnership Benefits</h4>

            <div class="table-wrapper">
                <table class="sponsorship-table">
                    <thead>
                        <tr>
                            <th class="th-benefit">Benefit</th>
                            <th>Champion<span class="tier-price">$25,000+</span></th>
                            <th>Advocate<span class="tier-price">$12,500</span></th>
                            <th>Connector<span class="tier-price">$7,500</span></th>
                            <th>Ally<span class="tier-price">$4,500</span></th>
                            <th>Affinity<span class="tier-price">Free*</span></th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td><strong>1. Logo Recognition on OLA's Website</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                        </tr>
                        <tr>
                            <td><strong>2. Virtual Booth at OLA Virtual Career Fair</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>3. Opportunity to Provide Mentors for OLA Programs</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>4. Financial Support of OLA Programs</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>5. One-time Social Media Shoutout</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"><span class="check">✓</span></td>
                        </tr>
                        <tr>
                            <td><strong>6. One-time Newsletter Mention</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"><span class="check">✓</span></td>
                        </tr>
                        <tr>
                            <td><strong>7. OLA Avanza Conference Engagement</strong></td>
                            <td class="text-center">Premier Tier Included</td>
                            <td class="text-center">Innovator Tier Included</td>
                            <td class="text-center">Standard Tier Included</td>
                            <td class="text-center">None</td>
                            <td class="text-center">1 Full-Experience Pass</td>
                        </tr>
                        <tr>
                            <td><strong>8. In-Person Career Fair Engagement</strong></td>
                            <td class="text-center">One Booth</td>
                            <td class="text-center">One Booth</td>
                            <td class="text-center">One Booth</td>
                            <td class="text-center">None</td>
                            <td class="text-center">Shared Table Opportunity</td>
                        </tr>
                        <tr>
                            <td><strong>9. Opportunity to Cohost Mixers &amp; Networking Events</strong></td>
                            <td class="text-center">Sponsor-funded</td>
                            <td class="text-center">Sponsor-funded</td>
                            <td class="text-center">Sponsor-funded</td>
                            <td class="text-center"></td>
                            <td class="text-center">Cost-shared (proportional)</td>
                        </tr>
                        <tr>
                            <td><strong>10. Number of Sponsor Programs/Events Promoted by OLA</strong></td>
                            <td class="text-center">3</td>
                            <td class="text-center">2</td>
                            <td class="text-center">1</td>
                            <td class="text-center"></td>
                            <td class="text-center">Annual Conference &amp; Mixers only</td>
                        </tr>
                        <tr>
                            <td><strong>11. Priority Consideration for Panel/Speaker Opportunities</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>12. Invitation to Volunteer with High School Case Competition</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>13. Opportunity to Cohost Events/Workshops for OLA Members</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>14. Strategic Planning Input</strong></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                        <tr>
                            <td><strong>15. OLA Attendance at Annual Meetings</strong><br /><span style="font-style: italic; font-size: 10px;">(requires complimentary passes or additional sponsorship)</span></td>
                            <td class="text-center"><span class="check">✓</span></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                            <td class="text-center"></td>
                        </tr>
                    </tbody>
                </table>
            </div>
            <p style="font-size: 11px; color: #666; font-style: italic; margin-top: -15px;">* Must meet specific requirements to be eligible for Affinity tier.</p>

            <hr class="divider" />

            <h4>Individual Donations</h4>
            <p>OLA supports our Latine actuarial prospects via scholarship programs, exam materials, and our travel program.</p>
            <p>Individual donations of any amount can go a long way. <a href="https://www.latinoactuaries.org/donate/">Click here if interested in donating!</a></p>
            <a href="#" class="return-top">Return to Top</a>


            <div id="career" class="ola-header-red">
                <h3>Career Corner</h3>
            </div>

            <div class="text-center">
                <p>Looking for a new opportunity? Check out the job postings in the link below.</p>
                <a href="https://members.latinoactuaries.org/networking/opening_search.asp" class="btn-ola" style="font-size: 18px;">Search Career Opportunities</a>
            </div>

            <hr class="divider" />

            <h4>Do You Have Job Postings to Share?</h4>
            <p>Our Platinum and Gold Corporate Sponsors can now share job postings on our new Career Center portion of our OLA Membership Portal!</p>
            <p>Silver sponsors can only post entry-level and intern job postings. Please reach out to <a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a> if you have any questions.</p>
            <a href="#" class="return-top">Return to Top</a>

            <div id="volunteer" class="ola-header-red">
                <h3>Volunteer Opportunities</h3>
            </div>

            <h4 style="color: #f57223;">Call for Nominations for CAS Board of Directors</h4>
            <p>The CAS Nominating Committee wants your input on the slate of candidates for the 2026 CAS elections for the Board of Directors and President-Elect.</p>
            <p>Any member may submit a nomination, and if you are a Fellow of the CAS, you are welcome to nominate yourself. Fellows may also petition to be placed on the ballot. Members who submit nominees selected for the ballot are eligible to receive
                a $100 Amazon gift card.</p>
            <p><a href="https://www.casact.org/about/leadership-and-staff/elections/2026-cas-elections-kick-call-nominations" style="font-weight: bold;">Learn more and submit your nominations by January 9, 2026.</a></p>

            <br />

            <h4 style="color: #f57223;">Calls for Proposals for CAS Webinars and CAS Seminar on Reinsurance Open Now!</h4>

            <div class="text-center" style="margin: 20px 0;">
                <img src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_dec/call_for_presentations-2026_.png" class="img-fluid" style="max-width: 250px; border-radius: 4px; width: 100%; height: auto;" alt="CAS Call for Presentations" />
            </div>

            <p>The Casualty Actuarial Society (CAS) currently has two open calls for presentations for 2026 educational events. This is a great opportunity to share your expertise with your fellow actuaries, hone your speaking skills, and build your reputation
                as a thought leader in the profession.</p>

            <p><strong>Seminar on Reinsurance</strong> proposals are for 60-minute concurrent sessions, including time for Q&amp;A. <strong>Webinar</strong> proposals are for 90-minute sessions, including at least 15 minutes for Q&amp;A.</p>

            <ul>
                <li style="margin-bottom: 10px;">The <strong>2026 CAS Seminar on Reinsurance</strong> will be held May 31-June 2, 2026 in Philadelphia, PA. <em><a href="https://www.abstractscorecard.com/cfp/submit/login.asp?EventKey=ELHPLDVL">Submit your session proposal by January 2, 2026.</a></em></li>
                <li>CAS will host virtual webinars throughout 2026. <a href="https://fs8.formsite.com/J2PbbG/yynph9glxd/index">Webinar Submissions</a> are now accepted on a rolling basis.</li>
            </ul>

            <hr class="divider" />

            <h4 style="color: #f57223;">Volunteer with OLA!</h4>
            <p>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests!</p>
            <p>Check out our <a href="https://www.latinoactuaries.org/volunteer/">Volunteer Page</a> for more details.</p>
            <a href="#" class="return-top">Return to Top</a>


            <div id="students" class="ola-header-red">
                <h3>Student Section</h3>
            </div>

            <h2 style="color: #f57223; text-transform: uppercase;">Exam Support!</h2>
            <p>OLA provides the following exam support programs for those in the exam taking process:</p>
            <ul style="list-style-type: none; padding-left: 0;">
                <li style="margin-bottom: 15px;">
                    <strong>1. First time exam support stipend</strong>
                    <ul style="margin-top: 5px;">
                        <li>Covers first exam only (P or FM)</li>
                        <li>$325 assists in covering the cost of study materials and registration</li>
                    </ul>
                </li>
                <li style="margin-bottom: 15px;">
                    <strong>2. Regular exam support stipend</strong>
                    <ul style="margin-top: 5px;">
                        <li>Covers 2 exams (P, FM, FAM, SRM, ASTAM, ALTAM, MAS-1, MAS-2, Exam 5)</li>
                        <li>The program helps students pass a total of 3 exams</li>
                        <li>RLP students can earn points to help pay towards a 4th exam</li>
                    </ul>
                </li>
                <li style="margin-bottom: 15px;">
                    <strong>3. Failed exam reimbursement</strong>
                    <ul style="margin-top: 5px;">
                        <li>Covers the cost of exam registration (P or FM)</li>
                    </ul>
                </li>
                <li style="margin-bottom: 15px;">
                    <strong>4. Study Materials</strong>
                    <ul style="margin-top: 5px;">
                        <li>Partnerships with Coaching Actuaries, ACTEX, and TIA offer discounted materials for stipend recipients.</li>
                    </ul>
                </li>
            </ul>
            <p>If you have any questions, please reach out to <a href="mailto:examsupport@latinoactuaries.org">examsupport@latinoactuaries.org</a>.</p>
            <a href="#" class="return-top">Return to Top</a>

            <div id="connect" class="ola-header-red">
                <h3>Connect With Us</h3>
            </div>

            <div class="text-center social-icons">
                <a href="https://www.facebook.com/latinoactuaries"><i class="fab fa-facebook"></i></a>
                <a href="https://www.instagram.com/latinoactuaries/"><i class="fab fa-instagram"></i></a>
                <a href="https://www.linkedin.com/company/latinoactuaries/"><i class="fab fa-linkedin"></i></a>
                <a href="https://www.tiktok.com/@latinoactuaries"><i class="fab fa-tiktok"></i></a>
            </div>

            <div class="text-center" style="margin-top: 30px;">
                <a href="https://www.latinoactuaries.org" class="btn-ola">Visit Our Website</a>
            </div>

        </div>
    </div>
</body></html>]]></description>
<pubDate>Wed, 31 Dec 2025 18:15:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: August 2025</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=707407</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=707407</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY NEWSLETTER</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>AUGUST 2025</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<p>Dear OLA Community,<br /></p>
<p>
    This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and volunteer opportunities.&nbsp;</p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at <a href="mailto:members@latinoactuaries.org">members@latinoactuaries.org</a> to receive this newsletter and other important communications!</p>
<p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a>&nbsp;if you have any questions or feedback (or for corporate sponsors and partners, any items you'd like featured in this newsletter),
    and thank you for your continued support of OLA!</p>
<p> </p>
<p><strong>Alan Ramirez</strong><br /><em>Director of Membership</em><span style="background-color: #ffff00;"><br /><em></em></span></p>
<hr />
<table class="reTableSelected" style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#UpcomingEventsAnnouncements">Upcoming Events &amp; Announcements</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Mixers">Mixers</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Community Spotlights">Community Spotlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Volunteer Opportunities">Volunteer Opportunities</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Students">Student Section</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Support OLA!">Support OLA!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span><br /></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>

<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="UpcomingEventsAnnouncements"><span style="color: #ffffff;"><strong>UPCOMING EVENTS &amp; Announcements</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<hr />
<p><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">2025 OLA Avanza conference</span><span style="font-size: 26px; letter-spacing: 1px; text-transform: uppercase; font-family: Montserrat, sans-serif; color: #f57223;">!</span></p>
<div data-olk-copy-source="MessageBody" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">We are excited for the&nbsp;<b>2025 OLA Avanza Conference</b>, which will take place on&nbsp;<b>August 13-15, in San Diego</b></span></span>
</div>
<p data-olk-copy-source="MessageBody" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;"><b>&nbsp;</b></span></span>
</p>
<p data-olk-copy-source="MessageBody" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;"><span style="box-sizing: border-box; background-color: #ffffff; text-align: center; color: #333333;">The OLA Avanza Conference will bring together OLA prospects (college/university students, recent graduates, and career-changers), OLA Members (actuarial professionals), OLA Leaders (Board of Directors, Program Managers, and Committees), Corporate Sponsors, and Industry/Community Partners for enhanced in-person networking opportunities, including OLA's familiar Mixer format, an in-person career fair, networking meals, and breakout panels/sessions for both prospects and professionals.</span><b><span style="box-sizing: border-box; background-color: #ffffff; text-align: center; color: #333333;"></span><br style="box-sizing: border-box; color: #333333; background-color: #ffffff; text-align: center;" /><br style="box-sizing: border-box; color: #333333; background-color: #ffffff; text-align: center;" /><span style="box-sizing: border-box; font-weight: 700; background-color: #ffffff; text-align: center; color: #333333;"><em style="box-sizing: border-box;">New for 2025:&nbsp;</em></span></b><span style="box-sizing: border-box; background-color: #ffffff; text-align: center; color: #333333;">The rebranded 2025 OLA Avanza Conference will expand the programming offered during the 2024 OLA Early Career Symposium to feature both general and breakout sessions so actuarial professionals can earn Continuing Education (CE) and/or Continuing Professional
        Development (CPD) credits.</span>
    </span>
    </span>
</p>
<p data-olk-copy-source="MessageBody" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;"><b>&nbsp;</b></span></span>
</p>
<p data-olk-copy-source="MessageBody" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><b>🗣️ATTENDEES: Please ensure your OLA Member Portal account details are up-to-date to ensure you continue to receive the latest OLA news and upcoming events! If you don't have an account, you can register here</b></span><i><span style="font-family: Arial; color: #000000;">:</span></i><i style="font-family: Arial;"><span style="color: #51a7f9;">🔗</span><span style="color: #51a7f9;"> <a href="https://members.latinoactuaries.org/general/register_member_type.asp?" id="https://members.latinoactuaries.org/general/register_member_type.asp?"><span style="color: #51a7f9;">https://members.latinoactuaries.org/general/register_member_type.asp?</span></a></span></i></p>
<p data-olk-copy-source="MessageBody" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><strong style="font-size: 14px; font-family: Arial;">&nbsp;</strong></p><p data-olk-copy-source="MessageBody" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><strong style="font-size: 14px; font-family: Arial;">See you all at the OLA Avanza Conference next week!</strong></p>
<p><a href="#Top of Page"><em>Return to Top of Page</em></a><em></em></p>
<p><em></em></p>
<hr />
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Mixers"><span style="color: #ffffff;"><strong>MIXERS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<address><span style="color: #f57223;"><span style="background-color: #ffffff;"><span style="font-size: 16px;"><span style="color: #000000;">We are currently planning our upcoming mixers for Hispanic Heritage Month in September and October in Chicago, Dallas, New York, and Philadelphia. More information to be announced soon.&nbsp;</span></span></span></span></address>
<p><strong style="font-size: 16px; background-color: #ffffff; color: #9f151b; font-family: Montserrat, sans-serif; letter-spacing: 1px; text-transform: uppercase;">Past 2025 mixers</strong></p>
<p><span style="font-size: 16px;"><span style="background-color: #ffffff;"><strong><span style="text-decoration: underline;">Boston - June 17</span></strong>
    </span>
    </span>
</p>
<p><img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2025_aug/boston_mixer_v2.png" style="width: 200px; height: 301px;" /></p>
<p><span style="color: #f57223;"><span style="background-color: #ffffff;"><span style="font-size: 16px;"><span style="color: #000000;"><strong style="font-size: medium;"><span style="text-decoration-line: underline;">Phoenix - June 12 (collaboration with CADS)</span></strong>
    </span>
    </span>
    </span>
    </span>
</p>
<p><img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2025_aug/phoenix_mixer.png" style="width: 200px; height: 302px;" /><span style="font-size: medium; background-color: #ffffff;"></span></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Community Spotlights"><span style="color: #ffffff;"><strong>COMMUNITY SPOTLIGHTS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<p>&nbsp;</p>
<p><img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2025_aug/jerry.jpg" style="border: 5px solid #c00000; width: 140px; height: 175px; float: left;" /></p>
<h4 style="box-sizing: border-box; background-color: #ffffff;">Gerardo duarte, ASA</h4>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">Hometown</span>:&nbsp;Currently live in Laredo, TX, but grew up in Nuevo Laredo, Tamaulipas, Mexico. Both are border towns separated by the Rio Grande River.<br style="box-sizing: border-box;" /></p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">University</span>: University of Texas at Austin</p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><u style="box-sizing: border-box;">OLA Involvement:</u>&nbsp;Board Member and Director of Pipeline Development</p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">Current Position:</span>&nbsp;Senior Manager, CVS Health</p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;"><span style="box-sizing: border-box;">Tell us a little about yourself:</span></span>&nbsp;&nbsp;I grew up in a Mexican household, but with some exposure to the U.S. culture given the proximity
    - I have the best of both worlds! I moved to the U.S. when I was 18, did two years of community college and transferred to UT Austin where I graduated in 2018 with a major Actuarial Science. I’ve been a Health Actuary since then holding consulting-like
    roles. I am a very outdoorsy guy - I enjoy hiking, catch-and-release fishing, kayaking, camping, etc. &nbsp;</p>
<p><span style="box-sizing: border-box; text-decoration-line: underline; color: #333333;">How has OLA impacted your career?</span><span style="background-color: #ffffff; color: #333333;">&nbsp;I’ll sum it up with two things: Community and Experience.</span></p>
<ul>
    <li><span style="background-color: #ffffff; color: #333333;"></span><span style="background-color: #ffffff; color: #333333;">Community: OLA has introduced me to a vast network of actuaries who I can reach out for questions. I appreciate how much I’ve learned about the industry from chats with fellow OLA members.  We are truly a community where everyone supports each other!</span><br /></li>
    <li>Experience: Through volunteering and serving as a Board Member, I’ve been exposed to different situations/projects which have helped me grow as a leader and increased my business acumen. Additionally, it’s been rewarding to contribute to the growth
        of fellow Latine prospects and actuaries.</li>
</ul>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">What is your favorite thing of being an actuary?&nbsp;</span><span style="font-size: 14px;">The constant learning – I’m an intellectually curious person, and as an Actuary, I enjoy being challenged to solve problems and answer questions stemming from an ever-changing environment. </span>
</p>
<div>
    <div><em><a href="https://www.linkedin.com/in/orellanadiego/ "></a><a href="https://www.linkedin.com/in/gerardo-duarte/">Click here to connect with Jerry on LinkedIn!</a></em><a href="https://www.linkedin.com/in/gerardo-duarte/">&nbsp; &nbsp; &nbsp;</a></div>
    <hr />
    <div><em>We enjoy featuring and sharing the stories of members of the Latine actuarial community! If you have a nomination for a spotlight, please ask them to fill out this&nbsp;<a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">form</a>&nbsp;with their information/headshot.</em><br /></div>
    <div>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em></em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #9f151b;">
                    <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <div>
        <p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">&nbsp;</span></p>
        <p style="margin: 0in;"><span style="font-size: 14.6667px; font-family: Aptos, sans-serif;">Looking for a new opportunity? Check out the job postings in the link below.</span></p>
        <h4 style="text-align: center;"><span style="color: #f57223;"><strong><span style="font-size: 20px;"><a href="https://members.latinoactuaries.org/networking/opening_search.asp"><span style="font-size: 20px;">Click here to search our career center for opportunities</span></a>
            </span>
            </strong>
            </span>
        </h4>
    </div>
    <div>
        <hr />
        <h4><span style="color: #f57223;">DO YOU HAVE JOB POSTINGS TO SHARE?</span></h4>
    </div>
    <div>
    </div>
    <p>Our Platinum and Gold Corporate Sponsors can now share job postings on our new Career Center portion of our OLA Membership Portal!</p>
    <p>Any member of your team who has an OLA Member Portal account associated with your company can easily post an opportunity by logging into their OLA Member Portal account and navigating to
        <a href="https://members.latinoactuaries.org/networking/">members.latinoactuaries.org/networking</a>&nbsp;to submit an opening. Please note that, when submitting the opening, you’ll want to click “No, I will tell them ‘How to Apply’ below” for the
        “Allow online applications?” option so that applicants aren’t mistakenly led to apply on our site instead of yours.
    </p>
    <p>As a reminder, Silver sponsors can only post entry-level and intern job postings on the Career Center; any postings that do not comply with this condition will not be approved on the backend.</p>
    <p>Please reach out to the OLA Career Center team at<a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a>&nbsp;if you have any questions.</p>
    <div>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <div>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #f57223;">
                        <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>volunteer opportunities</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div>
            <h4>VOLUNTEER WITH OLA!</h4>
            <div>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests! If you do not already have an OLA Member Portal account, you can click&nbsp;<a href="https://members.latinoactuaries.org/general/register_member_type.asp?">here</a>&nbsp;to
                register.
            </div>
            <div>&nbsp;</div>
            <div>Check-out our Volunteer page at&nbsp;<a href="https://www.latinoactuaries.org/volunteer/">https://www.latinoactuaries.org/volunteer/</a>&nbsp;for more details on volunteer opportunities, and contact us at&nbsp;<a href="mailto:membership@latinoactuaries.org">membership@latinoactuaries.org</a>&nbsp;for
                more information!</div>
        </div>
    </div>
    <div>
    </div>
    <p>&nbsp;</p>
    <div>
        <div>
        </div>
        <div>
            <hr />
        </div>
    </div>
    <div>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #9f151b;">
                        <h3 style="text-align: center;"><a id="Students"><span style="color: #ffffff;"><strong>Student Section</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div>
        </div>
    </div>
    <div>
    </div>
    <p><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">Exam Support</span><span style="font-size: 26px; letter-spacing: 1px; text-transform: uppercase; font-family: Montserrat, sans-serif; color: #f57223;">!</span></p>
    <p><span style="font-size: small; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-weight: inherit; background-color: #ffffff; font-family: Arial; color: #000000;">OLA provides the following exam support programs for those in the exam taking process:</span></p>
    <div>
        <div>
            <ul data-editing-info="{'applyListStyleFromLevel':true}" style="font-family: 'Segoe UI', 'Segoe UI Web (West European)', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif; font-size: 15px; background-color: white; list-style-position: initial; list-style-image: initial;">
                <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                    <div data-olk-copy-source="MessageBody" style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-family: Arial; font-size: 13px;">First time exam support stipend</span><span style="font-size: 12pt;"></span></div>
                    <ul data-editing-info="{'applyListStyleFromLevel':true}" style="list-style-position: initial; list-style-image: initial;">
                        <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                            <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Covers first exam only (P or FM)</span></span>
                            </div>
                        </li>
                        <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                            <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">$325 assists in covering the cost of study materials and registration</span></span>
                            </div>
                        </li>
                    </ul>
                </li>
                <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                    <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Regular exam support stipend</span></span>
                    </div>
                    <ul data-editing-info="{'applyListStyleFromLevel':true}" style="list-style-position: initial; list-style-image: initial;">
                        <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                            <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Covers only 2 exams (P, FM, FAM, SRM, ASTAM, ALTAM, MAS-1, MAS-2, Exam 5 (CAS))&nbsp;</span></span>
                            </div>
                            <ul data-editing-info="{'applyListStyleFromLevel':true}">
                                <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; list-style: '∎ ';">
                                    <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">The&nbsp;exam program is meant to help students pass a total of 3 exams (1 from first time and 2 from regular)&nbsp;</span></span>
                                    </div>
                                </li>
                            </ul>
                        </li>
                        <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                            <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">RLP students have the opportunity to earn points to help pay towards a 4<sup>th</sup>&nbsp;exam</span></span>
                            </div>
                        </li>
                        <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                            <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">$425 - $700 assists in covering the cost of study materials and registration; amount awarded is exam dependent</span></span>
                            </div>
                        </li>
                    </ul>
                </li>
                <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                    <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Failed exam reimbursement</span></span>
                    </div>
                    <ul data-editing-info="{'applyListStyleFromLevel':true}" style="list-style-position: initial; list-style-image: initial;">
                        <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                            <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Cover the cost of exam registration (P or FM)</span></span>
                            </div>
                        </li>
                    </ul>
                </li>
                <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                    <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Study Materials</span></span>
                    </div>
                    <ul data-editing-info="{'applyListStyleFromLevel':true}" style="list-style-position: initial; list-style-image: initial;">
                        <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                            <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">OLA has partnerships with Coaching Actuaries, ACTEX, and TIA; vendors offer discounted exam study materials for individuals who are awarded an OLA exam support stipen</span>
                                <span style="font-family: Arial;">d</span>
                                </span>
                            </div>
                        </li>
                    </ul>
                </li>
            </ul>
            <div style="border: 0px; font: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;"><span style="font-size: small; background-color: #ffffff; font-family: Arial;">If you have any questions, please reach out to <a href="examsupport@latinoactuaries.org">examsupport@latinoactuaries.org</a></span></span>
                </span>
            </div>
        </div>
    </div>
    <p style="border: 0px; font: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;"><span style="font-size: small; background-color: #ffffff; font-family: Arial;">&nbsp;</span></span>
        </span>
    </p>
    <div>
        <div>
        </div>
        <div>
            <div>
                <table style="width: 660px; height: 66px;">
                    <tbody>
                        <tr>
                            <td style="background-color: #9f151b;">
                                <h3 style="text-align: center;"><a id="Support OLA!"><span style="color: #ffffff;"><strong>Support OLA!</strong></span></a></h3>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <h4><span style="color: #f57223;">CORPORATE SPONSORSHIPS</span></h4>
            </div>
        </div>
    </div>
    <p>We have different sponsorship tiers that can fit your company's size and strategy! If you are interested in sponsoring OLA, please e-mail us at <a href="mailto:corpengagement@latinoactuaries.org">corpengagement@latinoactuaries.org</a>. We can schedule a call and provide
        information you need or answer your questions.</p>
    <div>
        <div>
            <div>
                <hr />
                <h4><span style="color: #f57223;">Individual Donations</span></h4>
            </div>
        </div>
    </div>
    <p>OLA supports our Latine actuarial prospects (students, career changers, etc.) via scholarship programs, exam materials and registration reimbursements, and our travel program that sends prospects to OLA's Early Career Symposium (ECS) and industry
        conferences to help them network and secure jobs at the on-site career fairs.</p>
    <p>Individual donations of any amount can go a long way in helping us sustain these programs, so please click <a href="https://www.latinoactuaries.org/donate/">here</a> if interested in donating!</p>
    <div>
        <div>
            <div>
                <hr />
                <div>
                </div>
            </div>
        </div>
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <div>
        <div>
            <div>
                <div>
                    <table style="width: 660px; height: 66px;">
                        <tbody>
                            <tr>
                                <td style="background-color: #9f151b;">
                                    <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
                    <table align="center" style="left: 215.5px; width: 180px; height: 50px;">
                        <tbody>
                            <tr>
                                <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                                <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                                <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
                                <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.tiktok.com/@latinoactuaries?_t=8ZimdOHqnXy&amp;_r=1" class="fab fa-tiktok"></a></td>

                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
    </div>
    <p>&nbsp;</p>
    <div>
        <div>
            <div>
                <div>
                    <div style="text-align: center;">
                        <table align="center" class="reTableSelected" style="left: 252.5px; width: 164px; height: 50px;" border="0" cellspacing="0" cellpadding="0">
                            <tbody>
                                <tr>
                                    <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                                        <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" id="Visit our website" target="_blank"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                                            </span>
                                        </p>
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                    <hr />
                </div>
            </div>
        </div>
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <div>
        <div>
            <div>
                <div>
                    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
                </div>
            </div>
        </div>
    </div>
</div>]]></description>
<pubDate>Fri, 8 Aug 2025 17:09:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: March 2025</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=695654</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=695654</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY NEWSLETTER</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>March 2025</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<p>Dear OLA Community,<br /></p>
<p>
    This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and volunteer opportunities.&nbsp;</p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at <a href="mailto:members@latinoactuaries.org">members@latinoactuaries.org</a> to receive this newsletter and other important communications!</p>
<p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a>&nbsp;if you have any questions or feedback (or for corporate sponsors and partners, any items you'd like featured in this newsletter),
    and thank you for your continued support of OLA!</p>
<p> </p>
<p><strong>Alan Ramirez</strong><br /><em>Director of Membership</em><span style="background-color: #ffff00;"><br /><em></em></span></p>
<hr />
<table class="reTableSelected" style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#UpcomingEventsAnnouncements">Upcoming Events &amp; Announcements</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Mixers">Mixers</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Community Spotlights">Community Spotlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Volunteer Opportunities">Volunteer Opportunities</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Students">Student Section</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Support OLA!">Support OLA!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span><br /></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>

<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="UpcomingEventsAnnouncements"><span style="color: #ffffff;"><strong>UPCOMING EVENTS &amp; Announcements</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<hr />
<p><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">2025 OLA Avanza conference - call for presentations</span><span style="font-size: 26px; letter-spacing: 1px; text-transform: uppercase; font-family: Montserrat, sans-serif; color: #f57223;">!</span></p>
<div data-olk-copy-source="MessageBody" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Plans are well underway for the&nbsp;<b>2025 OLA Avanza Conference</b>, which will take place on&nbsp;<b>August 13-15, in San Diego, California.&nbsp;</b></span>
    </span>
</div>
<p data-olk-copy-source="MessageBody" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;"><b>&nbsp;</b></span><span style="font-size: 14px;"></span></span>
</p>
<div style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">The Organization of Latino Actuaries (OLA) invites actuaries, industry professionals, and thought leaders to submit proposals for presentations at our 2025 conference. This event will bring together Latino actuaries and allies for professional development, networking, and knowledge-sharing.&nbsp;This is your chance to contribute ideas that will engage and inspire the actuarial community.&nbsp; Presentations can take the form of&nbsp;<b>general sessions, concurrent sessions, or interactive workshops</b>, and we encourage a mix of technical and professional development topics.</span>
    </span>
</div>
<div aria-hidden="true" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">&nbsp;</span>
    </span>
</div>
<div style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">We are seeking&nbsp;<b>engaging and thought-provoking presentation topics</b>&nbsp;that will provide valuable insights and spark meaningful discussions among actuarial professionals.&nbsp;&nbsp;<b>Sessions can focus on:</b></span>
    </span>
</div>
<ul style="font-family: 'Segoe UI', 'Segoe UI Web (West European)', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif; font-size: 15px; background-color: #ffffff; direction: ltr; margin-top: 0px; margin-right: 0px;">
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; direction: ltr; margin: 0px;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Emerging trends in the actuarial field</span>
        </span>
    </li>
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; direction: ltr; margin: 0px;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Innovations in risk management, technology, and data analytics</span>
        </span>
    </li>
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; direction: ltr; margin: 0px;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Leadership, career development, and DEI initiatives</span>
        </span>
    </li>
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; direction: ltr; margin: 0px;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Case studies or real-world applications to our community</span>
        </span>
    </li>
</ul>
<div style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;"><strong>P</strong><b>resenting at Avanza provides a unique opportunity to:</b></span>
    </span>
</div>
<ul style="font-family: 'Segoe UI', 'Segoe UI Web (West European)', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif; font-size: 15px; background-color: #ffffff; direction: ltr; margin-top: 0px; margin-right: 0px;">
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; direction: ltr; margin: 0px;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Showcase expertise</span>
        </span>
    </li>
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; direction: ltr; margin: 0px;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Enhance brand visibility</span>
        </span>
    </li>
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; direction: ltr; margin: 0px;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Support Diversity &amp; Inclusion</span>
        </span>
    </li>
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; direction: ltr; margin: 0px;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Engage with talent</span>
        </span>
    </li>
</ul>
<div style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;"><b>How to participate:</b></span>
    </span>
</div>
<ul style="font-family: 'Segoe UI', 'Segoe UI Web (West European)', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif; font-size: 15px; background-color: #ffffff; direction: ltr; margin-top: 0px; margin-right: 0px;">
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; direction: ltr; margin: 0px;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Deadline:&nbsp;<b>March 18.</b></span>
        </span>
    </li>
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; margin: 0px;">
        <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Submit your ideas by clicking&nbsp;<span style="border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: #467886;"><b><u><a id="x_m_4872306337360433194OWA59232d17-2ff8-52e9-7e3e-9037632d0671" data-auth="NotApplicable" rel="noopener noreferrer" target="_blank" href="https://members.latinoactuaries.org/page/2025-OLA-Avanza-Conference-Call-for-Presentations" title="https://members.latinoactuaries.org/page/2025-OLA-Avanza-Conference-Call-for-Presentations" data-linkindex="4" style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: #467886 !important;">here</a>&nbsp;</u></b></span><b>(scroll to bottom of page),&nbsp;</b>which
            will take you to a brief survey

            </span>
            </span>
        </div>
    </li>
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; direction: ltr; margin: 0px;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">Please submit a&nbsp;<b>separate survey entry for each idea&nbsp;</b>you propose.</span>
        </span>
    </li>
    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; direction: ltr; margin: 0px;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">The&nbsp;<b>Avanza Conference Committee will review all submissions&nbsp;</b>and select the most relevant topics for this year’s program.</span>
        </span>
    </li>
</ul>
<div style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">If you have any questions, feel free to reach out to us at&nbsp;<span style="border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: #467886;"><u><a rel="noreferrer" id="x_m_4872306337360433194OWA1b527301-10df-9f5c-28fa-475226d58bcc" href="mailto:avanza@latinoactuaries.org" title="mailto:avanza@latinoactuaries.org" data-linkindex="5" style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: #467886 !important;">avanza@latinoactuaries.org</a></u></span>.

    </span>
    </span>
</div>
<div aria-hidden="true" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-family: Arial;"><span style="font-size: 14px; font-family: Arial;">&nbsp;</span>
    </span>
</div>
<div style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 12pt; line-height: inherit; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff; direction: ltr;"><span style="font-size: 14px;"><span style="font-family: Arial;">Thank you in advance for your contributions – we look forward to your ideas!</span></span>
</div>
<hr />
<div data-olk-copy-source="MessageBody" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 10pt; line-height: inherit; font-family: Arial, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 1em 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff;"><span style="font-size: 26px;"><span style="font-family: Arial;">&nbsp;<span style="letter-spacing: 1px; color: #f57223;">OLA's 2025 LEADERSHIP MEETING!</span></span>
    </span>
</div>
<img alt="" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_march/thumbnail_photo_jan_31_2025,.jpg" style="width: 400px; height: 269px; vertical-align: middle;" />
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;"></span><span style="font-size: 11pt; font-family: Aptos, sans-serif;"></span>&nbsp;</p>
<p style="font-family: 'Times New Roman'; font-size: medium;"><span style="font-size: 14px; font-family: Arial;">The 2025 OLA Leadership Meeting was a great success, bringing together our dedicated leaders to discuss the future of our organization. During the meeting, we focused on refining our strategic direction by updating our mission, vision, and strategic pillars. This effort reflects our commitment to evolving and positioning OLA as a leading force in our industry, as well as our focus to grow and support our members. These updates will be officially released in the upcoming weeks.</span></p>
<p style="font-family: 'Times New Roman'; font-size: medium;"><span style="font-size: 14px;"><span style="font-family: Arial;">Also on January 31, we hosted the OLA L.A. Mixer: Meet the OLA Leadership Team! It was a great opportunity to connect with OLA members, corporate sponsors, allies, and to meet the 2025 OLA Leadership Team in Los Angeles.</span></span>
</p>
<p style="font-family: 'Times New Roman'; font-size: medium;"><span style="font-size: 14px;"><span style="font-family: Arial;">Special thanks to WTW, Platinum Sponsor of OLA, for hosting OLA's Leadership meeting.</span></span>
</p>
<p style="font-family: 'Times New Roman'; font-size: medium;"><span style="font-size: 14px; font-family: Arial;"><strong>See you all at Avanza in August!</strong></span></p>
<p><a href="#Top of Page"><em>Return to Top of Page</em></a><em></em></p>
<p><em></em></p>
<hr />
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Mixers"><span style="color: #ffffff;"><strong>MIXERS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<address><span style="color: #f57223;"><span style="background-color: #ffffff;"><span style="font-size: 16px;"><span style="color: #000000;">We are excited to announce upcoming mixers in Boston in May and Phoenix in June! Network and connect with OLA leadership, actuarial candidates, corporate sponsors, and allies!</span></span></span></span></address>
<p><span style="font-size: 16px;"><span style="background-color: #ffffff;"><i><strong>Follow us on LinkedIn for official announcement!</strong></i></span></span>
</p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Community Spotlights"><span style="color: #ffffff;"><strong>COMMUNITY SPOTLIGHTS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<p>&nbsp;</p>
<p><img alt="" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2025_march/1666994156827.jpg" style="border: 5px solid #c00000; width: 140px; height: 175px; float: left;" /></p>
<h4 style="box-sizing: border-box; background-color: #ffffff;">Will Ringhofer, ASA</h4>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">Hometown</span>: Dallas, TX<br style="box-sizing: border-box;" /></p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">University</span>: University of Texas at Dallas</p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><u style="box-sizing: border-box;">OLA Involvement:</u>&nbsp;OLA Avanza Conference Program Manager</p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">Current Position:</span>&nbsp;Associate Actuary, Steadily</p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;"><span style="box-sizing: border-box;">Tell us a little about yourself:</span></span>&nbsp;&nbsp;<span style="font-size: 14px;"><span id="docs-internal-guid-72554dd7-7fff-2862-4dfa-4f6ae9ad8571" style="font-size: 14px;"><span style="font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; vertical-align: baseline; white-space-collapse: preserve; font-family: Arial, sans-serif;">I am an actuary at Steadily, a landlord insurance company for rental property owners, working remotely from Dallas, TX, where I was raised and have lived most of my life. A unique fact about my actuarial journey is that shortly before obtaining my ASA, I made the incredibly smart decision to jump to property and casualty and take my exams all over again. Seriously though, no regrets! When I am not studying, I enjoy exercising, sports, and binge-watching TV shows with my wife</span></span>.</span>&nbsp; </p>
<p><span style="box-sizing: border-box; text-decoration-line: underline; color: #333333;">How has OLA impacted your career?</span><span style="background-color: #ffffff; color: #333333;">&nbsp;<span style="font-size: 14px;"><span id="docs-internal-guid-84f71744-7fff-e318-b63e-626729786f51" style="font-size: 14px;"><span style="font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; vertical-align: baseline; white-space-collapse: preserve; font-family: Arial, sans-serif;">Being Latino is something I have always been proud of due to the passion, hard work, and enthusiasm I feel were instilled in me from a young age. When a fellow actuarial student of mine introduced me to OLA in my senior year of college, I also felt those shared values, accompanied by the detail-oriented, analytical thinking mindset that basically all of us actuaries share. OLA helped me prepare for and succeed at interviewing and networking, landing me my first job offer. From this initial encounter, I saw how powerful an impact OLA could have on both students' and young professionals’ lives, and it encouraged me to give back once I started my full-time role. I’m excited to continue helping to grow the organization, increase awareness of the actuarial profession, and empower Latino actuaries to continue to excel at being thought leaders and bringing passion to the workplace</span></span>.</span></span><br /></p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">What is your favorite thing of being an actuary?</span><span style="font-size: 14px;">&nbsp;<span id="docs-internal-guid-7d82d9a5-7fff-7a9f-51c8-85c9c341bb05"><span style="font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; font-variant-emoji: normal; vertical-align: baseline; white-space-collapse: preserve; font-family: Arial, sans-serif;">My favorite thing about being an actuary is the community. For starters, the actuarial community is essentially built on shared suffering through the grueling exam process. This fosters discussion and collaboration amongst actuarial students trying to help each other make it across the finish line. We all want one another to win, and I truly believe that. The exam process not only emphasizes making sure we are all experts at what we do but also teaches discipline and perseverance. Seeing myself and others succeed is one of the most rewarding things about being an actuary. Secondly, the actuarial community is a very small, tight-knit community. If you’re an actuary, I can pretty much guarantee that you’ll meet another actuary who has met your coworker, ex-coworker, manager, or chief actuary. This interconnectedness not only helps with career growth and mentorship but also creates a sense of belonging in a profession that thrives on collaboration and shared experiences</span></span>.&nbsp;&nbsp;</span></p>
<div>
    <div><em><a href="https://www.linkedin.com/in/orellanadiego/ "></a><a href="https://www.linkedin.com/in/william-ringhofer/">Click here to connect with Will on LinkedIn!</a></em><a href="https://www.linkedin.com/in/gonzaloequihua/">&nbsp; &nbsp; &nbsp;</a></div>
    <hr />
    <div><em>We enjoy featuring and sharing the stories of members of the Latine actuarial community! If you have a nomination for a spotlight, please ask them to fill out this&nbsp;<a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">form</a>&nbsp;with their information/headshot.</em><br /></div>
    <div>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #9f151b;">
                    <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <div>
        <p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">&nbsp;</span></p>
        <p style="margin: 0in;"><span style="font-size: 14.6667px; font-family: Aptos, sans-serif;">Looking for a new opportunity? Check out the job postings in the link below.</span></p>
        <h4 style="text-align: center;"><span style="color: #f57223;"><strong><span style="font-size: 20px;"><a href="https://members.latinoactuaries.org/networking/opening_search.asp"><span style="font-size: 20px;">Click here to search our career center for opportunities</span></a>
            </span>
            </strong>
            </span>
        </h4>
    </div>
    <div>
        <hr />
        <h4><span style="color: #f57223;">DO YOU HAVE JOB POSTINGS TO SHARE?</span></h4>
    </div>
    <div>
    </div>
    <p>Our Platinum, Gold Plus, and Gold Corporate Sponsors can now share job postings on our new Career Center portion of our OLA Membership Portal!</p>
    <p>Any member of your team who has an OLA Member Portal account associated with your company can easily post an opportunity by logging into their OLA Member Portal account and navigating to
        <a href="https://members.latinoactuaries.org/networking/">members.latinoactuaries.org/networking</a>&nbsp;to submit an opening. Please note that, when submitting the opening, you’ll want to click “No, I will tell them ‘How to Apply’ below” for the
        “Allow online applications?” option so that applicants aren’t mistakenly led to apply on our site instead of yours.
    </p>
    <p>As a reminder, Silver sponsors can only post entry-level and intern job postings on the Career Center; any postings that do not comply with this condition will not be approved on the backend.</p>
    <p>Please reach out to the OLA Career Center team at&nbsp;<a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a>&nbsp;if you have any questions.</p>
    <div>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <div>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #f57223;">
                        <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>volunteer opportunities</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div>
            <h4>VOLUNTEER WITH OLA!</h4>
            <div>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests! If you do not already have an OLA Member Portal account, you can click&nbsp;<a href="https://members.latinoactuaries.org/general/register_member_type.asp?">here</a>&nbsp;to
                register.
            </div>
            <div>&nbsp;</div>
            <div>Check-out our Volunteer page at&nbsp;<a href="https://www.latinoactuaries.org/volunteer/">https://www.latinoactuaries.org/volunteer/</a>&nbsp;for more details on volunteer opportunities, and contact us at&nbsp;<a href="mailto:membership@latinoactuaries.org">membership@latinoactuaries.org</a>&nbsp;for
                more information!</div>
        </div>
    </div>
    <div>
    </div>
    <p>&nbsp;</p>
    <div>
        <div>
        </div>
        <div>
            <hr />
        </div>
    </div>
    <div>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #9f151b;">
                        <h3 style="text-align: center;"><a id="Students"><span style="color: #ffffff;"><strong>Student Section</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div>
        </div>
    </div>
    <p><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">2025-2026 Academic SCHOLARSHIP!</span></p>
    <div>
            <div>
                <div data-olk-copy-source="MessageBody" style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 10pt; line-height: inherit; font-family: Arial, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 1em 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff;">The&nbsp;<b>Organization of Latino Actuaries (OLA) 2025 2026 Academic Scholarship</b>&nbsp;application deadline is&nbsp;<b>March 31, 2025</b>. OLA awards scholarships of up to&nbsp;<b>$7,500</b>&nbsp;to students who will be&nbsp;enrolled in a U.S. based college or
                    university during the Fall 2025 to Spring 2026 academic year&nbsp;and who are&nbsp;pursuing the actuarial profession.</div>
                <div style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 10pt; line-height: inherit; font-family: Arial, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 1em 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff;">All applicants will be considered for both the general scholarship and named scholarships. Named scholarship winners will receive a $5,000 scholarship as well as a Summer 2026 internship with one of OLA's Gold Plus and Platinum sponsors,&nbsp;a
                    fantastic opportunity to gain real-world experience while receiving financial support for your academic studies.</div>
                <div style="border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-variant-alternates: inherit; font-variant-position: inherit; font-variant-emoji: inherit; font-stretch: inherit; font-size: 10pt; line-height: inherit; font-family: Arial, Helvetica, sans-serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; margin: 1em 0px; padding: 0px; vertical-align: baseline; background-color: #ffffff;">Do not miss this chance to advance your actuarial career! Apply here:&nbsp;<a id="LPlnk" data-auth="NotApplicable" rel="noopener noreferrer" target="_blank" href="https://theactuarialfoundation.submittable.com/submit" title="https://theactuarialfoundation.submittable.com/submit" data-linkindex="0" style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline;">https://theactuarialfoundation.submittable.com/submit</a></div>
            </div>
            <hr />
            <div>
            </div>
        </div>
    <p><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">Exam Support</span><span style="font-size: 26px; letter-spacing: 1px; text-transform: uppercase; font-family: Montserrat, sans-serif; color: #f57223;">!</span></p>
    <p><span style="font-size: small; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-weight: inherit; background-color: #ffffff; font-family: Arial; color: #000000;">As a reminder, OLA provides the following exam support programs for those in the exam taking process:</span></p>
    <div>
            <div>
                <ul data-editing-info="{'applyListStyleFromLevel':true}" style="font-family: 'Segoe UI', 'Segoe UI Web (West European)', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif; font-size: 15px; background-color: white; list-style-position: initial; list-style-image: initial;">
                    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                        <div data-olk-copy-source="MessageBody" style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-family: Arial; font-size: 13px;">First time exam support stipend</span><span style="font-size: 12pt;"></span></div>
                        <ul data-editing-info="{'applyListStyleFromLevel':true}" style="list-style-position: initial; list-style-image: initial;">
                            <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                                <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Covers first exam only (P or FM)</span></span>
                                </div>
                            </li>
                            <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                                <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">$325 assists in covering the cost of study materials and registration</span></span>
                                </div>
                            </li>
                        </ul>
                    </li>
                    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                        <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Regular exam support stipend</span></span>
                        </div>
                        <ul data-editing-info="{'applyListStyleFromLevel':true}" style="list-style-position: initial; list-style-image: initial;">
                            <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                                <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Covers only 2 exams (P, FM, FAM, SRM, ASTAM, ALTAM, MAS-1, MAS-2, Exam 5 (CAS))&nbsp;</span></span>
                                </div>
                                <ul data-editing-info="{'applyListStyleFromLevel':true}">
                                    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif; list-style: '∎ ';">
                                        <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">The&nbsp;exam program is meant to help students pass a total of 3 exams (1 from first time and 2 from regular)&nbsp;</span></span>
                                        </div>
                                    </li>
                                </ul>
                            </li>
                            <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                                <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">RLP students have the opportunity to earn points to help pay towards a 4<sup>th</sup>&nbsp;exam</span></span>
                                </div>
                            </li>
                            <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                                <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">$425 - $700 assists in covering the cost of study materials and registration; amount awarded is exam dependent</span></span>
                                </div>
                            </li>
                        </ul>
                    </li>
                    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                        <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Failed exam reimbursement</span></span>
                        </div>
                        <ul data-editing-info="{'applyListStyleFromLevel':true}" style="list-style-position: initial; list-style-image: initial;">
                            <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                                <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Cover the cost of exam registration (P or FM)</span></span>
                                </div>
                            </li>
                        </ul>
                    </li>
                    <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                        <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">Study Materials</span></span>
                        </div>
                        <ul data-editing-info="{'applyListStyleFromLevel':true}" style="list-style-position: initial; list-style-image: initial;">
                            <li style="font-size: 12pt; font-family: Aptos, Aptos_EmbeddedFont, Aptos_MSFontService, Calibri, Helvetica, sans-serif;">
                                <div style="border: 0px; font: inherit; margin: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;">OLA has partnerships with Coaching Actuaries, ACTEX, and TIA; vendors offer discounted exam study materials for individuals who are awarded an OLA exam support stipen</span>
                                    <span style="font-family: Arial;">d</span>
                                    </span>
                                </div>
                            </li>
                        </ul>
                    </li>
                </ul>
                <div style="border: 0px; font: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;"><span style="font-size: small; background-color: #ffffff; font-family: Arial;">If you have any questions, please reach out to <a href="examsupport@latinoactuaries.org">examsupport@latinoactuaries.org</a></span></span>
                    </span>
                </div>
            </div>
        </div>
    <p style="border: 0px; font: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; padding: 0px; vertical-align: baseline; color: inherit;"><span style="font-size: 13px;"><span style="font-family: Arial;"><span style="font-size: small; background-color: #ffffff; font-family: Arial;">&nbsp;</span></span>
        </span>
    </p>
    <div>
            <div>
            </div>
            <div>
                <div>
                    <table style="width: 660px; height: 66px;">
                        <tbody>
                            <tr>
                                <td style="background-color: #9f151b;">
                                    <h3 style="text-align: center;"><a id="Support OLA!"><span style="color: #ffffff;"><strong>Support OLA!</strong></span></a></h3>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                    <h4><span style="color: #f57223;">CORPORATE SPONSORSHIPS</span></h4>
                </div>
            </div>
        </div>
    <p>We have different sponsorship tiers that can fit your company's size and strategy! If you are interested in sponsoring OLA, please e-mail us at <a href="mailto:info@latinoactuaries.org">info@latinoactuaries.org</a>. We can schedule a call and provide
        information you need or answer your questions.</p>
    <div>
            <div>
                <div>
                    <hr />
                    <h4><span style="color: #f57223;">Individual Donations</span></h4>
                </div>
            </div>
        </div>
    <p>OLA supports our Latine actuarial prospects (students, career changers, etc.) via scholarship programs, exam materials and registration reimbursements, and our travel program that sends prospects to OLA's Early Career Symposium (ECS) and industry
        conferences to help them network and securo jobs at the on-site career fairs.</p>
    <p>Individual donations of any amount can go a long way in helping us sustain these programs, so please click <a href="https://www.latinoactuaries.org/donate/">here</a> if interested in donating!</p>
    <div>
            <div>
                <div>
                    <hr />
                    <div>
                    </div>
                </div>
            </div>
        </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <div>
            <div>
                <div>
                    <div>
                        <table style="width: 660px; height: 66px;">
                            <tbody>
                                <tr>
                                    <td style="background-color: #9f151b;">
                                        <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
                        <table align="center" style="left: 215.5px; width: 180px; height: 50px;">
                            <tbody>
                                <tr>
                                    <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                                    <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                                    <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
                                    <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.tiktok.com/@latinoactuaries?_t=8ZimdOHqnXy&amp;_r=1" class="fab fa-tiktok"></a></td>

                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
            </div>
        </div>
    <p>&nbsp;</p>
    <div>
            <div>
                <div>
                    <div>
                        <div style="text-align: center;">
                            <table align="center" class="reTableSelected" style="left: 252.5px; width: 164px; height: 50px;" border="0" cellspacing="0" cellpadding="0">
                                <tbody>
                                    <tr>
                                        <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                                            <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" id="Visit our website" target="_blank"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                                                </span>
                                            </p>
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                        </div>
                        <hr />
                    </div>
                </div>
            </div>
        </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <div>
            <div>
                <div>
                    <div>
                        <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
                    </div>
                </div>
            </div>
        </div>
</div>]]></description>
<pubDate>Mon, 10 Mar 2025 17:28:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: September 2024</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=681718</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=681718</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY NEWSLETTER</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>September 2024</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<p>Dear OLA Community,<br /></p>
<p>
    This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and volunteer opportunities.&nbsp;</p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at <a href="mailto:members@latinoactuaries.org">members@latinoactuaries.org</a> to receive this newsletter and other important communications!</p>
<p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a>&nbsp;if you have any questions or feedback (or for corporate sponsors and partners, any items you'd like featured in this newsletter),
    and thank you for your continued support of OLA!</p>
<p> </p>
<p><strong>Alan Ramirez</strong><br /><em>Director of Membership</em><span style="background-color: #ffff00;"><br /><em></em></span></p>
<hr />
<table class="reTableSelected" style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#UpcomingEventsAnnouncements">Upcoming Events &amp; Announcements</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Community Spotlights">Community Spotlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Volunteer Opportunities">Join the OLA Leadership Team!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Support OLA!">Support OLA!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span><br /></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>

<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="UpcomingEventsAnnouncements"><span style="color: #ffffff;"><strong>UPCOMING EVENTS &amp; Announcements</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<hr />
<address><span style="color: #f57223;"><span style="background-color: #ffffff;"><span style="font-size: 16px;"><span style="color: #000000;">We are excited to announce mixers in Chicago, NYC, Philadelphia, and Los Angeles to celebrate <strong>Hispanic Heritage Month</strong>!&nbsp;Network and connect with OLA leadership, actuarial candidates, corporate sponsors, and allies! </span></span></span></span></address>
<h4>
</h4>
<h4><span style="color: #f57223;">cHICAGO Mixer - sEPTEMBER 26</span></h4>
<p><span style="color: #f57223;"><span style="font-size: 12px;"><span style="color: #000000;"><a href="https://members.latinoactuaries.org/events/EventDetails.aspx?id=1889598">Click here to register!</a></span></span>
    </span>
</p>
<p><span style="color: #f57223;"><img alt="" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2024_hispanic_heritage_mixers/chicago_hhm_mixer_ola_2024.png" style="float: left; width: 300px; height: 300px;" /></span></p>
<p style="margin-left: 240px;">&nbsp;</p>
<p style="margin-left: 240px;">&nbsp;</p>
<p>&nbsp;</p>
<h4><span style="color: #f57223;">&nbsp;</span></h4>
<h4><span style="color: #f57223;"></span><span style="color: #f57223;">&nbsp;</span></h4>
<h4><span style="color: #f57223;">&nbsp;</span></h4>
<h4><span style="color: #f57223;">&nbsp;</span></h4>
<h4><span style="color: #f57223;">&nbsp;</span></h4>
<h4><span style="color: #f57223;"></span><span style="color: #f57223;">nyc Mixer - sEPTEMBER 30</span></h4>
<p><span style="color: #000000;"><a href="https://members.latinoactuaries.org/events/EventDetails.aspx?id=1889603">Click here to register!</a>&nbsp;</span></p>
<h4><span style="color: #f57223;"><img alt="" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2024_hispanic_heritage_mixers/nyc_hhm_mixer_ola_2024.png" style="float: left; width: 300px; height: 300px;" /></span></h4>
<p style="margin-left: 240px;">&nbsp;</p>
<p style="margin-left: 240px;">&nbsp;</p>
<p style="margin-left: 240px;">&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div>
    <h4><span style="color: #f57223;">pHILADELPHIA Mixer - oCTOBER 1</span></h4>
    <p><span style="color: #f57223;"><span style="color: #000000;"><a href="https://members.latinoactuaries.org/events/EventDetails.aspx?id=1889619">Click here to register!</a>&nbsp;</span></span>
    </p>
    <h4><span style="color: #f57223;"><img alt="" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2024_hispanic_heritage_mixers/philly_hhm_mixer_ola_2024.png" style="float: left; width: 300px; height: 300px;" /></span></h4>
    <p style="margin-left: 240px;">&nbsp;</p><br />
    <p style="margin-left: 240px;">&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <h4><span style="color: #f57223;"><span style="font-size: 20px;"><em><span style="font-size: 18px;">&nbsp;</span></em>
        </span>
        </span>
    </h4>
    <h4><span style="color: #f57223;">&nbsp;</span></h4>
    <h4><span style="color: #f57223;">lOS aNGELES Mixer - oCTOBER 10</span></h4>
    <p><span style="color: #000000;"><a href="https://members.latinoactuaries.org/events/EventDetails.aspx?id=1889606">Click here to register!</a></span></p>
    <h4><span style="color: #f57223;"><img alt="" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2024_hispanic_heritage_mixers/socal_hhm_mixer_ola_2024.png" style="float: left; width: 293px; height: 274px;" /></span></h4>
    <p style="margin-left: 240px;">&nbsp;</p>
    <p style="margin-left: 240px;">&nbsp;</p>
    <p>&nbsp;</p>
    <h4><span style="color: #f57223;"><span style="font-size: 20px;"><em><span style="font-size: 18px;">&nbsp;</span></em>
        </span>
        </span>
    </h4>
    <p><span style="color: #f57223;"><span style="font-size: 20px;"><em><span style="font-size: 18px;">&nbsp;</span></em>
        </span>
        </span>
    </p>
    <p><span style="color: #f57223;"><span style="font-size: 20px;"><em><span style="font-size: 18px;">&nbsp;</span></em>
        </span>
        </span>
    </p>
    <p><span style="color: #f57223;"><span style="font-size: 20px;"><em><span style="font-size: 18px;">&nbsp;</span></em>
        </span>
        </span>
    </p>
    <p><span style="color: #f57223;"><span style="font-size: 20px;"><em><span style="font-size: 18px;">&nbsp;</span></em>
        </span>
        </span>
    </p>
</div>

<hr />
<p><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">cca conference - travel sponsorship alert</span><span style="font-size: 26px; letter-spacing: 1px; text-transform: uppercase; font-family: Montserrat, sans-serif; color: #f57223;">!</span></p><p>OLA and the Conference of Consulting Actuaries (CCA) are sponsoring actuarial prospects (students, graduates or career changers) to attend the 2024 Conference of Consulting Actuaries Annual Meeting in Marco Island, Florida on October 27-30.&nbsp; &nbsp;This is a great opportunity to learn what consulting actuaries do, what is currently happening in the actuarial world and mostly, a great opportunity to interact with a great group of consulting actuaries!&nbsp; </p><p><br /> Deadline to apply is this Sunday, September 22.&nbsp; For more information and to apply: <a href="https://members.latinoactuaries.org/general/custom.asp?page=OLA-CCA-2024-Application-Information">https://members.latinoactuaries.org/general/custom.asp?page=OLA-CCA-2024-Application-Information</a></p><p>&nbsp;</p><p>We appreciate the CCA’s sponsorship to their annual conference.&nbsp; </p>
<p><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">&nbsp;</span></p><p><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">calls for presentations&nbsp;</span><span style="font-size: 26px; letter-spacing: 1px; text-transform: uppercase; font-family: Montserrat, sans-serif; color: #f57223;">for CAS spring meeting open now!</span></p>
<p class="MsoNormal"><span style="font-size: 14px; color: black;">The Casualty
Actuarial Society (CAS) currently has an open call for presentations for
upcoming conferences. This is a great opportunity to share your expertise with
your fellow actuaries, hone your speaking skills, and build your reputation as
a thought leader in the profession. Session proposals can be for 50-minute
informal Roundtable discussions, 60-minute Concurrent sessions, or 75-minute
General sessions.</span></p>
<p class="MsoNormal">The 2025 CAS Spring Meeting will be held May 4-7 in Toronto, Canada. <a href="https://www.casact.org/article/call-presentations-2025-cas-spring-meeting" title="https://www.casact.org/article/call-presentations-2025-cas-spring-meeting">View
the Spring Meeting Call for Presentations and submit your session proposal</a>&nbsp;by September 22nd.<br /></p>
<p><span style="font-size: 14px;">&nbsp;</span></p>
<hr />
<p><span style="font-family: Arial; font-size: 32px; color: #f57223;"><span style="letter-spacing: 1px;">OLA's 2024 Early Career Symposium</span></span>
</p>
<img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2024_ola_ecs.jpg" style="width: 400px; height: 269px; vertical-align: middle;" />
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;"></span><span style="font-size: 11pt; font-family: Aptos, sans-serif;"></span><span style="background-color: #ffffff; font-size: 11pt; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">What an event! 𝗢𝗟𝗔’𝘀 𝟮𝟬𝟮𝟰 𝗘𝗮𝗿𝗹𝘆 𝗖𝗮𝗿𝗲𝗲𝗿 𝗦𝘆𝗺𝗽𝗼𝘀𝗶𝘂𝗺 (ECS), our first solo event, took place earlier this month with 𝗼𝘃𝗲𝗿 𝟭𝟱𝟬 𝗮𝘁𝘁𝗲𝗻𝗱𝗲𝗲𝘀 and 𝗴𝗿𝗲𝗮𝘁 𝘀𝘂𝗰𝗰𝗲𝘀𝘀!</span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;"><span class="white-space-pre" style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); white-space: pre !important; line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;"> </span>
    <span style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;"><br style="box-sizing: inherit; font-family: var(--artdeco-reset-typography-font-family-sans); line-height: inherit !important;" /></span>
    <span style="background-color: #ffffff; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">The highlight of the event was our first in-person career fair, which featured 𝟯𝟬 𝗼𝗳 𝗼𝘂𝗿 𝗣𝗹𝗮𝘁𝗶𝗻𝘂𝗺 𝗮𝗻𝗱 𝗚𝗼𝗹𝗱 𝘀𝗽𝗼𝗻𝘀𝗼𝗿𝘀 and accomplished our goal of having a fair 100% focused on actuarial recruiting.</span><span class="white-space-pre" style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); white-space: pre !important; line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">
        </span>
    <span style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;"><br style="box-sizing: inherit; font-family: var(--artdeco-reset-typography-font-family-sans); line-height: inherit !important;" /></span>
    <span style="background-color: #ffffff; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">Additionally, we provided various 𝗽𝗿𝗼𝗳𝗲𝘀𝘀𝗶𝗼𝗻𝗮𝗹 𝗱𝗲𝘃𝗲𝗹𝗼𝗽𝗺𝗲𝗻𝘁 opportunities for our Latine aspiring actuaries (prospects). These included nine engaging sessions and panels featuring our event’s Premier and Visionary sponsors
                as well as networking meals that enhanced attendees’ ability to form connections throughout the event! Prospects were also able to interact on a more personal level with OLA Leaders and mentors who provided guidance on how to make the
                most of their time at the ECS altogether. Of course, prospects were also able to meet and interact with each other, sparking many lifelong friendships!</span><span class="white-space-pre" style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); white-space: pre !important; line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">
                </span>
    <span style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;"><br style="box-sizing: inherit; font-family: var(--artdeco-reset-typography-font-family-sans); line-height: inherit !important;" /></span>
    <span style="background-color: #ffffff; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">With that said, OLA is expanding to not only help Latine aspiring actuaries get into the profession, but also develop those that are already employed as actuaries. With this goal in mind, the OLA Membership team launched a 𝗰𝗿𝗲𝗮𝘁𝗶𝘃𝗲
                        𝗹𝗲𝗮𝗱𝗲𝗿𝘀𝗵𝗶𝗽 𝗽𝗿𝗼𝗴𝗿𝗮𝗺 for the OLA Leadership team at the ECS to provide ongoing opportunities that will help our leaders grow professionally and personally.</span><span class="white-space-pre" style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); white-space: pre !important; line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">
                        </span>
    <span style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;"><br style="box-sizing: inherit; font-family: var(--artdeco-reset-typography-font-family-sans); line-height: inherit !important;" /></span>
    <span style="background-color: #ffffff; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">Before wrapping up our event, we hosted our semi-annual 𝗣𝗹𝗮𝘁𝗶𝗻𝘂𝗺 𝗦𝗽𝗼𝗻𝘀𝗼𝗿𝘀 𝗥𝗼𝘂𝗻𝗱𝘁𝗮𝗯𝗹𝗲 to discuss feedback on OLA’s programs as well as our strategy for the upcoming year given the momentum we’ve experienced
                                in recent years. We appreciate your partnership, enthusiasm, and candor as we navigate this next stage of our organization’s growth.</span><span class="white-space-pre" style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); white-space: pre !important; line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">
                                </span>
    <span style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;"><br style="box-sizing: inherit; font-family: var(--artdeco-reset-typography-font-family-sans); line-height: inherit !important;" /></span>
    <span style="background-color: #ffffff; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">Finally, we gathered attended for our first-ever 𝗥𝗲𝗰𝗼𝗴𝗻𝗶𝘁𝗶𝗼𝗻 𝗗𝗶𝗻𝗻𝗲𝗿 to personally thank our Platinum and Gold sponsors for their support, recognize the contributions of our amazing volunteers, send
                                        off our outgoing Board members, and present the various scholarship awards, including the 2024-2025 Named Scholars and Cresta Award winner!</span><span class="white-space-pre" style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); white-space: pre !important; line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">
                                        </span>
    <span style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;"><br style="box-sizing: inherit; font-family: var(--artdeco-reset-typography-font-family-sans); line-height: inherit !important;" /></span>
    <span style="background-color: #ffffff; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">Given the number of leaders/volunteers involved exceeds LinkedIn’s limit for tags in a post, we will instead share some of the moments and recognitions in future posts. Follow us on Instagram and Tik Tok for
                                                more videos!</span><span class="white-space-pre" style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); white-space: pre !important; line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">
                                                </span>
    <span style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;"><br style="box-sizing: inherit; font-family: var(--artdeco-reset-typography-font-family-sans); line-height: inherit !important;" /></span>
    <span style="background-color: #ffffff; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">We can’t thank everyone enough, from those who organized this event to those who attended and trusted OLA as we organized our first symposium. Despite some doubts that we could get this done, we did
                                                        it!</span>
    <span class="white-space-pre" style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); white-space: pre !important; line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">
                       &nbsp;                                    </span><span style="box-sizing: inherit; margin: var(--artdeco-reset-base-margin-zero); padding: var(--artdeco-reset-base-padding-zero); border: var(--artdeco-reset-base-border-zero); vertical-align: var(--artdeco-reset-base-vertical-align-baseline); background-color: #ffffff; outline: var(--artdeco-reset-base-outline-zero); line-height: inherit !important; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;"><br style="box-sizing: inherit; font-family: var(--artdeco-reset-typography-font-family-sans); line-height: inherit !important;" /></span>
    <span style="background-color: #ffffff; font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Fira Sans', Ubuntu, Oxygen, 'Oxygen Sans', Cantarell, 'Droid Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Lucida Grande', Helvetica, Arial, sans-serif;">𝗦𝗲𝗲 𝘆𝗼𝘂 𝗮𝗹𝗹 𝗻𝗲𝘅𝘁 𝘆𝗲𝗮𝗿 𝗶𝗻 𝗲𝗮𝗿𝗹𝘆 𝗔𝘂𝗴𝘂𝘀𝘁 𝟮𝟬𝟮𝟱 𝗶𝗻 𝗦𝗼𝘂𝘁𝗵𝗲𝗿𝗻 𝗖𝗮𝗹𝗶𝗳𝗼𝗿𝗻𝗶𝗮!</span>
    </span>
    </span>
</p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">&nbsp;</span></p>
<p style="margin: 0in;">
</p>
<hr />
<p><em></em></p>
<h4><span style="color: #f57223;">New Career Center on OLA Membership POrtal</span></h4>
<p>Silver, Gold, Gold Plus, and Platinum Sponsors can now access OLA’s new Career Center! This job board allows corporate sponsors to post and modify their company’s job openings in real-time. Simultaneously, OLA’s prospects with real-time access to these
    openings. All postings will still be shared in OLA’s newsletters/communications, but the OLA Newsletter team will now source these postings from the Career Center.&nbsp;</p>
<p>For specific steps on how to post please check out our <em><a href="#Career Corner">Career Corner</a></em> section below. Please reach out to the OLA Career Center team at <a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a>    if you have any questions.<span style="font-size: 11pt; font-family: Arial;"></span></p>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>
<p><em></em></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Community Spotlights"><span style="color: #ffffff;"><strong>COMMUNITY SPOTLIGHTS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<p>&nbsp;</p><p><img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/gonzalo_headshot.jpg" style="border:5px solid #c00000;width: 200px; height: 252px;    float: left;" /></p>
<h4 style="box-sizing: border-box; background-color: #ffffff;">Gonzalo equihua, ASA</h4>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">Hometown</span>: Dallas, TX<br style="box-sizing: border-box;" /></p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">University</span>: University of Texas at Dallas</p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><u style="box-sizing: border-box;">OLA Involvement:</u>&nbsp;Membership Program Manager</p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">Current Position:</span>&nbsp;Health and Benefits Actuary, EY</p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;"><span style="box-sizing: border-box;">Tell us a little about yourself:</span></span>&nbsp;&nbsp;I am manager in EY's People Consulting line of business. I primarily work on strategy
    and transaction projects and serve as subject matter resource for clients as they evaluate their total rewards programs. I also help out on traditional actuarial work such as pricing and reserving.&nbsp; </p>
<p><span style="box-sizing: border-box; text-decoration-line: underline; color: #333333;">Can you share a bit about your own cultural identity?</span><span style="background-color: #ffffff; color: #333333;">&nbsp;My parents are from Michoacan, Mexico. My sisters and myself were
    born in a small town in East Texas, Mount Pleasant. I have a pretty large family and growing up, Spanish was our primary language. Every summer and holiday season, we would go to Mexico to visit family. I plan to go back this upcoming holiday season to enjoy the delicious food, great music, and rich culture.</span><br /></p>
<p style="box-sizing: border-box; margin: 0px 0px 10px; color: #333333; background-color: #ffffff;"><span style="box-sizing: border-box; text-decoration-line: underline;">What does Hispanic Heritage Month mean to you personally?</span>&nbsp;I enjoy it. I think it's great and important to recognize the Hispanic community!&nbsp;<span style="background-color: #ffffff; color: #333333;">I personally like trying out different food from Central and South America. This is a month of celebration and gives people the opportunity to learn and experience new things.&nbsp;</span>We
    have a significant footprint in the US and are important to the future of this country. However, there are still many challenges that we still face as a community - whether that be competing for corporate jobs, dealing with hate crime, having limited
    resources, etc. There's still a lot of work to be done.&nbsp;&nbsp;</p>
<div>
    <div><em><a href="https://www.linkedin.com/in/orellanadiego/ "></a><a href="https://www.linkedin.com/in/gonzaloequihua/">Click here to connect with Gonzalo on LinkedIn!</a></em><a href="https://www.linkedin.com/in/gonzaloequihua/">&nbsp; &nbsp; &nbsp;</a></div>
    <p><em><span style="font-size: large; letter-spacing: 1px; text-transform: uppercase; background-color: #ffffff; color: #c0504d;"></span></em><br /></p>
    <hr />
    <div><em>We enjoy featuring and sharing the stories of members of the Latine actuarial community! If you have a nomination for a spotlight, please ask them to fill out this&nbsp;<a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">form</a>&nbsp;with their information/headshot.</em><br /></div>
    <div>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #9f151b;">
                    <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <div>
        <p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">&nbsp;</span></p>
        <p style="margin: 0in;"><span style="font-size: 14.6667px; font-family: Aptos, sans-serif;">Looking for a new opportunity? Check out the job postings in the link below.</span></p>
        <h4 style="text-align: center;"><span style="color: #f57223;"><strong><span style="font-size: 20px;"><a href="https://members.latinoactuaries.org/networking/opening_search.asp"><span style="font-size: 20px;">Click here to search our career center for opportunities</span></a>
            </span>
            </strong>
            </span>
        </h4>
    </div>
    <div>
        <hr />
        <h4><span style="color: #f57223;">DO YOU HAVE JOB POSTINGS TO SHARE?</span></h4>
    </div>
    <div>
    </div>
    <p>Our Platinum, Gold Plus, and Gold Corporate Sponsors can now share job postings on our new Career Center portion of our OLA Membership Portal!</p>
    <p>Any member of your team who has an OLA Member Portal account associated with your company can easily post an opportunity by logging into their OLA Member Portal account and navigating to
        <a href="https://members.latinoactuaries.org/networking/">members.latinoactuaries.org/networking</a>&nbsp;to submit an opening. Please note that, when submitting the opening, you’ll want to click “No, I will tell them ‘How to Apply’ below” for
        the “Allow online applications?” option so that applicants aren’t mistakenly led to apply on our site instead of yours.
    </p>
    <p>As a reminder, Silver sponsors can only post entry-level and intern job postings on the Career Center; any postings that do not comply with this condition will not be approved on the backend.</p>
    <p>Please reach out to the OLA Career Center team at&nbsp;<a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a>&nbsp;if you have any questions.</p>
    <div>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p>&nbsp;</p>
    <div>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #f57223;">
                        <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>exam corner</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div><span style="font-style: italic; font-family: Arial; font-size: 16px;">Congratulations to all our OLA team members who have passed exams recently and special shoutout t</span><span style="font-size: medium; font-style: italic; font-family: Arial;"><span style="font-size: 16px;">o Sarah Pe<span style="background-color: #ffffff; color: #202122;">ñ</span>a
            who achieved her Fellowship through the Society of Actuaries.</span>
            </span>
        </div>
        <div>
            <img alt="DiegoOrellana_Headshot" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2024_hispanic_heritage_mixers/sarah_pena_fellowship.jpg" style="color: #f57223; font-family: Montserrat, sans-serif; font-size: 26px; letter-spacing: 1px; text-transform: uppercase; border: 5px solid #9f151b; width: 120px; height: 202px; margin-top: 5px; margin-right: 15px; margin-bottom: 5px; float: left;" />
            <p><span style="font-size: medium; font-style: italic; background-color: #ffffff;"><span style="font-family: Arial; color: #000000;"><span style="font-size: 16px;">&nbsp;</span></span>
                </span>

            </p>
        </div>
        <p>&nbsp;</p>
        <ul>
            <li>Sarah&nbsp;Peña, FSA, MAAA</li>
        </ul>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>Recent exam passers:<br /></p>
        <ul>
            <li>Patrick Mazzella - FAM-L</li>
            <li>Paula Villafane -&nbsp;FAM-L</li><li>Matthew Vazquez - SRM<br /></li>
            
        </ul>
        <div>
            <table style="width: 660px; height: 66px;" class="reTableSelected">
                <tbody>
                    <tr>
                        <td style="background-color: #f57223;">
                            <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>Join the ola leadership team!</strong></span></a></h3>
                        </td>
                    </tr>
                </tbody>
            </table>
            <div>
                <h4>VOLUNTEER WITH OLA!</h4>
                <p>We are excited to announce the launch of our 2025 OLA Board of Directors and Program Manager applications!<br /> <span></span><br /> <span style="font-family: 'Cambria Math';">𝗕𝗼𝗮𝗿𝗱</span> <span style="font-family: 'Cambria Math';">𝗼𝗳</span> <span style="font-family: 'Cambria Math';">𝗗𝗶𝗿𝗲𝗰𝘁𝗼𝗿𝘀</span>: OLA is looking for credentialed Latine actuaries who will help further OLA’s mission by serving as a Board member. In addition to voting on financial and strategic decisions, the Board actively engages in planning and managing the workstreams assigned to their designated PMs, assistants, and/or volunteers in order to ensure the successful execution of these strategic plans. The Board also acts as the main representation of the organization when engaging with various OLA stakeholders.<br /> <span></span><br /> The following positions are open and commence January 1, 2025, for a three-year term: <br /> - Director of Corporate Engagement<br /> - Director of Early Career Development<br /> - Director of Marketing<br /> <span></span><br /> If you are interested in volunteering for a Board position, follow this link for more information and to apply: <br /> <a href="https://lnkd.in/ggT73kym" target="_self">https://lnkd.in/ggT73kym</a><br /> <span></span><br /> <span style="font-family: 'Cambria Math';">𝗣𝗿𝗼𝗴𝗿𝗮𝗺</span> <span style="font-family: 'Cambria Math';">𝗠𝗮𝗻𝗮𝗴𝗲𝗿𝘀</span> (<span style="font-family: 'Cambria Math';">𝗣𝗠𝘀</span>):&nbsp;There are so many programs, new initiatives, and activities going on where we can use your help! The OLA PMs assist the Board of Directors and take ownership over certain programs, events, and other initiatives while also assisting the Board in overseeing the Professional Committees (made up of professional volunteers) and Student Committees (made up of RLP students) in order to delegate various workstreams in an efficient manner. <br /> <span></span><br /> There are many PM opportunities, all of which are described in more detail in the application. There might be a position that interests you!<br /> <span></span><br /> For more information and to apply, follow this link: <a href="https://lnkd.in/gyUCbSSS" target="_self">https://lnkd.in/gyUCbSSS</a><br /> <br /> <span style="font-family: 'Cambria Math';">𝗗𝗲𝗮𝗱𝗹𝗶𝗻𝗲</span>: Note the deadline is Monday, September 30, 2024, at 11:59 P.M. ET<br /> <span></span><br /> We are all looking forward to working with you!<br /> <span></span><br /> Questions?&nbsp;Email us at <a href="mailto:info@latinoactuaries.org" target="_self">info@latinoactuaries.org</a>&nbsp;</p></div>
        </div>
        <div>
        </div>
        <p>&nbsp;</p>
        <div>
            <div>
            </div>
            <div>
                <hr />
            </div>
        </div>
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <p><em>&nbsp;</em></p>
        <div>
            <div>
                <table style="width: 660px; height: 66px;">
                    <tbody>
                        <tr>
                            <td style="background-color: #9f151b;">
                                <h3 style="text-align: center;"><a id="Support OLA!"><span style="color: #ffffff;"><strong>Support OLA!</strong></span></a></h3>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <h4><span style="color: #f57223;">CORPORATE SPONSORSHIPS</span></h4>
            </div>
        </div>
        <p>We have different sponsorship tiers that can fit your company's size and strategy! If you are interested in sponsoring OLA, please e-mail us at <a href="mailto:info@latinoactuaries.org">info@latinoactuaries.org</a>. We can schedule a call and
            provide information you need or answer your questions.</p>
        <div>
            <div>
                <hr />
                <h4><span style="color: #f57223;">Individual Donations</span></h4>
            </div>
        </div>
        <p>OLA supports our Latine actuarial prospects (students, career changers, etc.) via scholarship programs, exam materials and registration reimbursements, and our travel program that sends prospects to OLA's Early Career Symposium (ECS) and industry
            conferences to help them network and securo jobs at the on-site career fairs.</p>
        <p>Individual donations of any amount can go a long way in helping us sustain these programs, so please click <a href="https://www.latinoactuaries.org/donate/">here</a> if interested in donating!</p>
        <div>
            <div>
                <hr />
                <div>
                </div>
            </div>
        </div>
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <p><em>&nbsp;</em></p>
        <div>
            <div>
                <div>
                    <table style="width: 660px; height: 66px;">
                        <tbody>
                            <tr>
                                <td style="background-color: #9f151b;">
                                    <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
                    <table align="center" style="left: 215.5px; width: 180px; height: 50px;">
                        <tbody>
                            <tr>
                                <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                                <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                                <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
                                <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.tiktok.com/@latinoactuaries?_t=8ZimdOHqnXy&amp;_r=1" class="fab fa-tiktok"></a></td>

                            </tr>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
        <p>&nbsp;</p>
        <div>
            <div>
                <div>
                    <div style="text-align: center;">
                        <table align="center" class="reTableSelected" style="left: 252.5px; width: 164px; height: 50px;" border="0" cellspacing="0" cellpadding="0">
                            <tbody>
                                <tr>
                                    <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                                        <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" id="Visit our website" target="_blank"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                                            </span>
                                        </p>
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                    <hr />
                </div>
            </div>
        </div>
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <div>
            <div>
                <div>
                    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
                </div>
            </div>
        </div>
    </div>
</div>]]></description>
<pubDate>Sat, 21 Sep 2024 03:06:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: June 2024</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=672998</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=672998</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY NEWSLETTER</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>June 2024</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<p>Dear OLA Community,<br /></p>
<p>
    This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and volunteer opportunities. </p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at <a href="mailto:members@latinoactuaries.org">members@latinoactuaries.org</a> to receive this newsletter and other important communications!</p>
<p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a> if you have any questions or feedback (or for corporate sponsors and partners, any items you'd like featured in this newsletter),
    and thank you for your continued support of OLA!</p>
<p> </p>
<p><strong>Alan Ramirez</strong><br /><em>Director of Membership</em><span style="background-color: #ffff00;"><br /><em></em></span></p>
<hr />
<table class="reTableSelected" style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#UpcomingEventsAnnouncements">Upcoming Events & Announcements</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Community Spotlights">Community Spotlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Volunteer Opportunities">Volunteer Opportunities</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Support OLA!">Support OLA!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span><br /></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em> </em></p>

<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="UpcomingEventsAnnouncements"><span style="color: #ffffff;"><strong>UPCOMING EVENTS & Announcements</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<hr />
<h4><span style="color: #f57223;">Phoenix Mixer - collaboration with cads</span></h4>
<h4><span style="color: #f57223;"><img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2024_may/1716562416674.png" style="float: left; width: 300px; height: 300px;" /></span></h4>
<p style="margin-left: 240px;"> </p>
<p style="margin-left: 240px;">We are excited to co-host a networking event with the Casualty Actuaries of Desert States (CADS).</p>
<p style="margin-left: 240px;">Please join us on <strong>Thursday, June 13</strong>, at Fate Brewing Company in Tempe, AZ.</p>
<p style="margin-left: 240px;">Network and connect with OLA and CADS leadership, actuarial candidates, corporate sponsors, and allies! We are expecting over 20 actuaries and students will be there!</p>
<p style="margin-left: 240px;">A variety of drinks and appetizers will be served. <a href="https://members.latinoactuaries.org/events/EventDetails.aspx?id=1862716">Capacity is limited, so don't wait to RSVP!</a> See you there!</p>
<p> </p>
<p> </p>
<p> </p>
<div>
    <h4><span style="color: #f57223;"><span style="font-size: 20px;"><em><span style="font-size: 18px;">Upcoming Mixers - september/october 2024 </span></em>
        </span>
        </span>
    </h4>
</div>
<p>Our next networking events will be in the Los Angeles, Chicago, New York, and Philadelphia this Fall to celebrate <strong>Hispanic Heritage Month</strong>! Be sure to follow us on LinkedIn for the official announcement.</p>

<hr /><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">RECAP: OLA Mixer - Dallas</span><a href="https://members.latinoactuaries.org/RadEditor2.aspx?fn=txt_body&group=&ib=1&ae=1&em=0&dto=0¯os=#"
    title="Hyperlink Manager" class="reTool reLinkManager reToolIcon" unselectable="on"></a>
<h4><span style="color: #f57223;"><a href="https://members.latinoactuaries.org/events/EventDetails.aspx?id=1761235&group="><img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2024_may/1713037609954.png" style="float: left; width: 300px; height: 250px;" /></a></span></h4>
<p> </p>
<p>On April 11, OLA members and allies from across Texas joined us for our first mixer in 2024 in Dallas, TX!</p>It was amazing to see the growing OLA community from actuarial students to credentialed professionals. We had a great time connecting with new
members, corporate sponsors, and allies.
<p> </p>
<p> </p>
<p> </p>
<p> </p><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;"></span>
<hr /><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">OLA's early career symposium (ECS)</span>
<p>OLA is excited to announce our new offering for 2024: OLA's Early Career Symposium (ECS)! </p>
<p>
    The ECS, taking place Sunday, August 4 - Monday, August 5, 2024, in Las Vegas, NV (concurrently with the 2024 ALPFA Convention) will bring together a record-breaking 60 OLA prospects (college/university students, recent graduates, and career-changers),
    OLA Leaders (Board of Directors, Program Managers, and Committees), and Corporate Sponsors.  This will promote enhanced in-person networking opportunities, including OLA's familiar Mixer format, OLA's first in-person career fair, networking meals,
    and breakout panels/sessions. Following the success of OLA’s Rising Leaders Program (RLP) Inaugural Conference this past August, we are offering the ECS as a way to expand our programming to more of our prospects as well as increase touch points with
    sponsors. ECS registration is open until capacity is reached, so don't wait to purchase the ECS sponsorship package that fits your needs! Note that almost all annual sponsorship packages include some level of an ECS sponsorship package.</p>
<p>In you are attending the ECS, we have a few gentle reminders to note: </p>
<ul>
    <li>As you know, we are currently past the general attendee registration deadline for the ECS. If you have any changes to the registrations, please reach out to us as soon as possible. </li>
</ul>
<ul>
    <li> If you plan to reserve your hotel using the OLA ECS hotel block, we ask that you do so by <strong>Friday, June 14, at 11:59 P.M. ET</strong>. Due to limited capacity, we will try our best but cannot guarantee any reservations booked past the deadline. </li>
</ul>
<p><span style="font-size: 14px; font-family: 'Open Sans';"><span style="font-size: 14px; font-family: 'Open Sans';"><span style="font-size: 10.5pt;"> </span></span>
    </span>
</p>
<hr />
<p><span style="letter-spacing: 0.75pt; font-size: 19.5pt; font-family: Montserrat; color: #f57223;"><span style="font-family: Arial; font-size: 32px; color: #f57223;">ANNOUNCEMENTS REGARDING OLA'S 2024 CAREER FAIRS</span></span>
</p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;"> </span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">In
addition to the ECS in-person Career Fair, OLA is hosting its <b>Virtual Career
Fair</b> on <b>Tuesday, August 27, 2024</b>, from <b>2 PM – 6 PM ET</b>.  <span style="font-size: 11pt; font-family: Aptos, sans-serif;">We have some exciting ECS updates to share in two
weeks, including more details on the Career Fair.</span></span>
</p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;"> </span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">Given
that Gold, Gold Plus, and Platinum Sponsors have the option to utilize their
Career Fair benefit virtually or in-person (at the ECS), registration for the
Virtual Career Fair will open first to Silver and Career Fair Only sponsors as
they are limited to the virtual option. We strongly encourage Gold, Gold Plus,
and Platinum Sponsors to choose the in-person Career Fair as capacity for both
career fair formats is limited. <u>Commitment and payment for a 2024 OLA Annual
Sponsorship package is required by June 30, 2024,</u> in order to secure your
company’s space in the Virtual Career Fair.</span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;"> </span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">Please
reference the <a href="https://cdn.ymaws.com/members.latinoactuaries.org/resource/resmgr/corpengagement/2024/ola_sponsorship_tiers_2024_f.pdf" target="_blank"><span style="color: #0563c1;">2024 OLA Sponsorship Tiers</span></a> document on the OLA Member
    Portal’s Corporate Sponsors Content Hub for more information. We look forward to a smooth and productive recruiting season!</span>
</p>
<hr />
<p><em></em></p>
<h4><span style="color: #f57223;">New Career Center on OLA Membership POrtal</span></h4>
<p>Silver, Gold, Gold Plus, and Platinum Sponsors can now access OLA’s new Career Center! This new job board will allow corporate sponsors to post and modify their company’s job openings in real-time. Simultaneously, OLA’s prospects with real-time access
    to these openings. All postings will still be shared in OLA’s newsletters/communications, but the OLA Newsletter team will now source these postings from the Career Center. </p>
<p>For specific steps on how to post please check out our <em><a href="#Career Corner">Career Corner</a></em> section below. Please reach out to the OLA Career Center team at <a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a>    if you have any questions.<span style="font-size: 11pt; font-family: Arial;"></span></p>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em> </em></p>
<p><em></em></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Community Spotlights"><span style="color: #ffffff;"><strong>COMMUNITY SPOTLIGHTS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<div>
</div>
<div><span style="text-decoration-line: underline;"></span>
    <h4><span style="color: #f57223;"><img style="border: 5px solid #9f151b; border-image: none; width: 250px; height: 334px; margin-top: 5px; margin-right: 15px; margin-bottom: 5px; float: left;" alt="DiegoOrellana_Headshot" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/headshots/sarah_pena_ola_headshot.jpg" /></span></h4>
    <h4>Sarah peÑa, ASA, MAAA</h4>
    <p><span style="text-decoration-line: underline;">Hometown</span>: Las Vegas, NV<br /></p>
    <p><span style="text-decoration-line: underline;">University</span>: University of California, Los Angeles</p>
    <p><u>OLA Involvement:</u> Treasury Program Manager</p>
    <p><span style="text-decoration: underline;">Current Position:</span> Actuarial Consultant, Nationwide Financial</p>
    <p><span style="text-decoration-line: underline;"><span style="text-decoration: underline;">Tell us a little about yourself:</span></span>  I am an annuities actuary at Nationwide, currently working on the Annuities Valuation team. I’m originally from
        Las Vegas, NV and moved to Columbus, OH to begin working at Nationwide. I recently transitioned to remote work with my move to NYC (I told myself I could fulfill my dream of moving here when I passed my last actuarial exam!). My newly found free
        time will be spent exploring the city! Some of my favorite activities include running through the parks and watching theatre performances.</p>
    <p><span style="text-decoration-line: underline;">How has OLA impacted your career? </span>I would not be in my current role without OLA. I joined OLA as a student back in 2017 and landed my first summer internship with Nationwide at the 2017 ALPFA Convention.
        OLA was instrumental in helping prepare my resume and practice for interviews so I would be successful at the career fair. I’ll forever be grateful for the guidance that the OLA leaders have provided me, and I am excited to connect with more amazing
        Latino actuarial professionals as the organization continues to grow. </p>
    <p><span style="text-decoration: underline;">What is your favorite thing about being an actuary?</span> My favorite thing about this career is that I am always learning. One can never be bored as an actuary since there is always another challenge one
        can take on. The exams of course offer great opportunities to learn interesting material, but I think on the job is where learning can feel the most rewarding. I was especially excited to join the Annuity Valuation team because I knew it would
        require me to fully master product dynamics and reserve methodologies as well as understand how managing our liabilities corresponds to the methodology of pricing derivative securities. Getting these concepts to click is extremely satisfying! </p>
    <div><em><a href="https://www.linkedin.com/in/orellanadiego/ "></a><a href="https://www.linkedin.com/in/sarah-pe%C3%B1a-asa-maaa-198055126/">Click here to connect with Sarah on LinkedIn!</a></em></div>
    <hr />
    <div><em>We enjoy featuring and sharing the stories of members of the Latine actuarial community! If you have a nomination for a spotlight, please ask them to fill out this <a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">form</a> with their information/headshot.</em><br
        /></div>
    <div>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em> </em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #9f151b;">
                    <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <div>
        <p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;"> </span></p>
        <p style="margin: 0in;"><span style="font-size: 14.6667px; font-family: Aptos, sans-serif;">Looking for a new opportunity? Check out the job postings added last month from A<strong>meriHealth Caritas</strong>,<strong> Nationwide Insurance</strong>, and <strong>CNA Insurance</strong>.</span></p>
        <h4 style="text-align: center;"><span style="color: #f57223;"><strong><span style="font-size: 20px;"><a href="https://members.latinoactuaries.org/networking/opening_search.asp"><span style="font-size: 20px;">Click here to search our career center for opportunities</span></a>
            </span>
            </strong>
            </span>
        </h4>
    </div>
    <div>
        <hr />
        <h4><span style="color: #f57223;">DO YOU HAVE JOB POSTINGS TO SHARE?</span></h4>
    </div>
    <div>
    </div>
    <p>Our Platinum, Gold Plus, and Gold Corporate Sponsors can now share job postings on our new Career Center portion of our OLA Membership Portal!</p>
    <p>Any member of your team who has an OLA Member Portal account associated with your company can easily post an opportunity by logging into their OLA Member Portal account and navigating to <a href="https://members.latinoactuaries.org/networking/">members.latinoactuaries.org/networking</a> to
        submit an opening. Please note that, when submitting the opening, you’ll want to click “No, I will tell them ‘How to Apply’ below” for the “Allow online applications?” option so that applicants aren’t mistakenly led to apply on our site instead
        of yours.</p>
    <p>As a reminder, Silver sponsors can only post entry-level and intern job postings on the Career Center; any postings that do not comply with this condition will not be approved on the backend.</p>
    <p>Please reach out to the OLA Career Center team at <a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a> if you have any questions.</p>
    <div>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em> </em></p>
    <div>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #f57223;">
                        <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>VOLUNTEER OPPORTUNITIES</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div>

            <div>
                <hr />
            </div>
            <h4><span style="color: #9f151b;">Sign-up to volunteer with ola academy!</span></h4>
            <p>Do you want to help shape the next generation of Latine actuarial talent? Volunteer for OLA Academy (OLAA) as an OLAA Coordinator (mentor), Resume Reviewer, and/or Mock Interviewer!</p>
            <p>OLA Academy, OLA's signature program for aspiring actuaries, is a virtual program that helps prospects (aspiring actuaries who are college/university students, recent graduates, and/or career-changers) navigate the entry-level job search process.
                OLAA provides one-on-one mentorship as well as training on resume writing, interviewing, and more!</p>
            <p>The links below contain the expectations, estimated timelines, and interest forms for each respective opportunity. Please fill out as many or as few as you'd like! <i>Note that you must be signed into your OLA Member Portal account before clicking on the links in order to be directed to the correct page.</i></p>
            <ul style="list-style-type: disc;">
                <li><b><span>OLA Academy (OLAA) Coordinator</span></b><span>: <a href="https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fmembers.latinoactuaries.org%2Fpage%2FOLAA-Coordinator-Interest-Form&data=05%7C02%7CGonzalo.Equihua1%40ey.com%7C150822b37b334ccf9a8408dc8a69e9e7%7C5b973f9977df4bebb27daa0c70b8482c%7C0%7C0%7C638537434751046951%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&sdata=MEwG9%2FFC1t6vBWw2%2B%2BNf5VzfwUGq7G0uxKaCfDUzFPs%3D&reserved=0">https://members.latinoactuaries.org/page/OLAA-Coordinator-Interest-Form</a></span></li>
            </ul>
            <ul style="list-style-type: disc;">
                <ul style="list-style-type: circle;">
                    <li><span>Coordinators support, guide and mentor around five to ten prospects in the same class cohort for an average of five to seven months.</span></li>
                </ul>
            </ul>
            <ul style="list-style-type: disc;">
                <li><b><span>Resume Reviewer</span></b><span>: <a href="https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fmembers.latinoactuaries.org%2Fpage%2FOLAA-Resume-Review-Volunteer-Interest-Form&data=05%7C02%7CGonzalo.Equihua1%40ey.com%7C150822b37b334ccf9a8408dc8a69e9e7%7C5b973f9977df4bebb27daa0c70b8482c%7C0%7C0%7C638537434751054704%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&sdata=b63amq1KhrxRGYVV2%2BZVpEV%2BshQopR7cD1Yb3ad%2FhPA%3D&reserved=0">https://members.latinoactuaries.org/page/OLAA-Resume-Review-Volunteer-Interest-Form</a></span></li>
            </ul>
            <ul style="list-style-type: disc;">
                <ul style="list-style-type: circle;">
                    <li><span>These volunteers review resumes used to find actuarial internships and entry-level positions by helping prospects clearly show what they have achieved and why they would be great hires! Resume reviewers can assist one or more prospects, based on availability.</span></li>
                </ul>
            </ul>
            <ul style="list-style-type: disc;">
                <li><b><span>Mock Interviewer</span></b><span>: <a href="https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fmembers.latinoactuaries.org%2Fpage%2FOLAA-Mock-Interview-Volunteer-Interest-Form&data=05%7C02%7CGonzalo.Equihua1%40ey.com%7C150822b37b334ccf9a8408dc8a69e9e7%7C5b973f9977df4bebb27daa0c70b8482c%7C0%7C0%7C638537434751060100%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&sdata=AYrHQneSap%2B6ClFix3%2BDXfodShT1lqtNk5Cvgy4bVJ8%3D&reserved=0">https://members.latinoactuaries.org/page/OLAA-Mock-Interview-Volunteer-Interest-Form</a></span></li>
            </ul>
            <ul style="list-style-type: disc;">
                <ul style="list-style-type: circle;">
                    <li><span>Mock interviewers coach students for real internship or full-time interviews. Some prospects have never had an interview, so help us increase their interview experience and confidence! Volunteers can interview one or more prospects, depending on availability.</span></li>
                    <li style="color: red;"><i><span>NOTE: As of 5/20/2024, we are in <u>high need of mock interviewers</u> who can help prepare Named Scholarship applicants with interviews for the Summer 2025 internship cycle <u>by the middle of June</u>. Please indicate on your interest form if you are available to help with this effort!</span></i></li>
                </ul>
            </ul>
            <p>Please email us at <a href="mailto:academy@latinoactuaries.org">academy@latinoactuaries.org</a> if you have any questions.</p>
            <hr />
            <h4>VOLUNTEER WITH OLA!</h4>
            <div>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests! If you do not already have an OLA Member Portal account, you can click <a href="https://members.latinoactuaries.org/general/register_member_type.asp?">here</a> to
                register.
            </div>
            <div> </div>
            <div>Check-out our Volunteer page at <a href="https://www.latinoactuaries.org/volunteer/">https://www.latinoactuaries.org/volunteer/</a> for more details on volunteer opportunities, and contact us at <a href="mailto:membership@latinoactuaries.org">membership@latinoactuaries.org</a> for
                more information!</div>
        </div>
    </div>
    <div>
    </div>
    <p> </p>
    <div>
        <div>
        </div>
        <div>
            <hr />
        </div>
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em> </em></p>
    <div>
        <div>
            <table style="width: 660px; height: 66px;">
                <tbody>
                    <tr>
                        <td style="background-color: #9f151b;">
                            <h3 style="text-align: center;"><a id="Support OLA!"><span style="color: #ffffff;"><strong>Support OLA!</strong></span></a></h3>
                        </td>
                    </tr>
                </tbody>
            </table>
            <h4><span style="color: #f57223;">CORPORATE SPONSORSHIPS</span></h4>
        </div>
    </div>
    <p>We have different sponsorship tiers that can fit your company's size and strategy! If you are interested in sponsoring OLA, please e-mail us at <a href="mailto:info@latinoactuaries.org">info@latinoactuaries.org</a>. We can schedule a call and provide
        information you need or answer your questions.</p>
    <div>
        <div>
            <hr />
            <h4><span style="color: #f57223;">Individual Donations</span></h4>
        </div>
    </div>
    <p>OLA supports our Latine actuarial prospects (students, career changers, etc.) via scholarship programs, exam materials and registration reimbursements, and our travel program that sends prospects to OLA's Early Career Symposium (ECS) and industry
        conferences to help them network and securo jobs at the on-site career fairs.</p>
    <p>Individual donations of any amount can go a long way in helping us sustain these programs, so please click <a href="https://www.latinoactuaries.org/donate/">here</a> if interested in donating!</p>
    <div>
        <div>
            <hr />
            <div>
            </div>
        </div>
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em> </em></p>
    <div>
        <div>
            <div>
                <table style="width: 660px; height: 66px;">
                    <tbody>
                        <tr>
                            <td style="background-color: #9f151b;">
                                <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
                <table align="center" style="left: 215.5px; width: 180px; height: 50px;">
                    <tbody>
                        <tr>
                            <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                            <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                            <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
                            <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.tiktok.com/@latinoactuaries?_t=8ZimdOHqnXy&_r=1" class="fab fa-tiktok"></a></td>

                        </tr>
                    </tbody>
                </table>
            </div>
        </div>
    </div>
    <p> </p>
    <div>
        <div>
            <div>
                <div style="text-align: center;">
                    <table align="center" class="reTableSelected" style="left: 252.5px; width: 164px; height: 50px;" border="0" cellspacing="0" cellpadding="0">
                        <tbody>
                            <tr>
                                <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                                    <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" id="Visit our website" target="_blank"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                                        </span>
                                    </p>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                </div>
                <hr />
            </div>
        </div>
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <div>
        <div>
            <div>
                <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
            </div>
        </div>
    </div>
</div>]]></description>
<pubDate>Tue, 21 May 2024 03:02:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: March 2024</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=664604</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=664604</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY NEWSLETTER</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>March 2024</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<p>Dear OLA Community,<br /></p>
<p>
    This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and volunteer opportunities.&nbsp;</p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at <a href="mailto:members@latinoactuaries.org">members@latinoactuaries.org</a> to receive this newsletter and other important communications!</p>
<p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a>&nbsp;if you have any questions or feedback (or for corporate sponsors and partners, any items you'd like featured in this newsletter),
    and thank you for your continued support of OLA!</p>
<p> </p>
<p><strong>Alan Ramirez</strong><br /><em>Director of Membership</em><span style="background-color: #ffff00;"><br /><em></em></span></p>
<hr />
<table class="reTableSelected" style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#UpcomingEventsAnnouncements">Upcoming Events &amp; Announcements</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Community Spotlights">Community Spotlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Volunteer Opportunities">Volunteer Opportunities</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Support OLA!">Support OLA!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span><br /></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>

<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="UpcomingEventsAnnouncements"><span style="color: #ffffff;"><strong>UPCOMING EVENTS &amp; Announcements</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<hr />
<h4><span style="color: #f57223;">OLA NYC Mixer: meet the ola leadership team!</span></h4>
<h4><span style="color: #f57223;"><img style="width: 300px; height: 300px; margin-top: 5px; margin-right: 15px; margin-bottom: 5px; float: left;" alt="NYC Collage" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2024_march/new_york_city_jan’_2024.png" /></span></h4>
<p>On January 25, the Organization of Latino Actuaries hosted the <strong>OLA NYC Mixer: Meet the OLA Leadership Team!</strong> It was a great&nbsp;opportunity to connect with OLA members, corporate sponsors, allies, and to meet&nbsp;the OLA Leadership Team in New
    York City.&nbsp;This was part of the in-person 2024 OLA Annual Leadership Meeting, which exceeded all of our expectations! </p>
<p>The OLA Leadership Meeting broke records with all 28 OLA Leaders attending in-person in NYC!&nbsp; OLA's President, Marcela Granados, and President-Elect, Anthony Lucero, shared OLA's evolving mission and vision to continue building the amazing work with students
    while placing a stronger emphasis on our pipeline development and Latine leadership development/mentorship efforts.</p>
<p>Special thanks to <strong>New York Life Insurance</strong>, Platinum Sponsor of OLA, for hosting OLA's Leadership meeting on January 25, as well as <strong>Databricks</strong> for hosting us on January 26 and 27.<br /></p>
<p>New York City is the place to see everything, including taking part in some of the world's most famous events.&nbsp;In the month of September, this&nbsp;vibrant city honors the community and influence of Hispanic citizens through&nbsp;events like the NY Latino Film
    Festival, the Hispanic Day Parade, and the Mexican Independence Day Parade, among other wonderful events.</p>
<p>We look forward to meeting up again!</p>
<div><em><a href="https://www.linkedin.com/posts/latinoactuaries_2024-leadership-meeting-ola-activity-7158235235074154496-PtSl/?utm_source=share&amp;utm_medium=member_desktop">Click here to see more about this event on LinkedIn!</a></em></div>
<div>&nbsp;</div>

<hr /><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">
    OLA Mixer - Dallas</span><a href="https://members.latinoactuaries.org/RadEditor2.aspx?fn=txt_body&amp;group=&amp;ib=1&amp;ae=1&amp;em=0&amp;dto=0¯os=#" title="Hyperlink Manager" class="reTool reLinkManager reToolIcon" unselectable="on"></a>
<h4><span style="color: #f57223;"><a href="https://members.latinoactuaries.org/events/EventDetails.aspx?id=1761235&amp;group="><img style="width: 300px; height: 300px; margin-top: 5px; margin-right: 15px; margin-bottom: 5px; float: left;" alt="Mixer" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/mixer_2024_dallas_rev.png" /></a></span></h4>
<p>&nbsp;</p>
<p>Please join us on Thursday, April 11, at Dot's Hop House &amp; Cocktail Courtyard in Dallas, Texas.
</p>
<p>
    Network and connect with OLA leadership, actuarial candidates, corporate sponsors, and allies! Over 30 Latine actuaries will be there!
</p>
<p>
    A variety of drinks and appetizers will be served.

    <a href="https://members.latinoactuaries.org/event/DFW-OLA-Mixer-2024-04">Capacity is limited, so don't wait to RSVP!</a> See you there!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p><p>&nbsp;</p><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;"></span>
<hr /><span style="text-transform: uppercase; letter-spacing: 1px; font-size: 26px; font-family: Montserrat, sans-serif; color: #f57223;">OLA's early career symposium (ECS)</span>
<p><span style="font-size: 14px; font-family: 'Open Sans';">OLA is excited to announce our new offering for 2024: OLA's Early Career Symposium (ECS)! </span></p>
<p><span style="font-size: 14px; font-family: 'Open Sans';"><span style="font-size: 14px; font-family: 'Open Sans';"><span style="font-size: 10.5pt;">The ECS, taking place&nbsp;<b>Sunday, August 4 - Monday, August 5, 2024, in&nbsp;Las Vegas, NV</b>&nbsp;(concurrently with the 2024 ALPFA Convention) will bring together <b>a&nbsp;record-breaking 60 OLA prospects</b>&nbsp;(college/university students, recent graduates, and career-changers), OLA Leaders (Board of Directors, Program Managers, and Committees), and Corporate Sponsors.&nbsp;&nbsp;This will promote&nbsp;enhanced&nbsp;<b>in-person</b>&nbsp;networking opportunities, including OLA's familiar Mixer format, OLA's first&nbsp;<b>in-person&nbsp;career&nbsp;fair</b>, networking meals, and breakout panels/sessions. Following the success of OLA’s Rising Leaders Program (RLP) Inaugural Conference this past August, we are offering the ECS as a way to expand our programming to&nbsp;more of our&nbsp;prospects as well as increase touch points with sponsors. ECS registration is open until capacity is reached, so don't wait to purchase the ECS sponsorship package that fits your needs! Note that almost all annual sponsorship packages include some level of an ECS sponsorship package.</span></span>
    </span>
</p>
<hr />
<p><span style="letter-spacing: 0.75pt; font-size: 19.5pt; font-family: Montserrat; color: #f57223;"><span style="font-family: Arial; font-size: 32px; color: #f57223;">ANNOUNCEMENTS REGARDING OLA'S 2024 CAREER FAIRS</span></span>
</p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">OLA
is excited to announce that registration for our <b>Early Career Symposium
(ECS) in-person Career Fair</b> taking place on <b>Monday, August 5</b>, in <b>Las
Vegas, NV</b>, has opened! OLA is sponsoring travel for <b>60 aspiring Latine
actuaries</b> looking for both internships and full-time roles, so don’t miss
out! As a reminder, <u>commitment and payment for a 2024 OLA Annual Sponsorship
package is required by April 30, 2024</u>, in order to receive the ECS event
registration link in time to secure your company’s table at the ECS Career
Fair.</span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">&nbsp;</span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">Furthermore,
ECS event registration for all attendees will close on May 31, 2024.&nbsp;<u>In
the event the number of committed and paid sponsors exceeds in-person career
fair capacity prior to April 30</u>, priority will be given to companies based
on the order in which they complete sponsorship payment and register
representatives to the event (therefore confirming participation). Sponsors
that are not able to secure their space for the in-person Career Fair will be
asked to attend the Virtual Career Fair later in August instead.</span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">&nbsp;</span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">We
are quickly reaching capacity for this in-person Career Fair now that
registration has opened, so please email the OLA Corporate Engagement team at <a><span style="color: #000000;">corpengagement@latinoactuaries.org</span></a>
    to discuss your 2024 OLA Annual Sponsorship package and/or inquire regarding your payment status.</span>
</p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">&nbsp;</span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">In
addition to the ECS in-person Career Fair, OLA is hosting its <b>Virtual Career
Fair</b> on <b>Tuesday, August 27, 2024</b>, from <b>2 PM – 6 PM ET</b>.
Information on how to sign-up will be published in late Spring 2024.</span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">&nbsp;</span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">Given
that Gold, Gold Plus, and Platinum Sponsors have the option to utilize their
Career Fair benefit virtually or in-person (at the ECS), registration for the
Virtual Career Fair will open first to Silver and Career Fair Only sponsors as
they are limited to the virtual option. We strongly encourage Gold, Gold Plus,
and Platinum Sponsors to choose the in-person Career Fair as capacity for both
career fair formats is limited. <u>Commitment and payment for a 2024 OLA Annual
Sponsorship package is required by June 30, 2024,</u> in order to secure your
company’s space in the Virtual Career Fair.</span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">&nbsp;</span></p>
<p style="margin: 0in;"><span style="font-size: 11pt; font-family: Aptos, sans-serif;">Please
reference the&nbsp;<a href="https://cdn.ymaws.com/members.latinoactuaries.org/resource/resmgr/corpengagement/2024/ola_sponsorship_tiers_2024_f.pdf" target="_blank"><span style="color: #0563c1;">2024 OLA Sponsorship Tiers</span></a> document on the OLA Member
    Portal’s Corporate Sponsors Content Hub for more information. We look forward to a smooth and productive recruiting season!</span>
</p>
<hr />
<p><em></em></p>
<h4><span style="color: #f57223;">New Career Center on OLA Membership POrtal</span></h4>
<p>Silver, Gold, Gold Plus, and Platinum Sponsors can now access OLA’s new Career Center! This new job board will allow corporate sponsors to post and modify their company’s job openings in real-time. Simultaneously, OLA’s prospects with real-time access
    to these openings. All postings will still be shared in OLA’s newsletters/communications, but the OLA Newsletter team will now source these postings from the Career Center.&nbsp;</p>
<p>For specific steps on how to post please check out our <em><a href="#Career Corner">Career Corner</a></em> section below. Please reach out to the OLA Career Center team at <a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a>    if you have any questions.
</p>
<hr />
<h4><span style="color: #f57223;">CAS Opportunity</span></h4>
<h4><span style="color: #f57223;"><img style="width: 150px; height: 131px; margin-top: 5px; margin-right: 15px; margin-bottom: 5px; float: left;" alt="CAS Logo" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/cas_logo.png" /></span></h4>
<p><strong><span style="color: #9f151b;">Call for Presentations for CAS Annual Meeting AND Casualty Loss Reserve Seminar</span></strong></p>
<p><span style="font-size: 10.5pt; font-family: 'Open Sans', sans-serif;">The CAS is seeking proposals for dynamic and thought-provoking educational sessions for two events in 2024. This is a great opportunity to share your passion, ideas, and expertise with your colleagues!&nbsp;We are accepting proposals for a variety of topics and session lengths - 50-minute Roundtable discussions, 60/75-minute Concurrent/General sessions, and Half-day Workshops.&nbsp;</span></p>
<p><span style="font-size: 10.5pt; font-family: 'Open Sans', sans-serif;">&nbsp;</span></p>
<ul style="list-style-type: disc;">
    <li style="color: #000000; font-family: 'Open Sans',sans-serif; font-size: 10.5pt; font-style: normal; font-weight: normal;"><span style="font-size: 10.5pt; font-family: 'Open Sans', sans-serif;">2024 Casualty Loss Reserve Seminar and Workshops - September 9-11 in San Francisco, CA</span></li>
    <ul style="list-style-type: circle;">
        <li style="font-family: 'Aptos',sans-serif; font-size: 11pt; font-style: normal; font-weight: normal;"><span style="background: white; font-size: 11pt;"><a href="https://www.casact.org/article/call-presentations-casualty-loss-reserve-seminar-and-workshops-1" title="https://www.casact.org/article/call-presentations-casualty-loss-reserve-seminar-and-workshops-1"><span style="color: #0000ff;">Learn more and submit your proposal here </span></a><b><a href="https://www.casact.org/article/call-presentations-casualty-loss-reserve-seminar-and-workshops-1" title="https://www.casact.org/article/call-presentations-casualty-loss-reserve-seminar-and-workshops-1"><span style="color: #0000ff;">by April 1st.</span></a></b></span>
        </li>
    </ul>
</ul>
<p><span style="font-size: 11pt; color: black;"><span style="font-family: Arial;">&nbsp;</span></span>
</p>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>
<p><em></em></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Community Spotlights"><span style="color: #ffffff;"><strong>COMMUNITY SPOTLIGHTS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<div>
</div>
<div><span style="text-decoration-line: underline;"></span>
    <h4><span style="color: #f57223;"><img style="border: 5px solid #9f151b; border-image: none; width: 250px; height: 334px; margin-top: 5px; margin-right: 15px; margin-bottom: 5px; float: left;" alt="DiegoOrellana_Headshot" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/headshots/cristina_aguirre_photo.jpg" /></span></h4>
    <h4>cristina fernandez aguirre, ACAS</h4>
    <p><span style="text-decoration-line: underline;">Hometown</span>: Philadelphia, PA<br /></p>
    <p><span style="text-decoration-line: underline;">University</span>: Penn State University</p>
    <p><u>OLA Involvement:</u>&nbsp;Membership Program Manager</p>
    <p><span style="text-decoration: underline;">Current Position:</span>&nbsp;AVP &amp; Actuary at Chubb, Large Account Pricing</p>
    <p><span style="text-decoration-line: underline;"><span style="text-decoration: underline;">Tell us a little about yourself:</span></span>&nbsp;I am a P&amp;C actuary at Chubb and moved to Philadelphia after working for many years in Boston. I love to work out,
        cook, and do arts and crafts. I am also a plant mom and love to decorate my living space with plants!&nbsp; &nbsp;</p>
    <p><span style="text-decoration-line: underline;">What are different roles you have done throughout your career?</span>&nbsp;Because there are so many opportunities in actuarial science, I have done a wide variety of roles. I have been in workers compensation
        reserving, specialty commercial analytics, homeowners reserving, and I am currently in large account pricing. Every role was unique and had a different perspective on insurance. I've done roles that are less technical and focus on building relationships
        with the business, all the way to roles that are very technical and work closely with statistical models. Opportunities in actuarial are endless!&nbsp;&nbsp;</p>
    <p><span style="text-decoration: underline;">Why did you decide to become a Program Manager through OLA?</span> I was previously involved as a mentor doing mock interviews and resume reviews for OLA students. I grew passionate about the impact that OLA
        has on actuarial students' careers and the impact it could have on my own so I decided to apply! Becoming a program manager has grown my professional network, strengthened my leadership skills, and allowed me to contribute to the community in
        really impactful ways given our profession is very niche.&nbsp;</p>
    <div><em><a href="https://www.linkedin.com/in/orellanadiego/ "></a><a href="www.linkedin.com/in/cristinafernandez12">Click here to connect with Cristina on LinkedIn!</a></em></div>
    <hr />
    <div><em>We enjoy featuring and sharing the stories of members of the Latine actuarial community! If you have a nomination for a spotlight, please ask them to fill out this&nbsp;<a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">form</a>&nbsp;with their information/headshot.</em><br /></div>
    <div>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #9f151b;">
                    <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <div>
        <h4 style="text-align: center;"><span style="color: #f57223;"><strong><span style="font-size: 20px;"><a href="https://members.latinoactuaries.org/networking/opening_search.asp"><span style="font-size: 20px;">Click here to search our career center for opportunities</span></a>
            </span>
            </strong>
            </span>
        </h4>
        </div><div><hr />
        <h4><span style="color: #f57223;">DO YOU HAVE JOB POSTINGS TO SHARE?</span></h4>
    </div>
    <div>
    </div>
    <p>Our Platinum, Gold Plus, and Gold Corporate Sponsors can now share job postings on our new Career Center portion of our OLA Membership Portal!</p>
    <p>Any member of your team who has an OLA Member Portal account associated with your company can easily post an opportunity by logging into their OLA Member Portal account and navigating to&nbsp;<a href="https://members.latinoactuaries.org/networking/">members.latinoactuaries.org/networking</a>&nbsp;to
        submit an opening. Please note that, when submitting the opening, you’ll want to click “No, I will tell them ‘How to Apply’ below” for the “Allow online applications?” option so that applicants aren’t mistakenly led to apply on our site instead
        of yours.</p>
    <p>As a reminder, Silver sponsors can only post entry-level and intern job postings on the Career Center; any postings that do not comply with this condition will not be approved on the backend.</p>
    <p>Please reach out to the OLA Career Center team at&nbsp;<a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a>&nbsp;if you have any questions.</p>
    <div>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <div>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #f57223;">
                        <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>VOLUNTEER OPPORTUNITIES</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div>

            <div>
                <hr />
            </div>
            <h4><span style="color: #9f151b;">VOLUNTEER WITH OLA!</span></h4>
            <div>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests! If you do not already have an OLA Member Portal account, you can click&nbsp;<a href="https://members.latinoactuaries.org/general/register_member_type.asp?">here</a>&nbsp;to
                register.
            </div>
            <div>&nbsp;</div>
            <div>Check-out our Volunteer page at&nbsp;<a href="https://www.latinoactuaries.org/volunteer/">https://www.latinoactuaries.org/volunteer/</a>&nbsp;for more details on volunteer opportunities, and contact us at&nbsp;<a href="mailto:membership@latinoactuaries.org">membership@latinoactuaries.org</a>&nbsp;for
                more information!</div>
        </div>
    </div>
    <p>&nbsp;</p>
    <div>
        <div>
            <hr />
            <h4>Academic scholarship application evaluator opportunity</h4>
            <div style="box-sizing: border-box; color: #333333; background-color: #ffffff;">We are now accepting volunteers to be an Academic Scholarship Application Evaluator! In this role, you will have a chance to help score applications that will determine the winners of OLA’s 2024 – 2025 Scholarship program. </div>
            <div style="box-sizing: border-box; color: #333333; background-color: #ffffff;">&nbsp;</div>
            <div style="box-sizing: border-box; color: #333333; background-color: #ffffff;">If you would like to be a part of the process, please indicate your volunteer preferences in your OLA member profile and send us a message at&nbsp;<a href="mailto:scholarships@latinoactuaries.org" style="box-sizing: border-box; background-color: transparent; text-decoration-line: none;">scholarships@latinoactuaries.org</a>&nbsp;by
                <strong>Monday</strong><span style="box-sizing: border-box; font-weight: 700;"><strong>,</strong> April 15th</span>. Thank you in advance for your time and please let us know if you have any questions!</div>
        </div>
    </div>
    <p>&nbsp;</p>
    <div>
        <div>
        </div>
        <div>
            <hr />
        </div>
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <div>
        <div>
            <table style="width: 660px; height: 66px;">
                <tbody>
                    <tr>
                        <td style="background-color: #9f151b;">
                            <h3 style="text-align: center;"><a id="Support OLA!"><span style="color: #ffffff;"><strong>Support OLA!</strong></span></a></h3>
                        </td>
                    </tr>
                </tbody>
            </table>
            <h4><span style="color: #f57223;">CORPORATE SPONSORSHIPS</span></h4>
        </div>
    </div>
    <p>We have different sponsorship tiers that can fit your company's size and strategy! If you are interested in sponsoring OLA, please e-mail us at <a href="mailto:info@latinoactuaries.org">info@latinoactuaries.org</a>. We can schedule a call and provide
        information you need or answer your questions.</p>
    <div>
        <div>
            <hr />
            <h4><span style="color: #f57223;">Individual Donations</span></h4>
        </div>
    </div>
    <p>OLA supports our Latine actuarial prospects (students, career changers, etc.) via scholarship programs, exam materials and registration reimbursements, and our travel program that sends prospects to OLA's Early Career Symposium (ECS) and industry
        conferences to help them network and securo jobs at the on-site career fairs.</p>
    <p>Individual donations of any amount can go a long way in helping us sustain these programs, so please click <a href="https://www.latinoactuaries.org/donate/">here</a> if interested in donating!</p>
    <div>
        <div>
            <hr />
            <div>
            </div>
        </div>
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <div>
        <div>
            <div>
                <table style="width: 660px; height: 66px;">
                    <tbody>
                        <tr>
                            <td style="background-color: #9f151b;">
                                <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
                <table align="center" style="left: 215.5px; width: 180px; height: 50px;">
                    <tbody>
                        <tr>
                            <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                            <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                            <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
                            <td style="width: 60px; height: 50px; text-align: center; font-size: 36px; vertical-align: middle;"><a href="https://www.tiktok.com/@latinoactuaries?_t=8ZimdOHqnXy&amp;_r=1" class="fab fa-tiktok"></a></td>

                        </tr>
                    </tbody>
                </table>
            </div>
        </div>
    </div>
    <p>&nbsp;</p>
    <div>
        <div>
            <div>
                <div style="text-align: center;">
                    <table align="center" class="reTableSelected" style="left: 252.5px; width: 164px; height: 50px;" border="0" cellspacing="0" cellpadding="0">
                        <tbody>
                            <tr>
                                <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                                    <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" id="Visit our website" target="_blank"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                                        </span>
                                    </p>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                </div>
                <hr />
            </div>
        </div>
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <div>
        <div>
            <div>
                <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
            </div>
        </div>
    </div>
</div>]]></description>
<pubDate>Tue, 26 Mar 2024 05:00:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: Summer Update</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=647150</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=647150</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY NEWSLETTER</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>Summer Udpate</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<h4><span style="color: #f57223;"><img alt="MarcelaGranados_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/marcela_headshot.jpg" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 200px; height: 260px;" /></span></h4>
<p>Dear OLA Community,<br /></p>
<p>
    This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and volunteer opportunities.&nbsp;</p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at <a href="mailto:members@latinoactuaries.org">members@latinoactuaries.org</a> to receive this newsletter and other important communications!</p>
<p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a>&nbsp;if you have any questions or feedback (or for corporate sponsors and partners, any items you'd like featured in this newsletter),
    and thank you for your continued support of OLA!</p>
<p> </p>
<p><strong>Marcela Granados, FCAS (she/her)</strong><br /><em>Director of Membership</em><span style="background-color: #ffff00;"><br /><em></em></span></p>
<hr />
<table style="width: 660px; height: 66px;" class="reTableSelected">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#UpcomingEventsAnnouncements">Upcoming Events &amp; Announcements</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Community Spotlights">Community Spotlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Volunteer Opportunities">Volunteer Opportunities</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Support OLA!">Support OLA!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span><br /></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>

<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="UpcomingEventsAnnouncements"><span style="color: #ffffff;"><strong>UPCOMING EVENTS &amp; Announcements</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4><span style="color: #f57223;">OLA's First RLP Conference</span></h4>
<p>The <strong>OLA Rising Leaders Program (RLP)</strong> was created in January 2023 to help proactive OLA students develop their leadership skills and build a sense of community. This would enable them to aspire to OLA's leadership roles as they expand
    their skillset. Students’ participation is encouraged in both OLA/Non-OLA professional and leadership development initiatives. </p>
<p>
    The students who have earned their spot in this conference are distinguished members of OLA who have gone above and beyond in various activities, such as: OLA engagement, exam progress, industry (through case competitions and actuarial mentorship programs),
    leadership (as on-campus student leaders in Gamma Iota Sigma chapters), Actuarial Clubs, Residence Life, and passion for DEI initiatives across the board.
</p>
<p>The RLP Inaugural Conference is a one-day event taking place on Sunday, August 20, 2023. The attendees are a select group of <strong>eighteen highest-performing college/university students</strong> in the RLP. Please look up an update on the success of
    this even in our next Industry Newsletter!
</p>
<p><em>Sponsorship participation for the RLP conference is an exclusive benefit to our Platinum Level Sponsors. If you're interested on your company can get involved in the future please out to <a href="mailto:risingleaders@latinoactuaries.org">risingleaders@latinoactuaries.org</a>.</em>
</p>
<hr />
<h4><span style="color: #f57223;">CHICAGO HAPPY HOUR</span></h4>
<h4><span style="color: #f57223;"><img alt="Chicago HH" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2023_08august/chichagohh.jpg" style="float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 300px; height: 300px;" /></span></h4>
<p>Earlier this month, the Organization of Latino Actuaries hosted its&nbsp;<strong>third annual local OLA Chicago Happy Hou</strong>r! This year, we had the pleasure of partnering with the ALPFA Chicago chapter. We truly are amazed on how our joint event
    exceeded all of our expectations! We caught up with old friends, learned about other Latine professionals in our community, and most importantly, established long-term relationships that will benefit the future Latine actuaries of America.</p>
<p>Chicago is such a vibrant city where the Latinidad continues to flourish, and our amazing actuarial community continues to show us unconditional support.</p>
<p>&nbsp;</p>
<p>Special thank you to:</p>
<ul>
    <li>Enrique Schulz, OLA’s Secretary, for hosting this event on behalf of OLA</li>
    <li>Jose Adrian Marroquin, MBA, MA and the rest of the ALPFA Chicago leadership team for making this happen.</li>
</ul>
<p>We look forward to meeting up again!</p>
<hr /><span style="font-size: 26px; letter-spacing: 1px; text-transform: uppercase; font-family: Montserrat, sans-serif; color: #f57223;">
    OLA Mixer</span><a title="Hyperlink Manager" class="reTool reLinkManager reToolIcon" href="https://members.latinoactuaries.org/RadEditor2.aspx?fn=txt_body&amp;group=&amp;ib=1&amp;ae=1&amp;em=0&amp;dto=0¯os=#" unselectable="on"></a>
<h4><span style="color: #f57223;"><a href="https://members.latinoactuaries.org/events/EventDetails.aspx?id=1761235&amp;group="><img alt="Mixer" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2023_08august/mixer.jpg" style="float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 300px; height: 300px;" /></a></span></h4>
<p>&nbsp;</p>
<p>Please join us on Monday, August 21, at the Tower of the Americas in San Antonio, Texas.
</p>
<p>
    Network and connect with OLA leadership, actuarial candidates, corporate sponsors, and allies! Over 40 Latine aspiring actuaries and close to 20 OLA leadership members (board members and program managers) will be there!
</p>
<p>
    A variety of drinks and appetizers will be served.

    <a href="https://members.latinoactuaries.org/events/EventDetails.aspx?id=1761235&amp;group=">Capacity is limited, so don't wait to RSVP!</a> See you there!</p>
<p>&nbsp;</p><span style="font-size: 26px; letter-spacing: 1px; text-transform: uppercase; font-family: Montserrat, sans-serif; color: #f57223;"></span>
<hr /><span style="font-size: 26px; letter-spacing: 1px; text-transform: uppercase; font-family: Montserrat, sans-serif; color: #f57223;">OLA @ alpfa</span><a title="Hyperlink Manager" class="reTool reLinkManager reToolIcon" href="https://members.latinoactuaries.org/RadEditor2.aspx?fn=txt_body&amp;group=&amp;ib=1&amp;ae=1&amp;em=0&amp;dto=0%C2%AFos=#" unselectable="on"></a>
<h4><span style="color: #f57223;"><a href="https://members.latinoactuaries.org/page/OLA-RLP-Application-Information#:~:text=The%20Organization%20of%20Latino%20Actuaries,an%20undergraduate%20or%20graduate%20degree."><img alt="ALPFA" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2023_08august/convention-2023-alpfa.png" style="float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 150px; height: 118px;" /></a></span></h4>
<p><span style="font-size: 14px; font-family: 'Open Sans';">OLA is excited to see you at ALPFA's 2023 Convention in San Antonio, TX later this month! </span></p>
<p><span style="font-size: 14px; font-family: 'Open Sans';">We expect to have <strong>over 40 Latine aspiring actuaries in attendance</strong> as 20+ Latine aspiring actuaries will be sponsored to attend the ALPFA Convention. </span></p>
<p><span style="font-size: 14px; font-family: 'Open Sans';">We encourage you to extend your stay in San Antonio to ensure you don’t miss out on this incredible opportunity to get personal exposure with more OLA Latine prospective actuaries (college/university students, career-changers, etc.), to showcase your company and recruit!</span></p>
<div>
    <hr />
</div>
<h4><span style="color: #f57223;">Upcoming Career Fairs</span></h4>
<h4><span style="color: #f57223;"><img alt="Career Fairs" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2023_08august/2023_career_fairs_080623.png" style="float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 300px; height: 300px;" /></span></h4>
<p>OLA will be hosting three virtual career fairs for Latine actuarial candidates, including career changers. Mark your calendars and save these dates: August 29, September 13 and September 28!<br /></p>
<p>Last year, we had over 1,150 one-on-one chats between company reps and OLA aspiring actuaries from 19 different states! Looking forward to connecting employers once again with talented Latine candidates all over the country.</p>
<p><span class="contentpasted2"><span style="background: white; font-size: 10.5pt; font-family: 'Open Sans', sans-serif; color: #000000;">If you know Latine actuarial prospects, please encourage them to attend our career fairs.&nbsp; Latine actuarial prospects can e-mail&nbsp;</span></span>
    <span class="contentpasted1"><span style="background: white; font-size: 10.5pt; font-family: 'Open Sans', sans-serif; color: #000000;"><a href="mailto:academy@latinoactuaries.org">academy@latinoactuaries.org</a> for information on how to participate in these events.</span></span>
</p>
<p><em>Company registration is at capacity and closed for this round of career fairs but if you're interested in learning how your company can become a Sponsor and participate in future events please reach out to&nbsp;<a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a>.</em><em></em></p>
<p><em></em></p>
<hr />
<h4><span style="color: #f57223;">New Career Center on OLA Membership POrtal</span></h4>
<p>Silver, Gold, Gold Plus, and Platinum Sponsors can now access OLA’s new Career Center! This new job board will allow corporate sponsors to post and modify their company’s job openings in real-time. Simultaneously, OLA’s prospects with real-time access
    to these openings. All postings will still be shared in OLA’s newsletters/communications, but the OLA Newsletter team will now source these postings from the Career Center.&nbsp;</p>
<p>For specific steps on how to post please check out our <em><a href="#Career Corner">Career Corner</a></em> section below. Please reach out to the OLA Career Center team at <a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a>    if you have any questions.
</p>
<hr />
<h4><span style="color: #f57223;">TWO CAS Opportunities</span></h4>
<h4><span style="color: #f57223;"><img alt="CAS Logo" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/cas_logo.png" style="float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 150px; height: 131px;" /></span></h4>
<p><strong><span style="color: #9f151b;">Help CAS Launch the New Property and Casualty Predictive Analytics Exam and Get Credit Towards Your ACAS</span></strong></p>
<p>
    The Casualty Actuarial Society is seeking 100 participants to complete the new <a href="https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.casact.org%2Farticle%2Fcas-announces-new-property-and-casualty-predictive-analytics-requirement-part-its&amp;data=05%7C01%7Ckatherine_ross%40swissre.com%7C37914162674a4fac13d508db984d7fec%7C45597f606e374be7acfb4c9e23b261ea%7C1%7C0%7C638271230928634542%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=onZK4Di4lunLAPBZ1bRFtomuyRzTN23Zayo%2FyE%2FXbYA%3D&amp;reserved=0">Property and Casualty Predictive Analytics (PCPA)</a>    exam and project in Fall 2023 to gather feedback and make improvements prior to the official launch of PCPA in May 2024. <strong>This flagship offering is available at no cost and a passing score will count towards the ACAS requirement. </strong>The
    PCPA will give candidates and professionals in the actuarial field a deeper understanding of key concepts and improve their predictive capabilities. The flagship offering will be administered October 30 through November 10, 2023. The exam will be
    a 2-hour, multiple choice exam (delivered by Pearson VUE), with an estimated 80 hours of study and preparation time. Following exam completion, the flagship group will be provided with a take-home project to be completed over a 2-week period. The
    project is estimated to take 20 hours to complete, which includes preparing, planning, drafting, revising, and finalizing the submission.
</p>
<p>
    Participation in the Fall 2023 sitting will help the CAS to evaluate the validity, fairness and performance of the assessments. It will also provide an opportunity for participants to give feedback on the overall experience, and to validate the study
    times and project completion times we’ve estimated. It’s highly recommended (but not required) that candidates take the PCPA after exams MAS-I, MAS-II and 5 within the ACAS pathway. Recently credentialed ACAS are also welcome to participate. We’re
    seeking a diverse range of participants across organizations, regions and experience level with predictive analytics. <strong>If you are interested in participating, please contact <a href="mailto:casatp@casact.org">casatp@casact.org</a> with the subject line: Interested PA Volunteer, no later than 31 August 2023.</strong>    </p>
<p>


    <strong><span style="color: #9f151b;">Calls for Presentations for Casualty Actuarial Society Webinars and RPM Seminar</span></strong></p>
<p>

    The Casualty Actuarial Society currently has TWO calls for presentations open now. This is an excellent opportunity to develop or hone your presenting and thought leadership skills while helping your colleagues fulfill their continuing education requirements.
</p>
<ul>
    <li><a href="https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.casact.org%2Farticle%2Fcall-presentations-2024-ratemaking-product-and-modeling-seminar&amp;data=05%7C01%7Ckatherine_ross%40swissre.com%7C37914162674a4fac13d508db984d7fec%7C45597f606e374be7acfb4c9e23b261ea%7C1%7C0%7C638271230928634542%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=QwmxqHD8EOfWGc%2FaKdTSxNDQtlGhW%2Br4SDC5%2FEEpLkg%3D&amp;reserved=0">2024 Ratemaking, Product and Modeling (RPM) Seminar, March 18-20 in New Orleans, LA – Submissions Due by September 1, 2023</a>        </li>
    <li><a href="https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.casact.org%2Fform%2Ffy2023-webinar-committee-call-fo&amp;data=05%7C01%7Ckatherine_ross%40swissre.com%7C37914162674a4fac13d508db984d7fec%7C45597f606e374be7acfb4c9e23b261ea%7C1%7C0%7C638271230928634542%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=CGXE%2BuFMGIPLI5OjboDmR1gxHDCgCWdV5ZFXgH6Xc9E%3D&amp;reserved=0">2024 Webinars (Year-Round) – Submissions Due December 2023</a>
    </li>
</ul>
<hr />
<h4><span style="color: #f57223;">Sign up for SOA Introduction to Modeling</span></h4>
<h4><span style="color: #f57223;"><img alt="SOA Logo" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/soa_logo1.jpg" style="float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 300px; height: 99px;" /></span></h4>
<p>Expand your understanding of modeling with our interactive Zoom series, Introduction to Modeling: Summer Boot Camp. With five 90-minute sessions over the course of two weeks, we'll dive into modeling topics and techniques designed for university students
    and actuarial science students in the early years of their career. Maximize your learning with break-out sessions to discuss each topic with your peers and colleagues. This Boot Camp has a limited capacity, so claim your spot early. <strong>Pre-ASAs can join this interactive Zoom series for a discounted registration.</strong>
</p>
<p style="margin-left: 40px;">
    Agenda:</p>
<ul style="margin-left: 40px;">
    <li>August 24 - Overview of Actuarial Models
    </li>
    <li>August 25 - The Model Lifecycle/Workflow/Collaboration
    </li>
    <li>August 30 - Data and Assumptions
    </li>
    <li>August 31 - Types of Model Limitations and Simplifications
    </li>
    <li>September 1 - Documentation and Communicating Results </li>
</ul>
<p>
    Registration gives you exclusive access to all session recordings.




    <a href="https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.soa.org%2Fprof-dev%2Fwebcasts%2F2023-intro-modeling-summer-boot-camp%2F&amp;data=05%7C01%7Ckatherine_ross%40swissre.com%7Cad5a7f31d2024f7ac91d08db980e0f43%7C45597f606e374be7acfb4c9e23b261ea%7C1%7C0%7C638270958442466989%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=BmCBs4BAE7D9FeAKAQFtCs4j0Qqmxj4v59PbYzSvKCw%3D&amp;reserved=0">Register today to become a part of this interactive Zoom series.</a>
</p>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>
<p><em></em></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Community Spotlights"><span style="color: #ffffff;"><strong>COMMUNITY SPOTLIGHTS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<div>
</div>
<div><span style="text-decoration-line: underline;"></span>
    <h4><span style="color: #f57223;"><img alt="DiegoOrellana_Headshot" src="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/headshots/diego.jpg" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 250px; height: 334px;" /></span></h4>
    <h4>Diego Orellana</h4>
    <p><span style="text-decoration-line: underline;">Hometown</span>: Phoenix, AZ</p>
    <p><span style="text-decoration-line: underline;">University</span>: Arizona State University</p>
    <p><span style="text-decoration-line: underline;">Major</span>: Actuarial Science</p>
    <p><span style="text-decoration-line: underline;">Expected Graduation Date</span>: May 2025&nbsp;</p>
    <p><span style="text-decoration-line: underline;">How has OLA impacted your career?</span>&nbsp;OLA has been an instrumental organization in my personal and professional development. From the very beginning, they provided me with the resources and guidance
        I needed to achieve my goals. The team's unwavering support and dedication have been truly exceptional, and I can confidently say that I have been able to achieve great heights due to their help. OLA has a clear and selfless goal to assist Latine
        students in the actuarial field, and because of the great leadership team, they excel in doing so. Some programs and benefits I have taken advantage of: Networking advice, resume review and tips, mock interviews, exam support, study material support,
        conference travel support, scholarships, internship, career fairs, and invaluable industry advice. </p>
    <p><span style="text-decoration-line: underline;">How have you been involved with OLA so far?</span>&nbsp;Diego has participated in the OLA Academy, served as a Campus Ambassador/RLP, and has been the receipeitn of Academic Scholarships, Exam Reimbursements/Stuptend,
        and Conference/Convention Travel Scholarships.</p>
    <div><span style="text-decoration-line: underline;"></span>
        <div><em>Diego is currently an Actuarial Intern at Allianz Life!</em></div>
        <div><em><a href="https://www.linkedin.com/in/orellanadiego/">&nbsp;</a></em></div>
        <div><em><a href="https://www.linkedin.com/in/orellanadiego/ "></a><a href="https://www.linkedin.com/in/orellanadiego/">Click here to connect with Diego on LinkedIn!</a></em></div>
        <hr />
        <div><em>We enjoy featuring and sharing the stories of members of the Latine actuarial community! If you have a nomination for a spotlight, please ask them to fill out this&nbsp;<a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">form</a>&nbsp;with their information/headshot.</em><br /></div>
        <div>
            <hr />
        </div>
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <p><em>&nbsp;</em></p>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #9f151b;">
                        <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div>
            <h4 style="text-align: center;"><span style="color: #f57223;"><strong><span style="font-size: 20px;"><a href="https://members.latinoactuaries.org/networking/opening_search.asp"><span style="font-size: 20px;">Click here to search our career center for opportunities</span></a>
                </span>
                </strong>
                </span>
            </h4>
            <hr />
            <h4><span style="color: #f57223;">Platinum, Gold PLus, and Gold Corporate Sponsor Job postings</span></h4>
            <p>Please click on the following job posting titles to explore openings sent to us by our Platinum, Gold Plus, and Gold Corporate Sponsors.</p>
            <ul>
                <li>Northwestern Mutual<br /></li>
                <li>
                    <ul>
                        <li>&nbsp;<a href="https://careers.northwesternmutual.com/corporate-careers/job/actuarial-specialist-post-graduate-program-milwaukee-wi-corporate-jr-39000/">Actuarial Specialist: Post Graduate Program</a></li>
                    </ul>
                </li>
                <li>Blue Shield of CA
                    <ul>
                        <li><a href="https://ecge.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1003/job/20230090/?utm_medium=jobshare">Actuarial Analyst, Experienced</a></li>
                        <li><a href="https://ecge.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1003/job/20230090/?utm_medium=jobshare">Actuarial Analyst, Consultant</a></li>
                    </ul>
                </li>
            </ul>
            <hr />
            <h4><span style="color: #f57223;">DO YOU HAVE JOB POSTINGS TO SHARE?</span></h4>
        </div>
        <div>
            <p>Our Platinum, Gold Plus, and Gold Corporate Sponsors can now share job postings on our new Career Center portion of our OLA Membership Portal.!</p>
            <p>Any member of your team who has an OLA Member Portal account associated with your company can easily post an opportunity by logging into their OLA Member Portal account and navigating to&nbsp;<a href="https://members.latinoactuaries.org/networking/">members.latinoactuaries.org/networking</a>&nbsp;to
                submit an opening. Please note that, when submitting the opening, you’ll want to click “No, I will tell them ‘How to Apply’ below” for the “Allow online applications?” option so that applicants aren’t mistakenly led to apply on our site
                instead of yours.</p>
            <p>As a reminder, Silver sponsors can only post entry-level and intern job postings on the Career Center; any postings that do not comply with this condition will not be approved on the backend.</p>
            <p>Please reach out to the OLA Career Center team at&nbsp;<a href="mailto:careercenter@latinoactuaries.org">careercenter@latinoactuaries.org</a>&nbsp;if you have any questions.</p>
            <hr />
            <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
            <p><em>&nbsp;</em></p>
            <table style="width: 660px; height: 66px;">
                <tbody>
                    <tr>
                        <td style="background-color: #f57223;">
                            <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>VOLUNTEER OPPORTUNITIES</strong></span></a></h3>
                        </td>
                    </tr>
                </tbody>
            </table>
            <div>
                <h4><span style="color: #9f151b;">Summer 2023 Mock Interviewer VOLUNTEERS NEEDED</span></h4>
                <div>As OLA Academy enters the peak of recruiting season and our first virtual career fair on August 29, we are in need of Summer 2023 mock interview volunteers. <strong>If you are interested in conducting mock interviews before Monday, August 28, <a href="https://members.latinoactuaries.org/page/OLAA-Mock-Interview-Volunteer-Interest-Form">please fill out this form</a>.</strong></div><div>&nbsp;</div><div>Volunteers who submit this form will be sent automatically-generated emails containing the mock interview requests so they can begin reaching out to prospects ASAP. <em>Please consider any mock interviews to which you’ve already been assigned before signing up to help with additional mock interviews.</em></div>
                <div><hr />
                </div>
                <h4><span style="color: #9f151b;">VOLUNTEER WITH OLA!</span></h4>
                <div>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests! If you do not already have an OLA Member Portal account, you can click&nbsp;<a href="https://members.latinoactuaries.org/general/register_member_type.asp?">here</a>&nbsp;to
                    register.
                </div>
                <div>&nbsp;</div>
                <div>Check-out our Volunteer page at&nbsp;<a href="https://www.latinoactuaries.org/volunteer/">https://www.latinoactuaries.org/volunteer/</a>&nbsp;for more details on volunteer opportunities, and contact us at&nbsp;<a href="mailto:membership@latinoactuaries.org">membership@latinoactuaries.org</a>&nbsp;for
                    more information!</div>
            </div>
            <div>
                <hr />
                <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
                <p><em>&nbsp;</em></p>
                <table style="width: 660px; height: 66px;">
                    <tbody>
                        <tr>
                            <td style="background-color: #9f151b;">
                                <h3 style="text-align: center;"><a id="Support OLA!"><span style="color: #ffffff;"><strong>Support OLA!</strong></span></a></h3>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <h4><span style="color: #f57223;">CORPORATE SPONSORSHIPS</span></h4>
                <p>We have different sponsorship tiers that can fit your company's size and strategy! If you are interested in sponsoring OLA, please e-mail us at <a href="mailto:info@latinoactuaries.org">info@latinoactuaries.org</a>. We can schedule a call
                    and provide information you need or answer your questions.</p>
                <hr />
                <h4><span style="color: #f57223;">Individual Donations</span></h4>
                <p>OLA supports our Latine actuarial prospects (students, career changers, etc.) via scholarship programs, exam materials and registration reimbursements, and our travel program that sends prospects to the ALPFA and GIS conventions to help
                    them network and secure jobs at the on-site career fairs.</p>
                <p>Individual donations of any amount can go a long way in helping us sustain these programs, so please click <a href="https://www.latinoactuaries.org/donate/">here</a> if interested in donating!</p>
                <hr />
                <div>
                    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
                    <p><em>&nbsp;</em></p>
                    <table style="width: 660px; height: 66px;">
                        <tbody>
                            <tr>
                                <td style="background-color: #9f151b;">
                                    <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
                    <table style="width: 180px; height: 50px; left: 215.5px;" align="center">
                        <tbody>
                            <tr>
                                <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                                <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                                <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
                                <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.tiktok.com/@latinoactuaries?_t=8ZimdOHqnXy&amp;_r=1" class="fab fa-tiktok"></a></td>

                            </tr>
                        </tbody>
                    </table>
                    <p>&nbsp;</p>
                    <div style="text-align: center;">
                        <table border="0" cellspacing="0" cellpadding="0" align="center" style="width: 164px; height: 50px; left: 252.5px;" class="reTableSelected">
                            <tbody>
                                <tr>
                                    <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                                        <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" target="_blank" id="Visit our website"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                                            </span>
                                        </p>
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                    <hr />
                    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
                    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
                </div>
            </div>
        </div>
    </div>
</div>]]></description>
<pubDate>Thu, 10 Aug 2023 13:00:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: April 2023</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=634558</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=634558</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY NEWSLETTER</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>April 2023</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<h4><span style="color: #f57223;"><img alt="MarcelaGranados_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/marcela_headshot.jpg" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 200px; height: 260px;" /></span></h4>
<p>Dear OLA Community,<br /></p>
<p>
    This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and volunteer opportunities.&nbsp;</p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at <a href="mailto:members@latinoactuaries.org">members@latinoactuaries.org</a> to receive this newsletter and other important communications!</p>
<p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a>&nbsp;if you have any questions or feedback (or for corporate sponsors and partners, any items you'd like featured in this newsletter),
    and thank you for your continued support of OLA!</p>
<p> </p>
<p><strong>Marcela Granados, FCAS (she/her)</strong><br /><em>Director of Membership</em><span style="background-color: #ffff00;"><br /><em></em></span></p>
<hr />
<table style="width: 660px; height: 66px;" class="reTableSelected">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#UpcomingEventsAnnouncements">Upcoming Events &amp; Announcements</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Community Spotlights">Community Spotlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Volunteer Opportunities">Volunteer Opportunities</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Support OLA!">Support OLA!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span><br /></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>

<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="UpcomingEventsAnnouncements"><span style="color: #ffffff;"><strong>UPCOMING EVENTS &amp; Announcements</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4><span style="color: #f57223;">CAS - Build Your Brand as a Thought Leader</span></h4>
<h4><span style="color: #f57223;"><img alt="CAS_Logo" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_01january/cas_logo.png" style="float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 175px; height: 175px;" /></span></h4>
<p>The Casualty Actuarial Society currently has THREE calls for presentations open now. This is a great opportunity to develop or hone your presenting and thought leadership skills, while also helping your colleagues fulfill their continuing education requirements.
</p>
<ol style="margin-left: 160px;">
    <li><strong>2023 CAS Annual Meeting, November 5-8, 2023, Los Angeles, CA – <span style="text-decoration: underline;">Proposals are due by March 31, 2023</span>
</strong>
        <ul>
            <li>Speakers are expected to travel in-person to the meeting to present.
            </li>
            <li>Learn more and submit your Proposal <a href="https://annual.casact.org/education#call-for-presentations">here</a>&nbsp;</li>
        </ul>
    </li>
    <li><strong>2023 Casualty Loss Reserve Seminar and Workshops, Sept 11-13, 2023, Orlando, FL – <span style="text-decoration: underline;">Proposals are due by April 10</span></strong>
        <ul>
            <li>Speakers are expected to travel in-person to the meeting to present.
            </li>
            <li>Learn more and submit your Proposal <a href="https://clrs.casact.org/education#call-for-presentations">here</a>&nbsp;</li>
        </ul>
    </li>
    <li><strong>2024 CAS Webinars – Fully Virtual, Sept 2023-Oct 2024 – <span style="text-decoration: underline;">Proposals are due by December 29, 2023</span>
</strong>
        <ul>
            <li>Learn more and submit your Proposal <a href="https://www.casact.org/article/call-presentations-september-2023-october-2024-cas-webinar-working-group">here</a></li>
        </ul>
    </li>
</ol>
<hr />
<h4><span style="color: #f57223;">Spread the news--OLA scholarships</span></h4>
<a href="https://theactuarialfoundation.submittable.com/submit"><img alt="OLA_Scholarships" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_02february/2023_ola_scholarships_flyer_.png" style="width: 300px; height: 300px; float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px;" /></a>
<p>Do you know any Latine students that would benefit from our scholarships? If so, please help us spread the word so we can reach as many students as possible.<br /></p>
<p>The link to the applications can be found <a href="https://theactuarialfoundation.submittable.com/submit">here</a>, and applications are due&nbsp;<strong>April 15, 2023</strong>.</p>
<p>If you have any questions you can either watch a recording of one of our scholarship info sessions <a href="https://www.youtube.com/watch?v=V4yKHOR8JAU">here</a> or reach out to us at <a href="mailto:scholarships@latinoactuaries.org">scholarships@latinoactuaries.org</a>.</p>
<p>We also encourage students to look at all the scholarships listed in case they qualify for something else. We'd like them to get as much support as possible!</p>
<p>&nbsp;</p>
<div>
    <hr />
</div>
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>
<p><em></em></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Community Spotlights"><span style="color: #ffffff;"><strong>COMMUNITY SPOTLIGHTS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<div>
</div>
<div><span style="text-decoration-line: underline;"></span>
    <h4><span style="color: #f57223;"><img alt="FrankieNieves_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/frankie_nieves_headshot.png" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px;" /></span></h4>
    <h4><span style="color: #9f151b;">Frankie Nieves</span></h4>
    <p><span style="text-decoration-line: underline;">Hometown</span>: Greater Philadelphia Area</p>
    <p><span style="text-decoration-line: underline;">University</span>: Purdue University</p>
    <p><span style="text-decoration-line: underline;">Major</span>: Actuarial Science and Applied Statistics</p>
    <p><span style="text-decoration-line: underline;">Minors</span>: Math, Management, and Spanish</p>
    <p><span style="text-decoration-line: underline;">Expected Graduation Date</span>: May 2025</p>
    <p><span style="text-decoration-line: underline;">Tell us a little about yourself</span>: Some of my hobbies include watching and playing sports, working out, and playing chess, sudoku, poker, or any other risk/probability based game. </p>
    <p><span style="text-decoration-line: underline;">How has OLA impacted your career?</span>&nbsp;The Organization of Latino/a Actuaries (OLA) has been the most professional, welcoming, and supportive organization I have joined since entering college. As an
        active member of various other collegiate communities, I have found that there are few groups who provide the same level of professional, exam, and overall life help and growth. I appreciate all that OLA has done for me, and I look forward to
        paying that back both currently as an exam tutor, and in the future as I continue to be an exam tutor, but am also able to share my actuarial upbringing and experiences with others.</p>
    <p><span style="text-decoration-line: underline;">How have you been involved with OLA so far?</span>&nbsp;I have participated in the RLP Program, volunteer as an Exam Tutor and have also been the recipient of an Academic Scholarship.</p>
    <div><span style="text-decoration-line: underline;"></span>
        <div><em>Frankie is currently&nbsp;an intern with Lincoln Financial Group! He has also successfully passed Exams P, FM, and IFM, and is studying to take Exam SRM this May (good luck!!).</em></div>
        <div><em>&nbsp;</em></div>
        <div><em><a href="https://www.linkedin.com/in/francisco-nieves-363039207/ ">Connect with Frankie on LinkedIn!</a></em></div>
        <hr />
        <div>
            <h4><span style="color: #f57223;"><img alt="TrentPerez_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/trent_stastny-perez.png" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 250px; height: 255px;" /></span></h4>
            <h4><span style="color: #9f151b;">Trent Stastny-Perez, FSA, CERA</span></h4>
            <p><span style="color: #9f151b;"><span style="font-size: 20px;"><em>OLA Academy PM - Freshmen, Sophomores, Juniors</em></span></span>
            </p>
        </div>
        <p><span style="text-decoration-line: underline;">Current Employer &amp; Position</span>: Principal Financial Group, Assistant Actuary</p>
        <p><span style="text-decoration-line: underline;">Hometown</span>: Cedar Rapids, IA</p>
        <p><span style="text-decoration-line: underline;">Current City</span>: Des Moines, IA</p>
        <p><span style="text-decoration-line: underline;">University</span>: The University of Iowa, Class of 2017</p>
        <p><span style="text-decoration-line: underline;">Major</span>: Actuarial Science</p>
        <p><span style="text-decoration-line: underline;">Why did you decide to become a PM?</span> I became a PM because I wanted to get involved with OLA and help out in some way. One of my passions in life is passing down any knowledge or wisdom I've
            gained over the years, in an effort to help others. With this, and my experience recruiting, the OLAA PM role seemed like a great fit. I'm excited to help college students any way I can as they begin their journey to becoming an Actuary! Before
            this, I was involved with OLA on the recruiting side, attending the virtual career fairs and meeting the awesome students.</p>
        <div><span style="text-decoration-line: underline;">What advice would you like to give to aspiring actuaries?</span>&nbsp;Make sure to get the basics done. Get an exam or two, keep grades at a respectable level, get an internship. Once you're in a good
            spot though don't break your back trying to be the best candidate the world has ever seen. Make sure you're enjoying life and taking breaks along the journey!
        </div>
        <p>
        </p>
        <div><em>Trent is obsessed with movies. He used to watch 365 movies a year but recently had to pull that back (only watching about 200 now!). He also love to run, and loves hanging out at happy hours. If you called him on the phone on a random day, odds are pretty high he's doing one of those three activities.</em></div>
        <div><em>&nbsp;</em></div>
        <div><em><a href="https://www.linkedin.com/in/trent-stastny-perez-fsa-cera-51792780/">Connect with Trent on LinkedIn!</a></em></div>
        <hr />
        <div><em>We enjoy featuring and sharing the stories of members of the Latine actuarial community! If you have a nomination for a spotlight, please ask them to fill out this&nbsp;<a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">form</a>&nbsp;with their information/headshot.</em><br /></div>
        <div>
            <hr />
        </div>
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <p><em>&nbsp;</em></p>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #9f151b;">
                        <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div>
            <h4><span style="color: #f57223;">Platinum, Gold PLus, and Gold Corporate Sponsor Job postings</span></h4>
            <p>Please click on the following job posting titles to explore openings sent to us by our Platinum, Gold Plus, and Gold Corporate Sponsors.</p>
            <ul>
                <li>Travelers
                    <ul>
                        <li><a href="https://careers.travelers.com/job/17976425/senior-consultant-actuarial-analytics-commercial-auto-pricing-analytics-remote-us-nationwide/">Senior Consultant, Actuarial &amp; Analytics - Commercial Auto Pricing Analytics</a></li>
                        <li><a href="https://careers.travelers.com/job/17163354/manager-actuarial-analytics-us-nationwide/">Manager, Actuarial &amp; Analytics</a></li>
                        <li><a href="https://careers.travelers.com/job/16998228/senior-manager-actuarial-analytics-business-insurance-actuarial-product-auto-remote-us-nationwide/http://">Senior Manager, Actuarial &amp; Analytics, Business Insurance Actuarial Product - Commercial Auto</a></li>
                        <li><a href="https://careers.travelers.com/job/17940389/select-actuarial-auto-and-all-lines-lead-us-nationwide/">Small Commercial Actuarial - Auto and All Lines Lead (Director)</a></li>
                        <li><a href="https://careers.travelers.com/job/17897055/enterprise-catastrophe-actuarial-sr-director-hartford-ct/">Enterprise Catastrophe Actuarial - Sr Director</a></li>
                        <li><a href="https://careers.travelers.com/job-search-results/?addtnl_categories[]=Actuarial">Additional actuarial roles at Travelers</a></li>
                    </ul>
                </li>
            </ul>
            <hr />
            <h4><span style="color: #f57223;">Industry Job Postings</span></h4>
            <div>
                <p>Please click on the following job posting titles to explore additional openings sent to us by government agencies and our industry/community/education partners.</p>
                <div>
                    <ul>
                        <li>National Association of Insurance Commissioners (NAIC)
                            <ul>
                                <li><a href="https://www.linkedin.com/jobs/view/3488676916/?refId=fVzV1lDpv7jFQcyi8PFKjA%3D%3D&amp;trackingId=%2BHZs%2BnqJ9xIpTYPdJ7THJw%3D%3D">&nbsp;PBR Life Associate Actuary</a></li>
                            </ul>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
        <div>
            <hr />
            <h4><span style="color: #f57223;">DO YOU HAVE JOB POSTINGS TO SHARE?</span></h4>
            <p>Our Platinum, Gold Plus, and Gold Corporate Sponsors can send us job postings for&nbsp;<strong>experienced</strong>&nbsp;professionals to be advertised in this monthly newsletter! Postings sent to&nbsp;<a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a>&nbsp;before
                <strong>April</strong><b>&nbsp;24, 2023</b>, will appear in the next newsletter that will be sent the first week of March.</p>
            <hr />
            <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
            <p><em>&nbsp;</em></p>
            <table style="width: 660px; height: 66px;">
                <tbody>
                    <tr>
                        <td style="background-color: #f57223;">
                            <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>VOLUNTEER OPPORTUNITIES</strong></span></a></h3>
                        </td>
                    </tr>
                </tbody>
            </table>
            <div>
                <h4><span style="color: #9f151b;">VOLUNTEER WITH OLA!</span></h4>
                <div>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests! If you do not already have an OLA Member Portal account, you can click&nbsp;<a href="https://members.latinoactuaries.org/general/register_member_type.asp?">here</a>&nbsp;to
                    register.
                </div>
                <div>&nbsp;</div>
                <div>Check-out our Volunteer page at&nbsp;<a href="https://www.latinoactuaries.org/volunteer/">https://www.latinoactuaries.org/volunteer/</a>&nbsp;for more details on volunteer opportunities, and contact us at&nbsp;<a href="mailto:membership@latinoactuaries.org">membership@latinoactuaries.org</a>&nbsp;for
                    more information!
                    <hr />
                </div>
                <h4><span style="color: #9f151b;">Academic scholarship application evaluator opportunity</span></h4>
                <div>We are now accepting volunteers to be an Academic Scholarship Application Evaluator! In this role, you will have a chance to help score applications that will determine the winners of OLA’s 2023 – 2024 Scholarship program. The evaluation
                    period will take place beginning in April through July 2023. </div>
                <div>&nbsp;</div>
                <div>If you would like to be a part of the process, please indicate your volunteer preferences in your OLA member profile and send us a message at <a href="mailto:scholarships@latinoactuaries.org">scholarships@latinoactuaries.org</a> by <strong>Friday, April 15th</strong>.
                    Thank you in advance for your time and please let us know if you have any questions!</div>
                <div>&nbsp;</div>
            </div>
            <div>
                <hr />
                <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
                <p><em>&nbsp;</em></p>
                <table style="width: 660px; height: 66px;">
                    <tbody>
                        <tr>
                            <td style="background-color: #9f151b;">
                                <h3 style="text-align: center;"><a id="Support OLA!"><span style="color: #ffffff;"><strong>Support OLA!</strong></span></a></h3>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <h4><span style="color: #f57223;">CORPORATE SPONSORSHIPS</span></h4>
                <p>We have different sponsorship tiers that can fit your company's size and strategy! If you are interested in sponsoring OLA, please e-mail us at <a href="mailto:info@latinoactuaries.org">info@latinoactuaries.org</a>. We can schedule a call
                    and provide information you need or answer your questions.</p>
                <hr />
                <h4><span style="color: #f57223;">Individual Donations</span></h4>
                <p>OLA supports our Latine actuarial prospects (students, career changers, etc.) via scholarship programs, exam materials and registration reimbursements, and our travel program that sends prospects to the ALPFA and GIS conventions to help
                    them network and secure jobs at the on-site career fairs.</p>
                <p>Individual donations of any amount can go a long way in helping us sustain these programs, so please click <a href="https://www.latinoactuaries.org/donate/">here</a> if interested in donating!</p>
                <hr />
                <div>
                    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
                    <p><em>&nbsp;</em></p>
                    <table style="width: 660px; height: 66px;">
                        <tbody>
                            <tr>
                                <td style="background-color: #9f151b;">
                                    <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
                    <table style="width: 180px; height: 50px; left: 215.5px;" align="center">
                        <tbody>
                            <tr>
                                <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                                <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                                <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
                                <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.tiktok.com/@latinoactuaries?_t=8ZimdOHqnXy&amp;_r=1" class="fab fa-tiktok"></a></td>

                            </tr>
                        </tbody>
                    </table>
                    <p>&nbsp;</p>
                    <div style="text-align: center;">
                        <table border="0" cellspacing="0" cellpadding="0" align="center" style="width: 164px; height: 50px; left: 252.5px;" class="reTableSelected">
                            <tbody>
                                <tr>
                                    <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                                        <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" target="_blank" id="Visit our website"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                                            </span>
                                        </p>
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                    <hr />
                    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
                    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
                </div>
            </div>
        </div>
    </div>
</div>]]></description>
<pubDate>Fri, 7 Apr 2023 13:00:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: March 2023</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=633061</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=633061</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY NEWSLETTER</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>MARCH 2023</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<h4><span style="color: #f57223;"><img alt="MarcelaGranados_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/marcela_headshot.jpg" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 200px; height: 260px;" /></span></h4>
<p>Dear OLA Community,<br /></p>
<p>
    This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and volunteer opportunities.&nbsp;</p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at <a href="https://members.latinoactuaries.org/">members.latinoactuaries.org</a> to receive this newsletter and other important communications!</p>
<p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a>&nbsp;if you have any questions or feedback (or for corporate sponsors and partners, any items you'd like featured in this newsletter),
    and thank you for your continued support of OLA!</p>
<p> </p>
<p><strong>Marcela Granados, FCAS (she/her)</strong><br /><em>Director of Membership</em><span style="background-color: #ffff00;"><br /><em></em></span></p>
<hr />
<table style="width: 660px; height: 66px;" class="reTableSelected">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#UpcomingEventsAnnouncements">Upcoming Events &amp; Announcements</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Community Spotlights">Community Spotlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Volunteer Opportunities">Volunteer Opportunities</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Support OLA!">Support OLA!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>

<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="UpcomingEventsAnnouncements"><span style="color: #ffffff;"><strong>UPCOMING EVENTS &amp; Announcements</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4><span style="color: #f57223;">American Academy of Actuaries Announces Academy Award for Research</span></h4>
<h4><span style="color: #f57223;"><img alt="AAA_Logo" src="https://members.latinoactuaries.org/resource/resmgr/prospect_newsletter/2023_01january/aaalogosmall_small.png" style="float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 150px; height: 196px;" /></span></h4>
<p>The American Academy of Actuaries is making plans to conduct its first annual Academy Award for Research selection during the summer of 2023. The award will go to an early-career scholar whose work contributes significantly to an actuarial perspective
    on a public policy issue of interest to U.S. actuaries and public policy makers. <strong>The American Academy of Actuaries’ Research Committee invites submissions for consideration by March 31, 2023</strong>.</p>
<p>The award will include a monetary prize of $7,500 and presentations of the work—either in person or virtually—at the Academy’s annual meeting in November in Washington, D.C., and/or at the Actuarial Research Conference in July–August at Drake University
    in Des Moines, Iowa. The Academy will cover reasonable travel expenses.</p>
<p>The award is devoted to research on a particular theme with broad applicability across different policymaking and regulatory environments and across actuarial practice areas. <strong>For the inaugural award in 2023, the theme will be Climate Change/Climate Risk</strong>.&nbsp;</p>
<p>For more information on the submission criteria and how to enter, please click <a href="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_03march/aaa_research.pdf">here</a>. For any question, please contact <a href="mailto:sjackson@actuary.org">Steve Jackson</a>.</p>
<hr />
<h4><span style="color: #f57223;">Spread the news--OLA scholarships</span></h4>
<a href="https://theactuarialfoundation.submittable.com/submit"><img alt="OLA_Scholarships" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_02february/2023_ola_scholarships_flyer_.png" style="width: 300px; height: 300px; float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px;" /></a>
<p>&nbsp;</p>
<p>Do you know any Latine students that would benefit from our scholarships? If so, please help us spread the word so we can reach as many students as possible.<br /></p>
<p>The link to the applications can be found <a href="https://theactuarialfoundation.submittable.com/submit">here</a>, and applications are due&nbsp;<strong>April 15, 2023</strong>.</p>
<p>If you have any questions we will be hosting a drop-in Q&amp;A session on <strong>March 29th, 2023 from 5:00 PM - 10:00 PM ET</strong>. To register, please click the link <a href="https://members.latinoactuaries.org/events/EventDetails.aspx?id=1728233&amp;group=">here</a>.</p>
<p>We also encourage students to look at all the scholarships listed in case they qualify for something else. We'd like them to get as much support as possible!</p>
<p>&nbsp;</p>
<div>
    <hr />
    <h4><span style="color: #f57223;">Conference of Consulting Actuaries</span></h4>
    <h4><span style="color: #f57223;"><img alt="CCA_Logo" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_03march/cca.png" style="float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 175px; height: 151px;" /></span></h4>
    <p>The Conference of Consulting Actuaries has two virtual meetings coming up and we wanted to pass the message along to our members! For more information, and for registration, please look below.</p>
    <p><strong><a href="https://www.ccactuaries.org/HCMeeting">CCA Healthcare Meeting</a> | April 11th &amp; 13th </strong></p>
    <p><em>Every year, the CCA hosts a 2-day, 8-session Healthcare Meeting covering a wide variety of key healthcare topics. This timely and relevant virtual meeting provides you with an opportunity to learn about the latest developments in an ever-changing and popular practice area. Experts in the healthcare field will address issues facing employers and consultants, outline opportunities for savings and improvements, and offer potential solutions that will allow actuaries to deliver better value.
When you register for this meeting you will be automatically registered for the April 12 CCA webinar, <a href="https://www.ccactuaries.org/event-detail/2023/04/12/default-calendar/the-3ms-and-the-ties-that-bind-federal-healthcare-regulatory-direction">The 3Ms and the Ties That Bind Federal Healthcare Regulatory Direction</a>, at no additional cost.</em></p>
    <p><strong style="font-weight: bold;"><a href="http://www.ccactuaries.org/EAConference2023">2023 CCA Enrolled Actuaries Conference</a> | May 1st, 3rd, &amp; 5th</strong></p>
    <p><em>This virtual meeting will offer 39 sessions over three days with four concurrent session blocks offering you the opportunity to earn EA credit for your renewal. 
The program will include sessions of interest to all pension actuaries, whether you practice in the single, multiemployer, or public plan arena, and whether you work for large, medium or small plan sponsors.  
Enrolled Actuaries may earn up to 18.5 credit hours of continuing education credits under the Joint Board for the Enrollment of Actuaries (JBEA) requirements. Total credits include 2.0 EA ethics credits and 1.5 credits toward the bias requirement. Many of the sessions will be recorded, allowing for participants to earn more CPD credits under the Qualification Standards.</em></p>
    <div>
        <hr />
        <h4><span style="color: #f57223;">Spanish SpeakING Actuaries--DEI and the Actuarial Profession</span>&nbsp;</h4>
        <p>For our Spanish Speaking Actuaries, OLA Treasurer, J. Alfonso Carrillo-Lundgren, will be speaking on DEI and the actuarial profession on a session organization by the Universidad Anahuac in Mexico and the Mexican Colegio Nacional de Actuarios
            (main actuarial professional associate in Mexico). This will include an overview of the affinity actuarial organizations in the US and well as what we do here at OLA!</p>
        <p><strong>This virtual event will be held Wednesday, March 15th at 6:00 PM ET (4:00 PM CDXT)</strong>. For more information and the Zoom ID, please check out the flyer <a href="https://cdn.ymaws.com/latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/2023_03march/jornadas.png">here</a>.</p>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <p><em></em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #f57223;">
                    <h3 style="text-align: center;"><a id="Community Spotlights"><span style="color: #ffffff;"><strong>COMMUNITY SPOTLIGHTS</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <div>
    </div>
    <div><span style="text-decoration-line: underline;"></span>
        <div>
            <h4><span style="color: #9f151b;"><img alt="RicardoReyes_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/ricardo_reyes.jpeg" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 175px; height: 263px;" /></span></h4>
            <h4><span style="color: #9f151b;">RICARDO REYES</span></h4>
        </div>
        <p><span style="text-decoration-line: underline;">Hometown</span>: Berkeley, CA</p>
        <p><span style="text-decoration-line: underline;">University</span>: University of California, Berkeley</p>
        <p><span style="text-decoration-line: underline;">Major</span>: Data Science</p>
        <p><span style="text-decoration-line: underline;">Expected Graduation Date</span>: May 2024</p>
        <p><span style="text-decoration-line: underline;">Tell us a little about yourself</span>: In my free time, I love to go out and try new places to eat, hang out with my close friends and work out at the gym.</p>
        <p><span style="text-decoration-line: underline;">How has OLA impacted your career?</span>&nbsp;Super happy to have joined OLA in the beginning of my actuarial career. Thanks to OLA, I've kept myself going in the actuarial field, met awesome mentors and
            have created long lasting relationships especially via their travel/conference scholarship. In addition, OLA has provided me with an academic scholarship that has kept me motivated in school and encouraged me to keep promoting OLA to others
            and help more Latinos join the actuarial industry.</p>
        <p><span style="text-decoration-line: underline;">How have you been involved with OLA so far?</span>&nbsp;I have participated in the RLP Program and OLA Academy, and have also been the recipient of an Academic Scholarship and a Conference/Convention Travel
            Scholarhsip.
        </p>
        <p><span style="text-decoration-line: underline;">How did you discover the actuarial profession?</span>&nbsp;I discovered the actuarial profession by researching online various careers that integrated both math and business and that's where I found out
            about actuarial science.</p>
        <div><span style="text-decoration-line: underline;"></span>
            <div><em>Ricardo is currently&nbsp;an actuarial intern with Nationwide! He also hopes to keep promoting OLA within his community and passing Exam P this summer (good luck!!).</em></div>
            <div><em>&nbsp;</em></div>
            <div><em><a href="https://www.linkedin.com/in/rick-reyes/">Connect with Ricardo on LinkedIn!</a></em></div>
            <hr />
        </div>
        <h4><span style="color: #9f151b;"><img alt="SteveFloresMedrano_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/steve_flores-medrano.png" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 250px; height: 258px;" /></span></h4>
        <h4><span style="color: #9f151b;">STEVE FLORES-MEDRANO</span></h4>
        <p><span style="color: #9f151b;"><span style="font-size: 20px;"><em>Higher Educations Relations&nbsp;PM</em></span></span>
        </p>
        <p><span style="text-decoration-line: underline;">Current Employer &amp; Position</span>: Vault Reciprocal Exchange, Jr. Actuarial Analyst</p>
        <p><span style="text-decoration-line: underline;">Hometown</span>: Cumming, GA</p>
        <p><span style="text-decoration-line: underline;">Current City</span>: St. Petersburg, FL</p>
        <p><span style="text-decoration-line: underline;">University</span>: Georgia State University, Class of 2020</p>
        <p><span style="text-decoration-line: underline;">Major</span>: Bachelor of Business Administration - Actuarial Science</p>
        <p><span style="text-decoration-line: underline;">Why did you decide to become a PM?</span>&nbsp;I'm originally from north Georgia and lived all my life there until I moved to St. Petersburg, FL. Here, I got my job at Vault, and I have loved it ever since!
            Whenever I'm not in the office, I'm spinning the decks as a bedroom DJ! I am open for any gigs if anyone has any available ;) </p>
        <p>I decided to become a program manager since I am the byproduct of being a first generation immigrant: there are endless possibilities but not much guidance in regards to what your future calling is. Being a PM would help me reach out to other
            Latines in my prior situation and help them to become their best selves at least professionally. </p>
        <p>The thing that I am most excited for 2023 is the new initiatives to reach out to community colleges. There are many Latine students that deserve to know about the actuarial profession, and community colleges are a great avenue to reach out to
            the Latines that may have more use of the resources that OLA offers. </p>
        <p>Before becoming a PM, I was one of the many recipients of help from OLA. I received help in writing my resume from none other than Regina, and Lala personally made sure that I was able to receive a stipend for my study materials and first exam.
            I also created the OLA Pulse Check, which helps connect all of our OLA candidates with each other and lets us hear about what we can better do to serve the OLA community.</p>
        <div><span style="text-decoration-line: underline;">What advice would you like to give to aspiring actuaries?</span>&nbsp;Know that thousands of people have passed these tests before. You can get through them, even if it takes you longer than expected.
        </div>
    </div>
    <p>
    </p>
    <div><em>Steve loves gaming, is a DJ, a big fan of pop culture, and loves ice cream!</em></div>
    <div><em>&nbsp;</em></div>
    <div><em><a href="www.linkedin.com/in/stevefloresmedrano">Connect with Steve on LinkedIn!</a></em></div>
    <hr />
    <div><em>We enjoy featuring and sharing the stories of members of the Latine actuarial community! If you have a nomination for a spotlight, please ask them to fill out this&nbsp;<a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">form</a>&nbsp;with their information/headshot.</em><br /></div>
    <div>
        <hr />
    </div>
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #9f151b;">
                    <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <div>
        <h4><span style="color: #f57223;">Platinum, Gold PLus, and Gold Corporate Sponsor Job postings</span></h4>
        <p>Please click on the following job posting titles to explore openings sent to us by our Platinum, Gold Plus, and Gold Corporate Sponsors.</p>
        <ul>
            <li>Milliman
                <ul>
                    <li><a href="https://recruiting2.ultipro.com/MIL1017/JobBoard/f54234e9-dfde-b183-fd20-4fbdb19cba7a/OpportunityDetail?opportunityId=eb7368bb-2551-45db-abf8-6d81446af68e">Actuarial Analyst - Entry Level</a></li>
                    <li><a href="https://recruiting2.ultipro.com/MIL1017/JobBoard/f54234e9-dfde-b183-fd20-4fbdb19cba7a/OpportunityDetail?opportunityId=b03b4224-af93-471e-af83-5aa28e5c6853">Actuarial Analyst - Experienced</a></li>
                </ul>
            </li>
            <li>Lincoln Financial Group
                <ul>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Radnor-Actuary,-Model-Risk-&amp;-Governance-(remote)-PA/987281700/?utm_source=emailcampaign&amp;utm_campaign=DEI">Actuary, Model Risk &amp; Governance</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Radnor-AVP,-Actuarial,-Model-Risk-&amp;-Governance-(REMOTE)-PA/987249900/?utm_source=emailcampaign&amp;utm_campaign=DEI">AVP, Actuarial, Model Risk &amp; Governance</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Greensboro-Actuary,-Life-financial-Strategy-&amp;-Management-NC-27395/985517100/?utm_source=emailcampaign&amp;utm_campaign=DEI">Actuary, Life Financial Strategy &amp; Management</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Greensboro-Sr_-Associate-Actuary-Life-Reinsurance-NC-27395/976466900/?utm_source=emailcampaign&amp;utm_campaign=DEI">Sr Associate Actuary - Life Reinsurance</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Greensboro-Actuary,-Life-Risk-Management-NC-27395/977690000/?utm_source=emailcampaign&amp;utm_campaign=DEI">Actuary, Life Risk Management</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Radnor-Actuary,-Investments-PA/954003400/?utm_source=emailcampaign&amp;utm_campaign=DEI">Actuary, Investments</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Radnor-Associate-Actuary,-Actuarial-Development-Program-(REMOTE)-PA/980236200/?utm_source=emailcampaign&amp;utm_campaign=DEI">Associate Actuary, Actuarial Development Program</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Omaha-Actuarial-Specialist,-Group-Assumptions-&amp;-Reserve-Strategy-NE-68046/962612700/?utm_source=emailcampaign&amp;utm_campaign=DEI">Actuarial Specialist, Group Assumptions &amp; Reserve Strategy</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Omaha-Director,-Actuarial-(Long-Term-Disability-Pricing)-NE-68046/973096500/?utm_source=emailcampaign&amp;utm_campaign=DEI">Director, Actuarial (Long Term Disability Pricing)</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Omaha-Sr_-Associate-Actuary,-Group-Protection-Valuation-NE-68046/985078500/?utm_source=emailcampaign&amp;utm_campaign=DEI">Sr. Associate Actuary, Group Protection Valuation</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Radnor-Actuary-Corporate-Finance-Appointed-Actuary-Team-(Remote)-PA/972552700/?utm_source=emailcampaign&amp;utm_campaign=DEI">Actuary - Corporate Finance Appointed Actuary Team</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Radnor-Actuarial-Analyst-II,-Actuarial-Development-Program-PA/980235200/?utm_source=emailcampaign&amp;utm_campaign=DEI">Actuarial Analyst II, Actuarial Development Program</a></li>
                    <li><a href="https://jobs.lincolnfinancial.com/job/Radnor-Analyst,-Actuarial-Technician-(Hybrid)-PA/984421600/?utm_source=emailcampaign&amp;utm_campaign=DEI">Analyst, Actuarial Technician</a></li>
                </ul>
            </li>
            <li>Brighthouse Financial
                <ul>
                    <li><a href="https://jobs.brighthousefinancial.com/job/Morristown-Managing-Actuary-(Morristown,-NJ-(Hybrid)-or-Charlotte,-NC-(Hybrid)-or-Fully-Remote)-NJ-07960/995758700/?utm_source=OrgofLatAct&amp;utm_campaign=Managing%20Actuary_OLA">Managing Actuary - Pricing</a></li>
                    <li><a href="https://jobs.brighthousefinancial.com/job/Charlotte-Actuary-Model-Risk-Management-(Morristown,-NJ-Charlotte,-NC-(Hybrid)-OR-Fully-Remote)-NC-28277/993544500/?utm_source=OrgofLatAct&amp;utm_campaign=Actuary%20MRM_OLA">Actuary Model Risk Management</a></li>
                    <li><a href="https://jobs.brighthousefinancial.com/job/Charlotte-Sr-Associate-Actuary-%28-Charlotte%2C-NC-%28Hybrid%29-or-Morristown%2C-NJ-%28Hybrid%29-or-Fully-Remote%29-NC-28277/998568600/">Sr. Associate Actuary</a></li>
                </ul>
            </li>

            <li>Corebridge Financial
                <ul>
                    <li><a href="https://corebridgefinancial.wd1.myworkdayjobs.com/CorebridgeFinancial/job/TX-Houston/Associate- Director_JR0000116-1">Associate Director &amp; Actuary</a></li>
                    <li><a href="https://corebridgefinancial.wd1.myworkdayjobs.com/CorebridgeFinancial/job/TX-Houston/ADP-Actuarial- Associate_JR0000090">ADP Actuarial Associate</a></li>
                    <li><a href="https://corebridgefinancial.wd1.myworkdayjobs.com/CorebridgeFinancial/job/TX-Houston/ADP-Actuarial-Associate- --PRT-Pricing_JR0000096">ADP Actuarial Associate - PRT Pricing</a></li>
                    <li><a href="https://corebridgefinancial.wd1.myworkdayjobs.com/CorebridgeFinancial/job/CA-Woodland-Hills/ADP-Assistant-Actuary_JR0000091">ADP Assistant Actuary</a><br /></li>
                    
                    <li><a href="https://corebridgefinancial.wd1.myworkdayjobs.com/CorebridgeFinancial/job/CA-Woodland-Hills/Individual-Retirement-R-D-Pricing_JR7000528-1">Associate Actuary - Individual Retirement R&amp;D Pricing</a><br /></li>
                    
                    <li><a href="https://corebridgefinancial.wd1.myworkdayjobs.com/CorebridgeFinancial/job/TX-Houston/ADP-Actuarial-Associate_JR7000159-1">ADP Actuarial Associate</a></li>
                </ul>
            </li>
        </ul>
        <h4></h4>
    </div>
    <div>
        <hr />
        <h4><span style="color: #f57223;">DO YOU HAVE JOB POSTINGS TO SHARE?</span></h4>
        <p>Our Platinum, Gold Plus, and Gold Corporate Sponsors can send us job postings for&nbsp;<strong>experienced</strong>&nbsp;professionals to be advertised in this monthly newsletter! Postings sent to&nbsp;<a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a>&nbsp;before
            <strong>March</strong><b>&nbsp;24, 2023</b>, will appear in the next newsletter that will be sent the first week of April.</p>
        <hr />
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <p><em>&nbsp;</em></p>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #f57223;">
                        <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>VOLUNTEER OPPORTUNITIES</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div>
            <h4><span style="color: #9f151b;">VOLUNTEER WITH OLA!</span></h4>
            <div>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests! If you do not already have an OLA Member Portal account, you can click&nbsp;<a href="https://members.latinoactuaries.org/general/register_member_type.asp?">here</a>&nbsp;to
                register.
            </div>
            <div>&nbsp;</div>
            <div>Check-out our Volunteer page at&nbsp;<a href="https://www.latinoactuaries.org/volunteer/">https://www.latinoactuaries.org/volunteer/</a>&nbsp;for more details on volunteer opportunities, and contact us at&nbsp;<a href="mailto:membership@latinoactuaries.org">membership@latinoactuaries.org</a>&nbsp;for
                more information!</div>
            <hr />
            <h4><span style="color: #9f151b;">OLA ACADEMY VOLUNTEER OPPORTUNITIES</span></h4>
            <div>OLA Academy, our signature program, is a self-paced and web-based program that helps prospective actuaries navigate the job search process. We provide training on resume writing, interviewing, networking, and designing a LinkedIn profile.
                Given the launch of OLA Academy's Spring 2023 Participation Period (which runs through June 30, 2023), we need volunteers for the following:</div>
            <ul>
                <li><strong>OLA Academy Coordinators</strong> who will support, guide, and mentor up to ten prospects in the same cohort (college/university students, recent graduates, or career changers).</li>
                <li><strong>Resume Reviewers</strong>&nbsp;to help OLA's prospects effectively communicate what they have achieved and why they would be great hires. These volunteers will review resumes for one or more actuarial entry-level applicants, based on
                    availability.
                </li>
                <li><strong>Mock Interviewers</strong>&nbsp;who can coach students on preparing for real internship or full-time job interviews. Some prospects have never interviewed in a professional setting, so you can help us increase their interview experience
                    and confidence! These volunteers interview around three prospects, on average, based on availability.</li>
                <li><strong>HireVue Submission Reviewers</strong> will help us prepare our job seekers in conveying their skills and competencies in a recorded interview. This skill is crucial given the increasing prevalence of virtual interview tools in
                    initial screening processes. HireVue is the platform we selected given its wide use in the industry. Volunteers will be asked to review mock HireVue screenings and provide written and constructive feedback for OLA Academy participants.</li>
            </ul>
            <div>If you're interested in any of the above opportunities, please indicate that interest in the "Volunteer Preferences" field in your OLA Member Portal profile, and email <a href="mailto:academy@latinoactuaries.org">academy@latinoactuaries.org</a>                if you have any questions! We will reach out to interested volunteers on a rolling basis to get them onboarded ASAP.<span style="background-color: #ffff00;">
        </span></div>
            <div><em>&nbsp;</em></div>
            <div><em>Note that you can volunteer for multiple programs simultaneously (as your schedule permits), so don't hesitate to sign-up if you're already volunteering in another capacity!</em>&nbsp; &nbsp; &nbsp;</div>
        </div>
        <div>
            <hr />
            <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
            <p><em>&nbsp;</em></p>
            <table style="width: 660px; height: 66px;" class="reTableSelected">
                <tbody>
                    <tr>
                        <td style="background-color: #9f151b;">
                            <h3 style="text-align: center;"><a id="Support OLA!"><span style="color: #ffffff;"><strong>Support OLA!</strong></span></a></h3>
                        </td>
                    </tr>
                </tbody>
            </table>
            <h4><span style="color: #f57223;">CORPORATE SPONSORSHIPS</span></h4>
            <p>We have different sponsorship tiers that can fit your company's size and strategy! If you are interested in sponsoring OLA, please e-mail us at <a href="mailto:info@latinoactuaries.org">info@latinoactuaries.org</a>. We can schedule a call
                and provide information you need or answer your questions.</p>
            <hr />
            <h4><span style="color: #f57223;">Individual Donations</span></h4>
            <p>OLA supports our Latine actuarial prospects (students, career changers, etc.) via scholarship programs, exam materials and registration reimbursements, and our travel program that sends prospects to the ALPFA and GIS conventions to help them
                network and secure jobs at the on-site career fairs.</p>
            <p>Individual donations of any amount can go a long way in helping us sustain these programs, so please click <a href="https://www.latinoactuaries.org/donate/">here</a> if interested in donating!</p>
            <hr />
            <div>
                <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
                <p><em>&nbsp;</em></p>
                <table style="width: 660px; height: 66px;" class="reTableSelected">
                    <tbody>
                        <tr>
                            <td style="background-color: #9f151b;">
                                <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
                <table style="width: 180px; height: 50px; left: 215.5px;" align="center">
                    <tbody>
                        <tr>
                            <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                            <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                            <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
                            <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.tiktok.com/@latinoactuaries?_t=8ZimdOHqnXy&amp;_r=1" class="fab fa-tiktok"></a></td>

                        </tr>
                    </tbody>
                </table>
                <p>&nbsp;</p>
                <div style="text-align: center;">
                    <table border="0" cellspacing="0" cellpadding="0" align="center" style="width: 164px; height: 50px; left: 252.5px;" class="reTableSelected">
                        <tbody>
                            <tr>
                                <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                                    <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" target="_blank" id="Visit our website"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                                        </span>
                                    </p>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                </div>
                <hr />
                <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
                <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
            </div>
        </div>
    </div>
</div>]]></description>
<pubDate>Tue, 14 Mar 2023 13:00:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: February 2023</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=630132</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=630132</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY NEWSLETTER</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>February 2023</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<h4><span style="color: #f57223;"><img alt="MarcelaGranados_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/marcela_headshot.jpg" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 200px; height: 260px;" /></span></h4>
<p>Dear OLA Community,<br /></p>
<p>
    This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and volunteer opportunities.</p>
<p>As an original OLA co-founder, I always believed in the need to have more Latine actuaries in the community. I had the pleasure of serving as Director of Marketing but stepped down from the role after having a baby and not being able to give 100%. A couple
    of years later, and I’m super excited to be back as Director of Membership. Our mission involves increasing the number of Latino Actuaries by promoting the profession and providing guidance, mentorship and networking opportunities. But now that we’ve
    grown, we also want to help Latinos advance their careers.</p>
<p>I am currently the Global Head of Insurance at Databricks, the Data & AI company. My actuarial skills are super relevant in my role, as I enable the field on insurance trends and use cases. I also apply heavy math and statistical concepts to the solution
    accelerators my team of data engineers and data scientists build.</p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at <a href="https://members.latinoactuaries.org/">members.latinoactuaries.org</a> to receive this newsletter and other important communications!</p>
<p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a> if you have any questions or feedback (or for corporate sponsors and partners, any items you'd like featured in this newsletter),
    and thank you for your continued support of OLA!</p>
<p> Strength lies in differences, not in similarities.
</p>
<p> Super excited for what’s to come!</p>
<p><strong>Marcela Granados, FCAS (she/her)</strong><br /><em>Director of Membership</em><span style="background-color: #ffff00;"><br /><em></em></span></p>
<hr />
<table style="width: 660px; height: 66px;" class="reTableSelected">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><em style="font-size: medium;"><a href="#Prior Month Highlights">January 2023 Highlights</a></em><br /></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#UpcomingEventsAnnouncements">Upcoming Events & Announcements</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Community Spotlights">Community Spotlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Volunteer Opportunities">Volunteer Opportunities</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Support OLA!">Support OLA!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span><br /></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p> </p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="Prior Month Highlights"><span style="color: #ffffff;"><strong>January 2023 Highlights</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4><span style="color: #f57223;">2023 OLA Annual Leadership Meeting</span></h4><img alt="OLA_Annual_Meeting" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_02february/annual_meeting.jpg" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 275px; height: 207px;"
/>
<p>At the end of January, we held our first in-person Annual Leadership Meeting since 2020! The OLA Leadership team got together in Scottsdale, AZ to strategize for 2023, figure out what we can do to make the biggest impact for the community, and of course
    spend time bonding and enjoying the limited time together (with a salsa lesson lead by two of our very own Program Managers!).</p>
<p>We'd like to thank the team members at Nationwide, one of OLA's Platinum Sponsors, for their invaluable assistance in planning this year's meeting at their Scottsdale, AZ, offices. We'd also like to thank the employers of many of OLA's Leadership team
    members for sponsoring their travel costs associated with attending this year's meeting.    </p>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em> </em></p>

<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="UpcomingEventsAnnouncements"><span style="color: #ffffff;"><strong>UPCOMING EVENTS & Announcements</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>OLA @ CAS RPM SEMINAR in SAN DIEGO</h4>
<p>The Casualty Actuarial Society (<strong>CAS</strong>) is hosting its <strong>Ratemaking, Product, and Modeling (RPM) Seminar</strong> from <strong>March 13-15, 2023</strong>, in <strong>San Diego, CA</strong>!</p>
<p>Anthony Lucero, OLA's Director of Early Career Development, will be attending the <strong>Seminar Luncheon</strong> on <strong>Tuesday, March 14, 2023</strong>, from <strong>12:00 P.M. - 1:30 P.M.</strong> to represent OLA as a table host and<strong> meet with other OLA members and allies</strong>.
    Special thanks to the CAS for their generous invitation and support!</p>
<p>Please email Anthony Lucero at <a href="mailto:events@latinoactuaries.org">events@latinoactuaries.org</a> if you are planning to attend the RPM Seminar so we can plan to connect with you at the event. We look forward to seeing you there!</p>
<hr />
<h4>CAS CALL FOR NOMINATIONS</h4>
<p><img alt="CAS_Call_For_Nom" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_02february/call_for_nom_2023.png" style="width: 150px; height: 150px; float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px;"
    /></p>
<p>The CAS Nominating Committee wants your input on the slate of candidates for the 2023 CAS elections for the Board of Directors and President-Elect. Any member may submit a nomination, and if you are a Fellow of the CAS, you are welcome to nominate yourself.</p>
<p><strong>The deadline for submissions in February 24, 2023.</strong></p>
<p><em>This could be a great way for OLA members to promote themselves as leaders and develop leadership skills outside of their employers!</em></p>
<p><a href="https://www.casact.org/article/2023-cas-elections-kick-call-nominations">Click here for more information.</a></p>
<p><a href="https://www.casact.org/form/input-to-nominating-committee-fo">Submit your nominations here.</a></p>
<hr />
<h4>Spread the news--OLA scholarships</h4>
<a href="https://theactuarialfoundation.submittable.com/submit"><img alt="OLA_Scholarships" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_02february/2023_ola_scholarships_flyer_.png" style="width: 300px; height: 300px; float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px;" /></a>
<p> </p>
<p> </p>
<p>Do you know any Latine students that would benefit from our scholarships? If so, please help us spread the word so we can reach as many students as possible.</p>
<p>The link to the applications can be found <a href="https://theactuarialfoundation.submittable.com/submit">here</a>, and applications are due <strong>April 15, 2023</strong>.</p>
<p>We also encourage students to look at all the scholarships listed in case they qualify for something else. We'd like them to get as much support as possible!</p>
<p> </p>
<div>
    <hr />
</div>
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em> </em></p>
<p><em></em></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="Community Spotlights"><span style="color: #ffffff;"><strong>COMMUNITY SPOTLIGHTS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<div>
</div>
<div><span style="text-decoration-line: underline;"></span>
    <h4><span style="color: #f57223;"><img alt="lucas_regina_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_02february/lucas_regina_headshot.jpg" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 250px; height: 258px;" /></span></h4>
    <h4><span style="color: #f57223;">Lucas Regina</span></h4>
    <p><span style="text-decoration-line: underline;">Hometown</span>: Arlington Heights, IL</p>
    <p><span style="text-decoration-line: underline;">University</span>: University of Iowa</p>
    <p><span style="text-decoration-line: underline;">Major</span>: B.S. Actuarial Science, Data Science, Mathematics, Certificate in Risk Management and Insurance</p>
    <p><span style="text-decoration-line: underline;">Expected Graduation Date</span>: December 2024</p>
    <div><span style="text-decoration-line: underline;">How has OLA impacted your career?</span> OLA has been such an incredible organization to be a part of! The career fairs hosted by OLA, in particular, introduced me to a variety of employers and helped
        me see the opportunities out there. Additionally, being a tutor for exams P and FM allows me to meet motivated, ambitious future actuaries; I am so grateful to be a part of their journey down the exam path! </div>
</div>
<p>
</p>
<div><em>Lucas has been a volunteer exam tutor for Exams P and FM for our other OLA members!</em></div>
<hr />
<div>
    <h4><span style="color: #f57223;"><img alt="RyanDiaz_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_02february/ryan_headshot.png" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px; width: 250px; height: 255px;" /></span></h4>
    <h4><span style="color: #f57223;">Ryan Diaz</span></h4>
</div>
<p><span style="text-decoration-line: underline;">Hometown</span>: Jacksonville, FL</p>
<p><span style="text-decoration-line: underline;">University</span>: University of Florida</p>
<p><span style="text-decoration-line: underline;">Major</span>: Finance</p>
<p><span style="text-decoration-line: underline;">Expected Graduation Date</span>: May 2025</p>
<p><span style="text-decoration-line: underline;">Tell us a little about yourself</span>: I like playing soccer, pickleball, and basketball. I’m also always looking for fun skate spots and am a frequent hiker!</p>
<p><span style="text-decoration-line: underline;">How has OLA impacted your career?</span> I love helping out with OLA in any way I can. They’ve been instrumental in helping me begin my actuarial career and I will always be grateful for that. They do a great
    job and are all incredibly passionate and kind people.
</p>
<p><span style="text decoration-line: underline;"><span style="text-decoration: underline;">How have you been involved with OLA so far?</span></span> I have participated in the OLA Academy, been an OLA Campus Ambassador, a member of the Rising Leaders Program,
    and have been the recipient of an academic scholarship, an exam reimbursement/stipend, and a conference/convention travel scholarship.
</p>
<div><span style="text-decoration-line: underline;"></span>
    <div><em>Ryan is currently an actuarial intern at Nationwide!</em></div>
    <p>
    </p>
    <div><em><a href="https://www.linkedin.com/in/ryan-diazz">Connect with Ryan on LinkedIn!</a></em></div>
</div>
<hr />
<div><em>We enjoy featuring and sharing the stories of members of the Latine actuarial community! If you have a nomination for a spotlight, please ask them to fill out this <a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">form</a> with their information/headshot.</em><br
    /></div>
<div>
    <hr />
</div>
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em> </em></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<div>
    <h4>Platinum, GOLd PLus, and Gold Corporate Sponsor Job postings</h4>
    <p>Please click on the following job posting titles to explore openings sent to us by our Platinum, Gold Plus, and Gold Corporate Sponsors.</p>
    <ul>
        <li>Nationwide
            <ul>
                <li><a href="https://nationwide.wd1.myworkdayjobs.com/Nationwide_Career/job/Ohio---Columbus-Metro/Actuary---Life-Insurance-COLI-BOLI-ICOLI---fully-remote_81049">Actuary - Life Insurance COLI/BOLI/ICOLI</a></li>
                <li><a href="https://nationwide.wd1.myworkdayjobs.com/Nationwide_Career/job/United-States---Remote/Actuarial-Sr-Consultant--PC_79339">Actuary Sr Consultant, P&C</a></li>
                <li><a href="https://nationwide.wd1.myworkdayjobs.com/Nationwide_Career/job/Iowa---Des-Moines/Actuarial-Sr-Consultant--Nationwide-Agricultural_77420">Actuarial Staff - Nationwide Agricultural</a></li>
                <li><a href="https://nationwide.wd1.myworkdayjobs.com/Nationwide_Career/job/Ohio/Actuary--Small-Commercial---Fully-Remote_81584-1">Actuary, Small Commercial</a></li>
            </ul>
        </li>
        <li>Ally
            <ul>
                <li><a href="https://ally.avature.net/careers/JobDetail/Senior-Analyst-Analytics/8783">Senior Analyst - Analytics</a></li>
            </ul>
        </li>
        <li>Corebridge Financial<br />
            <ul>
                <li><a href="https://corebridgefinancial.wd1.myworkdayjobs.com/CorebridgeFinancial/job/TX-Houston/Assistant-Actuary_JR7000021">Assistant Actuary</a></li>
            </ul>
        </li>
        <li>Allstate
            <ul>
                <li><a href="https://www.allstate.jobs/job/14947012/p-c-senior-actuarial-assistant-remote/">P&C Senior Actuarial Assistant</a></li>
            </ul>
        </li>

    </ul>
    <hr />
    <h4>Industry Job Postings</h4>
    <div>
        <p>Please click on the following job posting titles to explore additional openings sent to us by government agencies and our industry/community/education partners.</p>
        <div>
            <ul>
                <li>State of Connecticut
                    <ul>
                        <li><a href="https://www.jobapscloud.com/CT/sup/bulpreview.asp?R1=230117&R2=0051AR&R3=001">Insurance Actuary</a></li>
                    </ul>
                </li>
                <li>Purdue University, Mathematics
                    <ul>
                        <li><a href="https://www.mathjobs.org/jobs/list/21995">Lecturer in Actuarial Science</a></li>
                        <li><a href="https://www.mathjobs.org/jobs/list/21993">Professor of Practice in Actuarial Science</a></li>
                        <li><a href="https://www.mathjobs.org/jobs/list/21994">Tenure-Track/Tenured Position in Actuarial Science</a></li>
                        <li><a href="https://careers.purdue.edu/job/West-Lafayette-Lecturer-Actuarial-Science-IN-47906/984295100/">Lecturer-Actuarial Science</a></li>
                        <li><a href="https://careers.purdue.edu/job/West-Lafayette-Assistant-Professor-of-Practice-Actuarial-Science-IN-47906/984297400/">Assistant Professor of Practice-Actuarial Science</a></li>
                    </ul>
                </li>
            </ul>
        </div>
    </div>
</div>
<div>
    <hr />
    <h4>DO YOU HAVE JOB POSTINGS TO SHARE?</h4>
    <p>Our Platinum, Gold Plus, and Gold Corporate Sponsors can send us job postings for <strong>experienced</strong> professionals to be advertised in this monthly newsletter! Postings sent to <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a> before
        <b>February 24, 2023</b>, will appear in the next newsletter that will be sent the first week of March.</p>
    <hr />
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em> </em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #9f151b;">
                    <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>VOLUNTEER OPPORTUNITIES</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <div>
        <h4><span style="color: #f57223;">VOLUNTEER WITH OLA!</span></h4>
        <div>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests! If you do not already have an OLA Member Portal account, you can click <a href="https://members.latinoactuaries.org/general/register_member_type.asp?">here</a> to
            register.
        </div>
        <div> </div>
        <div>Check-out our Volunteer page at <a href="https://www.latinoactuaries.org/volunteer/">https://www.latinoactuaries.org/volunteer/</a> for more details on volunteer opportunities, and contact us at <a href="mailto:membership@latinoactuaries.org">membership@latinoactuaries.org</a> for
            more information!</div>
        <hr />
        <h4><span style="color: #f57223;">OLA ACADEMY VOLUNTEER OPPORTUNITIES</span></h4>
        <div>OLA Academy, our signature program, is a self-paced and web-based program that helps prospective actuaries navigate the job search process. We provide training on resume writing, interviewing, networking, and designing a LinkedIn profile. Given
            the launch of OLA Academy's Spring 2023 Participation Period (which runs through June 30, 2023), we need volunteers for the following:</div>
        <ul>
            <li><strong>OLA Academy Coordinators</strong> who will support, guide, and mentor up to ten prospects in the same cohort (college/university students, recent graduates, or career changers).</li>
            <li><strong>Resume Reviewers</strong> to help OLA's prospects effectively communicate what they have achieved and why they would be great hires. These volunteers will review resumes for one or more actuarial entry-level applicants, based on availability.</li>
            <li><strong>Mock Interviewers</strong> who can coach students on preparing for real internship or full-time job interviews. Some prospects have never interviewed in a professional setting, so you can help us increase their interview experience
                and confidence! These volunteers interview around three prospects, on average, based on availability.</li>
            <li><strong>HireVue Submission Reviewers</strong> will help us prepare our job seekers in conveying their skills and competencies in a recorded interview. This skill is crucial given the increasing prevalence of virtual interview tools in initial
                screening processes. HireVue is the platform we selected given its wide use in the industry. Volunteers will be asked to review mock HireVue screenings and provide written and constructive feedback for OLA Academy participants.</li>
        </ul>
        <div>If you're interested in any of the above opportunities, please indicate that interest in the "Volunteer Preferences" field in your OLA Member Portal profile, and email <a href="mailto:academy@latinoactuaries.org">academy@latinoactuaries.org</a>            if you have any questions! We will reach out to interested volunteers on a rolling basis to get them onboarded ASAP.<span style="background-color: #ffff00;">
        </span></div>
        <div><em> </em></div>
        <div><em>Note that you can volunteer for multiple programs simultaneously (as your schedule permits), so don't hesitate to sign-up if you're already volunteering in another capacity!</em><br /></div>
        <div><span style="font-size: 26px; letter-spacing: 1px; text-transform: uppercase; font-family: Montserrat, sans-serif; color: #9f151b;"></span></div>
        <hr />
        <h4><span style="color: #f57223;">VOLUNTEER WITH THE SOA FOR "BE AN ACTUARY DAY" AT TEMPLE UNIVERSITY</span></h4>
        <h4><span style="color: #f57223;"><a href="https://engage.soa.org/volunteeropportunities/volunteer-opportunity-details?VolunteerOpportunityKey=921ae7aa-8f63-44de-a47b-0185c6e0ff8d"><img alt="BeAnActuaryDay" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_02february/philadelphia_be_an_actuary_d.png" style="float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px; width: 175px; height: 227px;" /></a></span></h4>
        <p>The SOA is looking for professionals at the ASA or FSA level to share their passion and experience with future actuaries in the Philadelphia area!</p>
        <p>Volunteers will serve as table leads for a high school student-facing event. This event is under the "Be An Actuary" brand, which is a joint effort between the SOA and CAS to grow the pipeline of students in the actuarial profession.</p>
        <p>Volunteers will talk about and answer questions about the profession as well as help students work through math problems and games.</p>
        <p>This event is scheduled to be held in-person on <strong>Monday, March 6</strong> from 9:00 A.M. - 1:00 P.M. at Temple University.</p>
        <p>For more information and to apply, please click <a href="https://engage.soa.org/volunteeropportunities/volunteer-opportunity-details?VolunteerOpportunityKey=921ae7aa-8f63-44de-a47b-0185c6e0ff8d">here</a>.</p>
        <hr />
        <h4><span style="color: #f57223;">Volunteer for the CAS Race and Insurance Pricing Task Force</span></h4>
        <img alt="CASLogo" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_01january/cas_logo.png" style="width: 150px; height: 150px; float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px;" />
        <p>The Casualty Actuarial Society is seeking credentialed Property & Casualty actuaries to participate in our CAS Approach to Race and Insurance Pricing effort. </p>
        <p class="xm9156602229711683705fluidplugincopy1" style="background: white;"><span style="background: white; color: #242424;">In 2022, the CAS Board Diversity, Equity and Inclusion Committee supported the publication of the <a href="https://www.casact.org/publications-research/research/research-paper-series-race-and-insurance-pricing">CAS Research Paper Series on Race and Insurance Pricing.</a> The Race and Insurance Pricing Task Force will carry this work forward in 2023 with additional research to address actuarial issues of property and casualty insurance ratemaking that are relevant to the insurance industry discourse on the impact of potential racial bias in insurance, as it supports advancing the body of knowledge of actuarial practice. You are not required to perform research to participate in this task force, unless you want to! The task force charge includes reviewing and refining potential research topics proposed for Phase 2 of the CAS Approach to Race and Insurance Pricing, drafting requests for research proposals on selected topics, evaluating research proposals and participating in project oversight groups for CAS-commissioned research on these topics. The expected time commitment is approximately 20 hours over the first six months of 2023. Potential volunteer time commitments in the second half of 2023 may vary based on the projects kicked off in the first half of the year. If you are interested in joining this task force, email Mallika Bender, DE&I Staff Actuary, at <a href="mailto:mbender@casact.org">mbender@casact.org</a>.</span></p>
    </div>
    <div>
        <hr />
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <p><em> </em></p>
        <table style="width: 660px; height: 66px;" class="reTableSelected">
            <tbody>
                <tr>
                    <td style="background-color: #f57223;">
                        <h3 style="text-align: center;"><a id="Support OLA!"><span style="color: #ffffff;"><strong>Support OLA!</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <h4>CORPORATE SPONSORSHIPS</h4>
        <p>We have different sponsorship tiers that can fit your company's size and strategy! If you are interested in sponsoring OLA, please e-mail us at <a href="mailto:info@latinoactuaries.org">info@latinoactuaries.org</a>. We can schedule a call and
            provide information you need or answer your questions.</p>
        <hr />
        <h4>Individual Donations</h4>
        <p>OLA supports our Latine actuarial prospects (students, career changers, etc.) via scholarship programs, exam materials and registration reimbursements, and our travel program that sends prospects to the ALPFA and GIS conventions to help them network
            and secure jobs at the on-site career fairs.</p>
        <p>Individual donations of any amount can go a long way in helping us sustain these programs, so please click <a href="https://www.latinoactuaries.org/donate/">here</a> if interested in donating!</p>
        <hr />
        <div>
            <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
            <p><em> </em></p>
            <table style="width: 660px; height: 66px;">
                <tbody>
                    <tr>
                        <td style="background-color: #9f151b;">
                            <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                        </td>
                    </tr>
                </tbody>
            </table>
            <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
            <table style="width: 180px; height: 50px; left: 215.5px;" align="center">
                <tbody>
                    <tr>
                        <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                        <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                        <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
                        <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.tiktok.com/@latinoactuaries?_t=8ZimdOHqnXy&_r=1" class="fab fa-tiktok"></a></td>

                    </tr>
                </tbody>
            </table>
            <p> </p>
            <div style="text-align: center;">
                <table border="0" cellspacing="0" cellpadding="0" align="center" style="width: 164px; height: 50px; left: 252.5px;" class="reTableSelected">
                    <tbody>
                        <tr>
                            <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                                <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" target="_blank" id="Visit our website"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                                    </span>
                                </p>
                            </td>
                        </tr>
                    </tbody>
                </table>
            </div>
            <hr />
            <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
            <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
        </div>
    </div>
</div>]]></description>
<pubDate>Thu, 9 Feb 2023 13:00:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Mid-Month Update: January 18, 2023</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=628473</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=628473</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY Mid-Month Update</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>JAnuary 18, 2023</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<p>Dear OLA Community,</p>
<p>This mid-month update is provided to our professional members, industry sponsors, partners, allies, and subscribers as a supplement to our usual monthly industry newsletter whenever there is time-sensitive information to share prior to the release of
    the following monthly newsletter. Please check-out the announcements below!&nbsp;</p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at&nbsp;<a href="https://members.latinoactuaries.org/">members.latinoactuaries.org</a>&nbsp;to receive this newsletter and other important communications!</p>
<p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a> if you have any questions or feedback (or for corporate sponsors and partners, any items you'd like featured in this newsletter),
    and thank you for your continued support of OLA!</p>
<p><strong>Anthony Lucero, ASA (he/him)</strong><br /><em>2022 Director of Membership</em><br /><em>2023 Director of Early Career Development</em></p>
<hr />
<table style="width: 660px; height: 66px;" class="reTableSelected">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Upcoming Events">Upcoming Events</a></em></span><br /></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span><br /></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span><br /></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p>&nbsp;</p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="Upcoming Events"><span style="color: #ffffff;"><strong>UPCOMING EVENTS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_01january/trv_actuarial_networking_fly.png" style="border: 5px solid #9f151b; float: right; margin-top: 5px; margin-left: 15px; margin-bottom: 5px; width: 225px; height: 294px;" />
<h4><span style="color: #f57223;">Travelers Actuarial Group Networking Event</span></h4>
<p>Calling all <strong>experienced Actuarial professionals</strong>! Travelers is hosting a <strong>networking event</strong> themed around the personal diversity journeys of Travelers leaders within the company along with a keynote speech from their Chief
    Diversity &amp; Inclusion Officer, Dr. Lauren Young.<br /><br />This event will be held <strong>virtually</strong> on <strong>Wednesday, February 15, 2023 from 12:00 - 1:00 PM EST</strong>.<br /><br />For more information, you can reference the flyer
    <a href="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/trv_actuarial_networking_fly.pdf">here</a> and register using the link in the flyer or by clicking <a href="https://travelers.zoom.us/meeting/register/tJAtc-2qqjIvGtc6D0ytnJlTbDV5Rn11Y-PF">here</a>.</p>
<hr />
<img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/alpfa_mixer_phoenix.png" style="border: 5px solid #9f151b; float: right; margin-top: 5px; margin-left: 15px; margin-bottom: 5px; width: 300px; height: 300px;" />
<h4><span style="color: #f57223;">OLA-ALPFA PHOENIX MIXER</span></h4>
<p>OLA is excited to collaborate with the Association of Latino Professionals For America (ALPFA) Phoenix Chapter to offer both communities the chance to connect at a <strong>Social Mixer</strong> taking place <strong>next week,</strong> <strong>concurrent with OLA's 2023 Annual Leadership Meeting!</strong></p>
<p><strong>Date</strong>:&nbsp;Thursday, January 26, 2023<br /><strong>Time</strong>: 6:00 - 8:00 P.M. MST<br /><strong>Location</strong>:&nbsp;Fireside at Desert Ridge Community Center, 3775 East Lone Cactus Drive, Phoenix, AZ 85050</p>
<p><strong>Register </strong>on the Eventbrite site <a href="https://www.eventbrite.com/e/alpfa-phoenix-social-mixer-tickets-507059066317">here</a>&nbsp;<strong>by this Friday, January 20, 2023</strong>!</p>
<p>We invite any OLA prospects and professionals, allies, academic institutions, industry partners, and corporate sponsors to attend! For those representing academic institutions, industry partners, and corporate sponsors, <strong>we ask that each institution/organization
    limits their attendance to two representatives each</strong> due to venue capacity constraints.</p>
<p>Please email us at <a href="mailto:events@latinoactuaries.org">events@latinoactuaries.org</a> if you have any questions. We look forward to seeing you there!</p>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>
<p><em></em></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<div>
    <h4>Job Postings as of JAnuary 16, 2023</h4>
    <p>Please click on the following job posting titles to explore openings sent to us by our Platinum, Gold Plus, and Gold Corporate Sponsors.</p>
    <ul>
        <li>Nationwide

            <ul>
                <li><a href="https://nationwide.wd1.myworkdayjobs.com/Nationwide_Career/job/Ohio---Columbus-Metro/Consultant--Actuarial-Research-Analytics---P-C_78123">Consultant, Actuarial Research Analytics - P&amp;C</a><br /></li>

                <li><a href="https://nationwide.wd1.myworkdayjobs.com/Nationwide_Career/job/United-States---Remote/Actuarial-Sr-Consultant--PC_79339">Actuarial Sr Consultant, P&amp;C - Must be based near New York City</a></li>
                <li><a href="https://nationwide.wd1.myworkdayjobs.com/Nationwide_Career/job/Iowa---Des-Moines/Actuarial-Sr-Consultant--Nationwide-Agricultural_77420">Actuarial Staff - Nationwide Agricultural - Fully Remote</a></li>
                <li><a href="https://nationwide.wd1.myworkdayjobs.com/Nationwide_Career/job/Ohio/Actuary--Small-Commercial---Fully-Remote_81584-1">Actuary, Small Commercial - Fully Remote</a><br /></li>
            </ul>
        </li>
    </ul>
    <hr />
    <h4>DO YOU HAVE JOB POSTINGS TO SHARE?</h4>
    <p>Our Platinum, Gold Plus, and Gold Corporate Sponsors can send us job postings for&nbsp;<strong>experienced</strong>&nbsp;professionals to be advertised in this monthly newsletter! Postings sent to&nbsp;<a href="mailto:corpengagement@latinoactuaries.org">corpengagement@latinoactuaries.org</a>&nbsp;before
        <b>January 24, 2023</b>, will appear in the next newsletter that will be sent the first week of February.</p>
    <hr />
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #9f151b;">
                    <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <table style="width: 180px; height: 50px; left: 215.5px;" align="center" class="reTableSelected">
        <tbody>
            <tr>
                <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
            </tr>
        </tbody>
    </table>
    <p>&nbsp;</p>
    <div style="text-align: center;">
        <table border="0" cellspacing="0" cellpadding="0" align="center" style="width: 164px; height: 50px; left: 252.5px;" class="reTableSelected">
            <tbody>
                <tr>
                    <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                        <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" target="_blank" id="Visit our website"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                            </span>
                        </p>
                    </td>
                </tr>
            </tbody>
        </table>
    </div>
    <hr />
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
</div>]]></description>
<pubDate>Wed, 18 Jan 2023 14:00:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: January 2023</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=626946</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=626946</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY NEWSLETTER</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>JAnuary 2023</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<p>Dear OLA Community,<br /></p>
<p>Happy New Year! This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and
    volunteer opportunities.</p>
<p>As occurs at the beginning of every year, the OLA Leadership team adds new faces and evolves to meet our community's rapid growth! While we will introduce the 2023 OLA Leadership team in our next issue, I want to provide the first announcement that I
    will be filling Regina Kintana's shoes as the new Director of Early Career Development since she will now serve OLA as President in 2023! Please join us in congratulating her and wishing her well in this new endeavor.</p>
<p>I want to use this opportunity to thank you all for your support this past year as we continued to improve the OLA experience for our stakeholders in 2022, not least (from the Membership perspective) with the launch of this Industry Newsletter and the
    OLA Member Portal. Look out for further communications from my successor, who will provide an introduction in the next issue.</p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at&nbsp;<a href="https://members.latinoactuaries.org/">members.latinoactuaries.org</a>&nbsp;to receive this newsletter and other important communications!</p>
<p>Please reach out to our newsletter team at <a href="mailto:newsletter@latinoactuaries.org">newsletter@latinoactuaries.org</a> if you have any questions or feedback (or for corporate sponsors and partners, any items you'd like featured in this newsletter),
    and thank you for your continued support of OLA!</p>
<p><strong>Anthony Lucero, ASA (he/him)</strong><br /><em>2022 Director of Membership</em><br /><em>2023 Director of Early Career Development</em></p>
<hr />
<table style="width: 660px; height: 66px;" class="reTableSelected">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><em style="font-size: medium;"><a href="#Prior Month Highlights">Fall 2022 Highlights</a></em><br /></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Upcoming Events">Upcoming Events</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Community Spotlights">Community Spotlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Volunteer Opportunities">Volunteer Opportunities</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Support OLA!">Support OLA!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span><br /></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p>&nbsp;</p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="Prior Month Highlights"><span style="color: #ffffff;"><strong>Fall 2022 Highlights</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4><span style="color: #f57223;">OLA @ CCA 2022 Annual Meeting</span></h4>
<img alt="OLA_CCA" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_01january/2022_CCA2.png" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px; width: 300px; height: 175px;" />
<p>OLA members Lorena Gonzalez, Daniel Rivas, and Carolina Santiago were awarded the OLA travel scholarship to attend the Conference of Consulting Actuaries (CCA) Annual Meeting and learn about the latest trends in the actuarial field alongside hundreds
    of actuaries! </p>
<p>This group was accompanied by OLA leaders, Manuel Guerra, OLA's Director of Corporate Engagement, and Adrian Corredoira, University Relations Program Manager.</p>
<p>Thank you to the CCA, a Platinum Sponsor of OLA, for the invitation and continuous support!</p>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p>&nbsp;</p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Upcoming Events"><span style="color: #ffffff;"><strong>UPCOMING EVENTS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>2023 OLA Annual LEadership Meeting</h4>
<p>OLA is excited to bring together over twenty new and returning members of the OLA Leadership team (consisting of the Board of Directors and Program Managers) to its first in-person Annual Leadership Meeting since 2020! The 2023 Annual Leadership Meeting
    will be held in Phoenix, AZ, from January 25-27.</p>
<p>We'd like to thank the team members at Nationwide, one of OLA's Platinum Sponsors, for their invaluable assistance in planning this year's meeting at their Scottsdale, AZ, offices. We'd also like to thank the employers of many of OLA's Leadership team
    members for sponsoring their travel costs associated with attending this year's meeting. A more detailed listing of event sponsors and takeaways from this meeting will be featured in our next issue. Our team is looking forward to gathering and planning
    another great year!</p>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p><p><em>&nbsp;</em></p>
<p><em></em></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="Community Spotlights"><span style="color: #ffffff;"><strong>COMMUNITY SPOTLIGHTS</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<div>
</div>
<div><span style="text-decoration-line: underline;"></span>
    <h4><span style="color: #f57223;"><img alt="KaleyTeijeiro_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_01january/kaley_t_headshot_small.png" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px;" /></span></h4>
    <h4><span style="color: #f57223;">Kaley Teijeiro</span></h4>
    <p><span style="text-decoration-line: underline;">Hometown</span>: Miami, FL</p>
    <p><span style="text-decoration-line: underline;">University</span>: Florida International University</p>
    <p><span style="text-decoration-line: underline;">Major</span>: Finance</p>
    <p><span style="text-decoration-line: underline;">Expected Graduation Date</span>: May 2023</p>
    <p><span style="text-decoration-line: underline;">Tell us a little about yourself</span>: Some of my hobbies are going to the beach, playing volleyball, and reading.</p>
    <div><span style="text-decoration-line: underline;">How has OLA impacted your career?</span>&nbsp;OLA has been an invaluable resource to me as I navigated entering the actuarial field. The career fairs were extremely helpful in the job search process because
        they gave me the chance to speak directly to actuaries and recruiters at the companies I was interested in, and most of my offers came about through the career fairs. OLA was also kind enough to sponsor my attendance to the Gamma Iota Sigma Conference
        in Charlotte, where I got to meet and connect with other actuarial students and professionals. Overall, OLA has been so helpful to me, and I would highly encourage other Latino actuarial students to take advantage of all the resources they provide.</div>
</div>
<p>
</p>
<div><em>Kaley is currently a student and will be starting as a full-time Actuarial Analyst at CNA after she graduates in May 2023!</em></div>
<hr />
<div>
    <h4><span style="color: #f57223;"><img alt="AliciaDuran_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_01january/alicia_d_headshot.png" style="border: 5px solid #9f151b; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px;" /></span></h4>
    <h4><span style="color: #f57223;">ALICIA DURAN</span></h4>
</div>
<p><span style="text-decoration-line: underline;">Hometown</span>: Dickinson, TX</p>
<p><span style="text-decoration-line: underline;">University</span>: Texas A&amp;M University</p>
<p><span style="text-decoration-line: underline;">Major</span>: Applied Mathematics</p>
<p><span style="text-decoration-line: underline;">Expected Graduation Date</span>: December 2023</p>
<p><span style="text-decoration-line: underline;">Tell us a little about yourself</span>: I'm an avid reader and I'm especially fond of mysteries, thrillers, romance, anything that can get a reaction out of me! A fun fact about me is I couldn't tell my right
    from my left until I was 15 when I started learning how to drive!</p>
<p><span style="text-decoration-line: underline;">How has OLA impacted your career?</span>&nbsp;The Organization of Latino Actuaries has become one of my biggest support systems in helping me progress individually and professionally. OLA is united by one goal:
    to create a growing and supporting community for students and professionals alike. Everyone is so supportive and you are encouraged to put yourself out there with so many different opportunities available from scholarships to professional development
    opportunities. Getting involved with OLA was probably the best decision I've ever made in my academic career.</p>
<div><span style="text-decoration-line: underline;"></span>
    <div><span style="text-decoration-line: underline;">What are your professional development goals?</span>&nbsp;I'm hoping to have at least two actuarial exams passed in the next two years!</div>
    <p>
    </p>
    <div><em><a href="https://www.linkedin.com/in/aliciadurann/">Connect with Alicia on LinkedIn!</a></em></div>
</div>
<hr />
<div><em>We enjoy featuring and sharing the stories of members of the Latine actuarial community! If you have a nomination for a spotlight, please ask them to fill out this&nbsp;<a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">form</a>&nbsp;with their information/headshot.</em><br /></div>
<div>
    <hr />
</div>
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<div>
    <h4>Job Postings as of December 24, 2022</h4>
    <p>OLA Members, please click on the following job posting titles to explore openings sent to us by our Platinum, Gold Plus, and Gold Corporate Sponsors.</p>
    <ul>
        <li>Ally Financial
            <ul>
                <li>&nbsp;<a href="https://ally.avature.net/careers/JobDetail/Senior-Actuarial-Analyst-5k-Sign-On-Bonus/8222">Senior Actuarial Analyst</a><br /></li>
            </ul>
        </li>
    </ul>
    <hr />
    <h4>DO YOU HAVE JOB POSTINGS TO SHARE?</h4>
    <p>Our Platinum, Gold Plus, and Gold Corporate Sponsors can send us job postings for&nbsp;<strong>experienced</strong>&nbsp;professionals to be advertised in this monthly newsletter! Postings sent to&nbsp;<a href="mailto:corpengagement@latinoactuaries.org">corpengagement@latinoactuaries.org</a>&nbsp;before
        <b>January 24, 2023</b>, will appear in the next newsletter that will be sent the first week of February.</p>
    <hr />
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #9f151b;">
                    <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>VOLUNTEER OPPORTUNITIES</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <div>
        <h4><span style="color: #f57223;">VOLUNTEER WITH OLA!</span></h4>
        <div>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests! If you do not already have an OLA Member Portal account, you can click&nbsp;<a href="https://latinoactuaries.site-ym.com/general/register_member_type.asp?">here</a>&nbsp;to
            register.
        </div>
        <div>&nbsp;</div>
        <div>Check-out our Volunteer page at&nbsp;<a href="https://www.latinoactuaries.org/volunteer/">https://www.latinoactuaries.org/volunteer/</a>&nbsp;for more details on volunteer opportunities, and contact us at&nbsp;<a href="mailto:membership@latinoactuaries.org">membership@latinoactuaries.org</a>&nbsp;for
            more information!</div>
        <hr />
        <h4><span style="color: #f57223;">Become a Coordinator for a New OLA Program!</span></h4>
        <div>OLA is excited to launch the <strong>Rising Leaders Program (RLP)</strong> in January 2023 with our most engaged college/university students! Similar to OLA Academy, the RLP will group participants into small cohorts of approximately ten students
            each based on their expected graduation date and geographic location. The RLP will focus on leadership development beyond the foundational professional development skills provided via participation in OLA Academy.</div>
        <div>&nbsp;</div>
        <div>As a result, we need both Latine and non-Latine actuarial professionals who will serve as coordinators for one cohort each. Coordinators will be expected to attend an orientation session with the RLP Executive Committee and virtually meet with
            their cohort periodically to support and mentor them for the Spring 2023 Participation Period from January to June 2023.</div>
        <div>&nbsp;</div>
        <div>If you're interested in learning more about becoming a coordinator, please add "OLA Rising Leaders Program Coordinator" to the Volunteer Preferences field in your OLA Member Portal profile <strong>before January 15</strong>, and email <a href="mailto:risingleaders@latinoactuaries.org">risingleaders@latinoactuaries.org</a>            if you have any questions! Those who indicate this preference will be invited to the orientation session in mid to late January, after which volunteers can decide whether or not to commit to serving as coordinators for the Spring 2023 Participation
            Period.
        </div>
        <div>&nbsp;</div>
        <div><em>Note that you can serve as both an OLA Academy Coordinator and OLA RLP Coordinator simultaneously.</em></div>
        <hr />
        <h4><span style="color: #f57223;">CAS Seminar on Reinsurance</span></h4>
        <img alt="CASLogo" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/2023_01january/cas_logo.png" style="width: 125px; height: 125px; float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px;" />
        <div>The CAS is looking for presentations and speakers for their Seminar on Reinsurance hosted in Philadelphia in June 2023. They're looking for sessions focusing deeply on a narrow topic to ensure the audience leaves the session with a solid understanding
            and useful application regarding said topic.</div>
        <div>&nbsp;</div>
        <div>For more information and to submit a proposal for presentation, please follow the link <a href="https://www.casact.org/article/2023-cas-seminar-reinsurance-call-presentations-deadline-january-13-2023">here</a>&nbsp;to the CAS website. Deadline to apply
            is <strong>January 13, 2023</strong>. If you have any questions, please reach out directly to <a href="mailto:dcore@casact.org">David Core</a>, Director of Professional Education at CAS.</div>
        <hr />
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <p><em>&nbsp;</em></p>
        <table style="width: 660px; height: 66px;" class="reTableSelected">
            <tbody>
                <tr>
                    <td style="background-color: #f57223;">
                        <h3 style="text-align: center;"><a id="Support OLA!"><span style="color: #ffffff;"><strong>Support OLA!</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <h4>CORPORATE SPONSORSHIPS</h4>
        <p>We have different sponsorship tiers that can fit your company's size and strategy! If you are interested in sponsoring OLA, please e-mail us at <a href="mailto:info@latinoactuaries.org">info@latinoactuaries.org</a>. We can schedule a call and
            provide information you need or answer your questions.</p>
        <hr />
        <h4>Individual Donations</h4>
        <p>OLA supports our Latine actuarial prospects (students, career changers, etc.) via scholarship programs, exam materials and registration reimbursements, and our travel program that sends prospects to the ALPFA and GIS conventions to help them network
            and secure jobs at the on-site career fairs.</p>
        <p>Individual donations of any amount can go a long way in helping us sustain these programs, so please click <a href="https://www.latinoactuaries.org/donate/">here</a> if interested in donating!</p>
        <hr />
        <div>
            <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
            <p><em>&nbsp;</em></p>
            <table style="width: 660px; height: 66px;">
                <tbody>
                    <tr>
                        <td style="background-color: #9f151b;">
                            <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                        </td>
                    </tr>
                </tbody>
            </table>
            <table style="width: 180px; height: 50px; left: 215.5px;" align="center" class="reTableSelected">
                <tbody>
                    <tr>
                        <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                        <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                        <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
                    </tr>
                </tbody>
            </table>
            <p>&nbsp;</p>
            <div style="text-align: center;">
                <table border="0" cellspacing="0" cellpadding="0" align="center" style="width: 164px; height: 50px; left: 252.5px;" class="reTableSelected">
                    <tbody>
                        <tr>
                            <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                                <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" target="_blank" id="Visit our website"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                                    </span>
                                </p>
                            </td>
                        </tr>
                    </tbody>
                </table>
            </div>
            <hr />
            <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
            <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
        </div>
    </div>
</div>]]></description>
<pubDate>Fri, 6 Jan 2023 06:00:00 GMT</pubDate>
</item>
<item>
<title>OLA Industry Newsletter: October 2022</title>
<link>https://members.latinoactuaries.org/news/news.asp?id=618909</link>
<guid>https://members.latinoactuaries.org/news/news.asp?id=618909</guid>
<description><![CDATA[<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h1 style="text-align: center;"><a id="Top of Page"><span style="color: #ffffff;"><strong>OLA INDUSTRY NEWSLETTER</strong></span></a></h1>
                <h2 style="text-align: center;"><span style="color: #ffffff;"><em><strong>October 2022</strong></em></span></h2>
            </td>
        </tr>
    </tbody>
</table>
<p>Dear OLA Community,<br /></p>
<p>This industry newsletter is provided to our professional members, industry sponsors, partners, allies, and subscribers to keep you current with OLA's various activities, spotlight members of our community, and connect you with career and volunteer opportunities.
</p>
<p>If you are not already on our distribution list, please register for an OLA Member Portal account at&nbsp;<a href="https://members.latinoactuaries.org/">members.latinoactuaries.org</a>&nbsp;to receive this newsletter and other important communications!</p>
<p>Please reach out to me at <a href="mailto:membership@latinoactuaries.org">membership@latinoactuaries.org</a> if you have any questions or feedback, and thank you for your continued support of OLA!</p>
<p><strong>Anthony Lucero, ASA (he/him)</strong><br /><em>Director of Membership</em></p>
<hr />
<table style="width: 660px; height: 66px;" class="reTableSelected">
    <tbody>
        <tr>
            <td style="background-color: #f57223;">
                <h3 style="text-align: center;"><a id="In this Issue"><span style="color: #ffffff;"><strong>In this Issue</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4>Table of Contents</h4>
<ol>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#OLA Celebrates 5 Years">OLA Celebrates 5 Years!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#National Hispanic Heritage Month">National Hispanic Heritage Month</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Prior Month Highlights">Summer 2022 Highlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Upcoming Events">Upcoming Events</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Community Spotlights">Community Spotlights</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Career Corner">Career Corner</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Volunteer Opportunities">Volunteer Opportunities</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Support OLA!">Support OLA!</a></em></span></li>
    <li style="text-align: left;"><span style="font-size: 16px;"><em><a href="#Connect With Us">Connect With Us</a></em></span><br /></li>
</ol>
<hr />
<p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
<p><em>&nbsp;</em></p>
<table style="width: 660px; height: 66px;">
    <tbody>
        <tr>
            <td style="background-color: #9f151b;">
                <h3 style="text-align: center;"><a id="OLA Celebrates 5 Years"><span style="color: #ffffff;"><strong>OLA Celebrates 5 Years!</strong></span></a></h3>
            </td>
        </tr>
    </tbody>
</table>
<h4><span style="color: #f57223;">A Message from our President</span>&nbsp;</h4>

<img alt="IsaacMaycotteHeadshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/isaac-2022-e1643298118663.png" style="border: 5px solid #9f151b; width: 215px; height: 215px; float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px;" />
<p>OLA Community:<br /></p>
<p>Join me in wishing OLA Feliz Cumpleaños as we turn 5! What was just a dream and vision to help clear a pathway for Latinos to the actuarial profession has materialized into helping over 200 candidates receive a full-time or internship offer and award
    over $175,000 in scholarships.</p>
<p>On this occasion, I want to thank all our corporate sponsors for their financial support and our many volunteers dedicated to DEI&nbsp;for their passion – dedicating many hours helping aspiring actuaries. We could not have done it without you.</p>
<p>I am very excited for what the future holds!</p>
<p><strong>Isaac Maycotte</strong><br /><em>President</em></p>
<hr />
<img alt="" src="https://latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/achievements_5_years_ola.png" style="border: 5px solid #9f151b; width: 275px; float: right; margin-top: 5px; margin-left: 15px; margin-bottom: 5px; height: 369px;"
/>
<h4><span style="color: #f57223;">5 Years of Achievements!</span></h4>
<div>
    <p>Since OLA's founding in 2017, great strides have been made to increase the Latine&nbsp;community's representation in the actuarial community. We are proud of what the organization and community have achieved in such a short period of time. Check out
        the graphic on the right for more details!</p>
    <hr />
    <h4><span style="color: #f57223;">Highlights from OLA's 5-Year Celebration</span>&nbsp;</h4>
    <p>We want to thank everyone who has made OLA’s first five years both possible and so successful! We thank our volunteers, past and present members of our Board of Directors, Program Managers, our sponsors, recruiters, fellow actuaries, professors, and
        all friends of OLA; without your support, we could not have made it this far!</p>
    <p><img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/hb_5th_ola.png" style="height: 215px; float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px;" />It was incredibly encouraging to see such great turnout at our 5th Anniversary Celebration
        this August in Orlando, Florida! Board members Adelaida Campos, Regina Kintana, Anji Li, Anthony Lucero, and Carlos Orozco, along with Program Managers Brandon Alcaide, Adrian Corredoira, Melissa Salazar, and Felipe Valladares, were present to
        welcome the OLA members, sponsors, and allies who joined this joyous celebration! Special thanks to Adelaida Campos, co-founder of OLA and current Board member, for organizing this successful event!<br /><br />We are looking forward to many more
        years of success ahead as we increase the Latine community's representation in the actuarial community!</p>
    <hr />
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #f57223;">
                    <h3 style="text-align: center;"><a id="National Hispanic Heritage Month"><span style="color: #ffffff;"><strong>National Hispanic Heritage Month</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <h4>SOA Authentic Conversations</h4>

    <img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/soa_authentic_conversations.jpg" style="border: 5px solid #f57223; width: 450px; height: 241px; margin: 5px; float: right;" />
    <p>Celebrate National Hispanic Heritage Month with Anthony Lucero, OLA's Director of Membership, and Ryan Diaz, an OLA student member, while also discussing important advice for aspiring actuaries. Learn about schedule balancing as well as ways to prepare
        for the future from an actuary currently practicing in the field. Help us honor National Hispanic Heritage Month by checking out <a href="https://www.youtube.com/watch?v=IgjewcjD0vI">Part 1</a> and <a href="https://www.youtube.com/watch?v=wSNk_VBoiM0">Part 2</a>        of the interview on YouTube. Many thanks to the Society of Actuaries (SOA) for facilitating this Authentic Conversation!&nbsp;</p>
    <hr />
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #9f151b;">
                    <h3 style="text-align: center;"><a id="Prior Month Highlights"><span style="color: #ffffff;"><strong>Summer 2022 Highlights</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <h4><span style="color: #f57223;">JUNE HAPPY HOURS: NYC &amp; CHICAGO</span>&nbsp;</h4>
    <img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/nyc_hh.jpg" style="width: 320px; height: 256px; horizontal-align: left; margin-top: 5px; margin-bottom: 10px; margin-right: 5px;" />
    <img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/chicago_hh.jpg" style="width: 320px; height: 256px; horizontal-align: right; margin-top: 5px; margin-bottom: 10px; margin-left: 5px;" />
    <p>Thank you to all who attended OLA's June happy hours in New York City &amp; Chicago! We appreciate the efforts of Anthony Lucero, OLA's Director of Membership, and&nbsp;Enrique Schulz, OLA volunteer and former Board Member, for organizing these respective
        events. We were thrilled to witness excellent turnout for OLA's first in-person events since 2020, so we once again thank all our members and allies who attended! </p>
    <hr />
    <h4><span style="color: #f57223;">OLA @ ALPFA 2022</span></h4>
    <p><img alt="" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/alpfa.jpg" style="border: 5px solid #9f151b; height: 198px; float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px; width: 300px;" />The OLA community came out in full-force to attend
        the 2022 Association of Latino Professionals for America (ALPFA) Convention in Orlando, Florida, this August! Given such a large presence of Latine professionals, allies, and corporate sponsors, it was only fitting that OLA put together its largest
        travel sponsorship program of the year. OLA sponsored the attendance of twenty Latine college/university students, recent graduates, and career changers; Nationwide, an OLA Platinum Sponsor, sponsored another four students! </p>
    <p>With the guidance of the five members of the OLA Board of Directors and four OLA Program Managers also in attendance, our Latine actuarial prospects were able to navigate the massive career fair and networking events this convention had to offer.
        In fact, some of our prospects left the convention with offers in-hand! Both OLA leaders and corporate sponsors were impressed with the group's professional development in the course of just a few days. We look forward to partnering with ALPFA
        in the coming years to enhance the Latine talent pipeline not just for the actuarial community, but for the professional world at-large!</p>
    <hr />
    <div><span style="font-family: Montserrat, sans-serif; color: #f57223;"><span style="font-size: 26px; letter-spacing: 1px; text-transform: uppercase;"></span></span>
        <h4><span style="color: #f57223;">OLA CAREER FAIRS</span></h4>
        <p>OLA hosted three virtual career fairs between August and September, and we want to express our gratitude to all of our sponsors and actuarial employers who participated this year. We appreciate their support of OLA's mission to increase diversity
            in the actuarial profession, and their interest and support of our talented actuarial candidates.</p>
    </div>
    <p>Across all career fairs, we had over 1,150 one-on-one chats between company representatives and OLA aspiring actuaries; we had candidates from 19 different states participating!</p>
    <p>We've listed participating sponsors below by tier. We can’t wait to hear about upcoming placements at these companies!</p>
    <p><strong>Platinum Sponsors</strong></p>
    <p>Ally, Deloitte, Blue Cross and Blue Shield of Illinois, Montana, New Mexico, Oklahoma &amp; Texas, Milliman, Nationwide, New York Life Insurance Company, Pacific Life, WTW</p>
    <p><strong>Gold Sponsors</strong></p>
    <p>Allianz, Allstate, Blue Shield of California, Brighthouse Financial, Aetna, a CVS Health Company, Liberty Mutual Insurance, Lincoln Financial Group, Travelers, Segal, Unum</p>
    <p><strong>Silver Sponsors</strong></p>
    <p>AIG/Corebridge Financial, AON, AXA, Centene Corporation, Church Mutual Insurance, CNA Insurance, Cigna, Fidelity, Gallagher, John Hancock, Oliver Wyman, Northwestern Mutual, OneAmerica, Principal, Swiss Re, Voya Financial, Zurich</p>
    <p><strong>Career Fair sponsors</strong></p>
    <p>Chubb, CNO, Gabriel, Roeder, Smith &amp; Company, MetLife, Mutual of Omaha, Munich Re, Protective Life, State Farm Insurance, Wakely</p>
    <hr />
    <div>
        <h4><span style="color: #f57223;">OLA @ GIS 2022</span></h4>
        <img src="https://latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/ola_hh_charlotte_2022.png" alt="OLA_GIS_Mixer_2022" style="height: 220px; width: 275px; float: left; margin-top: 5px; margin-right: 15px; margin-bottom: 5px;" />
        <p>This September, OLA sponsored the attendance of ten (10) Latine undergraduate college/university students at the 2022 Gamma Iota Sigma (GIS) Annual Conference in Charlotte, North Carolina! Our student group, led by Anthony Lucero, OLA's Director
            of Membership, and Felipe Valladares, OLA's Career Center &amp; Career Fairs Program Manager (PM), represented eight colleges/universities across four states!</p>
        <p>OLA is proud to share that several of our Latine actuarial students leading and representing four GIS Student Chapters at University of Nebraska-Lincoln,&nbsp;The University of Texas at El Paso,&nbsp;The University of Texas at Austin, and&nbsp;Georgia
            State University, brought home GIS International Awards for their contributions to growing and enhancing the insurance industry talent pipeline!&nbsp;</p>
    </div>
    <div>
        <p>In addition, OLA hosted a mixer to acquaint our OLA students and leaders with our corporate sponsors, partners, and other allies. Even with an impending tropical storm, over 45 guests attended! It was great seeing everyone enjoy themselves while
            also engaging in an excellent networking opportunity. OLA extends a big "thank you" to everyone who was able to make it for supporting our community!</p>
        <p style="text-align:center;"><img alt="" src="https://latinoactuaries.site-ym.com/resource/resmgr/industry_newsletter/gis_cropped.jpg" style="border: 5px solid #9f151b; height: 215px; margin-top: 5px; margin-bottom: 5px;" /></p>
    </div>
    <hr />
    <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
    <p><em>&nbsp;</em></p>
    <table style="width: 660px; height: 66px;">
        <tbody>
            <tr>
                <td style="background-color: #f57223;">
                    <h3 style="text-align: center;"><a id="Upcoming Events"><span style="color: #ffffff;"><strong>UPCOMING EVENTS</strong></span></a></h3>
                </td>
            </tr>
        </tbody>
    </table>
    <h4>OLA @ 2022 CCA Annual Meeting</h4>
    <p> </p>
    <p>OLA and the <a href="https://www.linkedin.com/company/conference-of-consulting-actuaries/">Conference of Consulting Actuaries (CCA)</a> are sponsoring three students and career changers to attend the <strong>2022 CCA Annual Meeting</strong> in <strong>Austin, Texas</strong>,
        from <strong>October 16-19, 2022</strong>.</p>
    <p>Manuel Guerra, OLA’s Director of Corporate Engagement, and Adrian Corredoira, University Relations Program Manager, will mentor the students as they learn about the latest trends in the actuarial field alongside hundreds of actuaries.</p>
    <p>If you will be in attendance, please make sure to stop by and say hello to the OLA candidates!</p>
    <hr />
    <h4>OLA @ 2022 SOA ImpACT Conference</h4>
    <p><strong><span style="text-decoration: underline;">Society of Actuaries' (SOA) Diversity and Inclusion Community Mixer</span></strong></p>
    <p>You are invited to the <strong>SOA's Diversity and Inclusion Community Mixer</strong> in <strong>Orlando, Florida</strong>, on <strong>Monday, October 24</strong>,<strong> </strong>from <strong>6:30 to 7:30 P.M. ET.</strong> Venue information is as
        follows: Crystal Ballroom J1, Orlando Marriott World Center, 8701 World Center Dr., Orlando, FL 32821-6358.</p>
    <p>Alfonso Carrillo-Lundgren, OLA’s Director of Community Engagement. will be there representing OLA. Join him and other actuaries representing our partner organizations: International Association of Black Actuaries (IABA), Sexuality and Gender Alliance
        of Actuaries (SAGAA), Network of Actuarial Women and Allies (NAWA), South Asian Network of Actuaries (SANA), and Abacus Actuaries.</p>
    <p><strong>This event is free and open to anyone</strong>. You do NOT need to register for the ImpACT Conference in order to attend. We look forward to seeing you there!</p>
    <p><b><u>Sessions presented by OLA Leaders!</u></b></p>
    <p>If you are registered to attend the SOA ImpACT Conference, be sure to catch <strong><em>Session 10E: Diversity, Equity and Inclusion (DEI) Issues in Retirement Preparedness and Other Aging Issues</em></strong>, presented by Alfonso Carrillo-Lundgren,
        OLA’s Director of Community Engagement, on&nbsp;<strong>Wednesday, October 26</strong>, from <strong>11:30 A.M. to 12:30 P.M.</strong></p>
    <div>
        <hr />
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <p><em>&nbsp;</em></p>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #9f151b;">
                        <h3 style="text-align: center;"><a id="Community Spotlights"><span style="color: #ffffff;"><strong>COMMUNITY SPOTLIGHTS</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div>
        </div>
        <div><span style="text-decoration-line: underline;"></span>
            <h4><span style="color: #f57223;"><img alt="MartaCandelas_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/martacandelas.jpg" style="border: 5px solid #9f151b; width: 215px; height: 215px; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px;" /></span></h4>
            <h4><span style="color: #f57223;">Marta CAndelas</span></h4>
            <p><span style="text-decoration-line: underline;">Hometown</span>: San Juan, Puerto Rico</p>
            <p><span style="text-decoration-line: underline;">University</span>: Vassar College</p>
            <p><span style="text-decoration-line: underline;">Major</span>: Mathematics</p>
            <p><span style="text-decoration-line: underline;">How has OLA impacted your career?</span>&nbsp;I am beyond grateful for the tools that OLA has provided me throughout the past year. As a liberal arts student, I did not have a big actuarial department
                at my school. However, OLA has built a bridge for me in this field by providing resources and being there every step of this journey. I have been able to meet some incredibly smart people in the actuarial field and made some lifelong friendships.<br
                /></p>
        </div>
        <div><em>Marta is a full-time undergraduate student and will&nbsp;be starting a full-time actuarial position at New York Life in Summer 2023!</em><br /></div>
        <hr />
        <div>
            <h4><span style="color: #f57223;"><img alt="AlexisMarin_Headshot" src="https://members.latinoactuaries.org/resource/resmgr/industry_newsletter/headshots/alexismarinjimenez_headshots.jpg" style="border: 5px solid #9f151b; width: 215px; height: 215px; float: left; margin-top: 5px; margin-bottom: 5px; margin-right: 15px;" /></span></h4>
            <h4><span style="color: #f57223;">ALEXIS MARIN</span></h4>
        </div>
        <p><span style="text-decoration-line: underline;">Hometown</span>: Brooklyn, NY</p>
        <p><span style="text-decoration-line: underline;">University</span>: Baruch College</p>
        <p><span style="text-decoration-line: underline;">Major</span>: Actuarial Science</p>
        <p><span style="text-decoration-line: underline;">Expected Graduation Date</span>: May 2023</p>
        <p><span style="text-decoration-line: underline;">Tell us a little about yourself</span>: I enjoy traveling. I have been to numerous cities across the U.S. including Boston, Washington D.C., Chicago, Miami and I hope to expand my travel to international
            places!
        </p>
        <p><span style="text-decoration-line: underline;">How has OLA impacted your career?</span>&nbsp;One day I was on LinkedIn and one of my connections shared an opportunity with OLA Academy. After applying and meeting the OLA familia, I immediately
            found myself with a ton of opportunities such as exam support, conference sponsorship, and mentoring. I was recently sponsored to go to both the ALPFA Convention and Gamma Iota Sigma Annual Conference where I met a ton of professionals. I
            am extremely grateful for OLA and the resources that they offer!&nbsp;OLA has helped me grow as a person and as a professional; I highly recommend it to any Latino who is interested in the actuarial profession!</p>
        <div><span style="text-decoration-line: underline;"></span>
            <div><span style="text-decoration-line: underline;">What are your professional development goals?</span>&nbsp;In the long-term, I’m hoping to someday give back to the Latino community through mentorship and teaching the same way OLA has helped
                me.
            </div>
            <div>&nbsp;</div>
            <div><em>OLA is grateful for Alexis's help in sharing his experiences as a full-time undergraduate student representing OLA at the 2022 Association of Latino Professionals for America (ALPFA) Convention and 2022 Gamma Iota Sigma (GIS) Annual Conference via OLA Instagram takeovers!</em></div>
        </div>
        <hr />
        <div><em>We enjoy featuring and sharing the stories of members of the Latine actuarial community! If you have a nomination for a spotlight, please ask them to fill out this&nbsp;<a href="https://latinoactuaries.site-ym.com/page/MemberSpotlightInfoRequest">form</a>&nbsp;with their information/headshot.</em><br
            /></div>
        <div>
            <hr />
        </div>
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <p><em>&nbsp;</em></p>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #f57223;">
                        <h3 style="text-align: center;"><a id="Career Corner"><span style="color: #ffffff;"><strong>CAREER CORNER</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <h4>DO YOU HAVE JOB POSTINGS TO SHARE?</h4>
        <p>Our Platinum and Gold Corporate Sponsors can send us job postings for&nbsp;<strong>experienced</strong>&nbsp;professionals to be advertised in this monthly newsletter! Postings sent to&nbsp;<a href="mailto:corpengagement@latinoactuaries.org">corpengagement@latinoactuaries.org</a>&nbsp;before
            October 24, 2022, will appear in the next newsletter that will be sent the first week of November.</p>
        <hr />
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <p><em>&nbsp;</em></p>
        <table style="width: 660px; height: 66px;">
            <tbody>
                <tr>
                    <td style="background-color: #9f151b;">
                        <h3 style="text-align: center;"><a id="Volunteer Opportunities"><span style="color: #ffffff;"><strong>VOLUNTEER OPPORTUNITIES</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <div>
            <h4><span style="color: #f57223;">Volunteer with OLA!</span></h4>
        </div>
        <div>Are you interested in volunteering with OLA? Sign-in to your OLA Member Portal account and edit your profile to indicate your volunteer interests! If you do not already have an OLA Member Portal account, you can click <a href="https://members.latinoactuaries.org/general/register_member_type.asp?">here</a>            to register.</div>
        <div>&nbsp;</div>
        <div>Check-out our Volunteer page at&nbsp;<a href="https://www.latinoactuaries.org/volunteer/">https://www.latinoactuaries.org/volunteer/</a>&nbsp;for more details on volunteer opportunities, and contact us at&nbsp;<a href="mailto:membership@latinoactuaries.org">membership@latinoactuaries.org</a>&nbsp;for
            more information!</div>
        <div>
            <hr />
        </div>
        <div>
            <h4><span style="color: #f57223;">Become an OLA Leader!</span></h4>
        </div>
        <div><strong><span style="text-decoration: underline;">Program Manager (PM) Application</span></strong></div>
        <p>Are you interested in helping shape the future of OLA? Apply to be an OLA Program Manager (PM) for 2023! OLA is looking for volunteers who will help further OLA’s mission by managing OLA's programs in the PM capacity.<br /></p>
        <div>The OLA PMs will assist the OLA Board of Directors in enhancing the organization's progress by increasing the number of outreach opportunities and refining OLA's vision. While PMs do not vote on OLA's financial and strategic decisions (as voting
            is reserved for the Board of Directors), we encourage you to help shape the future of OLA by volunteering as a PM!</div>
        <div><br />You can find more detailed information, as well as the application itself, here: <a href="https://members.latinoactuaries.org/page/OLA-2023-PM-Application-Information">members.latinoactuaries.org/page/OLA-2023-PM-Application-Information</a><br
            /><br />As you read that information, note the <strong>final deadline</strong> of <strong>Monday, October 17, 2022, 11:59 P.M. PT.</strong></div>
        <div><strong>&nbsp;</strong></div>
        <div><strong></strong><strong><span style="text-decoration-line: underline;">Board of Directors&nbsp;Application</span></strong></div>
        <p>Given the OLA Board of Directors will finalize the PM selection process in the coming weeks, please lookout for a Board of Directors application coming soon! We will notify our distribution list with more details when the application is launched
            in the next two to three weeks.</p>
        <p>If you are not already on our distribution list, please register for an OLA Member Portal account at <a href="https://members.latinoactuaries.org">members.latinoactuaries.org</a> to receive this newsletter and other important communications!</p>
        <p>Please let us know if you have any questions and/or would like to speak directly with a member of the Board of Directors for more information. We’d be happy to chat with you!</p>
        <hr />
        <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
        <p><em>&nbsp;</em></p>
        <table style="width: 660px; height: 66px;" class="reTableSelected">
            <tbody>
                <tr>
                    <td style="background-color: #f57223;">
                        <h3 style="text-align: center;"><a id="Support OLA!"><span style="color: #ffffff;"><strong>Support OLA!</strong></span></a></h3>
                    </td>
                </tr>
            </tbody>
        </table>
        <h4>CORPORATE SPONSORSHIPS</h4>
        <p>We have different sponsorship tiers that can fit your company's size and strategy! If you are interested in sponsoring OLA, please e-mail us at <a href="mailto:info@latinoactuaries.org">info@latinoactuaries.org</a>. We can schedule a call and
            provide information you need or answer your questions.</p>
        <hr />
        <h4>Individual Donations</h4>
        <p>OLA supports our Latine actuarial prospects (students, career changers, etc.) via scholarship programs, exam materials and registration reimbursements, and our travel program that sends prospects to the ALPFA and GIS conventions to help them network
            and secure jobs at the on-site career fairs.</p>
        <p>Individual donations of any amount can go a long way in helping us sustain these programs, so please click <a href="https://www.latinoactuaries.org/donate/">here</a> if interested in donating!</p>
        <hr />
        <div>
            <p><a href="#Top of Page"><em>Return to Top of Page</em></a></p>
            <p><em>&nbsp;</em></p>
            <table style="width: 660px; height: 66px;">
                <tbody>
                    <tr>
                        <td style="background-color: #9f151b;">
                            <h3 style="text-align: center;"><a id="Connect With Us"><span style="color: #ffffff;"><strong>CONNECT WITH US</strong></span></a></h3>
                        </td>
                    </tr>
                </tbody>
            </table>
            <table style="width: 180px; height: 50px; left: 215.5px;" align="center" class="reTableSelected">
                <tbody>
                    <tr>
                        <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.facebook.com/latinoactuaries" class="fa fa-facebook"></a></td>
                        <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.instagram.com/latinoactuaries/" class="fa fa-instagram"></a></td>
                        <td style="font-size: 36px; text-align: center; vertical-align: middle; width: 60px; height: 50px;"><a href="https://www.linkedin.com/company/latinoactuaries/" class="fa fa-linkedin"></a></td>
                    </tr>
                </tbody>
            </table>
            <p>&nbsp;</p>
            <div style="text-align: center;">
                <table border="0" cellspacing="0" cellpadding="0" align="center" style="width: 164px; height: 50px; left: 252.5px;" class="reTableSelected">
                    <tbody>
                        <tr>
                            <td style="background: url('ia') #ff6600; padding: 7.5pt 18.75pt; width: 160px; height: 35px;">
                                <p style="text-align: center;"><span><a href="https://www.latinoactuaries.org" target="_blank" id="Visit our website"><span style="background: #ff6600; font-size: 10.5pt; text-decoration: none; font-family: Arial, sans-serif; color: white;">Visit our website</span></a>
                                    </span>
                                </p>
                            </td>
                        </tr>
                    </tbody>
                </table>
            </div>
            <hr />
            <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
        </div>
    </div>
</div>]]></description>
<pubDate>Fri, 14 Oct 2022 17:00:00 GMT</pubDate>
</item>
</channel>
</rss>
