img_details
1 July 2015
ADR: Fiumicino, positive trend in air quality in the areas struck by fire
ADR confirms that all the values detected since the beginning of air quality analysis have always remained below the thresholds indicated for workplaces. Furthermore, a downwards trend has been recorded, as is also confirmed by CNR studies.

ADR confirms that all the values detected since the beginning of air quality analysis have always remained below the thresholds indicated for workplaces. Furthermore, a downwards trend has been recorded, as is also confirmed by CNR studies. Nonetheless, ADR undertook all the precautionary measures deliberated by Public Health authorities for the places concerned, in a manner that has been judged sufficient in the ISS – Istituto Superiore della Sanità report.

As from 19th June, as soon as the areas had been reopened, reclamation works are under way 24/7 in order to eliminate possible sources of emissions, under the responsibility of Belfor, a US-based company world leader in disaster recovery.

 

External Communication

Ph.: 06 6595 8153/ 4709/ 6046
Mob: 3355766591 / 3382098246 / 3357925286
pressoffice@adr.it

 
An error occurred while processing the template.
Java method "com.liferay.portal.kernel.theme.NavItem.hasBrowsableChildren()" threw an exception when invoked on com.liferay.portal.kernel.theme.NavItem object "com.liferay.portal.kernel.theme.NavItem@6bdce2"; see cause exception in the Java stack trace.

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #if navItem.hasBrowsableChildren()  [in template "10132#10165#21281541" in macro "buildNavigation" at line 25, column 5]
	- Reached through: @buildNavigation navItem=navigationEn...  [in template "10132#10165#21281541" at line 5, column 7]
----
1<#if entries?has_content> 
2  <div class="leftmenu"> 
3    <ul class="whitebg-menu nav nav-nested w-100"> 
4    <#list entries as navigationEntry> 
5      <@buildNavigation navItem=navigationEntry navCssClass=""/> 
6    </#list> 
7    </ul> 
8  </div> 
9</#if> 
10 
11<#macro buildNavigation navItem navCssClass> 
12  <#assign 
13    nav_item_css_class = "nav-link" 
14    nav_item_layout = navItem.getLayout() 
15    nav_item_href = navItem.getURL() 
16    nav_item_id = "nav" + navItem.getLayoutId() 
17    nav_item_title = navItem.getName() 
18  /> 
19  <#if navItem.isSelected() || navItem.isChildSelected() > 
20    <#assign 
21      nav_item_css_class = nav_item_css_class + " selected" 
22    /> 
23  </#if> 
24  <li class="${nav_item_css_class}"> 
25    <#if navItem.hasBrowsableChildren()> 
26		<#assign nav_collapse_id = "navCollapse" + nav_item_id/> 
27        <a aria-controls="${nav_collapse_id}" aria-expanded="true" class="collapse-icon ${nav_item_css_class}" href="${nav_item_href}" role="button"> 
28          ${nav_item_title} 
29          <span class="collapse-icon-closed icon-chevron-right"></span> 
30          <span class="collapse-icon-open icon-chevron-down"></span> 
31        </a> 
32		<#assign childNavigationClass="collapse" /> 
33		<#if navItem.isSelected()|| navItem.isChildSelected()> 
34			<#assign childNavigationClass="collapse show" /> 
35		</#if> 
36        <div class="${childNavigationClass}" id="${nav_collapse_id}" style=""> 
37          <ul class="nav nav-stacked"> 
38            <#list navItem.getChildren() as navChild> 
39              <@buildNavigation navItem=navChild navCssClass="" /> 
40            </#list>   
41          </u> 
42        </div> 
43    <#else> 
44        <a class="${nav_item_css_class} child-item" href="${nav_item_href}"> 
45          <span class="navbar-text-truncate">${nav_item_title}</span> 
46        </a> 
47    </#if>   
48  </li> 
49</#macro>