<style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style>
.erm-full-event-notice{background:#fef3cd;border-left:4px solid #d4a017;color:#664d03;padding:14px 18px;margin:15px 0 0;border-radius:4px;font-size:14px;line-height:1.5;box-sizing:border-box;display:none;grid-column:1/-1;width:100%}
.erm-full-event-notice a{color:#48577d;font-weight:600;text-decoration:underline}
.erm-full-event-notice a:hover{color:#2c3a56}
#gform_submit_button_48.erm-submit-disabled{opacity:.5;cursor:not-allowed}
</style>
<script>
(function(){
    var fullEvents=["APRIL15SR","APRIL16SR"];
    var waitlistUrl="https:\/\/alaskasaferiders.org\/event-waitlist\/";
    var fid=48;
    var bound=false;

    var msg='<strong>This event is currently full.</strong><br><a href="'+waitlistUrl+'">Join the waitlist</a> and we\'ll notify you when a seat opens up.';

    function makeNotice(cls){
        var d=document.createElement('div');
        d.className='erm-full-event-notice '+cls;
        d.innerHTML=msg;
        return d;
    }

    function check(){
        var sel=document.getElementById('input_'+fid+'_6');
        if(!sel)return;
        var val=sel.value||'';
        var key=val.split('|')[0];
        var wrap=document.getElementById('gform_wrapper_'+fid);
        if(!wrap)return;
        var fieldNotice=wrap.querySelector('.erm-full-notice-field');
        var footerNotice=wrap.querySelector('.erm-full-notice-footer');
        var btn=document.getElementById('gform_submit_button_'+fid);
        var isFull=key&&fullEvents.indexOf(key)!==-1;
        if(isFull){
            if(!fieldNotice){
                fieldNotice=makeNotice('erm-full-notice-field');
                var gfield=document.getElementById('field_'+fid+'_6');
                if(gfield)gfield.parentNode.insertBefore(fieldNotice,gfield.nextSibling);
            }
            if(!footerNotice){
                footerNotice=makeNotice('erm-full-notice-footer');
                var footer=wrap.querySelector('.gform_footer,.gform_page_footer');
                if(footer)footer.parentNode.insertBefore(footerNotice,footer);
                else wrap.appendChild(footerNotice);
            }
            fieldNotice.style.display='block';
            footerNotice.style.display='block';
            if(btn){btn.disabled=true;btn.classList.add('erm-submit-disabled');}
        }else{
            if(fieldNotice)fieldNotice.style.display='none';
            if(footerNotice)footerNotice.style.display='none';
            if(btn){btn.disabled=false;btn.classList.remove('erm-submit-disabled');}
        }
    }

    function init(){
        var sel=document.getElementById('input_'+fid+'_6');
        if(!sel){
            setTimeout(init,200);
            return;
        }
        if(bound)return;
        bound=true;
        sel.addEventListener('change',check);
        check();
    }

    // Start polling after DOM is ready (form HTML comes after this script)
    if(document.readyState==='loading'){
        document.addEventListener('DOMContentLoaded',init);
    }else{
        init();
    }
})();
</script>
<style>
/* Ensure Payment Element iframe has enough height for all fields (card + country/zip) */
#gform_48 .ginput_stripe_creditcard .StripeElement--payment-element,
#gform_48 .ginput_stripe_creditcard .StripeElement--payment-element iframe{min-height:320px!important}
#gform_48 .ginput_stripe_creditcard .ginput_full{overflow:visible!important}
#gform_48 .ginput_container_creditcard{overflow:visible!important}
</style>
<script>
/* Stripe Payment Element fixes for Form 48:
   1. Debounce elements.update() — prevents cascading API calls on field changes
   2. Intercept Payment Element creation to disable Google Pay / Apple Pay wallets
   3. Delete gf_stripe_token cookie to prevent Link persistent authentication */
(function(){
    var fid=48;

    /* Delete the gf_stripe_token cookie so Link doesn't auto-authenticate */
    document.cookie='gf_stripe_token=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/';

    var patched=false;
    function patchStripe(){
        if(patched)return;
        if(typeof GFStripeObj==='undefined'||!GFStripeObj.stripePaymentHandlers)return;
        var handler=GFStripeObj.stripePaymentHandlers[fid];
        if(!handler)return;

        patched=true;

        /* Debounce updatePaymentAmount (750ms) */
        if(handler.updatePaymentAmount){
            var orig=handler.updatePaymentAmount.bind(handler);
            var timer=null;
            handler.updatePaymentAmount=function(amt){
                clearTimeout(timer);
                timer=setTimeout(function(){orig(amt);},750);
            };
        }
    }
    /* Poll until handler exists */
    var tries=0;
    var iv=setInterval(function(){
        patchStripe();
        if(patched||++tries>60)clearInterval(iv);
    },500);

    /* Intercept Stripe Elements create() to add wallets:never option */
    function interceptElementsCreate(){
        if(typeof Stripe==='undefined')return false;
        var origStripe=Stripe;
        /* Only wrap once */
        if(origStripe._ermWrapped)return true;
        window.Stripe=function(){
            var instance=origStripe.apply(this,arguments);
            var origElements=instance.elements.bind(instance);
            instance.elements=function(opts){
                var el=origElements(opts);
                var origCreate=el.create.bind(el);
                el.create=function(type,createOpts){
                    if(type==='payment'){
                        createOpts=createOpts||{};
                        createOpts.wallets={googlePay:'never',applePay:'never'};
                    }
                    return origCreate(type,createOpts);
                };
                return el;
            };
            return instance;
        };
        /* Copy static properties */
        for(var k in origStripe){if(origStripe.hasOwnProperty(k))window.Stripe[k]=origStripe[k];}
        window.Stripe._ermWrapped=true;
        return true;
    }
    /* Try immediately, then poll if Stripe.js hasn't loaded yet */
    if(!interceptElementsCreate()){
        var si=setInterval(function(){
            if(interceptElementsCreate())clearInterval(si);
        },200);
        setTimeout(function(){clearInterval(si);},10000);
    }
})();
</script>
<script>
/* Payment-required flag: set Field 11 to "1" when total > 0, "0" otherwise.
   Replaces WPCode snippet 27326 which used MutationObserver and caused an infinite loop.
   Uses GF gform_product_total filter at priority 52 — after coupons (50) and Stripe (51) —
   so the total already reflects any coupon discounts. Shows/hides Field 9 directly. */
(function(){
    var fid=48,flagId=11,last=null;
    function setFlag(total){
        var v=total>0?'1':'0';
        if(v===last)return;
        last=v;
        var el=document.getElementById('input_'+fid+'_'+flagId);
        if(el)el.value=v;
        /* Show/hide Field 9 (payment) directly — avoids gf_apply_rules timing issues */
        var f9=document.getElementById('field_'+fid+'_9');
        if(f9){
            if(v==='1'){
                f9.style.display='';
                f9.classList.remove('gf_hidden');
            }else{
                f9.style.display='none';
                f9.classList.add('gf_hidden');
            }
        }
    }
    function tryHook(){
        if(typeof gform!=='undefined'&&gform.addFilter){
            gform.addFilter('gform_product_total',function(total,formId){
                if(parseInt(formId,10)===fid)setFlag(total);
                return total;
            },52);
            return true;
        }
        return false;
    }
    if(!tryHook()){
        var t=setInterval(function(){if(tryHook())clearInterval(t);},200);
        setTimeout(function(){clearInterval(t);},15000);
    }
    /* Also handle initial page state after GF renders */
    document.addEventListener('gform_post_render',function(e){
        if(!e.detail||parseInt(e.detail.formId,10)!==fid)return;
        if(typeof gformCalculateTotalPrice==='function')gformCalculateTotalPrice(fid);
    });
})();
</script><style type="text/css">body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;font-weight: normal; font-weight: bold; height:25px;color:#ffffff;background-color:#2e5eaf;font-size:15px;width:150px;border-width:2px;border-color:#2e5eaf;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_48 .gform_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_48 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#2e5eaf;border-style: solid;border-style: solid;}body #gform_wrapper_48 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#2e5eaf;}body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=number]{border-width:1px;border-color:#424242;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_48 .gform_body .gform_fields .gfield textarea {border-width:1px;border-color:#424242;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_48 .gform_body .gform_fields .gfield .gfield_label {font-weight: normal; font-weight: bold; color:#0a0a0a;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button {border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button {width:150px;height:25px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button{width:150px;height:25px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;font-weight: normal; font-weight: bold; height:25px;color:#ffffff;background-color:#2e5eaf;font-size:15px;width:150px;border-width:2px;border-color:#2e5eaf;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_48 .gform_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_48 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_48 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#2e5eaf;border-style: solid;border-style: solid;}body #gform_wrapper_48 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#2e5eaf;}body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_48 .gform_body .gform_fields .gfield input[type=number]{border-width:1px;border-color:#424242;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_48 .gform_body .gform_fields .gfield textarea {border-width:1px;border-color:#424242;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_48 .gform_body .gform_fields .gfield .gfield_label {font-weight: normal; font-weight: bold; color:#0a0a0a;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button {border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button {width:150px;height:25px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_48 .gform_footer .gform_button,body #gform_wrapper_48 .gform_page_footer .gform_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_48 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_48 .gfield#field_submit .gform-button{border-style: solid;width:150px;height:25px;}body #gform_wrapper_48 .gform_footer button.mdc-button{width:150px;height:25px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style><style type="text/css">body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;height:45px;color:#ffffff;background-color:#48577d;font-size:20px;width:200px;border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;}body #gform_wrapper_7 .gform_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_previous_button:hover,body #gform_wrapper_7 .gform_page_footer .gform_next_button:hover,body #gform_wrapper_7 .gfield#field_submit .gform-button:hover {background-color:#ffffff;color:#48577d;border-style: solid;border-style: solid;}body #gform_wrapper_7 .gform_footer button.mdc-button:hover {background-color:#ffffff;color:#48577d;}body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=text]:not(.gform-text-input-reset),body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=email],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=tel],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=url],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=password],body #gform_wrapper_7 .gform_body .gform_fields .gfield input[type=number]{border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width:100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield textarea {border-width:2px;border-color:#48577d;border-style: solid;border-radius: 10px;-web-border-radius: 10px;-moz-border-radius: 10px;}body #gform_wrapper_7 .gform_body .gform_fields .gfield select {border-width:2px;border-color:#48577d;border-style:solid;border-radius:10px;-web-border-radius:10px;-moz-border-radius:10px;max-width: 100%;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_label {color:#000000;}body #gform_wrapper_7 .gform_body .gform_fields .gfield .gfield_description {color:#000000;}/* Styling for Tablets */@media only screen and ( max-width: 800px ) and ( min-width:481px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button {border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button {width:200px;height:45px;font-size:20px;}}/* Styling for phones */@media only screen and ( max-width: 480px ) {body #gform_wrapper_7 .gform_footer .gform_button,body #gform_wrapper_7 .gform_page_footer .gform_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_next_button,body #gform_wrapper_7 .gform_body .gform_page_footer .gform_previous_button,body #gform_wrapper_7 .gfield#field_submit .gform-button{border-style: solid;width:200px;height:45px;font-size:20px;}body #gform_wrapper_7 .gform_footer button.mdc-button{width:200px;height:45px;font-size:20px;}}/*Option to add custom CSS */</style>BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Alaska Safe Riders - ECPv6.15.12.2//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:Alaska Safe Riders
X-ORIGINAL-URL:https://alaskasaferiders.org
X-WR-CALDESC:Events for Alaska Safe Riders
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/Anchorage
BEGIN:DAYLIGHT
TZOFFSETFROM:-0900
TZOFFSETTO:-0800
TZNAME:AKDT
DTSTART:20240310T110000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0800
TZOFFSETTO:-0900
TZNAME:AKST
DTSTART:20241103T100000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0900
TZOFFSETTO:-0800
TZNAME:AKDT
DTSTART:20250309T110000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0800
TZOFFSETTO:-0900
TZNAME:AKST
DTSTART:20251102T100000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0900
TZOFFSETTO:-0800
TZNAME:AKDT
DTSTART:20260308T110000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0800
TZOFFSETTO:-0900
TZNAME:AKST
DTSTART:20261101T100000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0900
TZOFFSETTO:-0800
TZNAME:AKDT
DTSTART:20270314T110000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0800
TZOFFSETTO:-0900
TZNAME:AKST
DTSTART:20271107T100000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260328T090000
DTEND;TZID=America/Anchorage:20260329T160000
DTSTAMP:20260414T070139
CREATED:20251211T231323Z
LAST-MODIFIED:20251212T210724Z
UID:26249-1774688400-1774800000@alaskasaferiders.org
SUMMARY:AK Powder Pursuit - Women's Snowmachine Clinic Mar 28 - Mar 29
DESCRIPTION:📅 March 28 – March 29\, 2025\n📍 Valdez\, Alaska\n💲 $150 for the weekend + Alaska Safe Rider Membership\n👥 26 Rider Limit \nIf you’re ready to build confidence on the mountain — with hands-on coaching\, supportive instruction\, and a community of women who ride — this two-day clinic is for you.\nThis first course in the Alaska Powder Pursuit series is designed specifically for Advanced Beginners to Intermediate riders\, focusing on the fundamentals that make you a safer\, smoother\, and more intentional backcountry rider. The Alaska Powder Pursuit team meets you at your skill level\, helping you progress with clarity and confidence. \nOver the weekend\, you’ll learn to:\n❄️ Control your sled through balance\, throttle management\, and body positioning\n❄️ Use countersteering and carving to move fluidly through varied terrain\n❄️ Read terrain and understand foundational avalanche awareness\n❄️ Work through stuck situations efficiently and safely \nAdditional topics include:\n❄️ Gear that supports progression\n❄️ Sled setup for improved handling\n❄️ Safe travel habits and communication practices\n❄️ Preventative Sled Maintenance \nBy the end of the weekend\, you’ll ride with more confidence\, more skill\, and a deeper understanding of safe backcountry travel. \nRider Levels\nTrue Beginner – You are brand new to snowmachines. You may have never ridden or only ridden once or twice. You’re still learning basic controls\, throttle/brake feel\, balance\, and how the machine responds on snow.\nBeginner – You are comfortable operating a sled at slow to moderate speeds on groomed trails. You can start\, stop\, and turn with confidence but are still developing body positioning\, throttle control\, and understanding terrain.\nAdvanced Beginner – You ride groomed and ungroomed terrain with growing confidence. You’re beginning to explore off-trail riding\, sidehilling basics\, climbing small features\, and navigating variable snow\, while still refining balance\, technique\, and recovery skills.\nIntermediate – You ride on- and off-trail regularly and can manage varied terrain\, deeper snow\, and moderate sidehills. You understand line choice\, machine control\, and terrain hazards and are ready to work on advanced techniques\, efficiency\, and riding bigger features. \n👉 This clinic is best suited for Advanced Beginners to Intermediate riders. \nMeet the Founders of Alaska Powder Pursuit\n✨ Teslin Hoyem — Born and raised in remote Alaska\, Teslin brings deep wilderness knowledge\, racing experience\, and a passion for empowering others to explore wild terrain safely and confidently.\n✨ Galen Bridgewater — A lifelong mountain athlete who transitioned from competitive snowboarding to mountain riding; Galen is known for her approachable teaching style and commitment to helping women build mountain confidence.\n✨ MoAnna Bradshaw — A Valdez local and podium finisher at Arctic Man and the Valdez Hill Climb. MoAnna blends technical riding skill\, storm-season terrain understanding\, and a grounded\, supportive leadership style. \nThese women created Alaska Powder Pursuit to help riders explore Alaska’s mountains with confidence\, community\, and respect for the terrain. \nRegistration Details\n📝 Pre-Registration Required: Complete our questionnaire\, select your clinic date\, and submit payment. \n🚗 Transportation\, Lodging & Machines:All participants are responsible for their own transportation\, lodging\, and snowmachine. If you’d like support with transportation resources or options to rent a sled (including options in the Mat-Su Valley through AK Toy Rentals)\, please contact Galen for guidance. \n🏨 Book lodging early — Valdez fills quickly in winter. \n🔁 Cancellation Policy:– 72+ hours → Full refund– Under 72 hours → 50% refund \nCommunity Support\nA big thank-you to the Valdez Snowmachine Club for their support and for helping grow the AK Powder Pursuit programs in Valdez and beyond. \nQuestions?📧 Contact Galen Bridgewater at valdezwomensclinics@gmail.com \nPlease Note:Membership is required to participate in this course. The course price has been set with membership in mind\, which means coupon codes and discounts will not apply to this program. \nYour annual ASR membership unlocks training opportunities\, rider resources\, and community benefits that support safety across Alaska. \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; group networking; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority training reservations; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \nMembership RequiredParticipation in this event requires an active Alaska Safe Riders membership. Please ensure your membership is current before registering. You can log in to your existing account or renew your membership using the link below. Becoming or remaining an active member helps support our safety programs\, rider education\, and community outreach—thank you for being part of the Alaska Safe Riders family. View Membership Levels Already a member? Log in here
URL:https://alaskasaferiders.org/event/akpowpursuitwomensclinicfeb28/
LOCATION:Thompson Pass\, Mile 27.5 Richardson Highway\, Valdez\, AK\, 99686\, United States
CATEGORIES:Field Class,Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/12/AK-Powder-Pursuit-Clinic-Mar-28-Mar-29.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260321T080000
DTEND;TZID=America/Anchorage:20260321T200000
DTSTAMP:20260414T070139
CREATED:20251010T234339Z
LAST-MODIFIED:20251123T234709Z
UID:22469-1774080000-1774123200@alaskasaferiders.org
SUMMARY:Save the Date: The Mayor’s Cup Race – Valdez
DESCRIPTION:Save the Date: The Mayor’s Cup Race – Valdez\, Alaska📅 Saturday\, March 21st\, 2026📍 The Pipe Yard\, Valdez\, Alaska \nGet ready for high-speed action at the Mayor’s Cup Race\, hosted by the Valdez Snowmachine Club! This annual showdown brings riders together for an unforgettable day of racing\, community\, and winter fun in the heart of Valdez. \nAlaska Safe Riders will also be hosting several hands-on activities for both kids and adults during the event — with times and exact locations to be announced closer to race day. Make sure you’re subscribed to our newsletter and follow us on Facebook and Instagram so you don’t miss those important updates as spring approaches! \nStay tuned — more event details and Alaska Safe Riders’ involvement coming soon! \n❄️ Mark your calendar and join us at the Pipe Yard for an epic day on the snow! \n\nBecome a Member of Alaska Safe Riders \nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today — join Alaska Safe Riders! \n  \n\n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					EmailThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/save-the-date-the-mayors-cup-race-valdez/
LOCATION:Valdez Pipe Yard\, Specific Info Coming Soon\, Valdez\, 99686\, United States
CATEGORIES:Community Expo
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-4.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260314T090000
DTEND;TZID=America/Anchorage:20260314T170000
DTSTAMP:20260414T070139
CREATED:20251011T002355Z
LAST-MODIFIED:20260302T215452Z
UID:22557-1773478800-1773507600@alaskasaferiders.org
SUMMARY:emPOWDERed Ladies Backcountry Ride - Mountain Riders
DESCRIPTION:emPOWDERed Ladies Backcountry Ride\n📍 Eureka Lodge📅 March 14\, 2026👩‍🦰🏔️ Rider Limit: 24 \nJoin Alaska Safe Riders for an empowering\, ladies-only backcountry snowmobile ride focused on mountain rider skills\, confidence-building\, and community. This event blends skill development with a laid-back\, supportive group ride—meeting you where you’re at and offering guidance along the way. Space is limited to 24 riders to ensure a high-quality\, personalized experience. \nMany riders will arrive in Eureka on Friday\, March 13\, and we invite you to join us for relaxed\, informal pre-ride conversations in the lodge that evening. This is a great opportunity to connect with fellow riders\, meet your coaches\, and get stoked for the day ahead. \nSaturday Schedule – March 148:00–9:00 AM: Breakfast at the lodge9:45 AM: Mountain riders meet in the bar area with riding gear mostly on and packs ready for a mandatory pack checkAvalanche gear and radios are requiredBeacons will be checked prior to riding10:00 AM: All sleds warmed up and ready in the back parking lotFinal head count before departure\nIf you’re interested in riding but don’t have all required safety gear (radio\, beacon\, probe\, shovel)\, please let us know—we do have a limited number of extras available. \nRiders will head out with their coaches\, Angie\, Kirsten\, Tia and Sierra\, and work on a variety of mountain riding skills throughout the day. The two groups will plan to meet up for a backcountry lunch break at 1:00 PM (make sure to pack a snack)\, then head back out for a few more hours of riding\, with the day wrapping up around 5:00 PM. \nFor those staying the evening\, join us for a group dinner at 6:00 PM\, where we’ll be giving away awesome prizes from our sponsors\, sharing stories from the ride\, and—most importantly—continuing to grow our shred community. \nLodging InformationEureka Lodge: Limited availability\, 10% off for Alaska Safe Riders members\, RV hookups and camper spots availableGunsight Mountain Lodge – 10% off for ASR membersAlternative options: Long Rifle Lodge and Sheep Mountain Lodge\nThank You to Our SponsorsA special thank you to our primary sponsors for making this event possible: Alaska Mining and Diving Supply\, Uptrack Alliance\, Artwork by Sierra Winter\, Oxbow\, Awaken Productions\, and Rally AK. Your support helps us create safe\, empowering\, and community-driven riding opportunities for women in the mountains.\n⚠️ Alaska Safe Riders membership is required to participate.We can’t wait to shred with you all and spend an unforgettable weekend riding\, learning\, and connecting in the mountains. 🏔️✨ \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                             \n                        \n                        CommentsThis field is for validation purposes and should be left unchanged.Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Please enter the participant’s full legal name as it should appear on event records and confirmations.Email(Required)\n                                \n                                    \n                                    Enter Email\n                                \n                                \n                                    \n                                    Confirm Email\n                                \n                                \n                            Enter a valid email address. Event confirmations\, receipts\, gear lists\, and meetup instructions will be sent to this address (If Applicable).Phone(Required)Provide a mobile phone number so we can contact you with important event updates\, schedule changes\, or safety notifications.This field is hidden when viewing the formEvent Tracking KeyEvent Selection(Required)— Please select an event —3.14.2026 emPOWDERed Backcountry Ladies Ride Eureka3.28.26 AK Powder Pursuit – Women’s Snowmachine Clinic4.25.26 End of Season FlingApril 14th – Soul Rides Motorized Avalanche Skills TrainingApril 15th – Soul Rides Motorized Avalanche Skills TrainingApril 16th – Soul Rides Motorized Avalanche Skills Training4.17.26 Alaska Safe Riders & Soul Rides Beacon Bash5.4.26 Annual MembershipSelect the event you are registering for. Please make sure the correct event name is selected before continuing.Member Promo Code ASR Member Discount:\nAlaska Safe Riders members receive a 10% discount on event registrations.\nIf you are already a member\, enter your discount code and click Apply. You can find your promo code on the membership dashboard.\nNot a member yet? Sign up here. Memberships start at $25 per year\, and in many cases the event discount will save you more than the cost of membership.\nThis field is hidden when viewing the formPayment Required Conditional (Admin only)Consent(Required) I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.By checking this box\, you consent to receive text messages related to your registration\, including payment confirmations\, event reminders\, and important event-related updates.\nEmergency Contact Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Emergency Contact Phone Number(Required)Sled InformationParticipants are responsible for providing their own snowmachine and transportation.Do you have any allergies or medical conditions we should know about for your safety?Snowmachine Information(Required)Year\, Make (Ski-Doo\, Polaris\, Arctic Cat\, Yamaha\, etc.)\, and Model and track length. Example 2025 Polaris Khaos Boost Matryx Slash 155Is your snowmachine in good working condition?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Other\n			If you are unsure\, please select other and describe your concerns. Describe any mechanical issues you are aware of.(Required)Example: the check engine light comes on at 3000 RPM but otherwise runs well throughout the day. Are you comfortable unloading/loading your snowmachine?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Need Assistance\n			\n			\n					\n					Other\n			Riding ExperienceHelp us understand your current riding experience and the skills you hope to build through our clinics.How long have you been riding snowmachines?(Required)\n			\n					\n					Never\n			\n			\n					\n					A Few Times\n			\n			\n					\n					1-2 Seasons\n			\n			\n					\n					3+ Seasons\n			How would you describe your current skill level?(Required)\n			\n					\n					True Beginner - You are brand new to snowmachines. You may have never ridden or only ridden once or twice. Still learning basic controls\, throttle/brake feel\, balance\, and how the machine responds on snow.\n			\n			\n					\n					Beginner - You are comfortable operating a sled at slow to moderate speeds on groomed trails. You can start\, stop\, and turn with confidence but are still developing body positioning\, throttle control\, and understanding terrain.\n			\n			\n					\n					Advanced Beginner - You ride groomed and ungroomed terrain with growing confidence. You’re beginning to explore off-trail riding\, sidehilling basics\, climbing small features\, and navigating variable snow. Still refining balance\, technique\, and recovery skills.\n			\n			\n					\n					Intermediate - You ride on- and off-trail regularly and can manage varied terrain\, deeper snow\, and moderate sidehills. You understand line choice\, machine control\, and terrain hazards. Ready to work on advanced techniques\, efficiency\, and riding bigger features.\n			\n			\n					\n					Other\n			What type of terrain have you ridden?(Required)\n								\n								Trails\n							\n								\n								Meadows\n							\n								\n								Low-Angle Powder\n							\n								\n								Steeper Terrain\n							\n								\n								High Alpine/Mountains\n							\n								\n								Rivers\n							\n								\n								Glaciers\n							Select all that apply. What are you hoping to improve on during the clinic?(Required)\n								\n								Throttle Control\n							\n								\n								Body Positioning\n							\n								\n								Countersteering\n							Select all that apply. What makes you nervous or unsure when riding?Do you have any injuries or physical limitations we should know about?Your GoalsHelp us understand how we can help you improve your skills in the riding and backcountry industry. What do you hope to gain from this clinic?(Required)What would you define as success from this clinic?(Required)Is there anything else we should know about you?(Required)Gear & PreparednessWe are proud to partner with Alaska Safe Riders to bring these clinics to women in the industry and safety is key! What avalanche gear do you currently have?(Required)\n								\n								Beacon\n							\n								\n								Probe\n							\n								\n								Shovel\n							\n								\n								Snow Saw\n							\n								\n								Airbag Backpage\n							\n								\n								Avy Lung\n							\n								\n								Inclinometer\n							\n								\n								Snow Thermometer/Crystal Card\n							\n								\n								On The Snow Avalanche Training\n							\n								\n								Online Avalanche Training\n							Do you feel confident using your avalanche gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Do you have appropriate cold-weather riding gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Payment InformationTotal Amount Due\n							\n						This amount reflects the event price and any applicable member discounts. The total will update automatically once your discount code is applied.Billing Address(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Enter the billing address associated with your payment method. This information is required for payment processing and fraud prevention.Payment Method(Required)\n			Complete your payment using our secure checkout. All transactions are encrypted and processed safely.\n           Save & Continue\n            \n            \n            \n            \n            \n            \n                             \n            \n            \n            \n            \n            \n            \n            \n        \n                        \n                        \n		                \n		                \n \n 
URL:https://alaskasaferiders.org/event/empowderedmountainriders/
LOCATION:Eureka Lodge\, Alaska\, Mile 128 Glenn Hwy.\, Glennallen\, AK\, 99588\, United States
CATEGORIES:Field Class
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/emPOWDERed-March-14th.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260309T080000
DTEND;TZID=America/Anchorage:20260313T170000
DTSTAMP:20260414T070139
CREATED:20260113T234106Z
LAST-MODIFIED:20260113T234641Z
UID:39711-1773043200-1773421200@alaskasaferiders.org
SUMMARY:Education Expedition - Bethel Region
DESCRIPTION:This spring\, Alaska Safe Riders is bringing Expedition Education to Bethel and surrounding communities\, delivering backcountry safety education\, helmets\, and rider-focused information directly to local schools. \nThanks to our continued collaboration with Iron Dog and the generous sponsorship of Donlin Gold\, Alaska Safe Riders instructors will be on the ground from March 9–13\, connecting with students and educators to share knowledge that supports safer riding\, smarter decision-making\, and long-term community well-being. \nOur team plans to present at SAR\, Bethel Elementary\, Bethel High School\, Napaskiak\, Oscarville\, Napakiak\, Atmautluak\, Nunapitchuk\, and Kasigluk\, working with schools to tailor education to local riding environments and real-world conditions. \nDates and times will vary by location—please check with your local school for details\, and get ready to get educated!
URL:https://alaskasaferiders.org/event/education-expedition-bethel-region/
LOCATION:AK
CATEGORIES:Community Expo,Field Class,School Training
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2026/01/Iron-Dog-Education-Expedition-Alaska-Safe-Riders.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260228T090000
DTEND;TZID=America/Anchorage:20260301T160000
DTSTAMP:20260414T070139
CREATED:20251211T230644Z
LAST-MODIFIED:20260312T200432Z
UID:26257-1772269200-1772380800@alaskasaferiders.org
SUMMARY:AK Powder Pursuit - Women's Snowmachine Clinic Feb 28 - Mar 1
DESCRIPTION:📅 February 28 – March 1\, 2025\n📍 Valdez\, Alaska\n💲 $150 for the weekend + Alaska Safe Rider Membership\n👥 26 Rider Limit \nIf you’re ready to build confidence on the mountain — with hands-on coaching\, supportive instruction\, and a community of women who ride — this two-day clinic is for you.\nThis first course in the Alaska Powder Pursuit series is designed specifically for Beginners and Advanced Beginners\, focusing on the fundamentals that make you a safer\, smoother\, and more intentional backcountry rider. The Alaska Powder Pursuit team meets you at your skill level\, helping you progress with clarity and confidence. \nOver the weekend\, you’ll learn to:\n❄️ Control your sled through balance\, throttle management\, and body positioning\n❄️ Use countersteering and carving to move fluidly through varied terrain\n❄️ Read terrain and understand foundational avalanche awareness\n❄️ Work through stuck situations efficiently and safely \nAdditional topics include:\n❄️ Gear that supports progression\n❄️ Sled setup for improved handling\n❄️ Safe travel habits and communication practices\n❄️ Preventative Sled Maintenance \nBy the end of the weekend\, you’ll ride with more confidence\, more skill\, and a deeper understanding of safe backcountry travel. \nRider Levels\nTrue Beginner – You are brand new to snowmachines. You may have never ridden or only ridden once or twice. You’re still learning basic controls\, throttle/brake feel\, balance\, and how the machine responds on snow.\nBeginner – You are comfortable operating a sled at slow to moderate speeds on groomed trails. You can start\, stop\, and turn with confidence but are still developing body positioning\, throttle control\, and understanding terrain.\nAdvanced Beginner – You ride groomed and ungroomed terrain with growing confidence. You’re beginning to explore off-trail riding\, sidehilling basics\, climbing small features\, and navigating variable snow\, while still refining balance\, technique\, and recovery skills.\nIntermediate – You ride on- and off-trail regularly and can manage varied terrain\, deeper snow\, and moderate sidehills. You understand line choice\, machine control\, and terrain hazards and are ready to work on advanced techniques\, efficiency\, and riding bigger features. \n👉 This clinic is best suited for Beginners to Advanced Beginners.  \nMeet the Founders of Alaska Powder Pursuit\n✨ Teslin Hoyem — Born and raised in remote Alaska\, Teslin brings deep wilderness knowledge\, racing experience\, and a passion for empowering others to explore wild terrain safely and confidently.\n✨ Galen Bridgewater — A lifelong mountain athlete who transitioned from competitive snowboarding to mountain riding; Galen is known for her approachable teaching style and commitment to helping women build mountain confidence.\n✨ MoAnna Bradshaw — A Valdez local and podium finisher at Arctic Man and the Valdez Hill Climb. MoAnna blends technical riding skill\, storm-season terrain understanding\, and a grounded\, supportive leadership style. \nThese women created Alaska Powder Pursuit to help riders explore Alaska’s mountains with confidence\, community\, and respect for the terrain. \nRegistration Details\n📝 Pre-Registration Required: Complete our questionnaire\, select your clinic date\, and submit payment. \nMembership RequiredParticipation in this event requires an active Alaska Safe Riders membership. Please ensure your membership is current before registering. You can log in to your existing account or renew your membership using the link below. Becoming or remaining an active member helps support our safety programs\, rider education\, and community outreach—thank you for being part of the Alaska Safe Riders family. View Membership Levels Already a member? Log in here \n🚗 Transportation\, Lodging & Machines:All participants are responsible for their own transportation\, lodging\, and snowmachine. If you’d like support with transportation resources or options to rent a sled (including options in the Mat-Su Valley through AK Toy Rentals)\, please contact Galen for guidance. \n🏨 Book lodging early — Valdez fills quickly in winter. \n🔁 Cancellation Policy:– 72+ hours → Full refund– Under 72 hours → 50% refund \nCommunity Support\nA big thank-you to the Valdez Snowmachine Club for their support and for helping grow the AK Powder Pursuit programs in Valdez and beyond. \nQuestions?📧 Contact Galen Bridgewater at valdezwomensclinics@gmail.com \nPlease Note:Membership is required to participate in this course. The course price has been set with membership in mind\, which means coupon codes and discounts will not apply to this program. \nYour annual ASR membership unlocks training opportunities\, rider resources\, and community benefits that support safety across Alaska. \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; group networking; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority training reservations; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition
URL:https://alaskasaferiders.org/event/ak-powder-pursuit-womens-snowmachine-clinic-feb-28-mar-1/
LOCATION:Thompson Pass\, Mile 27.5 Richardson Highway\, Valdez\, AK\, 99686\, United States
CATEGORIES:Field Class,Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/12/AK-Powder-Pursuit-Clinics-Feb-28-Mar-1.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260214T080000
DTEND;TZID=America/Anchorage:20260214T200000
DTSTAMP:20260414T070139
CREATED:20251010T234657Z
LAST-MODIFIED:20260216T224320Z
UID:22459-1771056000-1771099200@alaskasaferiders.org
SUMMARY:zz - Iron Dog Race Start – Big Lake\, Alaska
DESCRIPTION:Save the Date: Iron Dog Race Start – Big Lake\, Alaska📅 Friday\, February 14th\, 2026📍 Big Lake\, Alaska \nGet ready for one of Alaska’s most iconic winter events — the Iron Dog Race Start! Join the excitement as teams of skilled snowmachine racers launch into Alaska’s rugged backcountry in the world’s longest and toughest snowmachine race. \nThis year\, members of Alaska Safe Riders and Artwork by Sierra Winter will be at the Iron Dog Start\, hosting a booth where we’d love to connect with you and your families. Stop by to talk about backcountry safety\, responsible riding\, creativity\, and art\, and help us cheer on the Iron Dog teams as they kick off their incredible journey. \nWhile Alaska Safe Riders will not have representation at the finish this year\, we still encourage community members to attend if you’re able — it’s an unforgettable part of the Iron Dog experience. Be sure to come say hello to us at the start\, meet the team\, and soak up the energy of race day. \n❄️ Bundle up\, bring the family\, and join us at Big Lake to celebrate safety\, creativity\, and Alaska’s toughest racers! \n\nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy valuable member perks: \n✨ ASR Basic — $25/yearMembers-only training events\, rider networking\, merch offers\, automatic prize entries \n👨‍👩‍👧‍👦 ASR Family — $50/yearUp to 6 family members\, networking with riders & champions\, merch offers\, prize entries \n🏫 ASR Schools — $100/yearSchool recognition\, priority reservations for school trainings\, special school offers \n🏢 ASR Business — $500+/yearBusiness recognition\, industry networking\, event and workshop visibility\, website & newsletter recognition \n👉 Start your journey to safer riding today — join Alaska Safe Riders!
URL:https://alaskasaferiders.org/event/iron-dog-race-start-big-lake-alaska/
LOCATION:Big Su Brewing Company\, 5120 S Big Lake Rd\, Big Lake\, AK\, 99652\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-3.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260212T180000
DTEND;TZID=America/Anchorage:20260212T203000
DTSTAMP:20260414T070139
CREATED:20260113T090008Z
LAST-MODIFIED:20260216T224317Z
UID:39063-1770919200-1770928200@alaskasaferiders.org
SUMMARY:zz - emPOWDERed Maintenance Clinic - AMDS - Anchorage
DESCRIPTION:emPOWDERed Ski-Doo & Lynx Maintenance Clinic\n📅 February 12th | ⏰ 6:00 PM📍 Alaska Mining & Diving Supply (AMDS)🎟️ Free Entry | Open to All Riders \nThe emPOWDERed Maintenance Clinic is a hands-on\, rider-focused evening designed to help snowmachine riders of all experience levels build confidence through better machine knowledge and care. \nBrought to you by Alaska Mining and Diving Supply\, Alaska Safe Riders\, Artwork by Sierra Winter\, and Uptrack Alliance\, this clinic creates a welcoming space to learn practical maintenance skills that directly translate to safer\, more reliable riding in Alaska’s backcountry. \nDuring the clinic\, riders will learn about:❄️ Belt inspection and how to change a belt❄️ Track tension and proper adjustment❄️ Chaincase tension and adjustment❄️ Spark plug inspection and replacement❄️ Essential pre-ride checklists to keep you prepared \nWhether you’re new to riding or have years of experience\, proper maintenance is a key part of staying safe\, avoiding breakdowns\, and keeping your riding days fun. \n🎁 Door prizes\, food & drinks\, and a strong sense of community round out the evening.This event is free to attend and open to all riders — come learn\, connect\, and get your sled dialed. \nWe look forward to seeing you there and helping you ride smarter and safer this season. \n\n\nWhat is emPOWDERed?\nemPOWDERed is a community-driven movement created to empower riders—through education\, clinics\, and connection—to build confidence on and off the snow.Learn more at artworkbysierrawinter.com/empowdered \n👉 Please note: An Alaska Safe Riders (ASR) membership is required to attend emPOWDERed rides but not maintenance clinics.  \n\nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \nASR Basic — $25/yearMembers-only training events\, networking\, merch offers\, automatic prize entries \nASR Family — $50/yearUp to 6 family members\, networking with riders & champions\, merch offers\, prize entries \nASR Schools — $100/yearSchool recognition\, priority reservations for school trainings\, special school offers \nASR Business — $500+/yearBusiness recognition\, industry networking\, event visibility\, website & newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders!
URL:https://alaskasaferiders.org/event/empowdered-maintenance-clinic-amds-anchorage/
LOCATION:Alaska Mining and Diving Supply\, 3222 Commercial Drive\, Anchorage\, 99501\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2026/02/emPOWDERed-Maintenance-Clinic-AMDS-Feb-12th-2026.png
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260210T080000
DTEND;TZID=America/Anchorage:20260216T170000
DTSTAMP:20260414T070139
CREATED:20260114T014407Z
LAST-MODIFIED:20260216T224314Z
UID:39709-1770710400-1771261200@alaskasaferiders.org
SUMMARY:zz - Education Expedition - Iron Dog Route
DESCRIPTION:Education Expedition – Iron Dog Route\nEducation Expedition is an Alaska Safe Riders outreach initiative bringing backcountry safety education directly to communities along the Iron Dog trail. Riders Jackson Kinnen and Matt Smelcer will travel the Iron Dog route on behalf of Alaska Safe Riders\, riding one sled generously donated by KEBRT Leasing\, LLC\, and a second sled rented at a discounted rate thanks to Delta Powersports—both wrapped\, of course\, the Sierra Winter Way. \nAs part of Alaska Safe Riders’ Education Expedition program\, this effort is focused on increasing safety awareness\, sharing real-world riding knowledge\, and connecting with youth and families in remote communities. Through a strong collaboration with Iron Dog and KLIM\, helmets will be distributed along the route to help keep brilliant minds protected. \nTentative ScheduleDates and times will vary by location—please check with your local school or community for scheduling details. \nFebruary 11th 9 AM – Tanana \nFebruary 12th & 13th – Galena – Check Local Info For Time & Location \nFebruary 13th 7 PM – Unalakleet \nFebruary 14th 11 AM – Shaktoolik \nFebruary 15th 1 PM – Kotzebue – Check Local Info For Time & Location
URL:https://alaskasaferiders.org/event/education-expedition-iron-dog-route/
LOCATION:AK
CATEGORIES:Community Expo,Field Class,School Training
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2026/01/Iron-Dog-Education-Expedition-Alaska-Safe-Riders-2.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260207T090000
DTEND;TZID=America/Anchorage:20260208T170000
DTSTAMP:20260414T070139
CREATED:20260109T054500Z
LAST-MODIFIED:20260216T224310Z
UID:39058-1770454800-1770570000@alaskasaferiders.org
SUMMARY:zz - Avalanche & Backcountry Safety – 2-Day Field Course Thompson Pass
DESCRIPTION:February 7–8 | Avalanche & Backcountry Safety – 2-Day Field Course in Thompson PassClass Size: Max 10 riders – The clinic is led by two qualified instructors so the course is a 5 to 1 ratio. Cost: $400 per person \nTake your backcountry riding to the next level with this intensive\, two-day\, hands-on field course designed for winter mountain riders ready to move beyond the basics. This course focuses on real-world avalanche safety\, terrain management\, and decision-making in complex winter environments. \nOver two immersive days in the mountains\, participants will gain practical experience and critical skills through hands-on instruction and realistic scenarios\, including: \nAvalanche RescueExecute fast\, effective companion rescues using current best practices and proven techniques. \nSnowpack & Hazard EvaluationLearn how to assess snowpack structure\, stability\, and identify red flags in variable alpine conditions. \nTerrain Selection & Mountain TravelDevelop strategies for safe route-finding\, managing exposure\, and traveling efficiently in avalanche terrain. \nGroup Management & Human FactorsPractice communication\, leadership\, and decision-making strategies to reduce common human-factor pitfalls. \nAvalanche Safety Equipment UseBuild confidence and proficiency with your beacon\, probe\, shovel\, and emergency response systems. \nThis course is physically and mentally engaging and is designed to challenge riders while building confidence\, competence\, and preparedness for safer backcountry travel. \n\nParticipant Requirements\n\nRiders must commit to attending both days of the course. Partial attendance is not permitted.\nClass size is limited to 10 riders to ensure high-quality instruction and hands-on learning.\nRiders must bring their own snowmachine and provide their own transportation to and from the riding area.\nParticipants are required to have and carry standard avalanche safety equipment\, including: Avalanche transceiver (beacon)\, Probe\, Shovel.\nAvalanche airbag packs are strongly recommended but not required.\nRadios are strongly recommended but not required.\nRiders must bring lunch\, snacks\, and adequate hydration for full days in the field.\nAn active Alaska Safe Riders membership is required to participate.\n\nIf you’re unsure whether this course is the right fit for your experience level or goals\, please feel free to email us—we’re happy to talk through the program with you and help determine if it’s a good match. \nThis course is ideal for riders who want to make better decisions\, improve rescue readiness\, and gain confidence traveling in avalanche terrain alongside experienced instructors. \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Event Master Sign Up\n                             \n                        \n                        LinkedInThis field is for validation purposes and should be left unchanged.Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Please enter the participant’s full legal name as it should appear on event records and confirmations.Email(Required)\n                                \n                                    \n                                    Enter Email\n                                \n                                \n                                    \n                                    Confirm Email\n                                \n                                \n                            Enter a valid email address. Event confirmations\, receipts\, gear lists\, and meetup instructions will be sent to this address (If Applicable).Phone(Required)Provide a mobile phone number so we can contact you with important event updates\, schedule changes\, or safety notifications.This field is hidden when viewing the formEvent Tracking KeyEvent Selection(Required)— Please select an event —3.14.2026 emPOWDERed Backcountry Ladies Ride Eureka3.28.26 AK Powder Pursuit – Women’s Snowmachine Clinic4.25.26 End of Season FlingApril 14th – Soul Rides Motorized Avalanche Skills TrainingApril 15th – Soul Rides Motorized Avalanche Skills TrainingApril 16th – Soul Rides Motorized Avalanche Skills Training4.17.26 Alaska Safe Riders & Soul Rides Beacon Bash5.4.26 Annual MembershipSelect the event you are registering for. Please make sure the correct event name is selected before continuing.Member Promo Code ASR Member Discount:\nAlaska Safe Riders members receive a 10% discount on event registrations.\nIf you are already a member\, enter your discount code and click Apply. You can find your promo code on the membership dashboard.\nNot a member yet? Sign up here. Memberships start at $25 per year\, and in many cases the event discount will save you more than the cost of membership.\nThis field is hidden when viewing the formPayment Required Conditional (Admin only)Consent(Required) I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.By checking this box\, you consent to receive text messages related to your registration\, including payment confirmations\, event reminders\, and important event-related updates.\nEmergency Contact Name(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Emergency Contact Phone Number(Required)Sled InformationParticipants are responsible for providing their own snowmachine and transportation.Do you have any allergies or medical conditions we should know about for your safety?Snowmachine Information(Required)Year\, Make (Ski-Doo\, Polaris\, Arctic Cat\, Yamaha\, etc.)\, and Model and track length. Example 2025 Polaris Khaos Boost Matryx Slash 155Is your snowmachine in good working condition?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Other\n			If you are unsure\, please select other and describe your concerns. Describe any mechanical issues you are aware of.(Required)Example: the check engine light comes on at 3000 RPM but otherwise runs well throughout the day. Are you comfortable unloading/loading your snowmachine?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					Need Assistance\n			\n			\n					\n					Other\n			Riding ExperienceHelp us understand your current riding experience and the skills you hope to build through our clinics.How long have you been riding snowmachines?(Required)\n			\n					\n					Never\n			\n			\n					\n					A Few Times\n			\n			\n					\n					1-2 Seasons\n			\n			\n					\n					3+ Seasons\n			How would you describe your current skill level?(Required)\n			\n					\n					True Beginner - You are brand new to snowmachines. You may have never ridden or only ridden once or twice. Still learning basic controls\, throttle/brake feel\, balance\, and how the machine responds on snow.\n			\n			\n					\n					Beginner - You are comfortable operating a sled at slow to moderate speeds on groomed trails. You can start\, stop\, and turn with confidence but are still developing body positioning\, throttle control\, and understanding terrain.\n			\n			\n					\n					Advanced Beginner - You ride groomed and ungroomed terrain with growing confidence. You’re beginning to explore off-trail riding\, sidehilling basics\, climbing small features\, and navigating variable snow. Still refining balance\, technique\, and recovery skills.\n			\n			\n					\n					Intermediate - You ride on- and off-trail regularly and can manage varied terrain\, deeper snow\, and moderate sidehills. You understand line choice\, machine control\, and terrain hazards. Ready to work on advanced techniques\, efficiency\, and riding bigger features.\n			\n			\n					\n					Other\n			What type of terrain have you ridden?(Required)\n								\n								Trails\n							\n								\n								Meadows\n							\n								\n								Low-Angle Powder\n							\n								\n								Steeper Terrain\n							\n								\n								High Alpine/Mountains\n							\n								\n								Rivers\n							\n								\n								Glaciers\n							Select all that apply. What are you hoping to improve on during the clinic?(Required)\n								\n								Throttle Control\n							\n								\n								Body Positioning\n							\n								\n								Countersteering\n							Select all that apply. What makes you nervous or unsure when riding?Do you have any injuries or physical limitations we should know about?Your GoalsHelp us understand how we can help you improve your skills in the riding and backcountry industry. What do you hope to gain from this clinic?(Required)What would you define as success from this clinic?(Required)Is there anything else we should know about you?(Required)Gear & PreparednessWe are proud to partner with Alaska Safe Riders to bring these clinics to women in the industry and safety is key! What avalanche gear do you currently have?(Required)\n								\n								Beacon\n							\n								\n								Probe\n							\n								\n								Shovel\n							\n								\n								Snow Saw\n							\n								\n								Airbag Backpage\n							\n								\n								Avy Lung\n							\n								\n								Inclinometer\n							\n								\n								Snow Thermometer/Crystal Card\n							\n								\n								On The Snow Avalanche Training\n							\n								\n								Online Avalanche Training\n							Do you feel confident using your avalanche gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Do you have appropriate cold-weather riding gear?(Required)\n			\n					\n					Yes\n			\n			\n					\n					No\n			\n			\n					\n					I think so\n			\n			\n					\n					I need assistance\n			Payment InformationTotal Amount Due\n							\n						This amount reflects the event price and any applicable member discounts. The total will update automatically once your discount code is applied.Billing Address(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Enter the billing address associated with your payment method. This information is required for payment processing and fraud prevention.Payment Method(Required)\n			Complete your payment using our secure checkout. All transactions are encrypted and processed safely.\n           Save & Continue
URL:https://alaskasaferiders.org/event/avalanche-backcountry-safety-2-day-field-course/
LOCATION:Thompson Pass\, Mile 27.5 Richardson Highway\, Valdez\, AK\, 99686\, United States
CATEGORIES:Field Class
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2026/01/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-1.png
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260131T090000
DTEND;TZID=America/Anchorage:20260201T160000
DTSTAMP:20260414T070139
CREATED:20251211T205414Z
LAST-MODIFIED:20260216T224306Z
UID:26236-1769850000-1769961600@alaskasaferiders.org
SUMMARY:zz - AK Powder Pursuit - Women's Snowmachine Clinic Jan 31 - Feb 1
DESCRIPTION:📅 January 31 – February 1\, 2025\n📍 Valdez\, Alaska\n💲 $150 for the weekend + Alaska Safe Rider Membership\n👥 26 Rider Limit \nIf you’re ready to build confidence on the mountain — with hands-on coaching\, supportive instruction\, and a community of women who ride — this two-day clinic is for you.\nThis first course in the Alaska Powder Pursuit series is designed specifically for True Beginners and Beginners\, focusing on the fundamentals that make you a safer\, smoother\, and more intentional backcountry rider. The Alaska Powder Pursuit team meets you at your skill level\, helping you progress with clarity and confidence. \nOver the weekend\, you’ll learn to:\n❄️ Control your sled through balance\, throttle management\, and body positioning\n❄️ Use countersteering and carving to move fluidly through varied terrain\n❄️ Read terrain and understand foundational avalanche awareness\n❄️ Work through stuck situations efficiently and safely \nAdditional topics include:\n❄️ Gear that supports progression\n❄️ Sled setup for improved handling\n❄️ Safe travel habits and communication practices\n❄️ Preventative Sled Maintenance \nBy the end of the weekend\, you’ll ride with more confidence\, more skill\, and a deeper understanding of safe backcountry travel. \nRider Levels\nTrue Beginner – You are brand new to snowmachines. You may have never ridden or only ridden once or twice. You’re still learning basic controls\, throttle/brake feel\, balance\, and how the machine responds on snow.\nBeginner – You are comfortable operating a sled at slow to moderate speeds on groomed trails. You can start\, stop\, and turn with confidence but are still developing body positioning\, throttle control\, and understanding terrain.\nAdvanced Beginner – You ride groomed and ungroomed terrain with growing confidence. You’re beginning to explore off-trail riding\, sidehilling basics\, climbing small features\, and navigating variable snow\, while still refining balance\, technique\, and recovery skills.\nIntermediate – You ride on- and off-trail regularly and can manage varied terrain\, deeper snow\, and moderate sidehills. You understand line choice\, machine control\, and terrain hazards and are ready to work on advanced techniques\, efficiency\, and riding bigger features. \n👉 This clinic is best suited for True Beginners and Beginners. \nMeet the Founders of Alaska Powder Pursuit\n✨ Teslin Hoyem — Born and raised in remote Alaska\, Teslin brings deep wilderness knowledge\, racing experience\, and a passion for empowering others to explore wild terrain safely and confidently.\n✨ Galen Bridgewater — A lifelong mountain athlete who transitioned from competitive snowboarding to mountain riding; Galen is known for her approachable teaching style and commitment to helping women build mountain confidence.\n✨ MoAnna Bradshaw — A Valdez local and podium finisher at Arctic Man and the Valdez Hill Climb. MoAnna blends technical riding skill\, storm-season terrain understanding\, and a grounded\, supportive leadership style. \nThese women created Alaska Powder Pursuit to help riders explore Alaska’s mountains with confidence\, community\, and respect for the terrain. \nRegistration Details\n📝 Pre-Registration Required: Complete our questionnaire\, select your clinic date\, and submit payment. \n🚗 Transportation\, Lodging & Machines:All participants are responsible for their own transportation\, lodging\, and snowmachine. If you’d like support with transportation resources or options to rent a sled (including options in the Mat-Su Valley through AK Toy Rentals)\, please contact Galen for guidance. \n🏨 Book lodging early — Valdez fills quickly in winter. \n🔁 Cancellation Policy:– 72+ hours → Full refund– Under 72 hours → 50% refund \nCommunity Support\nA big thank-you to the Valdez Snowmachine Club for their support and for helping grow the AK Powder Pursuit programs in Valdez and beyond. \nQuestions?📧 Contact Galen Bridgewater at valdezwomensclinics@gmail.com \nPlease Note:Membership is required to participate in this course. The course price has been set with membership in mind\, which means coupon codes and discounts will not apply to this program. \nYour annual ASR membership unlocks training opportunities\, rider resources\, and community benefits that support safety across Alaska. \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; group networking; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority training reservations; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \nMembership RequiredParticipation in this event requires an active Alaska Safe Riders membership. Please ensure your membership is current before registering. You can log in to your existing account or renew your membership using the link below. Becoming or remaining an active member helps support our safety programs\, rider education\, and community outreach—thank you for being part of the Alaska Safe Riders family. View Membership Levels Already a member? Log in here
URL:https://alaskasaferiders.org/event/ak-powder-pursuit-womens-snowmachine-clinic-jan-31-feb-1/
LOCATION:Thompson Pass\, Mile 27.5 Richardson Highway\, Valdez\, AK\, 99686\, United States
CATEGORIES:Field Class,Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/12/AK-Powder-Pursuit-Event-Flyer-Jan-31-to-Feb-1-General-QR-Code.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260125T090000
DTEND;TZID=America/Anchorage:20260125T170000
DTSTAMP:20260414T070139
CREATED:20251116T173947Z
LAST-MODIFIED:20260216T224302Z
UID:23056-1769331600-1769360400@alaskasaferiders.org
SUMMARY:zz - Teen Mountain Riders Skills Clinic – Summit
DESCRIPTION:📅 Sunday\, January 25\, 2026🕘 9:00 AM – 5:00 PM📍 Summit\, Alaska💲 $175 | 10 Student Limit | Ages 14 and up \nThis special Teen Edition of the Mountain Riders Skills Clinic is designed for young riders ages 14 and up who are eager to learn mountain safety and technical sled skills in a fun\, supportive environment. Whether you’re new to mountain riding or ready to take your skills up a notch\, this hands-on clinic will help you ride with confidence\, awareness\, and control. \nThe course combines avalanche safety education with real-world riding instruction in Alaska’s incredible Summit terrain. Teens will learn how to stay safe in avalanche conditions and develop the fundamentals needed for smart backcountry decision-making. \nParticipants will:❄️ Learn to select safe routes through avalanche terrain❄️ Practice effective avalanche rescue techniques❄️ Develop control and confidence on steep\, technical slopes \nIn the technical riding portion\, you’ll work on throttle and brake control\, foot placement\, sled balance\, and reading terrain to maintain flow and control. We’ll start with basics on an open hillside before taking those skills into more challenging terrain throughout Turnagain Pass. \nWe’ll also cover practical topics such as:❄️ How to get unstuck efficiently❄️ What gear to carry in the backcountry❄️ How to set up your sled for maximum performance \nBy the end of the day\, participants will have the tools to safely navigate technical terrain\, respond effectively in avalanche situations\, and most importantly — have fun in the mountains! \nInstruction team:This clinic will be led by Carlen Thiessen\, a graduate of Chris Burandt’s Mountain Rider School. Carlen brings years of backcountry expertise and a passion for helping riders — especially young ones — build confidence\, sharpen their technical skills\, and make smart decisions in mountain terrain. He will be assisted by a second instructor (to be announced closer to the event date)\, a certified avalanche instructor who will lead rescue skills and riding protocol components. \nImportant:🧭 Ages 14 and up only🧭 Parental consent is required for all teen participants. Parents or guardians must complete a waiver prior to the event.✅ A parent or guardian is encouraged (but not required) to attend the morning safety overview.✅ Riders must have a sled suitable for mountain riding (146” track or longer\, 2”+ paddle).✅ Required gear: beacon\, probe\, shovel\, and full winter riding gear \nOnce registered\, participants and their parents will receive a confirmation email with a detailed gear list\, waiver forms\, and meetup instructions. \n \nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \nMembership RequiredParticipation in this event requires an active Alaska Safe Riders membership. Please ensure your membership is current before registering. You can log in to your existing account or renew your membership using the link below. Becoming or remaining an active member helps support our safety programs\, rider education\, and community outreach—thank you for being part of the Alaska Safe Riders family. View Membership Levels Already a member? Log in here
URL:https://alaskasaferiders.org/event/teen-mountain-riders-skills-clinic-turnagain-2/
LOCATION:Summit Lake\, Paxson Alaska\, Summit Lake\, Paxson\, AK\, 99586\, United States
CATEGORIES:Field Class,Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/11/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-1.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260124T090000
DTEND;TZID=America/Anchorage:20260124T170000
DTSTAMP:20260414T070139
CREATED:20251204T190235Z
LAST-MODIFIED:20260216T224258Z
UID:24884-1769245200-1769274000@alaskasaferiders.org
SUMMARY:zz - Mountain Riders Skills Clinic – Summit
DESCRIPTION:Mountain Riders Skills Clinic – Summit\, Alaska\n📅 Saturday\, January 24\, 2026🕘 9:00 AM – 5:00 PM📍 Summit\, Alaska (Monument Main Parking Area)💲 $175 | 10 Student Limit \nIf you’re ready to take your mountain riding skills to the next level — safely and confidently — this clinic is for you! \nThe Mountain Riders Skills Clinic combines avalanche safety education with real-world riding instruction in Alaska’s legendary mountain terrain. The goal of this course is twofold: to give you the tools to manage mountain terrain safely\, and to build the riding skills you need to stay in control and have fun in the backcountry. \nParticipants will:❄️ Learn to select safe routes through avalanche terrain❄️ Practice effective avalanche rescue techniques❄️ Develop control and confidence on steep\, technical slopes \nIn the technical riding portion\, you’ll work on throttle and brake control\, foot placement\, sled balance\, and reading terrain to maintain flow and control. We’ll start by practicing fundamentals on an open hillside before taking those skills into more challenging terrain around Summit Lake. \nWe’ll also cover practical topics such as:❄️ How to get unstuck efficiently❄️ What gear to carry in the backcountry❄️ How to set up your sled for maximum performance \nBy the end of the day\, you’ll have the knowledge and confidence to safely navigate technical terrain\, respond effectively in avalanche scenarios\, and ride smarter\, stronger\, and safer. \nInstruction team:This clinic will be led by Carlen Thiessen\, a graduate of Chris Burandt’s Mountain Rider School. Carlen brings years of backcountry expertise and a passion for helping riders build confidence\, sharpen their technical skills\, and make smart decisions in mountain terrain. He will be assisted by a second instructor (to be announced closer to the event date)\, a certified avalanche instructor who will lead rescue skills and riding protocol components. \nRecommendations:✅ Mountain sled (146” track or longer\, 2”+ paddle) recommended✅ Watch our Mountain Riding YouTube playlist before class✅ Required gear: beacon\, probe\, shovel\, and full winter riding gear \nOnce registered\, you’ll receive a detailed gear list and meetup instructions via email. \nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \nMembership RequiredParticipation in this event requires an active Alaska Safe Riders membership. Please ensure your membership is current before registering. You can log in to your existing account or renew your membership using the link below. Becoming or remaining an active member helps support our safety programs\, rider education\, and community outreach—thank you for being part of the Alaska Safe Riders family. View Membership Levels Already a member? Log in here
URL:https://alaskasaferiders.org/event/mountain-riders-skills-clinic-summit-2/
LOCATION:Summit Lake\, Paxson Alaska\, Summit Lake\, Paxson\, AK\, 99586\, United States
CATEGORIES:Field Class,Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-1-3.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260112T183000
DTEND;TZID=America/Anchorage:20260112T200000
DTSTAMP:20260414T070139
CREATED:20250112T222041Z
LAST-MODIFIED:20260114T013333Z
UID:32710-1768242600-1768248000@alaskasaferiders.org
SUMMARY:zz - Backcountry Snowmachine Safety - Mat-Su Trails & Parks Foundation
DESCRIPTION:Backcountry Snowmachine Safety – Wasilla Speaker SeriesPresented by Alaska Safe Riders \nDate: January 12Location: Mat-Su Health FoundationSchedule:\n– Doors open at 6:30 PM\n– Presentation begins at 7:00 PM\n– Event lasts approximately one hour \nCost: Free to attendRegistration: Not required \nWe are proud to be part of the Mat-Su Trails and Parks schedule of events and to join the Wasilla Speaker Series for an evening focused on backcountry safety and rider awareness. \nJoin Mike Buck of Alaska Safe Riders for an informative and engaging conversation on staying safe while snowmachining in the backcountry. This presentation is ideal for new riders as well as experienced riders looking to refresh their knowledge and build confidence when traveling off-trail. \nAttendees will gain practical insight into navigating backcountry terrain safely and confidently\, with discussion covering: \n– Essential safety gear\n– Identifying common backcountry hazards\n– Emergency response and survival considerations \nThis is a great opportunity to learn\, ask questions\, and connect with others who value responsible riding and backcountry preparedness. \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders!
URL:https://alaskasaferiders.org/event/backcountry-snowmachine-safety-mat-su-trails-parks-foundation/
LOCATION:Mat-Su Health Foundation\, 777 N Crusey Street\, Wasilla\, Alaska\, 99654\, United States
CATEGORIES:Community Expo
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/01/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-1.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260111T090000
DTEND;TZID=America/Anchorage:20260111T170000
DTSTAMP:20260414T070139
CREATED:20251011T002450Z
LAST-MODIFIED:20260113T202651Z
UID:22454-1768122000-1768150800@alaskasaferiders.org
SUMMARY:zz - Teen Mountain Riders Skills Clinic – Turnagain
DESCRIPTION:📅 Sunday\, January 11\, 2026🕘 9:00 AM – 5:00 PM📍 Turnagain\, Alaska (Monument Main Parking Area)💲 $175 | 10 Student Limit | Ages 14 and up \nThis special Teen Edition of the Mountain Riders Skills Clinic is designed for young riders ages 14 and up who are eager to learn mountain safety and technical sled skills in a fun\, supportive environment. Whether you’re new to mountain riding or ready to take your skills up a notch\, this hands-on clinic will help you ride with confidence\, awareness\, and control. \nThe course combines avalanche safety education with real-world riding instruction in Alaska’s incredible Turnagain Pass terrain. Teens will learn how to stay safe in avalanche conditions and develop the fundamentals needed for smart backcountry decision-making. \nParticipants will:❄️ Learn to select safe routes through avalanche terrain❄️ Practice effective avalanche rescue techniques❄️ Develop control and confidence on steep\, technical slopes \nIn the technical riding portion\, you’ll work on throttle and brake control\, foot placement\, sled balance\, and reading terrain to maintain flow and control. We’ll start with basics on an open hillside before taking those skills into more challenging terrain throughout Turnagain Pass. \nWe’ll also cover practical topics such as:❄️ How to get unstuck efficiently❄️ What gear to carry in the backcountry❄️ How to set up your sled for maximum performance \nBy the end of the day\, participants will have the tools to safely navigate technical terrain\, respond effectively in avalanche situations\, and most importantly — have fun in the mountains! \nInstruction team:This clinic will be led by Carlen Thiessen\, a graduate of Chris Burandt’s Mountain Rider School. Carlen brings years of backcountry expertise and a passion for helping riders — especially young ones — build confidence\, sharpen their technical skills\, and make smart decisions in mountain terrain. He will be assisted by a second instructor (to be announced closer to the event date)\, a certified avalanche instructor who will lead rescue skills and riding protocol components. \nImportant:🧭 Ages 14 and up only🧭 Parental consent is required for all teen participants. Parents or guardians must complete a waiver prior to the event.✅ A parent or guardian is encouraged (but not required) to attend the morning safety overview.✅ Riders must have a sled suitable for mountain riding (146” track or longer\, 2”+ paddle).✅ Required gear: beacon\, probe\, shovel\, and full winter riding gear \nOnce registered\, participants and their parents will receive a confirmation email with a detailed gear list\, waiver forms\, and meetup instructions. \nMembership RequiredParticipation in this event requires an active Alaska Safe Riders membership. Please ensure your membership is current before registering. You can log in to your existing account or renew your membership using the link below. Becoming or remaining an active member helps support our safety programs\, rider education\, and community outreach—thank you for being part of the Alaska Safe Riders family. View Membership Levels Already a member? Log in here \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders!
URL:https://alaskasaferiders.org/event/teen-mountain-riders-skills-clinic-turnagain/
LOCATION:Turnagain Pass\, Mile Post 68 Seward Highway\, Turnagain Pass\, 99631\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-5.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260110T090000
DTEND;TZID=America/Anchorage:20260110T170000
DTSTAMP:20260414T070139
CREATED:20251011T002426Z
LAST-MODIFIED:20260113T234751Z
UID:22438-1768035600-1768064400@alaskasaferiders.org
SUMMARY:zz - Mountain Riders Skills Clinic – Turnagain
DESCRIPTION:Mountain Riders Skills Clinic – Turnagain\, Alaska\n📅 Saturday\, January 10\, 2026🕘 9:00 AM – 5:00 PM📍 Turnagain\, Alaska (Monument Main Parking Area)💲 $175 | 10 Student Limit \nIf you’re ready to take your mountain riding skills to the next level — safely and confidently — this clinic is for you! \nThe Mountain Riders Skills Clinic combines avalanche safety education with real-world riding instruction in Alaska’s legendary mountain terrain. The goal of this course is twofold: to give you the tools to manage mountain terrain safely\, and to build the riding skills you need to stay in control and have fun in the backcountry. \nParticipants will:❄️ Learn to select safe routes through avalanche terrain❄️ Practice effective avalanche rescue techniques❄️ Develop control and confidence on steep\, technical slopes \nIn the technical riding portion\, you’ll work on throttle and brake control\, foot placement\, sled balance\, and reading terrain to maintain flow and control. We’ll start with basics on an open hillside before taking those skills into more challenging terrain throughout Turnagain Pass. \nWe’ll also cover practical topics such as:❄️ How to get unstuck efficiently❄️ What gear to carry in the backcountry❄️ How to set up your sled for maximum performance \nInstruction team:This clinic will be led by Carlen Thiessen\, a graduate of Chris Burandt’s Mountain Rider School. Carlen brings years of backcountry expertise and a passion for helping riders build confidence\, sharpen their technical skills\, and make smart decisions in mountain terrain. He will be assisted by a second instructor (to be announced closer to the event date)\, a certified avalanche instructor who will lead rescue skills and riding protocol components. \nBy the end of the day\, you’ll have the knowledge and confidence to safely navigate technical terrain\, respond effectively in avalanche scenarios\, and ride smarter\, stronger\, and safer. \nRecommendations:✅ Mountain sled (146” track or longer\, 2”+ paddle) recommended✅ Watch our Mountain Riding YouTube playlist before class✅ Required gear: beacon\, probe\, shovel\, and full winter riding gear \nOnce registered\, you’ll receive a detailed gear list and meetup instructions via email. \nMembership RequiredParticipation in this event requires an active Alaska Safe Riders membership. Please ensure your membership is current before registering. You can log in to your existing account or renew your membership using the link below. Becoming or remaining an active member helps support our safety programs\, rider education\, and community outreach—thank you for being part of the Alaska Safe Riders family. View Membership Levels Already a member? Log in here \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders!
URL:https://alaskasaferiders.org/event/mountain-riders-skills-clinic-turnagain/
LOCATION:Turnagain Pass\, Mile Post 68 Seward Highway\, Turnagain Pass\, 99631\, United States
CATEGORIES:Field Class,Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-1-2.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20260107T173000
DTEND;TZID=America/Anchorage:20260107T200000
DTSTAMP:20260414T070139
CREATED:20251207T214933Z
LAST-MODIFIED:20260216T224252Z
UID:32687-1767807000-1767816000@alaskasaferiders.org
SUMMARY:zz - Glacier Travel Awareness Seminar - ER Polaris and Arctic Cat
DESCRIPTION:Glacier Travel Awareness Seminar\nDate: January 7Time: 5:30 PM – 8:00 PMLocation: Eagle River Polaris and Arctic Cat\nCost: FreeMembership: Not required (but encouraged)Capacity: No limit — bring your friends and riding partners \nAlaska has more glaciers than anywhere else in North America\, and traveling on glaciers by snowmachine is a high-risk\, high-hazard activity that requires preparation\, education\, and sound decision-making. \nThis free glacier travel awareness seminar is designed to introduce riders to the fundamentals of glacier environments\, glacier travel considerations\, and how to assess hazards to help minimize risk. Topics include: \n– Glacier basics and terrain features\n– Common glacier hazards and risk assessment\n– Introductory glacier travel strategies\n– Demonstration of crevasse rescue gear and equipment \nParticipants will also be introduced to basic crevasse rescue concepts\, with opportunities for hands-on learning. If you bring 10 feet of 4mm utility cord and 30 feet of 1” tubular webbing\, instructors can help you begin assembling a personal crevasse rescue kit. \nThis seminar serves as a lead-in course to a two-day Glacier Travel Class that will be offered later this winter. Watch for future listings and registration details. \nEducation and awareness are critical tools for reducing risk in glacier terrain. \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders!
URL:https://alaskasaferiders.org/event/glacier-travel-awareness-seminar-er-polaris-and-arctic-cat/
LOCATION:Eagle River Polaris & Arctic Cat\, 16835 N Snowmobile Lane\, Eagle River\, AK\, 99577\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/12/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-2.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251217T130000
DTEND;TZID=America/Anchorage:20251217T140000
DTSTAMP:20260414T070139
CREATED:20251216T010049Z
LAST-MODIFIED:20251224T214747Z
UID:28736-1765976400-1765980000@alaskasaferiders.org
SUMMARY:zz - Backcountry Safety Class - Kincaid Elementary School
DESCRIPTION:Alaska Safe Riders Backcountry Safety Class\nKingcaid Elementary School | 1:00–2:00 PM \nAlaska Safe Riders is proud to partner with local Alaskan schools to deliver engaging\, age-appropriate backcountry safety education designed to empower the next generation of outdoor users. This upcoming workshop at Kingcaid Elementary School will introduce students to foundational safety skills and awareness concepts that help keep them safe while enjoying Alaska’s outdoors—whether on foot\, riding ATVs or snowmachines\, or spending time on the water. \nThrough interactive discussions and real-world examples\, students will learn the importance of preparation\, smart decision-making\, and teamwork\, while building respect for Alaska’s environment and wildlife. Our goal is to foster confidence\, awareness\, and a strong safety culture that students can carry with them as they grow. \nWorkshop topics include:\n— The importance of proper planning and preparedness\n— Identifying and avoiding potential hazards\n— Key concepts of avalanche awareness and ATV/snowmachine safety\n— Water safety fundamentals\n— Effective communication\n— Basic survival skills\n— Environmental and wildlife impact\, awareness\, and avoidance\n— Wilderness first aid principles\n— Proper steps to follow in an emergency \nThese programs are made possible through the generous support and collaboration of our sponsors and partners. Alaska Safe Riders is incredibly grateful to Mat-Su Health Foundation\, The Alaska Community Foundation\, Alaska State Troopers\, Donlin Gold\, and the Alaska Avalanche Information Center for their commitment to youth education\, community safety\, and outdoor stewardship across Alaska. \n\n\n\n\n\n\n \nMUCKTUK MARSTON  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nInterested in having Alaska Safe Riders present at your school?We’d love to connect. Let us know by visiting:👉 https://alaskasaferiders.org/contact-us/
URL:https://alaskasaferiders.org/event/backcountry-safety-class-kincaid-elementary-school/
LOCATION:Kingcade Elementary
CATEGORIES:School Training
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/12/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-1.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251213T120000
DTEND;TZID=America/Anchorage:20251213T150000
DTSTAMP:20260414T070139
CREATED:20251216T013931Z
LAST-MODIFIED:20251216T014036Z
UID:28758-1765627200-1765638000@alaskasaferiders.org
SUMMARY:zz - Avalanche Rescue Workshop - Hatcher Pass Avalanche Center
DESCRIPTION:Community Winter Backcountry Rescue Clinic\nFree | All Skill Levels Welcome | All Winter Travel Modes \nJoin us for a free\, community-focused rescue clinic designed for winter backcountry travelers of all experience levels. Whether you’re brand new to backcountry travel or looking to refresh and refine your rescue skills\, this hands-on clinic offers valuable education in a supportive learning environment. \nWho should attend:All skill levels and modes of winter travel are welcome\, including skiers\, splitboarders\, snowshoers\, fat bikers\, and winter hikers. \n\nWhat to Expect\n\n\nHands-on companion rescue practice (bring your own gear; a limited supply of loaner equipment will be available) \n\n\nIntroductory instruction for those new to rescue skills \n\n\nSkill refreshers and refinement for intermediate and advanced participants \n\n\nAdvanced rescue scenarios (including multiple burials and deep burial considerations) available upon request \n\n\nReview of warning signs of unstable snowpack \n\n\nLearn about local avalanche education and safety resources from: \n\n\nHatcher Pass Avalanche Center (HPAC) \n\n\nAlaska Safe Riders \n\n\nAlaska Avalanche School \n\n\nChugach National Forest Avalanche Information Center (CNFAIC) \n\n\nAlaska Mountain Rescue Group (AMRG) \n\n\nAnchorage Nordic Ski Patrol \n\n\nAlaska Mountain Dog Search (AMDS) \n\n\nBackcountry Bike & Ski \n\n\n\n\nFarm Loop Coffee and donuts provided ☕ \n\n\n\nWhat to Bring\n\n\nDress in layers\, as you would for a winter hike or ski tour \n\n\nBackpack with extra layers\, water\, snacks\, and hand/toe warmers if you use them \n\n\nBeacon\, probe\, and shovel (if you own them) \n\n\nSkis\, splitboard\, snowshoes\, fat bike\, or winter boots and gaiters if you do not yet have winter travel gear \n\n\nYour Alaska State Parks annual parking pass or payment for a daily parking pass \n\n\nIf under 18\, a parent or guardian must be present to sign the waiver \n\n\n\nThis clinic is a great opportunity to build skills\, connect with local safety organizations\, and strengthen our winter backcountry community. We hope to see you there! \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders
URL:https://alaskasaferiders.org/event/avalanche-rescue-workshop-hatcher-pass-avalanche-center/
LOCATION:Hatcher Pass\, Fishhook Trailhead\, Willow\, 99688\, United States
CATEGORIES:Community Expo,Field Class
ATTACH;FMTTYPE=image/jpeg:https://alaskasaferiders.org/wp-content/uploads/2025/12/591990026_1295659442602671_7377816732268088538_n.jpg
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251211T180000
DTEND;TZID=America/Anchorage:20251211T200000
DTSTAMP:20260414T070139
CREATED:20251203T223001Z
LAST-MODIFIED:20251212T215745Z
UID:24596-1765476000-1765483200@alaskasaferiders.org
SUMMARY:zz - Backcountry & Ice Travel Safety - Big Lake Lions Club
DESCRIPTION:Who: Alaska Safe Riders\, invited and hosted by the Susitna River CoalitionWhat: Backcountry & Ice Travel Safety PresentationWhere: Big Lake Lions ClubWhen: December 11 at 6PMAdmission: FREE and open to the public \nAlaska Safe Riders is honored to be invited by the Susitna River Coalition to share this important Backcountry & Ice Travel Safety presentation with the Big Lake community. \nAs daylight dwindles and river systems continue to freeze\, riders across Alaska are gearing up for winter adventure—yet early-season hazards remain real and often hidden. This session is designed to equip every rider\, from beginner to seasoned expert\, with the knowledge needed to stay safe on ice and in the backcountry. \nWhat you’ll learn:• Reading the Ice: How to recognize weak spots\, pressure ridges\, flow channels\, and other danger signs before you travel.• The Gear That Saves Lives: Hands-on demonstrations of essential ice safety gear—ice picks\, throw ropes\, flotation layers\, and more.• Self-Rescue & Buddy-Rescue: A clear\, step-by-step walkthrough of what to do in the critical first 60 seconds after breaking through the ice.• Building a Safety Mindset: Smart route planning\, group travel strategies\, and risk-reduction habits for a safer season. \nDon’t rely on luck—rely on preparation.Join us for an engaging\, practical\, and potentially life-saving evening that will help you and your riding partners return home safely all season long. \n\n\n\n\n\n\n\n\n\n\nBecome a Member of Alaska Safe Riders \nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today — join Alaska Safe Riders! \n  \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					CompanyThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/backcountry-ice-travel-safety-big-lake-lions-club/
LOCATION:Big Lake Lions Club\, 2942 S Lions Ct\, Big Lake\, AK\, 99652\, United States
CATEGORIES:Community Expo
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/12/BigLake.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251210T183000
DTEND;TZID=America/Anchorage:20251210T203000
DTSTAMP:20260414T070139
CREATED:20251010T234743Z
LAST-MODIFIED:20251212T215625Z
UID:22422-1765391400-1765398600@alaskasaferiders.org
SUMMARY:zz - Avalanche Awareness Rescue Clinic – Eagle River Polaris & AC
DESCRIPTION:Avalanche Awareness Rescue Clinic – Eagle River Polaris & Arctic Cat📅 Tuesday\, December 10th\, 2025📍 Eagle River Polaris & Arctic Cat | 16900 Snowmobile Ln\, Eagle River\, AK🕡 6:30 – 8:30 PM \nJoin Alaska Safe Riders for a hands-on Avalanche Awareness Rescue Clinic designed for anyone who rides or travels in mountain terrain. Learn how to use essential avalanche safety gear — beacon\, probe\, and shovel — and practice real-world rescue techniques with your riding crew. \nThis interactive evening will help you build confidence\, sharpen your response skills\, and be ready for safe backcountry adventures this winter. \n🔗 Register today to save your seat! \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					NameThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/avalanche-awareness-rescue-clinic-eagle-river-polaris-ac/
LOCATION:Eagle River Polaris & Arctic Cat\, 16835 N Snowmobile Lane\, Eagle River\, AK\, 99577\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-1-1.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251209T180000
DTEND;TZID=America/Anchorage:20251209T200000
DTSTAMP:20260414T070139
CREATED:20251203T220953Z
LAST-MODIFIED:20251212T215121Z
UID:24584-1765303200-1765310400@alaskasaferiders.org
SUMMARY:zz - Backcountry & Ice Travel Safety - Upper Susitna/Talkeetna
DESCRIPTION:Who: Alaska Safe Riders\, hosted by the Susitna River CoalitionWhat: Backcountry & Ice Travel Safety PresentationWhere: Upper Susitna Senior CenterWhen: December 9th at 6 PMAdmission: FREE and open to the public \nAs the days shorten and the rivers begin to freeze\, riders across Alaska are gearing up for winter adventures. Before you hit the throttle\, make sure you’re prepared for what lies beneath the snow and ice. \nJoin Alaska Safe Riders for a vital and engaging safety presentation with a special focus on Ice Travel Safety. This free community event is designed for every rider — from first-time snowmachiners to seasoned backcountry travelers. \nWe’ll go beyond basic tips and dive into the essential skills that keep you safe in unpredictable winter conditions\, including: \n\n\nReading the Ice: How to recognize visual indicators of weak or dangerous ice\, pressure ridges\, overflow zones\, and known hazard areas. \n\n\nEssential Gear Demos: Learn about must-have ice travel safety equipment — ice picks\, throw ropes\, flotation layers — and see exactly how they save lives. \n\n\nSurvival Step-by-Step: What to do in the crucial first minute if you or a riding partner breaks through the ice\, including proven self-rescue and buddy-rescue techniques. \n\n\nBuilding a Safety Mindset: Smart trip planning\, group travel tactics\, and decision-making to avoid hazards before they become emergencies. \n\n\nDon’t just hope you’re ready — be prepared. Join us for this informative evening that could save a life this winter. \nFor more information\, visit alaskasaferiders.org.Alaska Safe Riders is a non-profit organization committed to promoting safety\, responsibility\, and education for snowmachine\, ATV\, and outdoor recreation across Alaska. \n\nBecome a Member of Alaska Safe Riders \nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today — join Alaska Safe Riders! \n  \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					CommentsThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/backcountry-ice-travel-safety-upper-susitna-talkeetna/
LOCATION:Upper Susitna Community & Senior Center\, 16463 E Helena Dr\, Talkeetna\, 99676\, United States
CATEGORIES:Community Expo
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/12/TKAEventPoster.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251205T190000
DTEND;TZID=America/Anchorage:20251207T160000
DTSTAMP:20260414T070139
CREATED:20251124T001338Z
LAST-MODIFIED:20251212T215055Z
UID:21868-1764961200-1765123200@alaskasaferiders.org
SUMMARY:zz - Eureka Weekend of Riding\, Education\, and FUN! - Members Only
DESCRIPTION:Eureka Lodge Member’s Weekend: Alaska Safe Riders Backcountry Kickoff\nJoin Alaska Safe Riders (ASR) for an exclusive members-only weekend at the historic Eureka Lodge! Reconnect with old friends\, meet new riding partners\, sharpen your backcountry skills\, and get a first look at what ASR has planned for the upcoming winter season. \nRegistration InformationRegistration is FREE for all events this weekend\, but you must be an active ASR member to participate.Not a member yet? Sign up below and join the community!\nMember Lodging DiscountsBoth Eureka Roadhouse and Gunsight Mountain Lodge honor a 10% discount for Alaska Safe Riders members. Book your stay now—rooms fill quickly!\n\nFriday Evening — Gear\, Grins & Gripping Tales\nTime: 7:00 PM – 9:00 PM \nKick off the weekend with a casual gathering to fuel your winter stoke. Enjoy backcountry videos\, a relaxed gear review\, and story-sharing from ASR’s seasoned riders. Grab a drink\, settle in\, and get ready for a weekend of adventure! \n\nSaturday — Trails\, Tips & Video Fun\nMorning: Fuel up with a classic Eureka breakfast before heading into the stunning backcountry. We ask that sleds are fired up and ready to ride by 10 AM. \nGroup Rides:We’ll break into smaller groups based on skill level and pace. Learn\, explore\, and ride at the level that suits you best. \nLadies-Only emPOWDERed RideInstructors Angie and Sierra will lead a ladies-only group ride as part of emPOWDERed—a teaching series designed for new riders\, especially women\, focused on building confidence\, community\, knowledge\, and safe riding skills.\nVideo Challenge:Capture footage on the trail for our Saturday Evening Video Competition of the Day!Your video must be: \n\nUnder 45 seconds\nFilmed during Saturday’s ride\nShowcasing your favorite backcountry tip or trick (funny\, fun\, or genuinely helpful!)\n\nEvening: 7:00 PM – 9:00 PMReturn to the lodge to watch all submissions and celebrate the top three videos with great prizes. Expect laughs\, creativity\, and standout trail wisdom! \n\nSunday — Fresh Tracks & Farewell\nEnjoy a relaxed free-ride day! Explore with new friends\, revisit favorite zones\, or enjoy a mellow morning at the lodge. Leave refreshed\, connected\, and ready for winter. \n\n🌟 Why Attend?\nThis weekend is more than just a ride—it’s your chance to grow your skills\, build community\, and officially kick off the ASR season. Be the first to hear about new courses\, group trips\, and safety initiatives. \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders!
URL:https://alaskasaferiders.org/event/eureka-weekend-of-riding-education-and-fun-members-only/
LOCATION:Eureka Lodge\, Alaska\, Mile 128 Glenn Hwy.\, Glennallen\, AK\, 99588\, United States
CATEGORIES:Community Expo,Members only special event,Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/11/Alaska-Safe-Riders-Event-Flyer-ABSW-2025.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251204T173000
DTEND;TZID=America/Anchorage:20251204T200000
DTSTAMP:20260414T070139
CREATED:20251203T221717Z
LAST-MODIFIED:20251212T214949Z
UID:24592-1764869400-1764878400@alaskasaferiders.org
SUMMARY:zz - Peninsula Powersports Ladies Night: Maintenance Clinic
DESCRIPTION:Peninsula Powersports Ladies Night: Women’s Sled Fit & Maintenance BasicsAlaska Safe Riders is proud to be invited as a guest — and Sierra Winter will be representing us on the Peninsula TOMORROW NIGHT! \nThis free\, hands-on clinic is designed to help women gain practical confidence in snowmobile maintenance\, whether you’re brand new to sleds or looking to level up your skills before winter riding kicks into full swing. \nJoin Peninsula Powersports and an incredible lineup of local partners — emPOWDERed Women’s Sled Group\, Victory Lane Graphics\, Caribou Hills Cabin Hoppers\, and Sierra with Artwork by Sierra Winter — for an empowering\, educational\, community-driven night. \n❄️ What You’ll Learn ❄️ \n\n\nBelt Basics: How to change your belt and check it for wear \n\n\nSpark Plug 101: What they do\, what to look for\, and how to swap them \n\n\nTrack Tension Overview: How proper tension affects handling\, safety\, and ride quality \n\n\nThe night will wrap up with an open Q&A\, giving you the chance to ask questions directly to the pros at Peninsula Powersports. And yes… there will be door prizes! \nWhether you’re gearing up for your first season or your fifteenth\, this event is about building knowledge\, community\, and confidence. \nCome learn\, connect\, and get ready for a strong and safe winter season. \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks:\n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					PhoneThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/peninsula-powersports-ladies-night-maintenance-clinic/
LOCATION:Peninsula Powersports\, 37677 Kenai Spur Hwy\, Soldotna\, 99669\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/jpeg:https://alaskasaferiders.org/wp-content/uploads/2025/12/593610042_10229645705159125_3479263636331655710_n.jpg
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251120T190000
DTEND;TZID=America/Anchorage:20251120T220000
DTSTAMP:20260414T070139
CREATED:20251028T000048Z
LAST-MODIFIED:20251212T214706Z
UID:23013-1763665200-1763676000@alaskasaferiders.org
SUMMARY:zz - Valdez Snowmachine Club – ‘26 Season Kickoff Event
DESCRIPTION:Valdez Snowmachine Club – ‘26 Season Kickoff EventThursday\, November 20 • 7 PM • Valdez Civic & Convention Center \nIt’s time to start thinking about snow! ❄️ The Valdez Snowmachine Club is kicking off the 2026 season with an evening of food\, fun\, and winter stoke at the Civic Center. \nThis year’s event brings together an awesome lineup of local riders\, artists\, and safety advocates — including Artwork by Sierra Winter\, Eagle River Polaris Arctic Cat\, Valdez Avalanche Center\, and Alaska Safe Riders. \n🎨 Sierra Winter will be on site talking sled wraps\, custom art\, and wild design ideas that bring your ride to life.🏔️ Eagle River Polaris Arctic Cat will have brand-new Arctic Cat 200s available for purchase.🧭 Valdez Avalanche Center will be on hand to discuss avalanche safety and membership opportunities to support your local forecasters.🦺 Alaska Safe Riders\, with Zac James and Sierra Winter\, will host a booth dedicated to safe riding practices\, upcoming clinics around the state\, and the first look at dates for our 2026 Thompson Pass event. \n🍝 Plus — enjoy a free spaghetti feed for all attendees! \nCome join us at the Valdez Civic & Convention Center on Thursday\, November 20th at 7 PM.Let’s celebrate another season of snow\, adventure\, and safe riding together! \n\nBecome a Member of Alaska Safe Riders \nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today — join Alaska Safe Riders! \n  \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					X/TwitterThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/valdez-snowmachine-club-26-season-kickoff-event/
LOCATION:Valdez Civic & Convention Center\, 314 Clifton Dr\, Valdez\, AK\, 99686\, United States
CATEGORIES:Community Expo
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-1-5.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251115T160000
DTEND;TZID=America/Anchorage:20251115T200000
DTSTAMP:20260414T070139
CREATED:20251010T233853Z
LAST-MODIFIED:20251212T214552Z
UID:22881-1763222400-1763236800@alaskasaferiders.org
SUMMARY:zz - Awakening of Winter 6 - Delta Powersports Fairbanks
DESCRIPTION:About the event\n\n\n\nAwakening of Winter 6 – Delta Powersports (Fairbanks\, AK)\n📅 Saturday\, November 15th\, 2025\n🕓4:00 PM – 8:00 PM || Film starts at 5:35 PM \nBrought to you by Awaken Productions and Artwork by Sierra Winter. Join Alaska’s shred community for an evening of food\, drinks\, door prizes\, and more. Sponsors\, special guests\, and additional details to be announced. \n\n\n\n\n\n\n\n\n\n Get your tickets now and save: https://www.eventbrite.com/e/awaken-of-winter-6-delta-powersports-tickets-1755222871859?aff=ebdsoporgprofile \nCome to the Awakening of Winter event wearing Awaken Swag and get a bonus door prize ticket! Shop now: www.artworkbysierrawinter.com/awakenak \n Do you have a sled wrapped The Sierra Winter Way? Bring it to the event to display it for a door prize ticket! Email sierrawintersmith@outlook.com ASAP to secure your sled spot. \nExclusive In-Store Specials at Delta Powersports:\nDon’t miss out on Delta Powersports’ event-day deals happening only during the Awakening of Winter 6 event hours! While you browse art\, gear up for winter\, and connect with fellow riders\, you can also take advantage of special discounts and promotions throughout the store. It’s the perfect time to snag that new sled gear or upgrade your equipment before the season kicks off — but these offers are available only during the event\, so be sure to shop while you’re here! \n \nKick Off the Weekend with Knowledge & Confidence:\nStart the Awakening of Winter weekend early at Delta Powersports on Friday\, November 14th\, for a special emPOWDERed maintenance clinic (learn more) followed by an avalanche safety seminar (learn more) hosted by Alaska Safe Riders and led by the expert himself\, Mike Duffy. This hands-on evening is the perfect opportunity to sharpen your sled maintenance skills and learn essential avalanche awareness before the snow flies. Whether you’re a seasoned rider or just getting started\, this pre-event clinic sets the tone for a safe and epic winter ahead! \n\n\n\nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					CompanyThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/awakening-of-winter-6-delta-powersports-fairbanks/
LOCATION:Delta Powersports Fairbanks\, 1450 Karen Way\, Fairbanks\, 99709\, United States
CATEGORIES:Community Expo,School Training
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/Awakening-of-Winter-6-Delta-Powersports-1.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251114T180000
DTEND;TZID=America/Anchorage:20251114T180000
DTSTAMP:20260414T070139
CREATED:20250925T205205Z
LAST-MODIFIED:20251212T211323Z
UID:20776-1763143200-1763143200@alaskasaferiders.org
SUMMARY:zz -  Skidoo’s Mike Duffy – Avalanche Awareness Seminar Fairbanks
DESCRIPTION:Skidoo’s Mike Duffy – Avalanche Awareness Seminar📅 Friday\, November 14th\, 2025📍 Delta Powersports Fairbanks\, 1450 Karen Way\, Fairbanks\, AK 99709🕕 6:00 PM \nAlaska Safe Riders is proud to once again assist Mike Duffy in bringing world-class avalanche safety training to Alaska in 2025. \nThis FREE seminar is open to the public — no pre-registration required. We do encourage you to RSVP on our website so we can gauge interest and plan seating. \nThis interactive\, hands-on classroom session goes beyond slideshows—you’ll be up out of your chair\, practicing with your gear\, and learning directly from one of the top avalanche safety instructors in North America. \nWhat You’ll Learn\n🔦 Hands-on transceiver demonstrations (and mistakes to avoid)🏔️ Avalanche avoidance strategies & a daily safety routine🚑 Advanced\, efficient rescue techniques📊 How to read avalanche forecasts accurately❄️ Snowpack analysis—why it matters🗺️ Terrain analysis—are you in the right spot?🧭 Route finding & group dynamics🌨️ Types of avalanches and their characteristics \nWhat to Bring\n📡 Avalanche transceiver🛠️ Shovel📏 Probe🎒 Pack👥 Most importantly: your riding partners \n\nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					X/TwitterThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/skidoos-mike-duffy-avalanche-awareness-seminar-fairbanks/
LOCATION:Delta Powersports Fairbanks\, 1450 Karen Way\, Fairbanks\, 99709\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/09/Alaska-Safe-Riders-Event-Flyer-ABSW-2025-1.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251114T160000
DTEND;TZID=America/Anchorage:20251115T180000
DTSTAMP:20260414T070139
CREATED:20251010T233608Z
LAST-MODIFIED:20251212T214435Z
UID:22451-1763136000-1763229600@alaskasaferiders.org
SUMMARY:zz - emPOWDERed Maintenance Clinic at Delta Powersports Fairbanks
DESCRIPTION:emPOWDERed Ski-Doo & Polaris Maintenance ClinicHosted by Delta Powersports Fairbanks📅 Friday\, November 14 | 4–6 PM🛠️ Free Entry | Open to All RidersDetails coming soon! \nGet your sled ready for winter and join emPOWDERed and Sierra Winter for an evening of hands-on learning\, community\, and pre-season prep at Delta Powersports Fairbanks. \nWhile most emPOWDERed riding clinics are women-only\, our maintenance clinics are open to everyone — because safe\, confident riders start with well-maintained machines. Learn essential skills like: \nChanging and maintaining belts\nAdjusting track tension\nReplacing spark plugs\nPre-season and pre-ride checklists \nStick around afterward for Alaska Safe Riders’ Avalanche Awareness Training (6–8 PM) featuring Ski-Doo’s Mike Duffy\, and take your safety knowledge to the next level. \n🎁 Door prizes\, good vibes\, and winter readiness — don’t miss it!Full details and registration info coming soon! \n\nWhat is emPOWDERed?\nemPOWDERed is a community-driven movement created to empower riders—through education\, clinics\, and connection—to build confidence on and off the snow.\nLearn more at artworkbysierrawinter.com/empowdered\n👉 Please note: An Alaska Safe Riders (ASR) membership is required to attend emPOWDERed rides. \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks:\n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					EmailThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/empowdered-maintenance-clinic-at-delta-powersports-fairbanks/
LOCATION:Delta Powersports Fairbanks\, 1450 Karen Way\, Fairbanks\, 99709\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/emPOWDERed-Maintenance-Clinic-Delta-11142025.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251113T180000
DTEND;TZID=America/Anchorage:20251113T200000
DTSTAMP:20260414T070139
CREATED:20250926T164204Z
LAST-MODIFIED:20251212T205419Z
UID:20897-1763056800-1763064000@alaskasaferiders.org
SUMMARY:zz - Skidoo’s Mike Duffy – Avalanche Awareness Seminar Anchorage
DESCRIPTION:Skidoo’s Mike Duffy – Avalanche Awareness Seminar📅 Thursday\, November 13th\, 2025📍 Anchorage Mining and Diving Supply🕕 6:00 PM \nAlaska Safe Riders is proud to once again assist Mike Duffy in bringing world-class avalanche safety training to Alaska in 2025. \nThis FREE seminar is open to the public — no pre-registration required. We do encourage you to RSVP on our website so we can gauge interest and plan seating. \nThis interactive\, hands-on classroom session goes beyond slideshows—you’ll be up out of your chair\, practicing with your gear\, and learning directly from one of the top avalanche safety instructors in North America. \nWhat You’ll Learn\n🔦 Hands-on transceiver demonstrations (and mistakes to avoid)🏔️ Avalanche avoidance strategies & a daily safety routine🚑 Advanced\, efficient rescue techniques📊 How to read avalanche forecasts accurately❄️ Snowpack analysis—why it matters🗺️ Terrain analysis—are you in the right spot?🧭 Route finding & group dynamics🌨️ Types of avalanches and their characteristics \nWhat to Bring\n📡 Avalanche transceiver🛠️ Shovel📏 Probe🎒 Pack👥 Most importantly: your riding partners \n\nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					LinkedInThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/skidoos-mike-duffy-avalanche-awareness-seminar-anchorage-2/
LOCATION:Alaska Mining and Diving Supply\, 3222 Commercial Drive\, Anchorage\, 99501\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/09/Alaska-Safe-Riders-Event-Flyer-ABSW-2025.png
ORGANIZER;CN="Mike Buck":MAILTO:mike@alaskasaferiders.org
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251112T180000
DTEND;TZID=America/Anchorage:20251113T200000
DTSTAMP:20260414T070139
CREATED:20251010T234242Z
LAST-MODIFIED:20251212T205339Z
UID:22883-1762970400-1763064000@alaskasaferiders.org
SUMMARY:zz - emPOWDERed Maintenance Clinic at HPAK Wasilla
DESCRIPTION:Save the Date!emPOWDERed Polaris Maintenance Clinic – Wasilla📅 Wednesday\, November 12 | 6–8 PM📍 Hatcher Pass Polaris\, Wasilla🛠️ Free Entry | Polaris Maintenance Focused \nJoin emPOWDERed and Sierra Winter for a Polaris-Specific Maintenance Clinic hosted by Hatcher Pass Polaris. \nThis free\, hands-on evening is designed to help you prep your sled for the upcoming season and gain confidence in basic maintenance and machine care. Whether you’re new to sleds or just brushing up before winter\, this session will help you ride safer and smarter — because confident riders start with reliable machines. \nWe’re thrilled to announce special guest instructors Shane Barber and Shana Lapham\, Team #39 in this year’s Iron Dog Race\, will be leading the clinic! They’ll guide participants through essential maintenance skills\, including: \n\n\nHow to change your belt and inspect it for wear \n\n\nTrack tension overview and how it affects your ride \n\n\nSpark plug review and replacement \n\n\nPre-season and pre-ride checklists \n\n\nYou’ll also have ample time for Q&A\, giving you the chance to ask questions and learn directly from two of Alaska’s top endurance racers. \n🎁 Door prizes\, good vibes\, and pre-season stoke — don’t miss it!Stay tuned for full event details and registration info. \n\nWhat is emPOWDERed?\nemPOWDERed is a community-driven movement created to empower riders—through education\, clinics\, and connection—to build confidence on and off the snow.\nLearn more at artworkbysierrawinter.com/empowdered\n👉 Please note: An Alaska Safe Riders (ASR) membership is required to attend emPOWDERed rides. \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks:\n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					PhoneThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/empowdered-maintenance-clinic-at-hpak-wasilla/
LOCATION:Hatcher Pass Polaris\, 5953 E Blue Lupine Drive\, Palmer\, AK\, 99654\, United States
CATEGORIES:Workshop
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/10/emPOWDERed-Maintenance-Clinic-HPAK-11122025-1.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Anchorage:20251108T160000
DTEND;TZID=America/Anchorage:20251108T210000
DTSTAMP:20260414T070139
CREATED:20250929T213133Z
LAST-MODIFIED:20251212T205127Z
UID:21871-1762617600-1762635600@alaskasaferiders.org
SUMMARY:zz - Awakening of Winter 6 - Hilltop Ski Area
DESCRIPTION:Awakening of Winter 6 – Film Premiere📅 Saturday\, November 8\, 2025📍 Hilltop Ski Area\, Anchorage🕓 Doors open 4:00 PM | 🎥 Film at 5:35 PM \nAlaska Safe Riders is proud to be part of Awakening of Winter 6\, brought to you by Awaken Productions and Artwork by Sierra Winter. Join Alaska’s shred community for an epic evening featuring the highly anticipated film premiere\, food\, drinks\, door prizes\, and more. \n🎟️ Tickets available now: Eventbrite Link \n  \nBecome a Member of Alaska Safe Riders\nSupport safer\, more enjoyable riding across Alaska and enjoy member perks: \n✨ ASR Basic — $25/yr: Members-only training events; networking; merch offers; automatic prize entries👨‍👩‍👧‍👦 ASR Family — $50/yr: Up to 6 family members; networking with riders & champions; merch offers; prize entries🏫 ASR Schools — $100/yr: School recognition; priority reservations for school trainings; special school offers🏢 ASR Business — $500+/yr: Business recognition; industry networking; visibility at events/workshops; website/newsletter recognition \n👉 Start your journey to safer riding today—join Alaska Safe Riders! \n\n                \n                        \n                            Membership form\n                            Alaska Safe Riders Membership Form \n                        \n        \n        	Step 1 of 2 - Member Information\n        	 \n            \n                0%\n            \n                        \n					X/TwitterThis field is for validation purposes and should be left unchanged.This field is hidden when viewing the formPayment confirmed?\n								\n								Debra\n							This field is hidden when viewing the formPayment Confirmation Date\n                            \n                            MM slash DD slash YYYY\n                        \n                        This field is hidden when viewing the formPayment Confirmation Notes\nTell us a bit about yourself so we can set up your membership.\n Email for Membership(Required)\n                            \n                        Ticket & Membership information will be sent to this email.Name for Membership(Required)\n                            \n                            \n                                                    \n                                                    First\n                                                \n                            \n                            \n                                                    \n                                                    Last\n                                                \n                            \n                        Phone Number(Required)I agree to receive SMS notifications for transaction confirmations\, reminders\, and promotional offers. Standard messaging rates may apply.(Required)\n								\n								I agree to receive SMS notifications.\n							\n                    \n                    \n                          \n                    \n                \n                \n                    \n                        \nReview your selection and complete your payment securely.\n Which ASR Membership would you like to purchase?(Required)ASR Basic - $25.00ASR Family - $50.00ASR Schools - $100.00ASR Business - $500.00ASR Business - $1\,000.00ASR Business - $2\,500.00ASR Business - $5\,000.00ASR Business - $10\,000.00Would you like to automatically renew your ASR membership?\n			\n					\n					Yes\n			\n			\n					\n					No\n			If "Yes" is selected\, you will be billed again for your ASR membership after 1 year. Would you like to make an additional donation to Alaska Safe Riders?\n			\n					\n					Yes\, I would like to make a donation.\n			\n			\n					\n					No\, I would not like to make a donation.\n			This donation will be processed alongside your membership fee.Donation Amount:(Required)\n					\n				Total amount charged\n							\n						Are you paying for this at an Alaska Safe Riders event? (Offline Payment)(Required)\n			\n					\n					No\n			\n			\n					\n					Yes\n			If you are making an offline payment\, you will receive a receipt email that you will need to show to an Alaska Safe Riders Representative to complete your offline payment.Alternate Payment Method (Offline Payment)(Required)\n								\n								Credit Card\n							\n								\n								Cash\n							\n								\n								Check\n							This is the payment method you will be using when you meet an Alaska Safe Riders Representative to complete your offline payment.Credit CardConfiguration Required: To use the Square field\, please configure your Square Settings.Please enter your Billing Address:(Required)    \n                    \n                         \n                                        \n                                        Street Address\n                                    \n                                        \n                                        Address Line 2\n                                    \n                                    \n                                    City\n                                 \n                                        AlabamaAlaskaAmerican SamoaArizonaArkansasCaliforniaColoradoConnecticutDelawareDistrict of ColumbiaFloridaGeorgiaGuamHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaNorthern Mariana IslandsOhioOklahomaOregonPennsylvaniaPuerto RicoRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahU.S. Virgin IslandsVermontVirginiaWashingtonWest VirginiaWisconsinWyomingArmed Forces AmericasArmed Forces EuropeArmed Forces Pacific\n                                        State\n                                      \n                                    \n                                    ZIP Code\n                                \n                    \n                Required to complete purchase.Annual Subscription(Required)\n								\n								I agree to renew my Alaska Safe Riders Membership annually
URL:https://alaskasaferiders.org/event/awakening-of-winter-6-hilltop-ski-area/
LOCATION:Hilltop Ski Area\, 7015 Abbott Road\, Anchorage\, AK\, 99507\, United States
CATEGORIES:Community Expo,School Training
ATTACH;FMTTYPE=image/png:https://alaskasaferiders.org/wp-content/uploads/2025/09/Awakening-of-Winter-6-ABSW-2025.png
ORGANIZER;CN="Sierra Winter":MAILTO:sierrawintersmith@outlook.com
END:VEVENT
END:VCALENDAR