
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Community Calendar</title>
<link>http://www.mncun.org/events/event_list.asp</link>
<description><![CDATA[  
 

#SpSubHead { display: none !important; }

 
 
    Education and training is key to maintaining competent, dedicated credit union professionals and volunteers. MnCUN offers more than 100 cost-effective educational opportunities throughout the year on a wide variety of topics. For details on the current quarter's educational offerings, click the&nbsp;following link:&nbsp; 2nd Quarter Education Brochure   &nbsp;(pdf). &nbsp;
 
  0) {

      var next, prev, count;

      // Pre-fetch the next slide image(s)
      next = this.current;
      prev = this.current;
      count = 0;
      do {

        // Get the next and previous slide number
        // Loop past the ends of the slideshow if necessary
        if (++next >= this.slides.length) next = 0;
        if (--prev < 0) prev = this.slides.length - 1;

        // Preload the slide image
        this.slides[next].load();
        this.slides[prev].load();

        // Keep going until we have fetched
        // the designated number of slides

      } while (++count < this.prefetch);
    }
  }

  //--------------------------------------------------
  this.goto_slide = function(n) {
    // This method jumpts to the slide number you specify.
    // If you use slide number -1, then it jumps to the last slide.
    // You can use this to make links that go to a specific slide,
    // or to go to the beginning or end of the slideshow.
    // Examples:
    // onClick="myslides.goto_slide(0)"
    // onClick="myslides.goto_slide(-1)"
    // onClick="myslides.goto_slide(5)"
  
    if (n == -1) {
      n = this.slides.length - 1;
    }
  
    if (n < this.slides.length && n >= 0) {
      this.current = n;
    }
  
    this.update();
  }


  //--------------------------------------------------
  this.goto_random_slide = function(include_current) {
    // Picks a random slide (other than the current slide) and
    // displays it.
    // If the include_current parameter is true,
    // then 
    // See also: shuffle()

    var i;

    // Make sure there is more than one slide
    if (this.slides.length > 1) {

      // Generate a random slide number,
      // but make sure it is not the current slide
      do {
        i = Math.floor(Math.random()*this.slides.length);
      } while (i == this.current);
 
      // Display the slide
      this.goto_slide(i);
    }
  }


  //--------------------------------------------------
  this.next = function() {
    // This method advances to the next slide.

    // Increment the image number
    if (this.current < this.slides.length - 1) {
      this.current++;
    } else if (this.repeat) {
      this.current = 0;
    }

    this.update();
  }


  //--------------------------------------------------
  this.previous = function() {
    // This method goes to the previous slide.
  
    // Decrement the image number
    if (this.current > 0) {
      this.current--;
    } else if (this.repeat) {
      this.current = this.slides.length - 1;
    }
  
    this.update();
  }


  //--------------------------------------------------
  this.shuffle = function() {
    // This method randomly shuffles the order of the slides.

    var i, i2, slides_copy, slides_randomized;

    // Create a copy of the array containing the slides
    // in sequential order
    slides_copy = new Array();
    for (i = 0; i < this.slides.length; i++) {
      slides_copy[i] = this.slides[i];
    }

    // Create a new array to contain the slides in random order
    slides_randomized = new Array();

    // To populate the new array of slides in random order,
    // loop through the existing slides, picking a random
    // slide, removing it from the ordered list and adding it to
    // the random list.

    do {

      // Pick a random slide from those that remain
      i = Math.floor(Math.random()*slides_copy.length);

      // Add the slide to the end of the randomized array
      slides_randomized[ slides_randomized.length ] =
        slides_copy[i];

      // Remove the slide from the sequential array,
      // so it cannot be chosen again
      for (i2 = i + 1; i2 < slides_copy.length; i2++) {
        slides_copy[i2 - 1] = slides_copy[i2];
      }
      slides_copy.length--;

      // Keep going until we have removed all the slides

    } while (slides_copy.length);

    // Now set the slides to the randomized array
    this.slides = slides_randomized;
  }


  //--------------------------------------------------
  this.get_text = function() {
    // This method returns the text of the current slide
  
    return(this.slides[ this.current ].text);
  }


  //--------------------------------------------------
  this.get_all_text = function(before_slide, after_slide) {
    // Return the text for all of the slides.
    // For the text of each slide, add "before_slide" in front of the
    // text, and "after_slide" after the text.
    // For example:
    // document.write(" ");
    // document.write(s.get_all_text(" ","\n"));
    // document.write("<\/ul>");
  
    all_text = "";
  
    // Loop through all the slides in the slideshow
    for (i=0; i < this.slides.length; i++) {
  
      slide = this.slides[i];
    
      if (slide.text) {
        all_text += before_slide + slide.text + after_slide;
      }
  
    }
  
    return(all_text);
  }


  //--------------------------------------------------
  this.display_text = function(text) {
    // Display the text for the current slide
  
    // If the "text" arg was not supplied (usually it isn't),
    // get the text from the slideshow
    if (!text) {
      text = this.slides[ this.current ].text;
    }
  
    // If a textarea has been specified,
    // then change the text displayed in it
    if (this.textarea && typeof this.textarea.value != 'undefined') {
      this.textarea.value = text;
    }

    // If a text id has been specified,
    // then change the contents of the HTML element
    if (this.textid) {

      r = this.getElementById(this.textid);
      if (!r) { return false; }
      if (typeof r.innerHTML == 'undefined') { return false; }

      // Update the text
      r.innerHTML = text;
    }
  }


  //--------------------------------------------------
  this.hotlink = function() {
    // This method calls the hotlink() method for the current slide.
  
    this.slides[ this.current ].hotlink();
  }


  //--------------------------------------------------
  this.save_position = function(cookiename) {
    // Saves the position of the slideshow in a cookie,
    // so when you return to this page, the position in the slideshow
    // won't be lost.
  
    if (!cookiename) {
      cookiename = this.name + '_slideshow';
    }
  
    document.cookie = cookiename + '=' + this.current;
  }


  //--------------------------------------------------
  this.restore_position = function(cookiename) {
  // If you previously called slideshow_save_position(),
  // returns the slideshow to the previous state.
  
    //Get cookie code by Shelley Powers
  
    if (!cookiename) {
      cookiename = this.name + '_slideshow';
    }
  
    var search = cookiename + "=";
  
    if (document.cookie.length > 0) {
      offset = document.cookie.indexOf(search);
      // if cookie exists
      if (offset != -1) { 
        offset += search.length;
        // set index of beginning of value
        end = document.cookie.indexOf(";", offset);
        // set index of end of cookie value
        if (end == -1) end = document.cookie.length;
        this.current = parseInt(unescape(document.cookie.substring(offset, end)));
        }
     }
  }


  //--------------------------------------------------
  this.noscript = function() {
    // This method is not for use as part of your slideshow,
    // but you can call it to get a plain HTML version of the slideshow
    // images and text.
    // You should copy the HTML and put it within a NOSCRIPT element, to
    // give non-javascript browsers access to your slideshow information.
    // This also ensures that your slideshow text and images are indexed
    // by search engines.
  
    $html = "\n";
  
    // Loop through all the slides in the slideshow
    for (i=0; i < this.slides.length; i++) {
  
      slide = this.slides[i];
  
      $html += ' ';
  
      if (slide.link) {
        $html += ' ';
      }
  
      $html += ' ';
  
      if (slide.link) {
        $html += "<\/a>";
      }
  
      if (slide.text) {
        $html += " \n" + slide.text;
      }
  
      $html += "<\/P>" + "\n\n";
    }
  
    // Make the HTML browser-safe
    $html = $html.replace(/\&/g, "&amp;" );
    $html = $html.replace(/ /g, "&gt;" );
  
    return(' ' + $html + ' ');
  }


  //==================================================
  // Private methods
  //==================================================

  //--------------------------------------------------
  this.loop = function() {
    // This method is for internal use only.
    // This method gets called automatically by a JavaScript timeout.
    // It advances to the next slide, then sets the next timeout.
    // If the next slide image has not completed loading yet,
    // then do not advance to the next slide yet.

    // Make sure the next slide image has finished loading
    if (this.current < this.slides.length - 1) {
      next_slide = this.slides[this.current + 1];
      if (next_slide.image.complete == null || next_slide.image.complete) {
        this.next();
      }
    } else { // we're at the last slide
      this.next();
    }
    
    // Keep playing the slideshow
    this.play( );
  }


  //--------------------------------------------------
  this.valid_image = function() {
    // Returns 1 if a valid image has been set for the slideshow
  
    if (!this.image)
    {
      return false;
    }
    else {
      return true;
    }
  }

  //--------------------------------------------------
  this.getElementById = function(element_id) {
    // This method returns the element corresponding to the id

    if (document.getElementById) {
      return document.getElementById(element_id);
    }
    else if (document.all) {
      return document.all[element_id];
    }
    else if (document.layers) {
      return document.layers[element_id];
    } else {
      return undefined;
    }
  }
  

  //==================================================
  // Deprecated methods
  // I don't recommend the use of the following methods,
  // but they are included for backward compatibility.
  // You can delete them if you don't need them.
  //==================================================

  //--------------------------------------------------
  this.set_image = function(imageobject) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.image = document.images.myimagename;
    // s.update();

    if (!document.images)
      return;
    this.image = imageobject;
  }

  //--------------------------------------------------
  this.set_textarea = function(textareaobject) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.textarea = document.form.textareaname;
    // s.update();

    this.textarea = textareaobject;
    this.display_text();
  }

  //--------------------------------------------------
  this.set_textid = function(textidstr) {
    // This method is deprecated; you should use
    // the following code instead:
    // s.textid = "mytextid";
    // s.update();

    this.textid = textidstr;
    this.display_text();
  }
}

//-->
 

 
 
 
 







 
 

 
  ", " \n");
if (nodivtext) {
  document.write(" \n" + nodivtext + "\n ");
}
//-->
 

 

 
   

 
 
 

 

 
&amp;lt;HR&amp;gt;
Since your web browser does not support JavaScript,
here is a non-JavaScript version of the image slideshow:
&amp;lt;P&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad1.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad2.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad3.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad4.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad5.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad6.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad7.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad8.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad9.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad10.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad11.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad12.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad13.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad14.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad15.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad16.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad17.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad18.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad19.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad20.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad21.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad22.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;
&amp;lt;P&amp;gt;
&amp;lt;IMG SRC="https://www.mncun.org/resource/resmgr/VIP_banner/13ad23.jpg" ALT="slideshow image"&amp;gt;&amp;lt;BR&amp;gt;

&amp;lt;/P&amp;gt;
&amp;lt;HR&amp;gt;

 
   
   
 MnCUN Major Events 
 

   CEO Conference : July 17-19, 2013&nbsp;– Duluth  
    MnCUN Fall Conference : Sept. 6-8, 2013&nbsp;– Maddens on Gull Lake, Brainerd  
    Hike the Hill : Oct. 1-3, 2013&nbsp;– Washington, D.C.  
   2013 Supervisory Committee Workshops:   Sept. 24 - Duluth; Sept. 25 - St. Cloud; Oct. 15 - St. Paul  
   CUNA Mutual Online Discovery Conference: Oct. 8, 2013     MnCUN Annual Meeting: April 25-26, 2014 - RadissonBlu at the Mall of America, Bloomington    
  In addition, MnCUN's Compliance Calendar provides credit unions information about important upcoming comment deadlines, regulation effective dates and other compliance deadlines.   Click the calendar links for more details.  
 
     To see&nbsp;a full quarter of education sessions available, view the&nbsp;printable&nbsp; 2nd Quarter Education Brochure .     
 &nbsp; 
 Webinars On Demand 
  Along with the upcoming live education sessions below, the Network's&nbsp; Webinars on Demand  page provides a full list of programs provided via web link.&nbsp;Simply order the sessions&nbsp;and&nbsp;use them&nbsp;at a&nbsp;time that's convenient for you. Below is a link to&nbsp;the latest&nbsp;On Demand titles&nbsp;now available to you.  
 
    NEW SESSIONS!    Webinars On Demand&nbsp;&nbsp;– Titles&nbsp;available through&nbsp;May     
    ]]></description>
<lastBuildDate>Thu, 23 May 2013 13:29:03 GMT</lastBuildDate>
<pubDate>Tue, 13 Aug 2013 18:00:00 GMT</pubDate>
<copyright>Copyright &#xA9; 2013 Minnesota Credit Union Network</copyright>
<atom:link href="http://www.mncun.org/events/event_rss.asp?cat=4775" rel="self" type="application/rss+xml"></atom:link>
<item>
<title>Roundtable – Compliance/Fraud</title>
<link>http://www.mncun.org/events/event_details.asp?id=306223</link>
<guid>http://www.mncun.org/events/event_details.asp?id=306223</guid>
<description><![CDATA[
<STYLE type=text/css>
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</STYLE>
<BR>
<P><SPAN style="FONT-SIZE: 10pt">Join your peers for these cooperative roundtable meetings to network and exchange ideas. Bring questions, materials and knowledge to share! Lunch is included in the price of the educational session. </SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><STRONG>Time: </STRONG>10:30 a.m.-1 p.m.<BR></SPAN><SPAN style="FONT-SIZE: 10pt"><STRONG>Location:</STRONG> Hiway FCU, 840 Westminster Street, St. Paul<BR></SPAN><SPAN style="FONT-SIZE: 10pt"><STRONG>Cost: </STRONG>$20*<BR></SPAN><SPAN style="FONT-SIZE: 10pt"><STRONG>Registration deadline:</STRONG> Monday, May 20</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">*While you are encouraged to attend the roundtables in person, you also have the option to participate via conference call. Conference call participants will be charged $20.</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">&nbsp;</SPAN></P><SPAN style="FONT-SIZE: 10pt">
<H3>About Roundtables</H3>
<P><SPAN style="FONT-SIZE: 10pt">Roundtables provide credit union professionals the opportunity to participate in cooperative meetings to network and exchange ideas. Prepare your questions and bring any materials and knowledge to share!</SPAN></P></SPAN>]]></description>
<pubDate>Thu, 23 May 2013 15:30:00 GMT</pubDate>
</item>
<item>
<title>Webinar – Stop Payments, Return Items &amp; More</title>
<link>http://www.mncun.org/events/event_details.asp?id=280238</link>
<guid>http://www.mncun.org/events/event_details.asp?id=280238</guid>
<description><![CDATA[
<STYLE type=text/css> 
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/Event_Calendar.jpg) no-repeat top left!important};-->
</STYLE>
<BR>
<P><SPAN style="FONT-SIZE: 10pt">Determining when an item is payable and how best to protect the credit union requires in-depth knowledge. This webinar will provide essential legal information so you can make informed decisions about the majority of payment issues faced by financial institutions. It will cover when an instrument is properly payable, the right of a consumer to stop payment, when instruments may be returned, and the financial institution's legal obligations. This session will also address financial institution liability when things go wrong.</P></SPAN>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Presenter:</SPAN> Steven Camp, Gardere Wynne Sewell, LLP<BR><SPAN style="COLOR: rgb(255,0,0); FONT-SIZE: 10pt; FONT-WEIGHT: bold">Who should attend:</SPAN>&nbsp;Branch Managers, Compliance Officers, Frontline, Operations&nbsp;and CEOs</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Time:</SPAN> 2 p.m.-3:30 p.m.<BR><SPAN style="FONT-WEIGHT: bold">Cost:</SPAN> $209 for live webinar only; $229 for live webinar, plus&nbsp;a web link and&nbsp;free&nbsp;CD-ROM<BR><STRONG>Registration deadline:</STRONG>&nbsp;Friday, May 24&nbsp;</SPAN></P>
<P>&nbsp;</P>
<H3>About Webinars </H3>
<P><SPAN style="FONT-SIZE: 10pt">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</SPAN></P>]]></description>
<pubDate>Wed, 29 May 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>Webinar  – New NCUA Fair Lending Exam Procedures</title>
<link>http://www.mncun.org/events/event_details.asp?id=312336</link>
<guid>http://www.mncun.org/events/event_details.asp?id=312336</guid>
<description><![CDATA[<style type="text/css">
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/Event_Calendar.jpg) no-repeat top left!important};-->
</style>
<br>
<p><span style="FONT-SIZE: 10pt">On March 19<sup>,</sup> the NCUA issued guidance for federal credit unions and a new 55-page Fair Lending Guide, which address fair lending examinations and training. The NCUA enforces three fair lending laws – Equal Credit Opportunity Act (Reg B), Home Mortgage Disclosure Act (Reg C) and the Fair Housing Act. This webinar will&nbsp;explain&nbsp;what&nbsp;credit union employees&nbsp;need to know to address fair lending risk, and it&nbsp;will cover&nbsp;the most frequent problems in fair lending exams.&nbsp;Topics include:</span></p>
<ul>
<li><span style="FONT-SIZE: 10pt">What is an oral application under Reg B?</span> 
</li><li><span style="FONT-SIZE: 10pt">Questions you can and can't ask</span> 
</li><li><span style="FONT-SIZE: 10pt">What if you deny a member's loan request?</span> 
</li><li><span style="FONT-SIZE: 10pt">How to handle a discrimination complaint </span>
</li><li><span style="FONT-SIZE: 10pt">Taking and processing an application</span> 
</li><li><span style="FONT-SIZE: 10pt">The three types of discrimination and the nine prohibited bases</span> 
</li><li><span style="FONT-SIZE: 10pt">The latest fair lending "hot buttons"</span> </li></ul>
<p><span style="FONT-SIZE: 10pt"><span style="COLOR: rgb(255,0,0); FONT-SIZE: 10pt; FONT-WEIGHT: bold">Who should attend:</span>&nbsp;<span style="FONT-FAMILY: Arial; FONT-SIZE: 10pt; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA; mso-bidi-font-family: 'Times New Roman'">Branch Managers, Compliance Officers, Frontline,&nbsp;Lenders, Trainers and CEOs</span></span></p>
<p><span style="FONT-SIZE: 10pt"><span style="FONT-WEIGHT: bold">Time:</span> 2 p.m.-3:30 p.m.<br><span style="FONT-WEIGHT: bold">Cost:</span> $209 for live webinar only; $229 for live webinar, plus a web link and&nbsp;free&nbsp;CD-ROM<br><strong>Registration deadline:</strong>&nbsp;Monday, May&nbsp;27&nbsp;</span></p>
<p>&nbsp;</p>
<h3>About Webinars </h3>
<p><span style="FONT-SIZE: 10pt">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </span></p>
<p><span style="FONT-SIZE: 10pt">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</span></p> ]]></description>
<pubDate>Thu, 30 May 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>Webinar – When a Depositor Dies: Actions to Take &amp; Mistakes to Avoid</title>
<link>http://www.mncun.org/events/event_details.asp?id=281750</link>
<guid>http://www.mncun.org/events/event_details.asp?id=281750</guid>
<description><![CDATA[<style type="text/css">
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</style><br>

<p><span style="font-size: 10pt;"> When a depositor dies the credit union needs to act appropriately and promptly to avoid liability. This webinar will thoroughly explain the proper procedures and processes your credit union should follow. Highlights include: ·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></p><span style="font-size: 10pt;">
</span><ul><li><span style="font-size: 10pt;">Can the credit union pay checks after the death of the member?</span></li><li><span style="font-size: 10pt;"></span><span style="font-size: 10pt;">Who can negotiate a check made payable to the deceased member?</span></li><li><span style="font-size: 10pt;"></span><span style="font-size: 10pt;">How should survivor accounts, such as payable-on-death and joint accounts, be handled?</span></li><li><span style="font-size: 10pt;"></span><span style="font-size: 10pt;">Can the decedent’s accounts be set-off for debts owed to the credit union?</span></li><li><span style="font-size: 10pt;"></span><span style="font-size: 10pt;">How should the credit union deal with the decedent’s estate?</span></li><li><span style="font-size: 10pt;"></span><span style="font-size: 10pt;">When can Social Security funds be reclaimed from the credit union?</span></li></ul>
<p><span style="font-size: 10pt;"><span style="font-weight: bold;">Presenter:</span> Elizabeth Fast, Spencer Fast Britt &amp; Browne LLP<br>
     <span style="color: rgb(255, 0, 0); font-weight: bold;">Who should attend:</span> Branch Managers, Collections, Compliance Officers,&nbsp;Frontline, Operations,&nbsp;Tellers&nbsp;and CEOs</span></p>
<p><span style="font-size: 10pt;"><span style="font-weight: bold;">Time:</span> 2 p.m.-3:30 p.m.<br>
     <span style="font-weight: bold;">Cost:</span> $209 for live webinar only; $229 for live webinar, plus a web link and free&nbsp;CD-ROM <br>
     <strong>Registration deadline:</strong> Thursday, May 30</span></p>
<p><span style="font-size: 10pt;">&nbsp;</span></p>
<h3>About Webinars</h3>
<p><span style="font-size: 10pt;">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </span></p>
<p><span style="font-size: 10pt;">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</span></p>]]></description>
<pubDate>Tue, 4 Jun 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>Webinar – Compliance Rules Lenders Must Know</title>
<link>http://www.mncun.org/events/event_details.asp?id=281755</link>
<guid>http://www.mncun.org/events/event_details.asp?id=281755</guid>
<description><![CDATA[<style type="text/css">
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</style>
<br>
<span style="font-size: 10pt;"><p>Compliance training for lenders is no longer optional and can reduce loss. Flood insurance violations have increased, HMDA data accuracy issues continue to cause civil money penalties, and fair lending remains an exam focus with regulators. This session will cover&nbsp; everything from Regulation B to Z and outline specific disclosures and timing requirements. Attendees will receive checklists and guidance to help lending staff work smarter, not harder.</p></span><p>&nbsp;</p><p><span style="font-size: 10pt;"><span style="font-weight: bold;">Presenter:</span> Susan Costonis, Compliance Consulting &amp; Training for Financial Institutions<br><span style="color: rgb(255, 0, 0); font-weight: bold;">Who should attend:</span>&nbsp;Branch Managers, Compliance Officers, Lenders&nbsp;and CEOs</span></p>
<p><span style="font-size: 10pt;"><span style="font-weight: bold;">Time:</span> 2 p.m.-3:30 p.m.<br><span style="font-weight: bold;">Cost:</span> $209 for live webinar only; $229 for live webinar, plus a web link and&nbsp;free&nbsp;CD-ROM <br><strong>Registration deadline:</strong> Friday, May 31</span></p>
<p>&nbsp;</p>
<h3>About Webinars</h3>
<p><span style="font-size: 10pt;">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </span></p>
<p><span style="font-size: 10pt;">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</span></p>]]></description>
<pubDate>Wed, 5 Jun 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>Roundtable – Trainers</title>
<link>http://www.mncun.org/events/event_details.asp?id=307485</link>
<guid>http://www.mncun.org/events/event_details.asp?id=307485</guid>
<description><![CDATA[
<STYLE type=text/css>
#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};
</STYLE>
<BR>
<P><SPAN style="FONT-SIZE: 10pt">Join your peers for these cooperative roundtable meetings to network and exchange ideas. Bring questions, materials and knowledge to share! Lunch is included in the price of the educational session. </SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><STRONG>Time:</STRONG> 11:30 a.m.-2 p.m.<BR><STRONG>Location:</STRONG> Network office, 555 Wabasha Street North, St. Paul<BR><STRONG>Cost:</STRONG> $20*<BR><STRONG>Registration deadline:</STRONG> Wednesday, June 5</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">*While you are encouraged to attend the roundtables in person, you also have the option to participate via conference call. Conference call participants will be charged $20.</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">&nbsp;</SPAN></P><SPAN style="FONT-SIZE: 10pt">
<H3>About Roundtables</H3>
<P><SPAN style="FONT-SIZE: 10pt">Roundtables provide credit union professionals the opportunity to participate in cooperative meetings to network and exchange ideas. Prepare your questions and bring any materials and knowledge to share!</SPAN></P></SPAN>]]></description>
<pubDate>Mon, 10 Jun 2013 16:30:00 GMT</pubDate>
</item>
<item>
<title>Product Series Webinar – Compliance &amp; Audit Services That Fit Your Credit Union&apos;s Needs</title>
<link>http://www.mncun.org/events/event_details.asp?id=280122</link>
<guid>http://www.mncun.org/events/event_details.asp?id=280122</guid>
<description><![CDATA[<p>
  <style type="text/css">
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</style>
<br>
<span style="font-size: 10pt;">In today's complex regulatory environment, it can be difficult for a credit union to ensure compliance with the wide variety of rules and regulations. MnCUN's Compliance &amp; Audit Consultant Marcia Lewis can help credit unions meet this challenge and stay abreast of the ever-changing regulatory landscape. In this session, she will provide options for credit unions that will aid them in fulfilling their compliance obligations. Participants will also hear an overview of the Network's Compliance &amp; Audit Services Program and how it can be individualized to each credit union to get the best possible assistance with compliance needs.</span></p>
<p><span style="font-size: 10pt;">&nbsp;</span></p>
<p><span style="font-size: 10pt;"><b>Time:</b> Noon -12:45 p.m.<br>
    </span><span style="font-size: 10pt;"><b>Cost:</b> Free<br>
    </span><span style="font-size: 10pt;"><b>Registration deadline:</b> Thursday, June 6</span></p>
<p>&nbsp;</p>
<h3>About Product Series Webinars</h3>
<p><span style="font-size: 10pt;">This new webinar series provides credit unions with insight into services and expertise offered by MnCUN's strategic alliance business partners. These sessions combine telephone conferencing with web technology to help educate credit unions on trends and top issues through a presentation from a company expert. Login instructions and any materials are sent via email prior to the webinars. A web link with a recording&nbsp;of the live session will also be made available.</span></p>]]></description>
<pubDate>Tue, 11 Jun 2013 17:00:00 GMT</pubDate>
</item>
<item>
<title>Webinar – Supervisory Committee Duties &amp; Responsibilities</title>
<link>http://www.mncun.org/events/event_details.asp?id=281760</link>
<guid>http://www.mncun.org/events/event_details.asp?id=281760</guid>
<description><![CDATA[<style type="text/css">
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</style><br>

<p>&nbsp;</p><span style="font-size: 10pt;">
  <p>Supervisory committee members have basic, specific, and mandatory responsibilities that are vital to a credit union's operations and oversight. The supervisory committee is ultimately responsible for ensuring that the credit union adheres to the requirements for reports filed with the NCUA Board . This includes NCUA call reporting and compliance. This webinar will explore what it takes to be a supervisory committee member, will include topics such as:</p>
  <ul>
    <li>Seven categories of risk for credit unions</li>
    <li>Responsibilities of supervisory committee members</li>
    <li>Financial literacy requirements</li>
    <li>Supervisory committee best practices</li>
  </ul>
  <p>&nbsp;</p></span>
<p><span style="font-size: 10pt;"><span style="font-weight: bold;">Presenter:</span> Stephen Schiltz, CliftonLarsonAllen LLP<br>
    <span style="color: rgb(255, 0, 0); font-size: 10pt; font-weight: bold;">Who should attend:</span>&nbsp;Branch Managers, Compliance Officers,&nbsp;Volunteers&nbsp;and CEOs</span></p>
<p><span style="font-size: 10pt;"><span style="font-weight: bold;">Time:</span> 2 p.m.-3:30 p.m.<br>
    <span style="font-weight: bold;">Cost:</span> $209 for live webinar only; $229 for live webinar, plus a web link and&nbsp;free&nbsp;CD-ROM <br>
    <strong>Registration deadline:</strong> Thursday, June 6</span></p>
<p>&nbsp;</p>
<h3>About Webinars</h3>
<p><span style="font-size: 10pt;">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </span></p>
<p><span style="font-size: 10pt;">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</span></p>]]></description>
<pubDate>Tue, 11 Jun 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>Hiawatha Chapter Golf Tournament</title>
<link>http://www.mncun.org/events/event_details.asp?id=289234</link>
<guid>http://www.mncun.org/events/event_details.asp?id=289234</guid>
<description><![CDATA[
<STYLE type=text/css>
#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/chapters-comms.jpg) no-repeat top left!important};
</STYLE>
<BR><SPAN style="FONT-SIZE: 10pt">Join your colleagues for networking and fun at this Hiawatha Chapter golf outing! More details will be available closer to the event date. </SPAN>]]></description>
<pubDate>Thu, 13 Jun 2013 05:00:00 GMT</pubDate>
</item>
<item>
<title>Student-Run Credit Union Forum &amp; Roundtable</title>
<link>http://www.mncun.org/events/event_details.asp?id=320983</link>
<guid>http://www.mncun.org/events/event_details.asp?id=320983</guid>
<description><![CDATA[<style type="text/css">
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</style><br>

<span style="font-size: 10pt;"><p><span style="font-family: Arial;">Student-run credit unions have become a hot topic in the state of Minnesota in recent years. Three credit unions in our state – HomeTown Credit Union, St. Paul Federal Credit Union and Postal Credit Union – have received media coverage and high praise for their new in-school branches, all of which have opened their doors in the past two years.</span></p><p><span style="font-family: Arial;"></span><span style="font-family: Arial;">To provide insight into the process, the Minnesota Credit Union Network and Minnesota Credit Union Foundation are offering an educational session for credit unions to discuss the topic. An economist from the Federal Reserve Bank of Minneapolis will discuss experience with in-school financial institutions elsewhere, followed by discussion from Minnesota credit unions sharing their experiences of establishing student credit unions. The session will also provide resources that outline the process – from research to hiring, marketing to tracking. </span></p><p><span style="font-family: Arial;"></span><span style="font-family: Arial;">Join us for this informative and interactive session, which is being offered live at the Network office in St. Paul and also via webinar. (<span style="font-weight: bold;">Note:</span> MnCUN will also host a <a href="http://www.mncun.org/events/event_details.asp?id=306224&amp;group=" target="_self">Marketing &amp; Business Development Roundtable</a> meeting immediately following this Student Run Credit Union Forum, for those interested in participating and continuing the dialogue. SEPARATE EVENT REGISTRATION REQUIRED.)</span></p><p><span style="font-family: Arial;">&nbsp;</span></p><p><span style="font-family: Arial;"></span><span style="font-family: Arial;"><strong>Time:</strong> 10 a.m.-11:30 a.m.<br></span><span style="font-family: Arial;"><strong>Location:</strong> Network Office, 555 Wabasha Street North, St. Paul<br></span><span style="font-family: Arial;"><strong>Cost:</strong> $39<br></span><span style="font-family: Arial;"><strong>Registration deadline:</strong> Friday, June 14<br></span><span style="font-family: Arial;"><strong><span style="color: rgb(255, 0, 0);">Notes:</span></strong> Webinar participation is also available. </span></p><p><span style="font-family: Arial;">This forum will be followed by a <a href="http://www.mncun.org/events/event_details.asp?id=306224&amp;group=" target="_self">Marketing &amp; Business Development Roundtable</a> at 11:30 a.m.-1:30 p.m. <br></span><span style="font-family: Arial;">(SEPARATE EVENT REGISTRATION REQUIRED FOR THE ROUNDTABLE.)</span></p></span><p>&nbsp;</p><p><span style="font-size: 10pt;">&nbsp;</span></p><span style="font-size: 10pt;">
  <h3>About Roundtables</h3>
  <p><span style="font-size: 10pt;">Roundtables provide credit union professionals the opportunity to participate in cooperative meetings to network and exchange ideas. Prepare your questions and bring any materials and knowledge to share!</span></p></span> ]]></description>
<pubDate>Wed, 19 Jun 2013 15:00:00 GMT</pubDate>
</item>
<item>
<title>Roundtable – Business Development/Marketing</title>
<link>http://www.mncun.org/events/event_details.asp?id=306224</link>
<guid>http://www.mncun.org/events/event_details.asp?id=306224</guid>
<description><![CDATA[<style type="text/css">
#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};
</style>
<br>
<p><span style="font-size: 10pt;">Join your peers for these cooperative roundtable meetings to network and exchange ideas. Bring questions, materials and knowledge to share! Lunch is included in the price of the educational session. </span></p>
<p><span style="font-size: 10pt;"><strong>Time:</strong> 11:30 a.m.-1 p.m.<br></span><span style="font-size: 10pt;"><strong>Location:</strong> Network Office, 555 Wabasha St. N., Suite 200, St. Paul 55102<br></span><span style="font-size: 10pt;"><strong>Cost:</strong> $20*<br></span><span style="font-size: 10pt;"><strong>Registration deadline:</strong> Friday, June 14</span></p>
<p><span style="font-size: 10pt;">*While you are encouraged to attend the roundtables in person, you also have the option to participate via conference call. Conference call participants will be charged $20.</span></p><p><span style="font-size: 10pt;">(Note: MnCUN will also host a Student-Run Credit Union Forum meeting immediately before this roundtable meeting, for those interested attending both sessions. SEPARATE EVENT REGISTRATION REQUIRED.)</span></p>
<p><span style="font-size: 10pt;">&nbsp;</span></p><span style="font-size: 10pt;">
<h3>About Roundtables</h3>
<p><span style="font-size: 10pt;">Roundtables provide credit union professionals the opportunity to participate in cooperative meetings to network and exchange ideas. Prepare your questions and bring any materials and knowledge to share!</span></p></span>]]></description>
<pubDate>Wed, 19 Jun 2013 16:30:00 GMT</pubDate>
</item>
<item>
<title>Webinar – Pricing Consumer Loans for Profitability</title>
<link>http://www.mncun.org/events/event_details.asp?id=281765</link>
<guid>http://www.mncun.org/events/event_details.asp?id=281765</guid>
<description><![CDATA[<style type="text/css">
#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};
</style>
<br>
<span style="font-size: 10pt;"><p>Pricing for profitability is challenging enough without more legislation and regulation. And, it is no longer enough to base your rates on the institution next door. With this webinar, participants will understand how to price to meet the<br>needs of members and the institution. Learn to identify the credit union's true market competitors and gain insights to help set competitive fees and rates that will increase loan profitability.</p></span><p>&nbsp;</p><p><span style="font-size: 10pt;"><span style="font-weight: bold;">Presenter:</span> Mike Moebs, Moebs $ervices Inc.<br><span style="color: rgb(255, 0, 0); font-size: 10pt; font-weight: bold;">Who should attend:</span>&nbsp;Branch Managers, Lenders, Operations&nbsp;and CEOs</span></p>
<p><span style="font-size: 10pt;"><span style="font-weight: bold;">Time:</span> 2 p.m.-3:30 p.m.<br><span style="font-weight: bold;">Cost:</span> $209 for live webinar only; $229 for live webinar, plus a web link and free&nbsp;CD-ROM <br><strong>Registration deadline:</strong> Friday, June 14</span></p>
<p><span style="font-size: 10pt;">&nbsp;</span></p>
<h3>About Webinars</h3>
<p><span style="font-size: 10pt;">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </span></p>
<p><span style="font-size: 10pt;">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</span></p>]]></description>
<pubDate>Wed, 19 Jun 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>Webinar— GFE &amp; HUD-1:  Current Issues, Current Challenges</title>
<link>http://www.mncun.org/events/event_details.asp?id=320970</link>
<guid>http://www.mncun.org/events/event_details.asp?id=320970</guid>
<description><![CDATA[<style type="text/css">
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</style><br>
<span style="font-size: 10pt;">
  <p><span style="font-family: Arial; font-size: 10pt;">The Consumer Financial Protection Bureau (CFPB) has tentatively scheduled the integrated Early TIL/GFE and Final TIL/HUD for release in September 2013, meaning that the industry will have to continue the struggle with existing forms well into 2014. This webinar is designed to address the current issues that continue to present challenges for credit unions. Topics include:</span></p><ul><li><span style="font-family: Arial; font-size: 10pt;">Rules for the current forms</span></li><li><span style="font-family: Arial; font-size: 10pt;"></span><span style="font-family: Arial; font-size: 10pt;">"Hot button" regulator issues regarding the GFE and HUD-1</span></li><li><span style="font-family: Arial; font-size: 10pt;"></span><span style="font-family: Arial; font-size: 10pt;">Form areas that pose the biggest risks for reimbursement</span></li><li><span style="font-family: Arial; font-size: 10pt;"></span><span style="font-family: Arial; font-size: 10pt;">Review techniques that will be effective for the current forms</span></li></ul></span>
<p>&nbsp;</p>
<p><span style="font-size: 10pt;"><span style="font-weight: bold;">Presenter:</span> <span style="font-family: Arial; font-size: 10pt;"><span ar-sa;'="" en-us;="" minor-latin;="" calibri;="" bold;="" arial;="" 10pt;="" ","sans-serif";="" "arial="" 115%;="">Bill Elliott, Young &amp; Associates, Inc.</span><br>
       </span></span><span style="font-size: 10pt;"><span style="color: rgb(255, 0, 0); font-weight: bold;">Who should attend:</span> Branch Managers,&nbsp;Lenders, Operations&nbsp;and CEOs</span></p>
<p><span style="font-size: 10pt;"><span style="font-weight: bold;">Time:</span> 2 p.m.-3:30 p.m.<br>
     <span style="font-weight: bold;">Cost:</span> $209 for live webinar only; $229 for live webinar, plus a web link and free CD-ROM<br><strong>Registration deadline:</strong> Thursday, June 20</span></p>
<p><span style="font-size: 10pt;">&nbsp;</span></p>
<h3>About Webinars </h3>
<p><span style="font-size: 10pt;">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </span></p>
<p><span style="font-size: 10pt;">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</span></p>  ]]></description>
<pubDate>Tue, 25 Jun 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>MnCU4Kids Golf Tournament</title>
<link>http://www.mncun.org/events/event_details.asp?id=312860</link>
<guid>http://www.mncun.org/events/event_details.asp?id=312860</guid>
<description><![CDATA[
<STYLE type=text/css>
#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/Event_Calendar.jpg) no-repeat top left!important};
</STYLE>
<BR>
<P><SPAN style="FONT-SIZE: 10pt">Join the Minnesota Credit Unions for Kids committee for the 18th annual Credit Unions for Kids Golf Tournament! This event is a fundraiser for MnCU4Kids, with proceeds benefitting Gillette Children's Specialty Healthcare in St. Paul and its clinics across the state. More event details and sign-up information will be available closer to the event date.</SPAN></P>]]></description>
<pubDate>Wed, 26 Jun 2013 17:00:00 GMT</pubDate>
</item>
<item>
<title>Webinar— Ability-to-Repay Part 1: New Rules for Products &amp; Policies</title>
<link>http://www.mncun.org/events/event_details.asp?id=320982</link>
<guid>http://www.mncun.org/events/event_details.asp?id=320982</guid>
<description><![CDATA[<style type="text/css">
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</style><br>

<p>&nbsp;</p><span style="font-size: 10pt;"><p><span style="font-family: Calibri;"><span style="font-family: Arial;">The ability to repay concept is simple: Make sure the borrower can pay before making the mortgage loan. The CFPB's final pronouncement on this simple concept contained 236,000 words. This webinar is the first of two<br>presentations on this topic. It will address the management impact of the new rule and the decisions that must be made in the mortgage loan and asset liability management areas. The definition and impacts of "qualified mortgages” and "unqualified mortgages” will be covered, as well as the "points and fees” test.</span></span></p></span><p>&nbsp;</p><p><span style="font-size: 10pt;"><span style="font-weight: bold;">Presenter:</span> <span style="line-height: 115%; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;; font-size: 10pt; mso-bidi-font-weight: bold; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;">Bill Elliott, Young &amp; Associates, Inc.</span><br>
    </span><span style="font-size: 10pt;"><span style="color: rgb(255, 0, 0); font-weight: bold;">Who should attend:</span> Branch Managers, Compliance Officers, Lenders&nbsp;and CEOs</span></p>
<p><span style="font-size: 10pt;"><span style="font-weight: bold;">Time:</span> 2 p.m.-3:30 p.m.<br>
    <span style="font-weight: bold;">Cost:</span> $209 for live webinar only; $229 for live webinar, plus a web link and free CD-ROM</span></p>
<p><span style="font-size: 10pt;">&nbsp;</span></p>
<h3>About Webinars </h3>
<p><span style="font-size: 10pt;">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </span></p>
<p><span style="font-size: 10pt;">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</span></p> ]]></description>
<pubDate>Wed, 26 Jun 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>NCUA Workshop – Exams, Fraud Detection &amp; Strategic Planning</title>
<link>http://www.mncun.org/events/event_details.asp?id=307224</link>
<guid>http://www.mncun.org/events/event_details.asp?id=307224</guid>
<description><![CDATA[
<STYLE type=text/css>
#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};
</STYLE>
<BR>
<P><SPAN style="FONT-SIZE: 10pt">The National Credit Union Administration (NCUA) will host a free credit union workshop in the Twin Cities on Friday, June 28, focusing on examinations, strategic planning, fraud detection, leadership and fair lending compliance. The NCUA Office of Small Credit Union Initiatives staff and representatives from the Credit Union Executives Society will be on-hand to share their insights, along with Real Solutions, CUNA Mutual Group and the National Federation of Community Development Credit Unions.<BR><BR>Scholarships up to $350 per workshop are available to assist attendees with travel costs. To qualify, applicants must be from a credit union of less than $50 million in assets, a low-income designated credit union, or a credit union chartered for less than 10 years. There are 10 scholarships available for each workshop. To submit an application or to learn more about these scholarships, email OSCUI at </SPAN><A href="mailto:oscuitraining@ncua.gov"><SPAN style="FONT-SIZE: 10pt">oscuitraining@ncua.gov</SPAN></A><SPAN style="FONT-SIZE: 10pt">. </SPAN></P><SPAN style="FONT-SIZE: 10pt">NCUA's OSCUI fosters credit union development and the effective delivery of financial services for small credit unions, new credit unions and credit unions with a low-income designation. Additional information and online registration for the June 28 workshop and others can be found on the </SPAN><A href="http://www.ncua.gov/Resources/OSCUI/Pages/Schedule.aspx"><SPAN style="FONT-SIZE: 10pt">Training Schedule</SPAN></A>&nbsp;<SPAN style="FONT-SIZE: 10pt">page of the NCUA's website.</SPAN>]]></description>
<pubDate>Fri, 28 Jun 2013 05:00:00 GMT</pubDate>
</item>
<item>
<title>NCUA Small Credit Union Workshop</title>
<link>http://www.mncun.org/events/event_details.asp?id=322169</link>
<guid>http://www.mncun.org/events/event_details.asp?id=322169</guid>
<description><![CDATA[<style type="text/css">
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</style><br>
<p><span style="font-size: 10pt;">The National Credit Union Association (NCUA) Office of Small Credit Union Initiatives (OSCUI) is bringing its Credit Union Workshop to the Twin Cities. The Minnesota offering of this free workshop series is Friday, June 28 from 7:45 a.m.-4 p.m. at the Minneapolis Airport Marriot in Bloomington. Topics to be covered included: </span></p>
<ul>
  <li><span style="font-size: 10pt;">What to Expect During Your Next Exam</span></li>
  <li><span style="font-size: 10pt;">Leadership Development</span></li>
  <li><span style="font-size: 10pt;">"Hidden in Plain Sight” – Do you have a dishonest employee lurking from within?</span></li>
  <li><span style="font-size: 10pt;">Fair Lending presentations</span></li>
  <li><span style="font-size: 10pt;">Strategic Planning</span></li>
  <li><span style="font-size: 10pt;">Issues Facing Small Credit Unions</span></li>
</ul>
<p><span style="font-size: 10pt;"><strong>Time:</strong> 7:45 a.m.-4 p.m.<br>
    <strong>Location:</strong> Minneapolis Airport Marriott, Bloomington<br>
    <strong>Cost:</strong> The workshop is free.</span></p>
<p><span style="font-size: 10pt;">The NCUA has set up a room block for this workshop. Rooms are available at a rate of $139 per night. To reserve a room call the Marriott at (952) 854-7441 by Thursday, June 6.</span></p>
<p><a href="http://www.regonline.com/builder/site/default.aspx?EventID=1211315" target="_blank"><img title="" alt="" src="http://www.mncun.org/resource/resmgr/education/register_now_button.jpg"></a></p>]]></description>
<pubDate>Fri, 28 Jun 2013 12:45:00 GMT</pubDate>
</item>
<item>
<title>Webinar – Collecting Decedents&apos; Accounts</title>
<link>http://www.mncun.org/events/event_details.asp?id=283261</link>
<guid>http://www.mncun.org/events/event_details.asp?id=283261</guid>
<description><![CDATA[
<STYLE type=text/css>
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</STYLE>
<BR>
<P><SPAN style="FONT-SIZE: 10pt">This interactive training combines conferencing capabilities with web technology. Participants will receive login instructions and handout materials via email prior to the webcast. An archive CD-ROM of the training will also be available. More detailed topic information will be posted four to six weeks before the session date.</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Presenter:</SPAN> Eric North, NorthLegal Training &amp; Publications<BR></SPAN><SPAN style="FONT-SIZE: 10pt"><SPAN style="COLOR: rgb(255,0,0); FONT-WEIGHT: bold">Who should attend:</SPAN> Branch Managers, Collections Staff, Frontline&nbsp;and CEOs</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Time:</SPAN> 2 p.m.-3:30 p.m.<BR><SPAN style="FONT-WEIGHT: bold">Cost:</SPAN> $209 for live webinar only; $229 for live webinar, plus a web link and free CD-ROM</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">&nbsp;</SPAN></P>
<H3>About Webinars </H3>
<P><SPAN style="FONT-SIZE: 10pt">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</SPAN></P>]]></description>
<pubDate>Wed, 10 Jul 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>Webinar – Internet Fraud Claims</title>
<link>http://www.mncun.org/events/event_details.asp?id=283921</link>
<guid>http://www.mncun.org/events/event_details.asp?id=283921</guid>
<description><![CDATA[
<STYLE type=text/css>
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</STYLE>
<BR>
<P><SPAN style="FONT-SIZE: 10pt">This interactive training combines conferencing capabilities with web technology. Participants will receive login instructions and handout materials via email prior to the webcast. An archive CD-ROM of the training will also be available. More detailed topic information will be posted four to six weeks before the session date.</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Presenter:</SPAN> Elizabeth Fast, Spencer Fane Britt &amp; Browne LLP<BR><SPAN style="COLOR: rgb(255,0,0); FONT-SIZE: 10pt; FONT-WEIGHT: bold">Who should attend:</SPAN>&nbsp;Branch Managers, IT Staff, Operations&nbsp;and CEOs</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Time:</SPAN> 2 p.m.-3:30 p.m.<BR><SPAN style="FONT-WEIGHT: bold">Cost:</SPAN> $209 for live webinar only; $229 for live webinar, plus a web link and free CD-ROM<BR><STRONG>Registration deadline:</STRONG> Monday, July 8</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">&nbsp;</SPAN></P>
<H3>About Webinars </H3>
<P><SPAN style="FONT-SIZE: 10pt">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</SPAN></P>]]></description>
<pubDate>Thu, 11 Jul 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>Webinar – Simple Guide to Asset Liability Management</title>
<link>http://www.mncun.org/events/event_details.asp?id=283934</link>
<guid>http://www.mncun.org/events/event_details.asp?id=283934</guid>
<description><![CDATA[
<STYLE type=text/css>
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</STYLE>
<BR>
<P><SPAN style="FONT-SIZE: 10pt">This interactive training combines conferencing capabilities with web technology. Participants will receive login instructions and handout materials via email prior to the webcast. An archive CD-ROM of the training will also be available. More detailed topic information will be posted four to six weeks before the session date.</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Presenter:</SPAN> Tim Harrington, TEAM Resources<BR><SPAN style="FONT-WEIGHT: bold">Who should attend:</SPAN>&nbsp;Branch Managers, Lenders, Operations, Volunteers&nbsp;and CEOs</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Time:</SPAN> 2 p.m.-3:30 p.m.<BR><SPAN style="FONT-WEIGHT: bold">Cost:</SPAN> $209 for live webinar only; $229 for live webinar, plus a web link and free CD-ROM<BR><STRONG>Registration deadline:</STRONG>&nbsp;Thursday, July 11&nbsp;</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">&nbsp;</SPAN></P>
<H3>About Webinars </H3>
<P><SPAN style="FONT-SIZE: 10pt">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</SPAN></P>]]></description>
<pubDate>Tue, 16 Jul 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>Webinar – Interagency Appraisal &amp; Evaluation Guidelines</title>
<link>http://www.mncun.org/events/event_details.asp?id=283943</link>
<guid>http://www.mncun.org/events/event_details.asp?id=283943</guid>
<description><![CDATA[<style type="text/css">
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</style>
<br>
<p><span style="FONT-SIZE: 10pt">This interactive training combines conferencing capabilities with web technology. Participants will receive login instructions and handout materials via email prior to the webcast. An archive CD-ROM of the training will also be available. More detailed topic information will be posted four to six weeks before the session date.</span></p>
<p><span style="FONT-SIZE: 10pt"><span style="FONT-WEIGHT: bold">Presenter:</span> Chris Greenwalt, ASFMRA<br><span style="COLOR: rgb(255,0,0); FONT-SIZE: 10pt; FONT-WEIGHT: bold">Who should attend:</span>&nbsp;Branch Managers, Lenders, Operations&nbsp;and CEOs</span></p>
<p><span style="FONT-SIZE: 10pt"><span style="FONT-WEIGHT: bold">Time:</span> 2 p.m.-3:30 p.m.<br><span style="FONT-WEIGHT: bold">Cost:</span> $209 for live webinar only; $229 for live webinar, plus a web link and free CD-ROM<br><strong>Registration deadline:</strong> Monday, July 15&nbsp;</span></p><br>
<h3>About Webinars </h3>
<p><span style="FONT-SIZE: 10pt">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </span></p>
<p><span style="FONT-SIZE: 10pt">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</span></p>  ]]></description>
<pubDate>Thu, 18 Jul 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>Central Minnesota Chapter Golf Tournament</title>
<link>http://www.mncun.org/events/event_details.asp?id=314618</link>
<guid>http://www.mncun.org/events/event_details.asp?id=314618</guid>
<description><![CDATA[
<STYLE type=text/css>
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/chapters-comms.jpg) no-repeat top left!important};-->
</STYLE>
<BR>
<P><SPAN style="FONT-SIZE: 10pt">Join your colleagues for some fun and friendly competition at the Central Minnesota Chapter Golf Tournament! More details will be available closer to the event date.</SPAN></P>]]></description>
<pubDate>Mon, 22 Jul 2013 05:00:00 GMT</pubDate>
</item>
<item>
<title>NYIB Conference</title>
<link>http://www.mncun.org/events/event_details.asp?id=298668</link>
<guid>http://www.mncun.org/events/event_details.asp?id=298668</guid>
<description><![CDATA[<P>
<STYLE type=text/css>
#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/Event_Calendar.jpg) no-repeat top left!important};
</STYLE>
<BR><SPAN style="FONT-SIZE: 10pt">Join thousands of credit union professionals across the nation in reaching today's youth by engaging with others who will share tools to help you succeed. Each year this conference brings together valuable resources, continuous supporters and national leaders for a one-of-a-kind educational event. New and familiar faces alike find the National Youth Involvement Board (NYIB) Annual Conference to be a time to network, learn and celebrate the efforts of those who share the passion of serving our leaders of tomorrow.</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">For more information, visit the </SPAN><A href="http://www.nyib.org/?page_id=151" target=_blank><SPAN style="FONT-SIZE: 10pt">National Youth Involvement Board</SPAN></A>&nbsp;<SPAN style="FONT-SIZE: 10pt">website.</SPAN></P>
<P><A href="http://www.nyib.org/?page_id=151" target=_blank><IMG title="" alt="" src="http://www.mncun.org/resource/resmgr/education/register_now_button.jpg"></A></P>]]></description>
<pubDate>Mon, 29 Jul 2013 05:00:00 GMT</pubDate>
</item>
<item>
<title>Webinar – Home Equity &amp; Second Lien Risk Management</title>
<link>http://www.mncun.org/events/event_details.asp?id=283949</link>
<guid>http://www.mncun.org/events/event_details.asp?id=283949</guid>
<description><![CDATA[
<STYLE type=text/css>
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</STYLE>
<BR>
<P><SPAN style="FONT-SIZE: 10pt">This interactive training combines conferencing capabilities with web technology. Participants will receive login instructions and handout materials via email prior to the webcast. An archive CD-ROM of the training will also be available. More detailed topic information will be posted four to six weeks before the session date.</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Presenter:</SPAN> S. Wayne Linder, Young &amp; Associates Inc.<BR><SPAN style="COLOR: rgb(255,0,0); FONT-SIZE: 10pt; FONT-WEIGHT: bold">Who should attend:</SPAN>&nbsp;Branch Managers, Lenders, Operations&nbsp;and CEOs</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Time:</SPAN> 2 p.m.-3:30 p.m.<BR><SPAN style="FONT-WEIGHT: bold">Cost:</SPAN> $209 for live webinar only; $229 for live webinar, plus a web link and free CD-ROM<BR><STRONG>Registration deadline:</STRONG> Thursday, Aug. 1&nbsp;</SPAN></P><BR>
<H3>About Webinars </H3>
<P><SPAN style="FONT-SIZE: 10pt">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</SPAN></P>]]></description>
<pubDate>Tue, 6 Aug 2013 19:00:00 GMT</pubDate>
</item>
<item>
<title>Webinar – E-Compliance: Email, Internet, Mobile &amp; Social Media</title>
<link>http://www.mncun.org/events/event_details.asp?id=283967</link>
<guid>http://www.mncun.org/events/event_details.asp?id=283967</guid>
<description><![CDATA[
<STYLE type=text/css>
<!--#CenterColumn {padding-top:126px; background: url(/resource/resmgr/subpage-headers/education.jpg) no-repeat top left!important};-->
</STYLE>
<BR>
<P><SPAN style="FONT-SIZE: 10pt">This interactive training combines conferencing capabilities with web technology. Participants will receive login instructions and handout materials via email prior to the webcast. An archive CD-ROM of the training will also be available. More detailed topic information will be posted four to six weeks before the session date.</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Presenter:</SPAN> Nancy Flynn, The ePolicy Institute<BR><SPAN style="COLOR: rgb(255,0,0); FONT-SIZE: 10pt; FONT-WEIGHT: bold">Who should attend:</SPAN>&nbsp;Branch Managers, Compliance Officers, Frontline, Marketing &amp; Business Development, Operations&nbsp;and CEOs</SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt"><SPAN style="FONT-WEIGHT: bold">Time:</SPAN> 2 p.m.-3:30 p.m.<BR><SPAN style="FONT-WEIGHT: bold">Cost:</SPAN> $209 for live webinar only; $229 for live webinar, plus a web link and free CD-ROM<BR><STRONG>Registration&nbsp;deadline:</STRONG> Thursday, Aug. 8&nbsp;</SPAN></P><BR>
<H3>About Webinars </H3>
<P><SPAN style="FONT-SIZE: 10pt">Pairing conferencing capabilities with web technology, this session brings informative, interactive training directly to you. During the webinar, you'll view a real-time PowerPoint presentation on your computer while listening to the audio connection via telephone. </SPAN></P>
<P><SPAN style="FONT-SIZE: 10pt">While credit unions are encouraged to use the webinar to train multiple individuals at once, the credit union will be charged for each computer connection that uses its login code. Participants will receive login instructions and handout materials via email prior to the webinar. In addition, registrants may also receive an archive CD-ROM after the live session.</SPAN></P>]]></description>
<pubDate>Tue, 13 Aug 2013 19:00:00 GMT</pubDate>
</item>
</channel>
</rss>
