
<!DOCTYPE html>

<html lang="en">
<head id="Head1"><meta charset="UTF-8" /><link href="/DefaultContent/Default/bootstrap.min.css" rel="stylesheet"/>
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=EDGE" /><title>
	
    Community News and Updates | City of Manhattan Beach

</title>
    <script type="text/javascript">
        //script for making "view full site" button work on mobile devices 
        function getCookie(c_name) {
            var i, x, y, ARRcookies = document.cookie.split(";");
            for (i = 0; i < ARRcookies.length; i++) {
                x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
                y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
                x = x.replace(/^\s+|\s+$/g, "");
                if (x == c_name) {
                    return unescape(y);
                }
            }
        }

        function setCookie(c_name, value, exdays) {
            var exdate = new Date();
            exdate.setDate(exdate.getDate() + exdays);
            var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());
            c_value = (window.location.protocol == 'https:') ? c_value + "; secure" : c_value;
            document.cookie = c_name + "=" + c_value;
        }

        var isResponsive = getCookie('ISRESPONSIVE');
        if (isResponsive != "no" && isResponsive != "yes") {
            setCookie('ISRESPONSIVE', 'yes', 7);
            document.write('<meta name="viewport" content="width=device-width" />');
            isResponsive = 'yes';
        } else {
            if (isResponsive == "no") {
                document.write('<meta name="viewport" content="width=980" />');
            }
            else {
                document.write('<meta name="viewport" content="width=device-width" />');
            }
        }
    </script>

    <link href="/DefaultContent/Default/StyleBundleDesignTheme.cssbnd?v=Qy4FEDnSuqgYP0kXBAdLI8TSriWt_DeV6Q1j5oN8tZA1" rel="stylesheet"/>
<link href="/Project/Contents/Main/StyleBundleDesignTheme.cssbnd?v=i2tlvH6GassqbGuFUrR4xhYFEdu0uW4QaTbtKfojZvA1" rel="stylesheet"/>
<link href="/Areas/Admin/Content/StyleBundleFrontendExtra.cssbnd?v=-cG6bfciEzyG0pVpDdXAbInOUnqKuoiK61z7_e6NMxo1" rel="stylesheet"/>
<link href="/DefaultContent/Default/Print.cssbnd?v=47rmsGcOk4CIHfb2HDg7t9s31eiFEWHej5QI1ytFlII1" rel="stylesheet" media="print" />
<link href="/Project/Contents/Main/Print.cssbnd?v=aGUOnMuw4bP9N4ISYkGw2dcKEPFEVNjxJ0-r0fDunlw1" rel="stylesheet" media="print" />
<link href="/DefaultContent/Default/kendo/StyleBundleKendo.cssbnd?v=xST1bsl5yknXpl9jp1HsezLGTLBh6mO_aQWPARk7ONM1" rel="stylesheet"/>
<script src="/Scripts/ScriptBundleFAllInOne.jsbnd?v=2ow9ur3k1MGEtzCs1H51pp-FEILBG8DzHvoK8dTGSnQ1"></script>

<script>
    function handleExternalURL() { };
</script>
<script>window.visionOptions = {virtualApplicationPath:'/',logOnPath:'Admin/LogOn',logOffPath:'Admin/LogOff',enableSessionTimeout:false,sessionTimeoutInMinutes:30,timeToAlertBeforeSessionTimeoutInMinutes:15,extendSessionTimeoutPath:'Admin/Account/ExtendSessionTimeout',mainFolderPath:'/Project/Contents/Main/',centerLocation:'Manhattan Beach, CA', siteID:1, navigationID:43, isHomePage:false, emergencyNoticeChanged:false, loggedIn:false, showTopTips:true, currentDesignFolderPath:'/Project/Contents/Main/', useDesignThemFontSizeCss:false , clientResponsiveTableEnabled:true, imageUrl:'/Home/ShowImage?id=', engagementAdminEndPoint:'/Admin/Engagement/', visionLiveAdminEndPoint:'/Admin/Components/', cmsAdminEndPoint:'/Admin/', enableSplashUrl:false };;window.visionApps={"cms_core":{"DateFormat":"MM/dd/yyyy","TimeFormat":"h:mm tt","PhoneFormat":"(999) 999-9999","OrganizationName":"City of Manhattan Beach","TimeAMFormat":"AM","TimePMFormat":"PM","GoogleReCaptchaPublicKey":"6LfD_hgUAAAAAHPhLzmYTQReOp5mspjlIxKQ1y-H","GoogleReCaptchaPrivateKey":"6LfD_hgUAAAAAJxD59VxieU2e9Bd1Q2otE-8-tpy"}};;window.visionApps.token="eyJhbGciOiJBMjU2S1ciLCJlbmMiOiJBMjU2Q0JDLUhTNTEyIiwiayI6Ikx4YmxNMlN5SlJFNGdJdjBIeC9JZHc9PSJ9.fHBtOKnEHOMmOf07zk-FjiJQQPEZL8l7mw1wDSym8PCUfGIAy4zglWo-i0d5Uan8u9zgyp6f1oKfHQrEJzpkSeo81ICjdw9e.csmoshrWtP7ANqotTBxDew.xky5lbPYFNclw_pSf5n3upnO0WD4bOMOJZZhwUywep_JE0UAEfedDGL_v7y6XkVxOIqEhyOnSRm4myNmZP-zFz-8nwQiOz5LdKzi0d325r3U9UsvTdYZioJCCXBK1ydm4hUNfffXlhA0FLJxvZjugjuKGPKgF_DtpLIILSnqLFBD5sZePUxV2q7ZO9AUMHsRhVGWU_zB2o9J3LZPxU54wYhtJwS7OddPvCieeyfAGKo.UHxZmHZLtvCv6nz8GGD8KGVdAa2OWd-wN9LWAh3dbG8";</script>

    <script type="text/javascript">
        // added the htmlEncode and htmlDecode method to fixed the js load order issue.
        $.extend($, {
            htmlEncode: function (html) {
                var temp = document.createElement("div");
                (temp.textContent != undefined) ? (temp.textContent = html) : (temp.innerText = html);
                var output = temp.innerHTML;
                temp = null;
                return output;
            },
            htmlDecode: function (text) {
                var temp = document.createElement("div");
                temp.innerHTML = text;
                var output = temp.innerText || temp.textContent;
                temp = null;
                return output;
            }
        });

        //script for view full site button, placed here to keep firefox for mobile devices happy
        $(function () {
            var viewFullElement = document.getElementById("view-full");
            if (viewFullElement) {
                if (isResponsive == "yes") {
                    viewFullElement.className = 'mobile_only fullsite';
                }
                else {
                    viewFullElement.innerHTML = 'View Mobile Optimized';
                    viewFullElement.className = '';
                }
            }
        });
    </script>
    

    <!--[if lt IE 9]>
        <script src="/Scripts/ScriptBundleOthers.jsbnd?v=3Q7FhTQfRrKx8h7Kvdbh9bBluzlNlXKsFAERd4g8_TY1"></script>

	<![endif]-->

    
    <link id="active_font" rel="stylesheet" type="text/css" href="/Project/Contents/Main/x-small.css">
    
    <link rel="Shortcut Icon" href="/favicon.ico" />

    
    

<!-- Google Universal Analytics -->
<script type="text/javascript">
    (function (i, s, o, g, r, a, m) {
        i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
            (i[r].q = i[r].q || []).push(arguments)
        }, i[r].l = 1 * new Date(); a = s.createElement(o),
        m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
    })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');

    ga('create', 'UA-29848653-1', 'auto');
    ga('require', 'displayfeatures');
    //TFS 21771, Enhanced Link Attribution, https://developers.google.com/analytics/devguides/collection/analyticsjs/enhanced-link-attribution
    ga('require', 'linkid'); 
    ga('set', 'dimension1', 'Community News and Updates, ID:43');
    ga('set', 'dimension2', '2018');
    ga('send', 'pageview');
</script>
<!-- End Google Universal Analytics -->

      
    
    <meta name="description" content="" />
    <meta name="keywords" content="News, city newsletter, city news" />
    <script src="/Project/Contents/Main/sitelayout_scripts.js"></script>




     <!-- Google Tag Manager -->
    <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
    new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
    j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
    'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
    })(window,document,'script','dataLayer','GTM-5WXNRRT');</script>
    <!-- End Google Tag Manager -->
    <!-- Google Tag Manager (noscript) -->
    <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5WXNRRT"
    height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
    <!-- End Google Tag Manager (noscript) -->


<script type="text/javascript">
/*<![CDATA[*/
(function() {
var sz = document.createElement('script'); sz.type = 'text/javascript'; sz.async = true;
sz.src = '//siteimproveanalytics.com/js/siteanalyze_15203452.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(sz, s);
})();
/*]]>*/
</script></head>

<body class="front_end_body site_standardsitetemplate ">
    <link href="/DefaultContent/Default/StyleBundleAngularLib.cssbnd?v=sED2Qjf38ysQJYZW_ZvZj-7IGXKm4NOJhdA51oOtG5A1" rel="stylesheet"/>

<script src="/Scripts/ScriptBundleAngularLib.jsbnd?v=mKEpkTe3Xh97QKqIC8bYZcZcx39z5ppgmuHcH22MDes1"></script>


<script>
    (function (window, angular) {
        
        $("body").attr("ng-app", "vi.cms");
        
        window.viCurrentModule = angular.module("vi.cms", []);
    })(window, angular)
</script>

<script>
    window.frontendCommonConfig = {
        loginPage: 'http://www.citymb.info/sys/sso/login',
        photoBaseUrlForPeople: 'http://www.citymb.info/sys/sso/ShowProfilePhoto?id=',
        photoBaseUrl: 'http://www.citymb.info/Home/ShowImage?id=',
        token: window.visionApps ? window.visionApps.token : '',
        cmsUserLogged: false,
        anonymousAvatar: 'http://www.citymb.info/DefaultContent/Default/_gfx/anonymous.png',
        loginUser: {
            name: '',
            avatar: '',
            userID: null,
            firstName: '',
            lastName: '',
            imageID: null,
            email: '',
        }
    };

</script>
    
    <script src="/Scripts/frontendCoreBundle.jsbnd?v=MRJchHgeI1CDy2b7x6CDIQeS1r9s9Q3xMr2xjS1cFIQ1"></script>


    
    <!--stopindex-->
    <noscript>
        <div class="noscript_alert"><span>Please enable JavaScript in your browser for a better user experience.</span></div>
    </noscript>
    <!--startindex-->
    <div class="vi-temp-message-container" style="display:none;"></div>


    
    

<div class="sitewrapper site_template mainSpan_wrapper">
    <div class="mainSpan" id="mainSpan_wrapper_Screen">
        <!--stopindex-->
        <div id="skipnav">
            <a href="#sitebody">
                <img alt="Skip to page body" src="/DefaultContent/Default/_gfx/spacer.gif" /></a>
            
            <a title="Home" href="/home">
                <img alt="Home" src="/DefaultContent/Default/_gfx/spacer.gif" /></a>
            
            <a title="Services" href="/city-services">
                <img alt="Services" src="/DefaultContent/Default/_gfx/spacer.gif" /></a>
            
            <a title="Government" href="/city-officials">
                <img alt="Government" src="/DefaultContent/Default/_gfx/spacer.gif" /></a>
            
            <a title="Residents" href="/residents">
                <img alt="Residents" src="/DefaultContent/Default/_gfx/spacer.gif" /></a>
            
            <a title="Businesses" href="/businesses">
                <img alt="Businesses" src="/DefaultContent/Default/_gfx/spacer.gif" /></a>
            
            <a title="Visitors" href="/visitors">
                <img alt="Visitors" src="/DefaultContent/Default/_gfx/spacer.gif" /></a>
            
            <a title="I Want To..." href="/i-want-to-">
                <img alt="I Want To..." src="/DefaultContent/Default/_gfx/spacer.gif" /></a>
            
        </div>
        <!--startindex-->

        <header id="siteheader" class="">
            <!--stopindex-->
			<h1 class="wcag_only">City of Manhattan Beach</h1>
            <a id="home_link" href="/home">Home</a>
            
            <a class="menu_trigger mobile_only" href="javascript:void(0);">Menu</a>
            
            <!--startindex-->
            
<div id="headercolumn" class="site_template_column  header_column   " >

                <!--stopindex-->
                  

<div id="top_nav">

		<a href="/city-officials/city-council/city-council-meetings-agendas-and-minutes" target="_self">Agendas &amp; Minutes</a>		
		<a href="/city-services/human-resources/employment-opportunities" target="_self">Jobs</a>		
		<a href="/i-want-to-/online-payments" target="_self">Pay Online</a>		
		<a href="/city-officials/contact-the-city" target="_self">Contact Us</a>		
    <a href="http://translate.google.com/translate?js=y&prev=_t&hl=en&ie=UTF-8&layout=1&eotf=1&sl=en&tl=es&u=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter">Translate</a>
	
</div>
                <!--startindex-->
            




<div class='weather'><a href='https://www.yahoo.com/news/weather/united-states/manhattan-beach/manhattan-beach-12795742' target='_blank' title='Weather detail' alt='Weather detail'>52&ordm;<img src='//cmsres.visioninternet.com/icons/yahooweather_icons_100/11.png' alt='weather icon'></a></div>

            

                <!--stopindex-->
                

<a href="javascript:void(0);" class="search-trigger hidden-xs">Search</a>
<div class="top_search" style="display: none;">
    <a class="close_search" href="#">Close</a>
    <div class="search_block">
        <div id="searchbox" class="clearfix">
            <label style="display: none;" for="search_text">Search</label>
            <input title="Search" id="search_text" placeholder="Search" type="text">
            <a title="Click to search" href="javascript:void(0);">Go</a>
        </div>
    </div>
</div>
<script>
	    $(function () {
	        $("#searchbox input").keydown(function (e) {
	            if (e.keyCode == 13) {
	                $("#searchbox a").click();
	            }
	        });
	        $("#searchbox a").click(function () {
	            var keyWord = $("#searchbox input#search_text").val();
	            if (keyWord.length <= 0) { return false; }
	            keyWord  = keyWord.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
	            keyWord = encodeURIComponent(keyWord.replace("<"," ").replace(">"," ") );
	            var link = '/city-services/search';
	            if (link.indexOf("?") >= 0 )
	                link = link + "&q=" + keyWord;
	            else
	                link = link + "?q=" + keyWord;
	            window.location.href = link;
	        });
	    });
	</script>
                <!--startindex-->
            


<div class="social_icons_fixed">

		 <a href="https://twitter.com/citymb" target="_blank" title="" data-src='/Home/ShowImage?id=21907&t=636288197508370000' data-hover-src='/Home/ShowImage?id=21911&t=636288197515570000'>
    			<img alt="tw" src="/Home/ShowImage?id=21907&t=636288197508370000">
        </a>
		 <a href="https://www.facebook.com/citymb" target="_blank" title="" data-src='/Home/ShowImage?id=21889&t=636288197481200000' data-hover-src='/Home/ShowImage?id=21893&t=636288197486800000'>
    			<img alt="fb" src="/Home/ShowImage?id=21889&t=636288197481200000">
        </a>
		 <a href="https://www.youtube.com/user/cityofmb" target="_blank" title="" data-src='/Home/ShowImage?id=22035&t=636294040886070000' data-hover-src='/Home/ShowImage?id=22039&t=636294040892800000'>
    			<img alt="Icons_030717_GL_0000_yt" src="/Home/ShowImage?id=22035&t=636294040886070000">
        </a>
		 <a href="/city-officials/police-department/sign-up-to-receive-public-safety-alerts" target="_blank" title="" data-src='/Home/ShowImage?id=22073&t=636306082870570000' data-hover-src='/Home/ShowImage?id=22071&t=636306082867430000'>
    			<img alt="nixle-off" src="/Home/ShowImage?id=22073&t=636306082870570000">
        </a>
		 <a href="/city-services/mbtv" target="_blank" title="" data-src='/Home/ShowImage?id=21895&t=636288197489630000' data-hover-src='/Home/ShowImage?id=21899&t=636288197495270000'>
    			<img alt="mbtv" src="/Home/ShowImage?id=21895&t=636288197489630000">
        </a>
</div>
            

</div>


        </header>

        
<div class="standardlayout clearfix" id="sitebody">
    
<div id="ColumnUserControl1" class="column   top_col clearfix  "  >
    <!--!!WidgetStart, vi-orderdata="0"  vi-hideonmobile="false" vi-widgetinstancedata="35"WidgetStart!!-->    

                <!--stopindex-->
                <div class=" main_menu_widget"><link href="/DefaultContent/Default/StyleBundleMegaMenuDropDown.cssbnd?v=CD_eN-fYJU8KKPigt6x-Ey-z8_WTsoZ7bqx2pLTZtXU1" rel="stylesheet"/>
<link href="/Project/Contents/Main/StyleBundleMegaMenuDropDown.cssbnd?v=sr9yOm4Fzu0OHguPtL6YsN1v-x5n1Fw9me6eN1-Hv9Q1" rel="stylesheet"/>
<nav class="regularmegamenu mainnav" id="menuContainer_35_0_87"><ul class="dropdownmenu clearfix"><li class="megamenu_first" id="dropdownrootitem1"><a class="dropdownrootitem1" href="/home" title="Home" data-navid="1" >Home</a></li><li class="megamenu_first" id="dropdownrootitem2"><a class="dropdownrootitem2" href="/city-services" title="Services" data-navid="4" >Services</a><div class="megamenu_container widthcontainer4col"><div class="inner_container"><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/open-city-hall" title="Open City Hall" data-navid="2441" >Open City Hall</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/boards-and-commissions" title="Boards and Commissions" data-navid="1353" >Boards and Commissions</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/boards-and-commissions/planning-commission" title="Planning Commission" data-navid="1367" >Planning Commission</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/boards-and-commissions/board-of-building-appeals" title="Board of Building Appeals" data-navid="1354" >Board of Building Appeals</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/boards-and-commissions/cultural-arts-commission" title="Cultural Arts Commission" data-navid="1355" >Cultural Arts Commission</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/boards-and-commissions/library-commission" title="Library Commission" data-navid="1357" >Library Commission</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/boards-and-commissions/parks-and-recreation-commission" title="Parks and Recreation Commission" data-navid="1358" >Parks and Recreation Commission</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/boards-and-commissions/parking-and-public-improvements-commission" title="Parking and Public Improvements Commission" data-navid="1359" >Parking and Public Improvements Commission</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/boards-and-commissions/los-angeles-county-west-vector-control-board-trustee" title="Los Angeles County West Vector Control Board Trustee" data-navid="2359" >Los Angeles County West Vector Control Board Trustee</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/city-clerk" title="City Clerk" data-navid="445" >City Clerk</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-clerk/city-council-meetings-agendas-and-minutes" title="City Council Meetings Agendas and Minutes" data-navid="1168" >City Council Meetings Agendas and Minutes</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/city-clerk/information-memos" title="Information Updates" data-navid="2403" >Information Updates</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/city-clerk/election-march-7-2016" title="Elections" data-navid="3533" >Elections</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-clerk/elections-2101" title="Elections History" data-navid="2101" >Election History</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/services/city-clerk/electronic-campaign-filing" title="Campaign Finance Disclosure Public Portal" data-navid="3577" target="_blank">Campaign Finance Disclosure Public Portal</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/services/statement-of-economic-interests" title="Statements of Economic Interests Public Portal" data-navid="3576" target="_self">Statements of Economic Interests Public Portal</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-clerk/municipal-code" title="Municipal Code" data-navid="456" >Municipal Code</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-clerk/boards-and-commissions" title="Boards and Commissions" data-navid="913" target="_self">Boards and Commissions</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-clerk/public-records-request-form" title="Public Records  " data-navid="455" >Public Records Requests</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/city-clerk/political-reform-act-information" title="Political Reform Act Information" data-navid="3470" >Political Reform Act Information</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/enterprise-systems-catalog" title="Enterprise Systems Catalog (SB 272)" data-navid="3512" >Enterprise Systems Catalog (SB 272)</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-clerk/contact-city-clerk" title="Contact City Clerk" data-navid="700" target="_blank">Contact City Clerk</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-clerk/faq" title="FAQ" data-navid="1105" >FAQ</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/city-clerk/2020-election-date-change" title="2020 Election Date Change" data-navid="3541" >2020 Election Date Change</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/services/municipal-lobbying" title="Municipal Lobbying" data-navid="3598" >Municipal Lobbying</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/community-development" title="Community Development" data-navid="52" >Community Development</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/community-development/building-and-safety" title="Building and Safety" data-navid="72" >Building and Safety</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/community-development/planning-zoning" title="Planning / Zoning" data-navid="56" >Planning / Zoning</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/community-development/traffic-engineering-public-parking" title="Traffic Engineering and Right of Way Division" data-navid="97" >Traffic Engineering / Public Parking</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/community-development/code-enforcement-and-residential-construction-officer-rco-" title="Code Enforcement / Residential Construction Officer" data-navid="87" >Code Enforcement / Residential Construction Officer</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/community-development/handouts-permits-and-forms" title="Handouts, Permits and Forms" data-navid="100" >Handouts, Permits and Forms</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/community-development/ordinance-update" title="Ordinance Update" data-navid="107" >Ordinance Update</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/community-development/toilet-retrofit-program" title="Toilet Retrofit Program Summary" data-navid="1940" >Toilet Retrofit Program</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/community-development/green-building-energy-conservation" title="Green Building &amp; Energy Conservation" data-navid="121" >Green Building &amp; Energy Conservation</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/blue-zones-project" title="Blue Zones Project" data-navid="1954" >Blue Zones Project</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/community-development/contact-community-development" title="Contact Community Development" data-navid="1084" target="_blank">Contact Community Development</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/community-development/faq" title="FAQ" data-navid="1085" >FAQ</a></li></ul></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/services/going-green" title="Environmental Sustainability" data-navid="1506" >Environmental Sustainability</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/services/going-green/sustainable-mb-a-historical-view" title="Sustainable MB - A Historical View" data-navid="3545" >Sustainable MB - A Historical View</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/services/going-green/manhattan-beach-moves-towards-sustainability" title="Manhattan Beach Moves Towards Sustainability" data-navid="1582" >Manhattan Beach Moves Towards Sustainability </a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/services/going-green/breathe-free-mb-smoke-free-public-areas" title="Breathe Free MB: Smoke-Free Public Areas, Smoke-Free Multi-Unit Housing and Tobacco Retail Permit " data-navid="2225" >Breathe Free MB: Smoke-Free Public Areas</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/services/going-green/plastic-bag-ban-and-reusable-bag-program" title="Plastic Bag Ban and Reusable Bag Program" data-navid="1589" >Plastic Bag Ban and Reusable Bag Program</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/services/going-green/polystyrene-ordinance-and-bring-your-own-campaign" title="Polystyrene Ordinance and &quot;Bring Your Own!&quot; Campaign" data-navid="2310" >Polystyrene Ordinance and &quot;Bring Your Own!&quot; Campaign</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/services/going-green/how-can-you-go-green" title="How Can You Go Green?" data-navid="2069" >How Can You Go Green?</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/services/going-green/food-waste-recycling-program" title="Food Waste Recycling Program " data-navid="2448" >Food Waste Recycling Program </a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/services/going-green/green-business-program" title="Green Business Program" data-navid="2150" >Green Business Program</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/services/going-green/environmental-programs-meetings-events-and-news" title="Environmental Meetings, Events, and News" data-navid="1604" >Environmental Programs Meetings, Events, and News</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-officials/finance" title="Finance Department" data-navid="122" >Finance</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/finance/pay-parking-tickets" title="Pay Parking Tickets" data-navid="1369" target="_blank">Pay Parking Tickets</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/finance/pay-water-bills" title="Pay Your Water/Refuse Bill Online" data-navid="1120" target="_blank">Pay Water Bills </a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/finance/revenue-services" title="Revenue Services Division" data-navid="1091" >Revenue Services</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/finance/city-treasurer" title="City Treasurer" data-navid="261" target="_self">City Treasurer</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/finance/finance-subcommittee" title="Finance Subcommittee" data-navid="2089" >Finance Subcommittee</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/finance/budget-and-accounting" title="Budget and Accounting" data-navid="146" >Budget and Accounting</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/finance/manhattan-beach-sales-tax-update" title="Quarterly Sales Tax Updates" data-navid="2423" >Quarterly Sales Tax Updates</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/finance/purchasing" title="Purchasing" data-navid="160" >Purchasing </a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/finance/contact-finance" title="Contact Finance" data-navid="1078" target="_blank">Contact Finance</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/fire-department" title="Fire Department" data-navid="123" >Fire Department</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/fire-calendar" title="Fire Calendar" data-navid="1779" >Fire Calendar</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/about-mbfd" title="About MBFD" data-navid="124" >About MBFD</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/listen-live" title="Listen Live" data-navid="2215" >Listen Live</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/events" title="Events" data-navid="2179" >Events</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/fire-photos" title="Fire Photos" data-navid="2195" >Fire Photos</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/fire-videos" title="Fire Videos" data-navid="2234" >Fire Videos</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/emergency-preparedness" title="Emergency Preparedness" data-navid="130" >Emergency Preparedness</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/emergency-plans" title="Emergency Plans" data-navid="1669" >Emergency Plans</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/public-safety-tips" title="Public Safety Tips" data-navid="131" >Public Safety Tips</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/fire-prevention" title="Fire Prevention" data-navid="136" >Fire Prevention</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/fire-department/reverse-911" title="Reverse 911" data-navid="142" target="_self">Reverse - 911</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/envelope-of-life" title="Envelope of Life" data-navid="141" >Envelope of Life</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/the-manhattan-beach-cert-program" title="The Manhattan Beach CERT Program" data-navid="1061" >The Manhattan Beach CERT Program</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/volunteer-reserve-firefighter-program" title="Volunteer Reserve Firefighter Program " data-navid="1320" >Volunteer Reserve Firefighter Program </a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/contact-fire" title="Contact Fire" data-navid="1106" target="_blank">Contact Fire</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/fire-department/faq" title="FAQ" data-navid="1108" >FAQ</a></li></ul></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/human-resources" title="Human Resources" data-navid="167" >Human Resources</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/human-resources/employment-opportunities" title="Employment Opportunities" data-navid="1017" >Employment Opportunities</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/how-to-apply" title="How to Apply" data-navid="1420" >How to Apply</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/human-resources/hiring-process" title="Hiring Process" data-navid="1421" >Hiring Process</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/human-resources/classification-and-compensation" title="Classification and Compensation" data-navid="170" >Classification and Compensation</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/human-resources/benefits" title="Benefits" data-navid="174" >Benefits</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/human-resources/contact-human-resources" title="Contact Human Resources" data-navid="1089" >Contact Human Resources</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/human-resources/faq" title="FAQ" data-navid="1019" >FAQ</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/information-technology" title="Information Technology" data-navid="262" >Information Technology</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/services/information-technology/broadband-survey" title="Broadband Survey" data-navid="3602" >Broadband Survey</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/information-technology/gis-program" title="GIS Program" data-navid="956" >GIS and Maps</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/information-technology/information-systems-master-plan" title="Information Systems Master Plan" data-navid="2231" >Information Systems Master Plan</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/information-technology/wifi-warning-disclaimer-and-terms" title="WiFi Warning, Disclaimer and Terms" data-navid="2172" >WiFi Warning, Disclaimer and Terms</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/mbtv" title="MBtv" data-navid="2354" >MBTV</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/parks-and-recreation" title="Parks and Recreation" data-navid="343" >Parks and Recreation</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/calendar-and-special-events" title="Calendar" data-navid="1192" >Calendar</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/family-fun-and-special-events" title="Special Events" data-navid="422" >Special Events</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/manhappenings-activity-guide" title="MANHAPPENINGS" data-navid="362" >MANHAPPENINGS</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/activity-registration" title="ACTIVITY REGISTRATION" data-navid="1857" >ACTIVITY REGISTRATION</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/sand-dune-reservations" title="SAND DUNE RESERVATIONS" data-navid="1889" target="_self">SAND DUNE RESERVATIONS</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/aquatics" title="Aquatics" data-navid="345" >Aquatics</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/sports-and-fitness/beach-volleyball-tournaments" title="Beach Volleyball" data-navid="407" >Beach Volleyball</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/cultural-arts" title="Cultural Arts" data-navid="381" >Cultural Arts</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/tennis" title="Tennis" data-navid="421" >Tennis</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/sports-and-fitness/tots" title="Tot" data-navid="406" >Tot</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/youth-programs-and-camps" title="Youth" data-navid="387" >Youth</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/sports-and-fitness/teen" title="Teen" data-navid="1033" >Teen</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/sports-and-fitness/adults" title="Adults" data-navid="404" >Adults</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/older-adults-program" title="Older Adults Program" data-navid="423" >Older Adults Program</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/parks-and-facilities" title="Parks and Facilities" data-navid="364" >Parks and Facilities</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/parks-and-recreation/department-information-2322" title="Department Information" data-navid="2322" >Department Information</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/contact-parks-and-recreation" title="Contact Parks and Recreation" data-navid="1086" target="_blank">Contact Parks and Recreation</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/parks-and-recreation/faq" title="FAQ" data-navid="1021" >FAQ</a></li></ul></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/police-department" title="Manhattan Beach Police Department" data-navid="177" >Police Department</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/police-department/about-mbpd" title="About the Manhattan Beach Police Department" data-navid="178" >About MBPD</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/police-department/news-and-bulletins" title="News and Bulletins" data-navid="1474" >News and Bulletins</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/police-department/sign-up-to-receive-public-safety-alerts" title="Nixle Public Safety Alerts" data-navid="2280" >Nixle Public Safety Alerts</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/police-department/alpr-privacy-policy" title="ALPR Privacy &amp; Usage Policy" data-navid="3523" target="_self">ALPR Privacy Policy</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/police-department/body-worn-audio-video-policy" title="Body Worn Audio &amp; Video Policy" data-navid="3529" target="_self">Body Worn Audio &amp; Video Policy</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/police-department/security-camera-registration" title="Security Camera Registration" data-navid="3485" >Security Camera Registration</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/police-department/about-mbpd/strategic-plan" title="Three-Year Strategic Plan (2016 - 2018)" data-navid="1479" >Strategic Plan</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/police-department/programs-and-services" title="Programs and Services" data-navid="188" >Programs and Services</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/police-department/public-safety-resources-and-tips" title="Public Safety Resources and Tips" data-navid="223" >Public Safety Resources and Tips</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/police-department/neighborhood-watch" title="Neighborhood Watch" data-navid="1980" >Neighborhood Watch</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/police-department/anonymous-tips" title="Anonymous Tips" data-navid="1718" >Anonymous Tips</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/police-department/employment" title="Employment" data-navid="251" >Employment</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/police-department/contact-police" title="Contact Police" data-navid="1081" target="_blank">Contact Police</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/police-department/faq" title="FAQ" data-navid="1083" >FAQ</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/public-works" title="Public Works" data-navid="276" >Public Works</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/new-manhattan-beach-library-project" title="New Manhattan Beach Library Project" data-navid="2032" >New Manhattan Beach Library Project</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/bid-opportunities" title="Bid Opportunities" data-navid="1996" >Bid Opportunities</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/engineering-division" title="Engineering Division" data-navid="277" >Engineering Division</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/maintenance-division" title="Maintenance Division" data-navid="300" >Maintenance Division</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/utilities-division" title="Utilities Division" data-navid="309" >Utilities Division</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/environmental-programs" title="Environmental Programs and Refuse Services" data-navid="324" >Environmental Programs</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/storm-watch" title="Storm Preparedness" data-navid="2464" >Storm Preparedness</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/request-a-service" title="Request a Service" data-navid="337" >Request a Service</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/links" title="Links" data-navid="336" >Links</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/construction-alerts" title="Construction Alerts" data-navid="1503" >Construction Alerts</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/capital-improvement-program" title="Capital Improvement Program" data-navid="1839" >Capital Improvement Program</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-services/private-utilities-companies" title="Private Utilities Companies" data-navid="3560" >Private Utilities Companies</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/contact-public-works" title="Contact Public Works" data-navid="1087" target="_blank">Contact Public Works</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/public-works/faq" title="FAQ" data-navid="1088" >FAQ</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/document-central" title="Document Central" data-navid="845" >Document Central</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-officials/permit-center" title="Permit Center" data-navid="3536" >Permit Center</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/social-media" title="Social Media" data-navid="3486" >Social Media</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/new-city-hall-hours" title="City Hours" data-navid="3481" >New City Hall Hours</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/terms-and-conditions" title="Terms and Conditions" data-navid="2296" >Terms and Conditions</a></li></ul></div></div></li><li class="megamenu_first" id="dropdownrootitem3"><a class="dropdownrootitem3" href="/city-officials" title="Government" data-navid="3" >Government</a><div class="megamenu_container widthcontainer4col"><div class="inner_container"><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/city-officials/city-council" title="City Council" data-navid="721" >City Council</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-council/city-council-meetings-agendas-and-minutes" title="City Council Meetings Agendas and Minutes" data-navid="1804" >City Council Meetings Agendas and Minutes</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-council-rules-of-decorum-and-civility-policy" title="City Council Rules of Decorum and Civility Policy" data-navid="3482" >City Council Rules of Decorum and Civility Policy</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-council/manhattan-beach-webcast" title="Manhattan Beach Webcast " data-navid="1805" >Manhattan Beach Webcast </a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-council/city-councilmember-assignments" title="City Council Assignments " data-navid="2387" >City Council Assignments and Committee Descriptions</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-council/city-council-strategic-plan/city-council-2015-strategic-plan" title="CITY COUNCIL STRATEGIC PLAN" data-navid="2456" >City Council Strategic Plan</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-council/ad-hoc-open-government-subcommittee" title="Sunshine Policy and Open Government Initiatives" data-navid="2064" >Sunshine Policy and Open Government Initiatives</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-council/elected-official-compensation" title="Elected Official Compensation" data-navid="1903" >Elected Official Compensation</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-council/fair-political-practices-commission-fppc-policy-for-tickets-and-passes" title="Fair Political Practices Commission (FPPC) Policy for Tickets and Passes" data-navid="2256" >Fair Political Practices Commission (FPPC) Policy for Tickets and Passes</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-council/mayor-s-youth-council" title="Mayor&#39;s Youth Council" data-navid="1991" >Mayor&#39;s Youth Council</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-council/contact-city-council-3501" title="Contact City Council" data-navid="3501" >Contact City Council</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-council/faq" title="FAQ" data-navid="1095" >FAQ</a></li></ul></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/city-officials/city-treasurer" title="City Treasurer" data-navid="720" >City Treasurer</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-treasurer/elected-official-compensation" title="Elected Official Compensation" data-navid="1904" >Elected Official Compensation</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-officials/city-manager" title="City Manager" data-navid="48" >City Manager</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-manager/community-survey" title="Community Survey" data-navid="2429" >Community Survey</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-manager/lax-airport-noise" title="LAX Airport Noise" data-navid="49" >LAX Airport Noise</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-manager/cable-television" title="Cable Television" data-navid="50" >Cable Television</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-manager/just-the-facts-copy" title="Just the Facts" data-navid="2466" >Just the Facts</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/government/city-manager/marine-avenue-oil-pipeline-maintenance-and-repair-work" title="Marine Avenue Oil Pipeline Maintenance and Repair Work" data-navid="3597" >Marine Avenue Oil Pipeline Maintenance and Repair Work</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/government/city-manager/playa-del-rey-traffic-changes" title="Playa del Rey Traffic Changes" data-navid="3583" >Playa Del Rey Traffic Changes</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-manager/contact-city-manager-s-office" title="Contact City Manager&#39;s Office" data-navid="458" >Contact City Manager&#39;s Office</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-manager/faq" title="FAQ" data-navid="1100" >FAQ</a></li></ul></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/city-officials/city-attorney" title="City Attorney" data-navid="46" >City Attorney</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/government/city-attorney/cannabis-and-marijuana-regulations" title="Cannabis and Marijuana Regulations" data-navid="3617" >Cannabis and Marijuana Regulations</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-attorney/claim-for-damages-to-person-or-property" title="Claim for Damages to Person or Property" data-navid="47" >Claim for Damages to Person or Property</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-attorney/contact-city-attorney" title="Contact City Attorney" data-navid="1102" >Contact City Attorney</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/city-officials/city-attorney/faq" title="FAQ" data-navid="1103" >FAQ</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-officials/mayor-s-welcome" title="Mayor&#39;s Welcome" data-navid="2317" >Mayor&#39;s Welcome</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-officials/city-manager/city-organizational-chart" title="City Organizational Chart" data-navid="2162" >City Organizational Chart</a></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/city-officials/contact-the-city" title="Contact the City" data-navid="2119" >Contact the City</a></li></ul></div></div></li><li class="megamenu_first" id="dropdownrootitem4"><a class="dropdownrootitem4" href="/residents" title="Residents" data-navid="5" >Residents</a><div class="megamenu_container widthcontainer4col"><div class="inner_container"><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/activity-registration" title="Activity Registration" data-navid="698" >Activity Registration</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/cash-key" title="Cash Key" data-navid="1363" target="_self">Cash Key</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/city-calendar-list-view" title="City Calendar - List View" data-navid="1631" >City Calendar - List View</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/city-calendar-month-view" title="City Calendar - Month View" data-navid="35" >City Calendar - Month View</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/city-services/community-news-and-updates" title="Community News and Updates" data-navid="43" >Community News and Updates</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/emergency-preparedness" title="Emergency Preparedness" data-navid="1823" >Emergency Preparedness</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/library" title="Library" data-navid="275" >Library</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/local-services" title="Local Services" data-navid="834" >Local Services</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/local-pet-services" title="Local Pet Services" data-navid="1111" target="_self">Local Pet Services</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/local-pet-services/lost-found-pets" title="Lost &amp; Found Pets" data-navid="1798" >Lost &amp; Found Pets</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/medical-services" title="Medical Services" data-navid="1576" >Medical Services</a></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/neighborhood-watch" title="Neighborhood Watch" data-navid="1571" >Neighborhood Watch</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/permit-center" title="Permit Center" data-navid="1008" >Permit Center</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/public-records-request" title="Public Records Requests" data-navid="2460" >Public Records Requests</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/service-request" title="Public Records and Service Requests" data-navid="822" >Public Records and Service Requests</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/public-safety-resources-and-tips" title="Public Safety Resources and Tips" data-navid="829" >Public Safety Resources and Tips</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/schools" title="Schools" data-navid="836" >Schools</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/volunteer-opportunities" title="Volunteer Opportunities" data-navid="1348" >Volunteer Opportunities</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/volunteer-opportunities/positions-currently-recruiting" title="Positions Currently Recruiting" data-navid="1349" >Positions Currently Recruiting</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/volunteer-opportunities/volunteers-calendar" title="Volunteers Calendar" data-navid="1350" >Volunteers Calendar</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/volunteer-opportunities/community-clean-up-days" title="Community Clean-Up Days" data-navid="1351" >Community Clean-Up Days</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/volunteer-opportunities/non-city-sponsored-events" title="Non-City Volunteer Opportunities" data-navid="1352" >Non-City Volunteer Opportunities</a></li></ul></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/about-us" title="About Us" data-navid="2257" >About Us</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/about-us/manhattan-beach-facts" title="Manhattan Beach Facts" data-navid="464" >Manhattan Beach Facts</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/about-us/census-data" title="Census Data" data-navid="465" >Census Data</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/about-us/history" title="History" data-navid="707" >History</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/about-us/city-recognized-holidays" title="City Recognized Holidays " data-navid="1758" >City Recognized Holidays </a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/about-us/weather-forecast" title="Weather Forecast" data-navid="1380" >Weather Forecast</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/about-us/photo-gallery" title="Photo Gallery" data-navid="1702" >Photo Gallery</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/about-us/terms-and-conditions" title="Terms and Conditions" data-navid="954" >Terms and Conditions </a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/residents/about-us/forward-to-a-friend" title="Forward to a Friend" data-navid="2031" >Forward to a Friend</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/mbtv" title="MBtv" data-navid="2384" >MBTV</a></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/residents/service-directory" title="Service Directory" data-navid="832" >Service Directory</a></li></ul></div></div></li><li class="megamenu_first" id="dropdownrootitem5"><a class="dropdownrootitem5" href="/businesses" title="Businesses" data-navid="6" >Businesses</a><div class="megamenu_container widthcontainer4col"><div class="inner_container"><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/businesses/doing-business-with-the-city" title="Doing Business With The City" data-navid="360" target="_self">Doing Business With The City</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/businesses/business-license-information" title="Licensing Information" data-navid="361" >Licensing Information</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/businesses/bid-opportunities" title="Bid Opportunities" data-navid="839" >Bid Opportunities</a></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/businesses/vendor-registration" title="Vendor Registration" data-navid="712" >Vendor Registration</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/businesses/accounts-payable-process" title="Accounts Payable Process" data-navid="713" >Accounts Payable Process</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/businesses/purchasing-city-surplus" title="Purchasing City Surplus" data-navid="714" >Purchasing City Surplus</a></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/businesses/planning-zoning" title="Planning / Zoning" data-navid="715" >Planning / Zoning</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/businesses/film-permit-application" title="Film Permit Application" data-navid="716" >Film Permit Application</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/businesses/sub-contractor-list" title="Sub-Contractor List" data-navid="717" target="_self">Sub-Contractor List</a></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/businesses/chamber-of-commerce" title="Chamber of Commerce" data-navid="718" >Chamber of Commerce</a></li></ul></div></div></li><li class="megamenu_first" id="dropdownrootitem6"><a class="dropdownrootitem6" href="/visitors" title="Visitors" data-navid="7" >Visitors</a><div class="megamenu_container widthcontainer4col"><div class="inner_container"><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/visitors/maps-and-directions" title="Maps and Directions" data-navid="703" >Maps and Directions</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/visitors/maps-and-directions/public-transportation" title="Public Transportation" data-navid="1732" >Public Transportation</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/visitors/parks-and-facilities" title="Parks and Facilities" data-navid="705" >Parks and Facilities</a></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/visitors/city-calendar-month-view" title="City Calendar - Month View" data-navid="1771" >City Calendar - Month View</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/visitors/city-recognized-holidays" title="City Recognized Holidays " data-navid="1769" >City Recognized Holidays </a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/visitors/photo-gallery" title="Photo Gallery" data-navid="1377" >Photo Gallery</a></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/visitors/shopping-in-manhattan-beach" title="Shopping in Manhattan Beach" data-navid="710" >Shopping in Manhattan Beach</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/visitors/dining-in-manhattan-beach" title="Dining in Manhattan Beach" data-navid="711" >Dining in Manhattan Beach</a></li><li class="megamenu_level1"><a class="megamenu_level1" href="/visitors/staying-in-manhattan-beach" title="Staying in Manhattan Beach " data-navid="2063" >Staying in Manhattan Beach </a></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/visitors/discover-manhattan-beach-video" title="Discover Manhattan Beach" data-navid="3592" >Discover Manhattan Beach </a></li></ul></div></div></li><li class="megamenu_first" id="dropdownrootitem7"><a class="dropdownrootitem7" href="/i-want-to-" title="I Want To..." data-navid="2" >I Want To...</a><div class="megamenu_container widthcontainer4col"><div class="inner_container"><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/i-want-to-/file" title="File" data-navid="2265" >File</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/file/police-report" title="Police Report" data-navid="2266" >Police Report</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/i-want-to-/find" title="Find" data-navid="2262" >Find</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/find/lost-pet" title="Lost Pet" data-navid="2264" target="_self">Lost Pet</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/find/property-information" title="Property Information" data-navid="2392" target="_self">Property Information</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/find/an-address" title="An Address" data-navid="2393" target="_self">An Address</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/find/a-parcel-report" title="A Parcel Report" data-navid="2394" target="_self">A Parcel Report</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/find/a-printable-map" title="A Printable Map" data-navid="2395" target="_self">A Printable Map</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/i-want-to-/learn-about" title="Learn About" data-navid="2259" >Learn About</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/learn-about/municipal-code" title="Municipal Code" data-navid="2328" target="_self">Municipal Code</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/learn-about/neighborhood-watch" title="Neighborhood Watch" data-navid="2260" target="_self">Neighborhood Watch</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/learn-about/volunteer-opportunities" title="Volunteer Opportunities" data-navid="2261" target="_self">Volunteer Opportunities</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/learn-about/new-library" title="New Library" data-navid="2287" target="_self">New Library</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/concerts-in-the-park" title="Summer Concerts" data-navid="2286" target="_self">Concerts in the Park</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/learn-about/mb-cares" title="MB CARES" data-navid="3537" >MB CARES</a></li></ul></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/i-want-to-/online-reservations" title="Make a Reservation" data-navid="1891" >Make a Reservation</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/online-reservations/facility-request" title="Facility Request" data-navid="2252" >Facility Request</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/online-reservations/sand-dune-reservations" title="Sand Dune Reservations" data-navid="1893" >Sand Dune Reservations</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/make-an-online-reservation/dial-a-ride" title="Dial-A-Ride" data-navid="2292" target="_self">Dial-A-Ride</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/fields" title="Fields" data-navid="2293" target="_self">Fields</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/online-reservations/tennis-court-reservations" title="Tennis Court Reservations" data-navid="2253" >Tennis Court Reservations</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/make-an-online-reservation/begg-pool" title="Begg Pool" data-navid="2294" target="_self">Begg Pool</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/i-want-to-/online-payments" title="Pay Online" data-navid="8" >Pay Online</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/online-payments/pay-contest-parking-ticket" title="Pay/Contest parking ticket" data-navid="18" >Pay/Contest parking ticket</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/online-payments/pay-your-water-bill" title="Pay a Water/Refuse bill" data-navid="19" target="_self">Pay a Water/Refuse bill</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/pay-online/enroll-in-autopay-e-bills" title="Enroll in Autopay/E-Bills" data-navid="3599" target="_self">Enroll in Autopay/E-Bills</a></li></ul></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/i-want-to/apply-for" title="Apply For" data-navid="9" >Apply For</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/permits-and-licenses/alarm-system-permit" title="Alarm System Permit" data-navid="1115" target="_self">Alarm System Permit</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/permits-and-licenses/animal-license" title="Animal License" data-navid="1327" target="_self">Animal License</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/permits-and-licenses/block-party-permit" title="Block Party Permit" data-navid="1117" target="_self">Block Party Permit</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/permits-and-licenses/building-permit" title="Building Permit" data-navid="12" >Building Permit</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/permits-and-licenses/business-license" title="Business License" data-navid="1326" >Business License</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/permits-and-licenses/film-permit" title="Film Permit" data-navid="1116" >Film Permit</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/permits-and-licenses/moving-van-permit" title="Moving Van Permit" data-navid="1121" target="_blank">Moving Van Permit</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/permits-and-licenses/planning-permit" title="Planning Permit" data-navid="11" >Planning Permit</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/permits-and-licenses/right-of-way-permit" title="Right of Way Permit" data-navid="1122" target="_self">Right of Way Permit</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/permits-and-licenses/sound-amplification-permit" title="Sound Amplification Permit" data-navid="1123" target="_self">Sound Amplification Permit</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/apply-for/special-event" title="Special Event" data-navid="2290" >Special Event</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/apply-for/street-banner" title="Street Banner" data-navid="2291" target="_blank">Street Banner</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/i-want-to-/register-for" title="Register For" data-navid="2276" >Register For</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/register-for/city-e-notifications" title="City E-Notifications" data-navid="2279" target="_self">City E-Notifications</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/register-for/nixle-public-safety-alerts" title="Nixle Public Safety Alerts" data-navid="2278" target="_self">Nixle Public Safety Alerts</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/register-for/reverse-911-alerts" title="Reverse 911 Alerts" data-navid="2277" target="_self">Reverse 911 Alerts</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/register-for/activities" title="Activities" data-navid="2288" target="_self">Activities</a></li></ul></li></ul><ul class="megamenu_column"><li class="megamenu_level1"><a class="megamenu_level1" href="/i-want-to-/report" title="Report" data-navid="2267" >Report</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/report/anonymous-crime-tip" title="Anonymous Crime Tip" data-navid="2268" target="_self">Anonymous Crime Tip</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/report/suspicious-activity" title="Suspicious Activity" data-navid="2269" target="_self">Suspicious Activity</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/report/an-issue" title="An Issue" data-navid="2398" target="_self">An Issue</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/i-want-to-/request" title="Request" data-navid="2273" >Request</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/request/administrative-review-for-a-parking-ticket" title="Administrative Review for a Parking Ticket" data-navid="2274" target="_self">Administrative Review for a Parking Ticket</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/request/copy-of-a-police-report" title="Copy of a Police Report" data-navid="2275" target="_self">Copy of a Police Report</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/request/hazardous-waste-disposal" title="Hazardous Waste Disposal" data-navid="2388" >Hazardous Waste Disposal</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/i-want-to-/view" title="View" data-navid="2270" >View</a><ul class="megamenu_level1"><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/view/agendas" title="eComment on an Agenda Item" data-navid="2397" target="_self">eComment on an Agenda Item</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/view/mbtv" title="MBtv" data-navid="2385" >MBTV</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/view/municipal-code" title="Municipal Code" data-navid="2329" target="_self">Municipal Code</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/view/strategic-plan" title="City Council Strategic Plan" data-navid="2271" target="_self">City Council Strategic Plan</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/view/police-department-strategic-plan" title="Police Department Strategic Plan" data-navid="2272" target="_self">Police Department Strategic Plan</a></li><li class="megamenu_level2"><a class="megamenu_level2" href="/i-want-to-/view/test" title="Interactive Map" data-navid="2295" target="_self">Interactive Map</a></li></ul></li><li class="megamenu_level1"><a class="megamenu_level1" href="/i-want-to/give-website-feedback-3574" title="Website Feedback" data-navid="3574" >Website Feedback</a></li></ul></div></div></li></ul><script>
$(function () {
 var menuContainer = $('#menuContainer_35_0_87')
 $(".dropdownmenu a[data-navid='43']", menuContainer).closest('.dropdownmenu>li').addClass('active');
});
</script></nav></div>


<script>
    /**********************************************************
    Dropdown Menu delay disappearance on mouse out
    *********************************************************/
    /*javascript to delay the disappearance of the menu when the user mouses out.  Uses jquery library.*/
    $(function () {
        

        var timer = null;
        var delay = 800; //change this number for shorter or longer delay

        
        //using megamenu
        var dropdowncontainer = '>.megamenu_container';
        var activePage = $(".mainnav .dropdownmenu > li.active");
        $(".mainnav > .dropdownmenu > li").hoverIntent(

            //what happens on hover over
             function () {
                 //end timer and stop hiding if they are mousing back in.
                 if (timer != null) {
                     clearTimeout(timer);
                     timer = null;
                 }
                 // Find the hovered menu's sub-menu
                 var $menu = $(this);
                 var $submenu = $(this).find(dropdowncontainer);

                 // hide any other submenus that are open
                 $('.mainnav > .dropdownmenu>li' + dropdowncontainer).not($submenu).css('display', 'none');
                 $('.mainnav > .dropdownmenu li.active').not($menu).not(activePage).removeClass('active');

                 // show current menu
                 $submenu.css('display', 'block');
                 $menu.addClass('active');
             },

            //what happens on mouse out
            function () {
                var $submenu = $(this).find(dropdowncontainer);
                var $menu = $(this);
                // delay disappearance
                var mouseDelay = $(this).data("mouseDelay") || delay;
                clearTimeout(timer);
                timer = setTimeout(function () {
                    $submenu.css('display', 'none'); $menu.not(activePage).removeClass('active');
                    clearTimeout(timer); timer = null;
                }, mouseDelay);
            }
        );
        
    });
</script>

<script>
    //$(function () 
    {
        var menuContainerID = "menuContainer_35_0_87";
        var menuContainer = $("#" + menuContainerID);
        
        function isIE(userAgent) {
            userAgent = userAgent || navigator.userAgent;
            return userAgent.indexOf("MSIE ") > -1 || userAgent.indexOf("Trident/") > -1;
        }

        function isIE9(userAgent) {
            userAgent = userAgent || navigator.userAgent;
            return userAgent.indexOf("MSIE 9") > -1;
        }

        function isTouchScreenEvent(event) {
            var _isTouchScreen = false;
            if ("ontouchstart" in window) {
                _isTouchScreen = true;
            } else if ("onpointerdown" in window) {
                _isTouchScreen = event.originalEvent.pointerType == "touch";
            } else if (window.MSPointerEvent) {
                _isTouchScreen = event.originalEvent.pointerType == event.originalEvent.MSPOINTER_TYPE_TOUCH; // 2 ; http://blogs.msdn.com/b/ie/archive/2011/09/20/touch-input-for-ie10-and-metro-style-apps.aspx
            } else {
            }
            return _isTouchScreen;
        }

        var _isIE = isIE();
        var _isIE9 = isIE9();
        var isMegaMenu = $('.megamenu_first', menuContainer).length > 0;
        var currentMenu = $('> ul.dropdownmenu > li.active', menuContainer);

        $(function () {
            if (currentMenu.length == 0)
                currentMenu = $('> ul.dropdownmenu > li.active', menuContainer);
        });

        if (("ontouchstart" in window   // Chrome & Safari (IOS) && Firefox
         || "onpointerdown" in window   // IE 11 
         || window.MSPointerEvent       // IE 10
         ) && ($(window).width() > 648)) {
            var eventName = "ontouchstart" in window ? "touchstart"
                          : "onpointerdown" in window ? "pointerdown"
                          : window.MSPointerEvent ? "MSPointerDown"
                          : "";
            if (eventName.length > 0) {                
                $('> ul.dropdownmenu  li>a[data-navid]', menuContainer).bind(eventName, function (event) {
                    
                    if (isTouchScreenEvent(event) == false) {
                        return true;
                    }
    
                    var currentLevelAnchor = $(this);
                    var currentLeveLi = currentLevelAnchor.closest("li");
                    var firstLevelLi = currentLevelAnchor.closest("li[id^='dropdownrootitem']");
                    var firstLevelAnchor = firstLevelLi.find(">a[data-navid]");
                    var inFirstLevel = currentLevelAnchor[0] == firstLevelAnchor[0];

                    var hasSubMenu = currentLevelAnchor.next("ul,div").length > 0;
                    if (hasSubMenu) {
                        $(this).closest("li").data("mouseDelay", 1);

                        // Menu is not selected
                        if (!firstLevelLi.hasClass('touch-active')) {                
                            if ($(this).attr("href")) {
                                $(this).attr("data-href", $(this).attr("href"));
                                $(this).attr("href", "javascript:void(0);");
                            }
                            $(menuContainer).find('.touch-active').removeClass('touch-active').not(currentMenu).removeClass('active');                           
                            
                            firstLevelLi.addClass('touch-active active');
                            currentLevelAnchor.addClass('touch-active active');
                            currentMenu.addClass("active");

                            $(' li:not(.touch-active)', menuContainer).not(firstLevelLi).removeClass('_current');    
                            $(' li:not(.touch-active) li', menuContainer).not(currentLeveLi).removeClass('_current');

                            $('> ul.dropdownmenu > li:not(.touch-active) > a[data-navid]', menuContainer).next().css('display', 'none');
                            $('> ul.dropdownmenu > li.touch-active > a[data-navid]', menuContainer).next().css('display', 'block');

                            event.preventDefault();
                        }
                            // Menu is selected
                        else {
                            if (inFirstLevel) {
                                // non clickable
                                if (currentLevelAnchor.attr('href') == undefined) {
                                    //has class touch-active and no link
                                    removeClassAndHideMenu();
                                    event.preventDefault();
                                } else if ($(this).attr("data-href")) { //clickable, but href have been moved to data.
                                    $(this).attr("href", $(this).attr("data-href"));
                                }
                            }
                            else {
                                if (isMegaMenu)
                                    return true;

                                if (!currentLeveLi.hasClass('touch-active')) {
                                    if ($(this).attr("href")) {
                                        $(this).attr("data-href", $(this).attr("href"));
                                        $(this).attr("href", "javascript:void(0);");
                                    }
                                    $(firstLevelLi).find('.touch-active').removeClass('touch-active').not(currentMenu).removeClass('active');
                                    currentLeveLi.parent().children("li._current").removeClass("_current");
                                    currentLeveLi.addClass('touch-active active _current');

                                    currentLevelAnchor.addClass('touch-active active');

                                    //$(' li:not(.touch-active)', menuContainer).not(firstLevelLi).removeClass('_current');    
                                    //$(' li:not(.touch-active) li', menuContainer).not(currentLeveLi).removeClass('_current');

                                    $(' li:not(.touch-active) > a[data-navid]', currentLeveLi.parent()).next().css('display', 'none');
                                    $('> li.touch-active > a[data-navid]', currentLeveLi.parent()).next().css('display', 'block');

                                    event.preventDefault();
                                } else {
                                    if (currentLevelAnchor.attr('href') == undefined) {
                                        //has class touch-active and no link
                                        removeClassAndHideMenu();
                                        event.preventDefault();
                                    } else if ($(this).attr("data-href")) {
                                        $(this).attr("href", $(this).attr("data-href"));
                                    }
                                }
                            }
                        }
                    }

                });
            }
        }

        

        function removeClassAndHideMenu() {
            $(menuContainer).find('a.touch-active, li.touch-active').removeClass('touch-active active');
            $('> ul.dropdownmenu > li > a[data-navid]', menuContainer).next().css('display', 'none');
            // If we don't change the menu item, we should keep the old one.
            if ($('> ul.dropdownmenu > li.active', menuContainer).length == 0) {
                currentMenu.addClass("active");
            }
        }

        $('body').bind(eventName, function (event) {
            if (isTouchScreenEvent(event) == false) {
                return true;
            }
            if (!$(event.target).closest('li.touch-active').length) {
                removeClassAndHideMenu();
            }
        });
    }
    //);
</script>
                
                <!--startindex-->
                <!--!!WidgetEnd-->

    
</div>

    
<div id="ColumnUserControl2" class="column   left_col  "  >
    <!--!!WidgetStart, vi-orderdata="0"  vi-hideonmobile="false" vi-widgetinstancedata="36"WidgetStart!!-->    

                <!--stopindex-->
                

<nav id='leftNav_36_0_87' class='nocontent sidenav mobile_list   '>
    <h2 class="mobile_only mobile_header">Jump to subpage...</h2>
    <ul><li><a href='http://www.citymb.info/residents/activity-registration' >Activity Registration</a></li><li><a href='http://www.citymb.info/residents/cash-key' target='_self'>Cash Key</a></li><li><a href='http://www.citymb.info/city-services/city-calendar-list-view' >City Calendar - List View</a></li><li><a href='http://www.citymb.info/city-services/city-calendar-month-view' >City Calendar - Month View</a></li><li class="sidenav_current"><a href='http://www.citymb.info/city-services/community-news-and-updates' >Community News and Updates</a></li><li><a href='http://www.citymb.info/residents/emergency-preparedness' >Emergency Preparedness</a></li><li><a href='http://www.citymb.info/residents/library' >Library</a></li><li><a href='http://www.citymb.info/residents/local-services' >Local Services</a></li><li class="sidenav_haschildren"><a href='http://www.citymb.info/residents/local-pet-services' target='_self'>Local Pet Services</a></li><li><a href='http://www.citymb.info/residents/medical-services' >Medical Services</a></li><li><a href='http://www.citymb.info/residents/neighborhood-watch' >Neighborhood Watch</a></li><li><a href='http://www.citymb.info/residents/permit-center' >Permit Center</a></li><li><a href='http://www.citymb.info/residents/public-records-request' >Public Records Requests</a></li><li><a href='http://www.citymb.info/residents/service-request' >Public Records and Service Requests</a></li><li><a href='http://www.citymb.info/residents/public-safety-resources-and-tips' >Public Safety Resources and Tips</a></li><li><a href='http://www.citymb.info/residents/schools' >Schools</a></li><li class="sidenav_haschildren"><a href='http://www.citymb.info/residents/volunteer-opportunities' >Volunteer Opportunities</a></li><li class="sidenav_haschildren"><a href='http://www.citymb.info/residents/about-us' >About Us</a></li><li><a href='http://www.citymb.info/residents/mbtv' >MBTV</a></li><li><a href='http://www.citymb.info/residents/service-directory' >Service Directory</a></li></ul>
</nav>

                
                <!--startindex-->
                <!--!!WidgetEnd-->

    
</div>

    
<div id="ColumnUserControl3" class="column   right_col  "  >
    <!--!!WidgetStart, vi-orderdata="0"  vi-hideonmobile="false" vi-widgetinstancedata="37"WidgetStart!!-->    

<a id="pagebody"></a>
<header id="widget_37_0_87" class="title_widget clearfix  " >
    
    <!--stopindex-->
    <p class="breadcrumb">
        <a href="/residents">Residents</a> 
    </p>
    <!--startindex-->
    
    <h1><span>Community News and Updates</span></h1>
    
    <!--stopindex-->
    <div class="title_right">
        
        <a class="printer_friendly" href="javascript:window.print();" title="Click to print this page">Print</a>
        
        <a class="thickbox feedback_link" title="Click to submit an email to feedback" href="javascript:void(0);">Feedback</a>
        
        <script type="text/javascript">
            function shareLink(shareType) {
                var shareUrl = "";
                var shareTitle = document.itemTitle ? encodeURIComponent(document.itemTitle.trim()).replace(/[!'()*]/g, escape) : "Community+News+and+Updates";
                switch (shareType) {
                    case "facebook":
                        shareUrl = "http://www.facebook.com/sharer.php?u=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter&t=" + shareTitle;
                        break;
                    case "gplus":
                        shareUrl = "https://plus.google.com/share?url=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter";
                        if (shareUrl.length > 0) window.open(shareUrl, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');
                        return;
                        break;
                    case "linkedin":
                        shareUrl = "http://www.linkedin.com/shareArticle?mini=true&url=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter&title=" + shareTitle;
                        break;
                    case "twitter":
                        //Below link works in iOS and other OS
                        shareUrl = "https://twitter.com/intent/tweet?url=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter&text=Community+News+and+Updates+%7c+";
                        break;
                    case "delicious":
                        shareUrl = "https://secure.delicious.com/login?noui=yes&v=4&jump=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter%26title%3D" + shareTitle + "%26notes%3D%26tags%3D%26v%3D4%26noui%3D%26share%3Dyes%26jump%3Dclose%26time%3D1239993443";
                        break;
                    case "myspace":
                        shareUrl = "http://www.myspace.com/Modules/PostTo/Pages/?u=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter&t=" + shareTitle + "&c=";
                        break;
                    case "googlebookmark":
                        shareUrl = "http://www.google.com/bookmarks/mark?op=add&bkmk=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter&title=" + shareTitle;
                        break;
                    case "stumbleupon":
                        shareUrl = "http://www.stumbleupon.com/submit?url=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter&title=" + shareTitle;
                        break;
                    case "digg":
                        shareUrl = "http://digg.com/submit/?url=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter";
                        break;
                    case "tumblr":
                        shareUrl = "https://www.tumblr.com/share/link?url=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter&name=" + shareTitle;
                        break;
                    case "reddit":
                        shareUrl = "http://www.reddit.com/submit?url=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter&title=" + shareTitle;
                        break;
                }
                if (shareUrl.length > 0) window.open(shareUrl, "_blank");
            }
        </script>
        <div id="share">
            <a class="sharelink" href="javascript:void(0);" title="Click to expand Share & Bookmark options" aria-haspopup="true" aria-expanded="false" aria-labelledby="share-desciption">Share & Bookmark</a>
            <span id="share-desciption" class="wcag_only" >Press Enter to show all options, press Tab go to next option</span>
            <ul class="no_external_url_indication">
                <li>
                    
                    <a title="Click to submit an email online" href="javascript:void(0);" class="shareemail send_share_email">Email</a>
                    
                </li>
                <li><a title="Click to share with Facebook" href="javascript:shareLink('facebook')" class="sharefacebook">Facebook</a></li>
                <li><a title="Click to share with Google+" href="javascript:shareLink('gplus')" class="sharegoogleplus">Google+</a></li>
                <li><a title="Click to share with LinkedIn" href="javascript:shareLink('linkedin')" class="sharelinkedin">LinkedIn</a></li>
                <li><a title="Click to share with Twitter" href="javascript:shareLink('twitter')" class="sharetwitter">Twitter</a></li>
                
                
                
                
                
                
                <li><a title="Click to share with Reddit" href="javascript:shareLink('reddit')" class="sharereddit">Reddit</a></li>
            </ul>
        </div>
        
        <div class="font_size">
            <a href="javascript:void(0);" title="default font size" class="text_size">Font Size:</a>
            <a href="javascript:void(0);" title="larger font size" class="font_larger">+</a>
            <a href="javascript:void(0);" title="smaller font size" class="font_smaller">-</a>
        </div>
        
    </div>
    <!--startindex-->

    
</header>
<script type="text/javascript">
    $(function () {
        var widgetContext = "widget_37_0_87";

        $("#" + widgetContext + " #share").click(function () {
            if (!$("#" + widgetContext + " div#share").hasClass("click-active"))
                $("#" + widgetContext + " div#share").find("ul").show();
            else
                $("#" + widgetContext + " div#share").find("ul").hide();
        });

        $("div").click(function () {
            if ($("#" + widgetContext + " div#share").hasClass("click-active")) {
                $("#" + widgetContext + " div#share").find("ul").hide();
            }
        });

        $(document).click(function (e) {
            if (!$(e.target).closest("#share").length > 0) {
                $("#" + widgetContext + " div#share").removeClass("click-active");
                $("#" + widgetContext + " div#share").find("ul").hide();
            }
        });

        var shareContainerTimeout = null;
        $("#" + widgetContext + " #share").bind('mouseover', function () {
            //If not relate to click event
            if (shareContainerTimeout) {
                clearTimeout(shareContainerTimeout);
                shareContainerTimeout = null;
            }
            shareContainerTimeout = setTimeout(function () {
                if (!$("#" + widgetContext + " div#share").hasClass("click-active"))
                    $("#" + widgetContext + " div#share").find("ul").show();
            }, 100);
        });

        $("#" + widgetContext + " #share").bind('mouseleave', function () {            
            //If not relate to click event     
            if (shareContainerTimeout) {
                clearTimeout(shareContainerTimeout);
                shareContainerTimeout = null;
            }
            shareContainerTimeout = setTimeout(function () {
                if (!$("#" + widgetContext + " div#share").hasClass("click-active"))
                    $("#" + widgetContext + " div#share").find("ul").hide();
            }, 200);
        });

        $("header#" + widgetContext + " a.feedback_link").click(function () {
            var windowHeight = 485;
            if (window.innerWidth <= 648) {
                windowHeight = 545;
            }
            var opts = {
                title: "Feedback",
                url: "/Template/GetFeedbackPartial?feedbackUrl=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter",
                useFrame: true,
                height: windowHeight,
                onClosed: function (result) {
                    if (result != undefined && result.IsOk == true) {
                        $.refreshTempMessage(result.Message);
                    }
                },
                skin: 'viClientDialog feedback_lightbox',
                fixed: false
            };
            $.viClientDialog(opts).open();
        });

        //Safari iOS: No click event
        $("header#" + widgetContext + " a.send_share_email").bind("click touchstart", function () {
            var shareEmailTitle = document.itemTitle ? encodeURIComponent(document.itemTitle.trim()).replace(/[!'()*]/g, escape) : "Community+News+and+Updates";
            var opts = {
                title: "Click to submit an email online",
                url: "/Template/GetShareEmailPartial?shareUrl=http%3a%2f%2fwww.citymb.info%2fHome%2fComponents%2fNews%2fNews%2f3313%2f%3futm_source%3ddlvr.it%26utm_medium%3dtwitter" + "&shareTitle=" + shareEmailTitle,
                useFrame: true,
                height: 485,
                onClosed: function (result) {
                    if (result != undefined && result.IsOk == true) {
                        $.refreshTempMessage(result.Message);
                    }
                },
                skin: 'viClientDialog send_share_email_lightbox',
                fixed: false
            };
            $.viClientDialog(opts).open();
        });

        

    });
</script>

            <!--!!WidgetEnd-->

    <!--!!WidgetStart, vi-orderdata="0"  vi-hideonmobile="false" vi-widgetinstancedata="38"WidgetStart!!-->    
<div id='widget_38_2133_87' class='content_area normal_content_area clearfix  '><a href="/home/showdocument?id=17979" target="_blank">City Newsletter</a>&nbsp;(PDF)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.citymb.info/city-services/community-news-and-updates/-arch-1/-selcat-1" target="_blank">Archived&nbsp;City Newsletters</a>
<div class="downloadmessage no_external_url_indication">
	<p>
		Free viewers are required for some of the attached documents.<br />They can be downloaded by clicking on the icons below.
	</p>
    <a href="http://get.adobe.com/reader/" target="_blank" class="acrobat_reader_downloadmessage" title="Download Acrobat Reader">
        <span>Acrobat Reader</span>
        <img src="/DefaultContent/Default/_gfx/downloadmessage/acrobat.jpg" alt ="" />
    </a>
    <a href="https://get.adobe.com/flashplayer/" target="_blank" class="flashplayer_downloadmessage" title="Download Flash Player">
        <span>Flash Player</span>
        <img  src="/DefaultContent/Default/_gfx/downloadmessage/flash.jpg" alt=""/>
    </a>
    <a href="https://support.apple.com/downloads/quicktime" target="_blank" class="quicktime_downloadmessage" title="Download QuickTime">
        <span>QuickTime</span>
        <img  src="/DefaultContent/Default/_gfx/downloadmessage/quicktime.jpg" alt=""/>
    </a>
    <a href="http://windows.microsoft.com/en-us/windows/windows-media-player" target="_blank" class="windows_media_player_downloadmessage" title="Download Windows Media Player">
        <span>Windows Media Player</span>
        <img  src="/DefaultContent/Default/_gfx/downloadmessage/wmp.jpg" alt=""/>
    </a>
    <span class="line-breaker" style="display:none;"></span>
    <a href="http://www.microsoft.com/getsilverlight/get-started/install/default.aspx" target="_blank" class="silverlight_downloadmessage" title="Download Microsoft Silverlight">
        <span>Microsoft Silverlight</span>
        <img  src="/DefaultContent/Default/_gfx/downloadmessage/silverlight.jpg" alt=""/>
    </a>
    <a href="https://products.office.com/en-US/office-online/documents-spreadsheets-presentations-office-online" target="_blank" class="word_downloadmessage" title="Download Word Viewer">
        <span>Word Viewer</span>
        <img  src="/DefaultContent/Default/_gfx/downloadmessage/word.jpg" alt=""/>
    </a>
    <a href="https://products.office.com/en-US/office-online/documents-spreadsheets-presentations-office-online" target="_blank" class="excel_downloadmessage" title="Download Excel Viewer">
        <span>Excel Viewer</span>
        <img  src="/DefaultContent/Default/_gfx/downloadmessage/excel.jpg" alt=""/>
    </a>
    <a href="https://products.office.com/en-US/office-online/documents-spreadsheets-presentations-office-online" target="_blank" class="powerpoint_downloadmessage" title="Download PowerPoint Viewer">
        <span>PowerPoint Viewer</span>
        <img  src="/DefaultContent/Default/_gfx/downloadmessage/powerpoint.jpg" alt=""/>
    </a>
</div>





</div>
            <!--!!WidgetEnd-->

    <!--!!WidgetStart, vi-orderdata="0"  vi-hideonmobile="false" vi-widgetinstancedata="39"WidgetStart!!-->    
<div class="need_hide_detail_widget  news_widget content_area clearfix"><script> document.title = $.htmlDecode('Hurricane Harvey Relief Efforts | Community News and Updates | City of Manhattan Beach'); document.itemTitle = $.htmlDecode('Hurricane Harvey Relief Efforts');</script><h2 class="detail-title">Hurricane Harvey Relief Efforts</h2><div class="detail-list"><span class="detail-list-label">Post Date:</span><span class="detail-list-value">08/31/2017 1:44 PM</span></div>
        <ul class="formlist custom_fields">
               
        </ul>
        <div class="detail-content"><p>Last weekend, Hurricane Harvey began its massive destruction of South Texas. As the world watched, it became clear that tens of thousands of lives in and around the Houston area would be impacted for years. When Americans experience crisis and heartbreak, people in America do what we always do – we respond. It began with the thousands of boats in and around the flooded areas, rescuing people from their homes. The Red Cross and others are already in the area, but the impacted areas will need so much more. Now the first stage of relief begins.</p>
<p>The Manhattan Beach Unified School District and the City of Manhattan Beach, along with service organizations, churches, and residents, have started the ACT campaign – Aid Cleveland Texas Now.&nbsp; Cleveland, Texas, a small town of 8,000 residents, is just one of the many communities around Houston that went underwater. The Cleveland Independent School District, which has been closed for the past week, serves 4,100 students – 85% of whom are on meal assistance plans. Why Cleveland? We know about it because it is the hometown of Dr. Ben Dale, Mira Costa’s principal. Manhattan Beach has a personal connection in Texas, and we hope to be able to serve this small community in a time of need.</p>
<p>After speaking with residents and leaders of Cleveland, we are collecting items which they have indicated will be their greatest immediate need. ACT will deliver them to Cleveland next week. Please find the site nearest you to donate.</p>
<p>Collection events will take place Tuesday &amp; Wednesday, September 5 &amp; 6, 2017 at the following locations/times.</p>
<ul>
    <li>Manhattan Beach City Hall Parking Lot, 1400 Highland Avenue from 8:00 AM – 5:00 PM (enter parking lot off of 15th Street)</li>
    <li>Mira Costa High School – 1401 Artesia Boulevard from 5:00 PM – 9:00 PM</li>
    <li>Manhattan Beach Middle School – 1501 N. Redondo Avenue from 5:00 PM – 9:00 PM</li>
    <li>Grand View Elementary – 455 24th Street from 5:00 PM – 9:00 PM</li>
    <li>Meadows Elementary – 1200 Meadows Avenue from 5:00 PM – 9:00 PM</li>
    <li>Pacific Elementary – 1200 Pacific Avenue from 5:00 PM – 9:00 PM</li>
    <li>Pennekamp Elementary – 110 S. Rowell Avenue from 5:00 PM – 9:00 PM</li>
    <li>Robinson Elementary – 80 S. Morningside Drive from 5:00 PM – 9:00 PM</li>
</ul>
<p>Please see the <a href="/home/showdocument?id=29820" target="_blank">ACT Hurricane Relief Event Flyer</a> (PDF) for details of the types of items needed.</p>
<p>Thank you for your support!</p></div><a href="/city-services/community-news-and-updates/-utm_source-dlvr.it/-utm_medium-twitter" class='detail-more'>Return to full list >></a></div>
            <!--!!WidgetEnd-->

    
</div>

</div> 

        <footer id="page_footer" class="">
            <!--stopindex-->
            
<div id="footercolumn" class="site_template_column  footer_column   " >
  
 
 <div class="col-sm-4">
    <div class="footer_address">
       <p>
<a href="#">1400 Highland Avenue<br>
Manhattan Beach, CA 90266</a>
</p>
    </div>
</div>
            
  
<div class="col-sm-3">
    <div class="footer_phone">
        (<a href="tel:3108025000">310) 802-5000</a>
    </div>
</div>
                    
            

<div class="col-sm-5">
    <div class="social_icons">
    		<a href="https://twitter.com/citymb" target="_blank" title="">
    			<img src="/Home/ShowImage?id=21933&t=636288198163870000" alt="tw_footer" />
    		</a>
    		<a href="https://www.facebook.com/citymb" target="_blank" title="">
    			<img src="/Home/ShowImage?id=21927&t=636288198155430000" alt="fb_footer" />
    		</a>
    		<a href="https://www.youtube.com/user/cityofmb" target="_blank" title="">
    			<img src="/Home/ShowImage?id=22049&t=636294056060730000" alt="yt_footer (1)" />
    		</a>
    		<a href="/city-officials/police-department/sign-up-to-receive-public-safety-alerts" target="_blank" title="">
    			<img src="/Home/ShowImage?id=22069&t=636306082603830000" alt="nixle-footer" />
    		</a>
    		<a href="/city-services/mbtv" target="_blank" title="">
    			<img src="/Home/ShowImage?id=21929&t=636288198158400000" alt="mbtv_footer" />
    		</a>
    </div>
</div>
            

                <!--stopindex-->
                  

    <div class="footer_nav">
        
    		<a href="/home" target="_self">Home</a>		
    		<a href="/city-services" target="_self">Services</a>		
    		<a href="/city-officials" target="_self">Government</a>		
    		<a href="/residents" target="_self">Residents</a>		
    		<a href="/businesses" target="_self">Business</a>		
    		<a href="/visitors" target="_self">Visitors</a>		
    		<a href="/i-want-to-" target="_self">I Want To...</a>		
    		<a href="/city-officials/contact-the-city" target="_self">Contact Us</a>		
    		<a href="/city-services/sitemap" target="_self">Sitemap</a>		
    </div>
    <p class="footer_copyright">Created by <a class="vision_link" target="_blank" href="http://visioninternet.com/sitecredit">Vision</a> - Where Communities & Government Meet</p>

                <!--startindex-->
            

</div>

            <!--startindex-->
        </footer>
        <div id="view-options"><a href="javascript:void(0);" id="view-full" onclick="viewfullsite()" class="mobile_only">View Full Site</a></div>
    </div>
</div>

<script src="/Project/Contents/Main/mobile_nav_scripts.js" type="text/javascript"></script>

    
    <script>
        $(function () {
            $(".reComment[comment]").removeClass("reComment")
                                    .removeAttr("comment")
                                    .removeAttr("author")
                                    .removeAttr("title")
                                    .removeAttr("timestamp");
        })
    </script>
    

    

    <script src="/Scripts/ScriptBundleVisionFrontend.jsbnd?v=_ksrOkVYKeZ3VSJz7KOtV91wROad6Wqu1zCOxHVaYUI1"></script>


    <script type="text/javascript">
  (function () {
    var tagjs = document.createElement("script");
    var s = document.getElementsByTagName("script")[0];
    tagjs.async = true;
    tagjs.src = "//s.btstatic.com/tag.js#site=6EeDEhH";
    s.parentNode.insertBefore(tagjs, s);
  }());
</script>
<script>
    $("body").addClass("night_theme");
</script>
<noscript>
  <iframe src="//s.thebrighttag.com/iframe?c=6EeDEhH" width="1" height="1" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</noscript>
    
    <script>
        try { manualRenderMobile(); } catch (err) {}
    </script>
    
    <script src="/Scripts/ScriptBundleKendo.jsbnd?v=IiVUWeFghEcfq5UT-a337Y4jRYXiiP_YUrkfqq53tqw1"></script>

    <script src="/Scripts/Components/ScriptsFEBundle.jsbnd?v=pEgtsyOL6etoOcjZfH0qpaPz3RVCNoBfsfXBHju_Nmo1"></script>
<script src="/Scripts/Engagement/ScriptsFEBundle.jsbnd?v=kXTU83OlTD6tpgnpXYKkXqgGVcifiKKdnSQHEq9nbro1"></script>

    <script>
        $(function() {
            var sitewrapper = $(".sitewrapper");
            if(sitewrapper.length && !sitewrapper.hasClass("")) {
                sitewrapper.addClass("");
            }
        });
    </script>

    
</body>
</html>
