From: "Saved by Windows Internet Explorer 9"
Subject: Europa - IPM - Consultation
Date: Tue, 25 Feb 2014 08:46:39 +0100
MIME-Version: 1.0
Content-Type: multipart/related;
	type="text/html";
	boundary="----=_NextPart_000_0000_01CF3206.19C88D00"
X-MimeOLE: Produced By Microsoft MimeOLE V6.1.7601.17609

This is a multi-part message in MIME format.

------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: text/html;
	charset="utf-8"
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=charts&print=true&selection=

=EF=BB=BF<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" =
"http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" =
"http://www.w3.org/TR/html4/loose.dtd"><HTML=20
xmlns:i18n =3D "http://apache.org/cocoon/i18n/2.1"><HEAD>
<META content=3D"text/html; charset=3Dutf-8" =
http-equiv=3D"Content-Type">
<SCRIPT type=3D"text/javascript" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/scripts/jquery-1.4.2.min.j=
s"></SCRIPT>
<LINK rel=3D"stylesheet" type=3D"text/css" =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/css/custom-theme/jquery-u=
i-1.8.9.custom.css">
<SCRIPT =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/scripts/jquery-ui-1.8.4.cu=
stom.min.js"></SCRIPT>

<SCRIPT language=3D"javascript" type=3D"text/javascript" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/scripts/tree_generic.js"><=
/SCRIPT>

<SCRIPT language=3D"javascript" type=3D"text/javascript" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/scripts/tree_classic.js"><=
/SCRIPT>

<SCRIPT language=3D"javascript" type=3D"text/javascript" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/scripts/helpbox.js"></SCRI=
PT>

<SCRIPT language=3D"javascript" type=3D"text/javascript" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/scripts/print_v2.js"></SCR=
IPT>

<SCRIPT language=3D"javascript" type=3D"text/javascript" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/scripts/progressBar.js"></=
SCRIPT>
<LINK rel=3D"stylesheet" type=3D"text/css" =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/css/ipmprint.css">
<STYLE type=3D"text/css">=0A=
					@media print {=0A=
						.pgnone {=0A=
							page-break-before: auto;=0A=
						}=0A=
					=0A=
						.pgbrk {=0A=
							page-break-before: always;=0A=
						}=0A=
					}					=0A=
				</STYLE>
<TITLE>Europa - IPM - Consultation</TITLE>
<SCRIPT language=3D"javascript" type=3D"text/javascript">=0A=
				=0A=
						gOpenIcon=3D "openicon.gif";=0A=
						gFileIcon=3D "fileicon.gif";=0A=
						gFolderIcon=3D "foldericon.gif";=0A=
						gRoot=3D"images/";=0A=
					=0A=
					/** This variable is post to the xslt for printing the view in the =
same state */=0A=
					var selectionVar =3D '';=0A=
=0A=
					/**=0A=
					 * Adds or removes an id from the selection variable.=0A=
					 * This variable is post to the xslt for printing=0A=
					 * the view in the same state.=0A=
					 */=0A=
					function addOrRemoveFromSelection(id){=0A=
						if (selectionVar.indexOf(id) =3D=3D -1) {=0A=
							// The id is not registered, add them in the selection list=0A=
							selectionVar =3D selectionVar + id + ','; =0A=
						} else {=0A=
							// The id is in the selection list, remove it=0A=
							selectionVar =3D selectionVar.replace(id + ',', '');=0A=
						}=0A=
						return true;					=0A=
					}=0A=
					=0A=
					/**=0A=
					 * Initializes the selection variable with the expand=0A=
					 * all code.=0A=
					 */ =0A=
					function initSelectionWithExpandAll() {=0A=
						selectionVar =3D 'E_ALL,';=0A=
						return true;=0A=
					}=0A=
					=0A=
					/**=0A=
					 * Initializes the selection variable with the collapse=0A=
					 * all code.=0A=
					 */=0A=
					function initSelectionWithCollapseAll() {=0A=
						selectionVar =3D 'C_ALL,';=0A=
						return true;=0A=
					}=0A=
					=0A=
					/** =0A=
					 * This function expands and checks specified items of the tree. =
this function is especially useful to =0A=
					 * initialize state of a tree with previous selection (call this =
function in the "onload" event of the BODY tag)=0A=
					 * sID is a string including the ID of the branches to initialized. =
Comma is the separator (ex: "10200,10514,10721")=0A=
					 */=0A=
					function callSelectedBranches(sID) {=0A=
						var nID=3D sID.split(",");=0A=
						var j;=0A=
=0A=
						for(j=3D0; j < nID.length; j++) {=0A=
						   switch(nID[j]) {=0A=
							case 'E_ALL':=0A=
								// perform by the xslt=0A=
								initSelectionWithExpandAll();=0A=
								break;=0A=
							case 'C_ALL':=0A=
								initSelectionWithCollapseAll();=0A=
								break;=0A=
							case '':=0A=
								// if the sID end with a comma=0A=
								break;=0A=
							default:=0A=
								addOrRemoveFromSelection(nID[j]);=0A=
								manageTree(nID[j]);		=0A=
						   }=0A=
						}=0A=
						return true;=0A=
					}=0A=
					=0A=
					function print() {=0A=
						document.printform.selection.value =3D selectionVar;=0A=
						document.printform.submit();=0A=
					}=0A=
					=0A=
=0A=
					function getTriggeringAnswers(questionId) {=0A=
						var mapping =3D new Object();=0A=
						=0A=
							=
mapping['ID480164716131028813']=3D'ID475764316131028813;ID439463516131028=
813;ID448863716131028813;ID455863916131028813;'; =0A=
						=0A=
							=
mapping['ID547566316131028813']=3D'ID475764316131028813;ID439463516131028=
813;ID448863716131028813;ID455863916131028813;'; =0A=
						=0A=
							=
mapping['ID491565116131028813']=3D'ID475764316131028813;ID439463516131028=
813;ID448863716131028813;ID455863916131028813;ID462264116131028813;'; =0A=
						=0A=
							mapping['ID376894300551729613']=3D'ID371724042301729613'; =0A=
						=0A=
							=
mapping['ID094621817131028813']=3D'ID475764316131028813;ID439463516131028=
813;ID448863716131028813;ID455863916131028813;ID462264116131028813;'; =0A=
						=0A=
							mapping['ID129622617131028813']=3D'ID108622017131028813'; =0A=
						=0A=
							=
mapping['ID130823017131028813']=3D'ID475764316131028813;ID439463516131028=
813;ID448863716131028813;ID455863916131028813;ID462264116131028813;'; =0A=
						=0A=
							mapping['ID166823817131028813']=3D'ID147123217131028813;'; =0A=
						=0A=
							mapping['ID266926417131028813']=3D'ID235625417131028813'; =0A=
						=0A=
							mapping['ID364328617131028813']=3D'ID274726617131028813'; =0A=
						=0A=
							mapping['ID607334217131028813']=3D'ID280426817131028813'; =0A=
						=0A=
							mapping['ID847639817131028813']=3D'ID294027017131028813'; =0A=
						=0A=
							mapping['ID081447517131028813']=3D'ID305227217131028813'; =0A=
						=0A=
							mapping['ID324253317131028813']=3D'ID317927417131028813'; =0A=
						=0A=
							mapping['ID561858917131028813']=3D'ID323027617131028813'; =0A=
						=0A=
							mapping['ID801886517131028813']=3D'ID332027817131028813'; =0A=
						=0A=
							mapping['ID041092517131028813']=3D'ID347128017131028813'; =0A=
						=0A=
							mapping['ID287798517131028813']=3D'ID356228217131028813'; =0A=
						=0A=
							mapping['ID521804318131028813']=3D'ID235625417131028813'; =0A=
						=0A=
							mapping['ID570305518131028813']=3D'ID537004518131028813'; =0A=
						=0A=
							mapping['ID814911518131028813']=3D'ID546604718131028813'; =0A=
						=0A=
							mapping['ID055817018131028813']=3D'ID550204918131028813'; =0A=
						=0A=
							mapping['ID291322518131028813']=3D'ID561005118131028813'; =0A=
						=0A=
							mapping['ID533428018131028813']=3D'ID235625417131028813'; =0A=
						=0A=
							mapping['ID756432618131028813']=3D'ID544228218131028813'; =0A=
						=0A=
							mapping['ID991238118131028813']=3D'ID551828418131028813'; =0A=
						=0A=
							mapping['ID234143918131028813']=3D'ID564328618131028813'; =0A=
						=0A=
							mapping['ID472350118131028813']=3D'ID573428818131028813'; =0A=
						=0A=
							mapping['ID713155718131028813']=3D'ID581629018131028813'; =0A=
						=0A=
							mapping['ID950961318131028813']=3D'ID595729218131028813'; =0A=
						=0A=
							mapping['ID191267018131028813']=3D'ID609229418131028813'; =0A=
						=0A=
							mapping['ID436973018131028813']=3D'ID615129618131028813'; =0A=
						=0A=
							mapping['ID675681118131028813']=3D'ID625329818131028813'; =0A=
						=0A=
							mapping['ID912886618131028813']=3D'ID631930018131028813'; =0A=
						=0A=
							mapping['ID154992118131028813']=3D'ID640430218131028813'; =0A=
						=0A=
							mapping['ID399397618131028813']=3D'ID652730418131028813'; =0A=
						=0A=
							mapping['ID630403119131028813']=3D'ID663430618131028813'; =0A=
						=0A=
							mapping['ID872008919131028813']=3D'ID673230818131028813'; =0A=
						=0A=
							mapping['ID110914419131028813']=3D'ID684931018131028813'; =0A=
						=0A=
							mapping['ID357019919131028813']=3D'ID690431218131028813'; =0A=
						=0A=
							mapping['ID595025419131028813']=3D'ID706931418131028813'; =0A=
						=0A=
							mapping['ID834030919131028813']=3D'ID717531618131028813'; =0A=
						=0A=
							mapping['ID076136419131028813']=3D'ID725831818131028813'; =0A=
						=0A=
							mapping['ID315941919131028813']=3D'ID732132018131028813'; =0A=
						=0A=
							mapping['ID553647419131028813']=3D'ID743832218131028813'; =0A=
						=0A=
							mapping['ID820453719131028813']=3D'ID814653319131028813'; =0A=
						=0A=
							mapping['ID831654119131028813']=3D'ID802353119131028813'; =0A=
						=0A=
							mapping['ID101760319131028813']=3D'ID089659719131028813'; =0A=
						=0A=
							mapping['ID374066419131028813']=3D'ID356865819131028813'; =0A=
						=0A=
							mapping['ID472168619131028813']=3D'ID356865819131028813'; =0A=
						=0A=
							mapping['ID521969819131028813']=3D'ID356865819131028813'; =0A=
						=0A=
							mapping['ID743774419131028813']=3D'ID356865819131028813'; =0A=
						=0A=
							mapping['ID785575419131028813']=3D'ID775775019131028813'; =0A=
						=0A=
							=
mapping['ID847376819131028813']=3D'ID775775019131028813;ID750274619131028=
813'; =0A=
						=0A=
							mapping['ID888377819131028813']=3D'ID356865819131028813'; =0A=
						=0A=
							=
mapping['ID920378819131028813']=3D'ID918878419131028813;ID895378019131028=
813'; =0A=
						=0A=
							mapping['ID969579819131028813']=3D'ID918878419131028813'; =0A=
						=0A=
							mapping['ID027281219131028813']=3D'ID356865819131028813'; =0A=
						=0A=
							mapping['ID066682219131028813']=3D'ID058481819131028813'; =0A=
						=0A=
							=
mapping['ID129183619131028813']=3D'ID058481819131028813;ID039181419131028=
813'; =0A=
						=0A=
							mapping['ID167284619131028813']=3D'ID356865819131028813'; =0A=
						=0A=
							mapping['ID209485619131028813']=3D'ID195985219131028813'; =0A=
						=0A=
							=
mapping['ID261187019131028813']=3D'ID195985219131028813;ID174484819131028=
813'; =0A=
						=0A=
							mapping['ID303388019131028813']=3D'ID356865819131028813'; =0A=
						=0A=
							mapping['ID341189019131028813']=3D'ID339688619131028813'; =0A=
						=0A=
							=
mapping['ID407890419131028813']=3D'ID339688619131028813;ID316988219131028=
813'; =0A=
						=0A=
							mapping['ID448291419131028813']=3D'ID356865819131028813'; =0A=
						=0A=
							mapping['ID485692419131028813']=3D'ID470592019131028813'; =0A=
						=0A=
							mapping['ID540593819131028813']=3D'ID356865819131028813'; =0A=
						=0A=
							mapping['ID585694819131028813']=3D'ID570694419131028813'; =0A=
						=0A=
							mapping['ID646696219131028813']=3D'ID356865819131028813'; =0A=
						=0A=
							mapping['ID682797219131028813']=3D'ID679496819131028813'; =0A=
						=0A=
						return mapping[questionId].split(";");=0A=
					}=0A=
					=0A=
					function getAllTriggeringAnswers() {					=0A=
						var mapping =3D new Object();=0A=
						=0A=
							if (mapping['ID439463516131028813'] =3D=3D null) {=0A=
								mapping['ID439463516131028813']=3D'ID480164716131028813';=0A=
							} else {=0A=
								mapping['ID439463516131028813']+=3D';ID480164716131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID448863716131028813'] =3D=3D null) {=0A=
								mapping['ID448863716131028813']=3D'ID480164716131028813';=0A=
							} else {=0A=
								mapping['ID448863716131028813']+=3D';ID480164716131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID455863916131028813'] =3D=3D null) {=0A=
								mapping['ID455863916131028813']=3D'ID480164716131028813';=0A=
							} else {=0A=
								mapping['ID455863916131028813']+=3D';ID480164716131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID462264116131028813'] =3D=3D null) {=0A=
								mapping['ID462264116131028813']=3D'ID491565116131028813';=0A=
							} else {=0A=
								mapping['ID462264116131028813']+=3D';ID491565116131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID475764316131028813'] =3D=3D null) {=0A=
								mapping['ID475764316131028813']=3D'ID480164716131028813';=0A=
							} else {=0A=
								mapping['ID475764316131028813']+=3D';ID480164716131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID371724042301729613'] =3D=3D null) {=0A=
								mapping['ID371724042301729613']=3D'ID376894300551729613';=0A=
							} else {=0A=
								mapping['ID371724042301729613']+=3D';ID376894300551729613';=0A=
							}=0A=
						=0A=
							if (mapping['ID108622017131028813'] =3D=3D null) {=0A=
								mapping['ID108622017131028813']=3D'ID129622617131028813';=0A=
							} else {=0A=
								mapping['ID108622017131028813']+=3D';ID129622617131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID147123217131028813'] =3D=3D null) {=0A=
								mapping['ID147123217131028813']=3D'ID166823817131028813';=0A=
							} else {=0A=
								mapping['ID147123217131028813']+=3D';ID166823817131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID235625417131028813'] =3D=3D null) {=0A=
								mapping['ID235625417131028813']=3D'ID266926417131028813';=0A=
							} else {=0A=
								mapping['ID235625417131028813']+=3D';ID266926417131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID274726617131028813'] =3D=3D null) {=0A=
								mapping['ID274726617131028813']=3D'ID364328617131028813';=0A=
							} else {=0A=
								mapping['ID274726617131028813']+=3D';ID364328617131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID280426817131028813'] =3D=3D null) {=0A=
								mapping['ID280426817131028813']=3D'ID607334217131028813';=0A=
							} else {=0A=
								mapping['ID280426817131028813']+=3D';ID607334217131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID294027017131028813'] =3D=3D null) {=0A=
								mapping['ID294027017131028813']=3D'ID847639817131028813';=0A=
							} else {=0A=
								mapping['ID294027017131028813']+=3D';ID847639817131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID305227217131028813'] =3D=3D null) {=0A=
								mapping['ID305227217131028813']=3D'ID081447517131028813';=0A=
							} else {=0A=
								mapping['ID305227217131028813']+=3D';ID081447517131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID317927417131028813'] =3D=3D null) {=0A=
								mapping['ID317927417131028813']=3D'ID324253317131028813';=0A=
							} else {=0A=
								mapping['ID317927417131028813']+=3D';ID324253317131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID323027617131028813'] =3D=3D null) {=0A=
								mapping['ID323027617131028813']=3D'ID561858917131028813';=0A=
							} else {=0A=
								mapping['ID323027617131028813']+=3D';ID561858917131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID332027817131028813'] =3D=3D null) {=0A=
								mapping['ID332027817131028813']=3D'ID801886517131028813';=0A=
							} else {=0A=
								mapping['ID332027817131028813']+=3D';ID801886517131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID347128017131028813'] =3D=3D null) {=0A=
								mapping['ID347128017131028813']=3D'ID041092517131028813';=0A=
							} else {=0A=
								mapping['ID347128017131028813']+=3D';ID041092517131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID356228217131028813'] =3D=3D null) {=0A=
								mapping['ID356228217131028813']=3D'ID287798517131028813';=0A=
							} else {=0A=
								mapping['ID356228217131028813']+=3D';ID287798517131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID537004518131028813'] =3D=3D null) {=0A=
								mapping['ID537004518131028813']=3D'ID570305518131028813';=0A=
							} else {=0A=
								mapping['ID537004518131028813']+=3D';ID570305518131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID546604718131028813'] =3D=3D null) {=0A=
								mapping['ID546604718131028813']=3D'ID814911518131028813';=0A=
							} else {=0A=
								mapping['ID546604718131028813']+=3D';ID814911518131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID550204918131028813'] =3D=3D null) {=0A=
								mapping['ID550204918131028813']=3D'ID055817018131028813';=0A=
							} else {=0A=
								mapping['ID550204918131028813']+=3D';ID055817018131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID561005118131028813'] =3D=3D null) {=0A=
								mapping['ID561005118131028813']=3D'ID291322518131028813';=0A=
							} else {=0A=
								mapping['ID561005118131028813']+=3D';ID291322518131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID544228218131028813'] =3D=3D null) {=0A=
								mapping['ID544228218131028813']=3D'ID756432618131028813';=0A=
							} else {=0A=
								mapping['ID544228218131028813']+=3D';ID756432618131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID551828418131028813'] =3D=3D null) {=0A=
								mapping['ID551828418131028813']=3D'ID991238118131028813';=0A=
							} else {=0A=
								mapping['ID551828418131028813']+=3D';ID991238118131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID564328618131028813'] =3D=3D null) {=0A=
								mapping['ID564328618131028813']=3D'ID234143918131028813';=0A=
							} else {=0A=
								mapping['ID564328618131028813']+=3D';ID234143918131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID573428818131028813'] =3D=3D null) {=0A=
								mapping['ID573428818131028813']=3D'ID472350118131028813';=0A=
							} else {=0A=
								mapping['ID573428818131028813']+=3D';ID472350118131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID581629018131028813'] =3D=3D null) {=0A=
								mapping['ID581629018131028813']=3D'ID713155718131028813';=0A=
							} else {=0A=
								mapping['ID581629018131028813']+=3D';ID713155718131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID595729218131028813'] =3D=3D null) {=0A=
								mapping['ID595729218131028813']=3D'ID950961318131028813';=0A=
							} else {=0A=
								mapping['ID595729218131028813']+=3D';ID950961318131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID609229418131028813'] =3D=3D null) {=0A=
								mapping['ID609229418131028813']=3D'ID191267018131028813';=0A=
							} else {=0A=
								mapping['ID609229418131028813']+=3D';ID191267018131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID615129618131028813'] =3D=3D null) {=0A=
								mapping['ID615129618131028813']=3D'ID436973018131028813';=0A=
							} else {=0A=
								mapping['ID615129618131028813']+=3D';ID436973018131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID625329818131028813'] =3D=3D null) {=0A=
								mapping['ID625329818131028813']=3D'ID675681118131028813';=0A=
							} else {=0A=
								mapping['ID625329818131028813']+=3D';ID675681118131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID631930018131028813'] =3D=3D null) {=0A=
								mapping['ID631930018131028813']=3D'ID912886618131028813';=0A=
							} else {=0A=
								mapping['ID631930018131028813']+=3D';ID912886618131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID640430218131028813'] =3D=3D null) {=0A=
								mapping['ID640430218131028813']=3D'ID154992118131028813';=0A=
							} else {=0A=
								mapping['ID640430218131028813']+=3D';ID154992118131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID652730418131028813'] =3D=3D null) {=0A=
								mapping['ID652730418131028813']=3D'ID399397618131028813';=0A=
							} else {=0A=
								mapping['ID652730418131028813']+=3D';ID399397618131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID663430618131028813'] =3D=3D null) {=0A=
								mapping['ID663430618131028813']=3D'ID630403119131028813';=0A=
							} else {=0A=
								mapping['ID663430618131028813']+=3D';ID630403119131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID673230818131028813'] =3D=3D null) {=0A=
								mapping['ID673230818131028813']=3D'ID872008919131028813';=0A=
							} else {=0A=
								mapping['ID673230818131028813']+=3D';ID872008919131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID684931018131028813'] =3D=3D null) {=0A=
								mapping['ID684931018131028813']=3D'ID110914419131028813';=0A=
							} else {=0A=
								mapping['ID684931018131028813']+=3D';ID110914419131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID690431218131028813'] =3D=3D null) {=0A=
								mapping['ID690431218131028813']=3D'ID357019919131028813';=0A=
							} else {=0A=
								mapping['ID690431218131028813']+=3D';ID357019919131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID706931418131028813'] =3D=3D null) {=0A=
								mapping['ID706931418131028813']=3D'ID595025419131028813';=0A=
							} else {=0A=
								mapping['ID706931418131028813']+=3D';ID595025419131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID717531618131028813'] =3D=3D null) {=0A=
								mapping['ID717531618131028813']=3D'ID834030919131028813';=0A=
							} else {=0A=
								mapping['ID717531618131028813']+=3D';ID834030919131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID725831818131028813'] =3D=3D null) {=0A=
								mapping['ID725831818131028813']=3D'ID076136419131028813';=0A=
							} else {=0A=
								mapping['ID725831818131028813']+=3D';ID076136419131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID732132018131028813'] =3D=3D null) {=0A=
								mapping['ID732132018131028813']=3D'ID315941919131028813';=0A=
							} else {=0A=
								mapping['ID732132018131028813']+=3D';ID315941919131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID743832218131028813'] =3D=3D null) {=0A=
								mapping['ID743832218131028813']=3D'ID553647419131028813';=0A=
							} else {=0A=
								mapping['ID743832218131028813']+=3D';ID553647419131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID802353119131028813'] =3D=3D null) {=0A=
								mapping['ID802353119131028813']=3D'ID831654119131028813';=0A=
							} else {=0A=
								mapping['ID802353119131028813']+=3D';ID831654119131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID814653319131028813'] =3D=3D null) {=0A=
								mapping['ID814653319131028813']=3D'ID820453719131028813';=0A=
							} else {=0A=
								mapping['ID814653319131028813']+=3D';ID820453719131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID089659719131028813'] =3D=3D null) {=0A=
								mapping['ID089659719131028813']=3D'ID101760319131028813';=0A=
							} else {=0A=
								mapping['ID089659719131028813']+=3D';ID101760319131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID356865819131028813'] =3D=3D null) {=0A=
								mapping['ID356865819131028813']=3D'ID374066419131028813';=0A=
							} else {=0A=
								mapping['ID356865819131028813']+=3D';ID374066419131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID750274619131028813'] =3D=3D null) {=0A=
								mapping['ID750274619131028813']=3D'ID847376819131028813';=0A=
							} else {=0A=
								mapping['ID750274619131028813']+=3D';ID847376819131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID775775019131028813'] =3D=3D null) {=0A=
								mapping['ID775775019131028813']=3D'ID785575419131028813';=0A=
							} else {=0A=
								mapping['ID775775019131028813']+=3D';ID785575419131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID895378019131028813'] =3D=3D null) {=0A=
								mapping['ID895378019131028813']=3D'ID920378819131028813';=0A=
							} else {=0A=
								mapping['ID895378019131028813']+=3D';ID920378819131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID918878419131028813'] =3D=3D null) {=0A=
								mapping['ID918878419131028813']=3D'ID920378819131028813';=0A=
							} else {=0A=
								mapping['ID918878419131028813']+=3D';ID920378819131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID039181419131028813'] =3D=3D null) {=0A=
								mapping['ID039181419131028813']=3D'ID129183619131028813';=0A=
							} else {=0A=
								mapping['ID039181419131028813']+=3D';ID129183619131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID058481819131028813'] =3D=3D null) {=0A=
								mapping['ID058481819131028813']=3D'ID066682219131028813';=0A=
							} else {=0A=
								mapping['ID058481819131028813']+=3D';ID066682219131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID174484819131028813'] =3D=3D null) {=0A=
								mapping['ID174484819131028813']=3D'ID261187019131028813';=0A=
							} else {=0A=
								mapping['ID174484819131028813']+=3D';ID261187019131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID195985219131028813'] =3D=3D null) {=0A=
								mapping['ID195985219131028813']=3D'ID209485619131028813';=0A=
							} else {=0A=
								mapping['ID195985219131028813']+=3D';ID209485619131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID316988219131028813'] =3D=3D null) {=0A=
								mapping['ID316988219131028813']=3D'ID407890419131028813';=0A=
							} else {=0A=
								mapping['ID316988219131028813']+=3D';ID407890419131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID339688619131028813'] =3D=3D null) {=0A=
								mapping['ID339688619131028813']=3D'ID341189019131028813';=0A=
							} else {=0A=
								mapping['ID339688619131028813']+=3D';ID341189019131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID470592019131028813'] =3D=3D null) {=0A=
								mapping['ID470592019131028813']=3D'ID485692419131028813';=0A=
							} else {=0A=
								mapping['ID470592019131028813']+=3D';ID485692419131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID570694419131028813'] =3D=3D null) {=0A=
								mapping['ID570694419131028813']=3D'ID585694819131028813';=0A=
							} else {=0A=
								mapping['ID570694419131028813']+=3D';ID585694819131028813';=0A=
							}=0A=
						=0A=
							if (mapping['ID679496819131028813'] =3D=3D null) {=0A=
								mapping['ID679496819131028813']=3D'ID682797219131028813';=0A=
							} else {=0A=
								mapping['ID679496819131028813']+=3D';ID682797219131028813';=0A=
							}=0A=
										=0A=
					=0A=
						var result =3D new Array();=0A=
						for(key in mapping)=0A=
						{=0A=
							var dependencies =3D mapping[key].split(";");=0A=
							for (d =3D 0; d < dependencies.length; d++) {=0A=
								var triggers =3D getTriggeringAnswers(dependencies[d]);=0A=
								for (j =3D 0; j < triggers.length; j++) {=0A=
									if (!contains(result, triggers[j])) {=0A=
										result.push(triggers[j]);=0A=
									}=0A=
								}=0A=
							}=0A=
						}=0A=
						=0A=
						return result;=0A=
					}=0A=
					=0A=
					function contains(array, item)=0A=
					{=0A=
						for (i =3D 0; i < array.length; i++) {=0A=
							if (array[i] =3D=3D (item))=0A=
							{=0A=
								return true;=0A=
							}=0A=
						}=0A=
						=0A=
						return false;=0A=
					}					=0A=
										=0A=
					var triggerMap; =0A=
					=0A=
					$(function() {=0A=
						$( ".ipmactionbuttonsmall" ).button();	=0A=
						triggerMap =3D getTriggerMap();=0A=
					});					=0A=
				</SCRIPT>

<META name=3D"GENERATOR" content=3D"MSHTML 9.00.8112.16526"></HEAD>
<BODY onbeforeprint=3D"managePrintTree();">
<FORM name=3D"printform" action=3D"dispatch" target=3D"_blank"><INPUT =
name=3D"userstate"=20
value=3D"charts" type=3D"hidden"><INPUT name=3D"print" value=3D"true"=20
type=3D"hidden"><INPUT name=3D"selection" type=3D"hidden"></FORM>
<H1>Response charts for  'Consultation on the Implementation of the=20
Infrastructure for Spatial Information in the European Community - =
INSPIRE=20
Directive (2007/2/EC)'		</H1><BR>
<DIV style=3D"width: 96%; display: block; position: relative;">
<TABLE cellPadding=3D"5" width=3D"100%">
  <TBODY>
  <TR>
    <TD style=3D"text-align: left;" class=3D"sectiondesc"><IMG alt=3D"" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/menu_arrow.gif">Cur=
rent=20
      search:							</TD>
    <TD style=3D"text-align: right;">&nbsp;</TD></TR></TBODY></TABLE>
<H2 class=3D"ipmbackground2">Query definition</H2><BR>
<DIV style=3D"left: 2%; width: 96%; display: block; position: =
relative;">All data=20
requested<BR><BR></DIV>
<H2 class=3D"ipmbackground2">Result pages</H2>
<DIV style=3D"left: 2%; width: 96%; display: block; position: =
relative;">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
  <TBODY>
  <TR style=3D"vertical-align: top;">
    <TD style=3D"text-align: left;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: top;">
          <TD class=3D"sectiondesc"><IMG alt=3D"" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/menu_arrow.gif">The=
re=20
            are     <EM>697</EM> responses matching your criteria of a =
total of =20
               <EM>697</EM> records in the current set of data.  =
</TD></TR>
      </TBODY></TABLE></TD>
    <TD>&nbsp;</TD></TR></TBODY></TABLE><BR></DIV></DIV><INPUT =
onclick=3D"window.location=3D'dispatch?userstate=3Dcharts&amp;sorted=3D1'=
;"=20
name=3D"rdoSort" value=3D"true" type=3D"radio">Sorted answers<INPUT =
onclick=3D"window.location=3D'dispatch?userstate=3Dcharts';"=20
name=3D"rdoSort" value=3D"false" CHECKED=3D"" type=3D"radio">Original =
order<BR><BR>
<DIV style=3D"display: block; cursor: auto;" id=3D"brc_0_" =
class=3D"idt_0_0_0_O_"><A=20
name=3D"brc_0_"></A>
<DIV style=3D"width: 96%; display: block; position: relative;" =
id=3D"leav_0_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID391462316131028813_"=20
class=3D"idt_1_0_ID391462316131028813_O_S"><A=20
name=3D"brc_ID391462316131028813_"></A>
<H2>Registration&nbsp;&nbsp;</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID391462316131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID423563316131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID423563316131028813_"></A>
<H3>Are you responding as - or on behalf of<SPAN class=3D"comment"> =
-single choice=20
reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID423563316131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID439463516131028813_"=20
class=3D"idt_3_ID423563316131028813_ID439463516131028813_A_A"><A =
name=3D"brc_ID439463516131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID439463516131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID439463516131028813');manageTree('I=
D439463516131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID439463516131028813"></TD>
    <TD>
      <H6>Public sector organisation</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 46%;">
            =
<H6>472</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID439463516131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID491565116131028813_"=20
class=3D"idt_4_ID439463516131028813_ID491565116131028813_A_D"><A =
name=3D"dep_ID491565116131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID094621817131028813_"=20
class=3D"idt_4_ID439463516131028813_ID094621817131028813_A_D"><A =
name=3D"dep_ID094621817131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID130823017131028813_"=20
class=3D"idt_4_ID439463516131028813_ID130823017131028813_A_D"><A =
name=3D"dep_ID130823017131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID448863716131028813_"=20
class=3D"idt_3_ID423563316131028813_ID448863716131028813_A_A"><A =
name=3D"brc_ID448863716131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID448863716131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID448863716131028813');manageTree('I=
D448863716131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID448863716131028813"></TD>
    <TD>
      <H6>Private sector organisation</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>81</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID448863716131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID491565116131028813_"=20
class=3D"idt_4_ID448863716131028813_ID491565116131028813_A_D"><A =
name=3D"dep_ID491565116131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID094621817131028813_"=20
class=3D"idt_4_ID448863716131028813_ID094621817131028813_A_D"><A =
name=3D"dep_ID094621817131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID130823017131028813_"=20
class=3D"idt_4_ID448863716131028813_ID130823017131028813_A_D"><A =
name=3D"dep_ID130823017131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID455863916131028813_"=20
class=3D"idt_3_ID423563316131028813_ID455863916131028813_A_A"><A =
name=3D"brc_ID455863916131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID455863916131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID455863916131028813');manageTree('I=
D455863916131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID455863916131028813"></TD>
    <TD>
      <H6>Academic sector organisation</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID455863916131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID491565116131028813_"=20
class=3D"idt_4_ID455863916131028813_ID491565116131028813_A_D"><A =
name=3D"dep_ID491565116131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID094621817131028813_"=20
class=3D"idt_4_ID455863916131028813_ID094621817131028813_A_D"><A =
name=3D"dep_ID094621817131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID130823017131028813_"=20
class=3D"idt_4_ID455863916131028813_ID130823017131028813_A_D"><A =
name=3D"dep_ID130823017131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID462264116131028813_"=20
class=3D"idt_3_ID423563316131028813_ID462264116131028813_A_A"><A =
name=3D"brc_ID462264116131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID462264116131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID462264116131028813');manageTree('I=
D462264116131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID462264116131028813"></TD>
    <TD>
      <H6>Private citizen</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>88</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID462264116131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID491565116131028813_"=20
class=3D"idt_4_ID462264116131028813_ID491565116131028813_A_D"><A =
name=3D"dep_ID491565116131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID094621817131028813_"=20
class=3D"idt_4_ID462264116131028813_ID094621817131028813_A_D"><A =
name=3D"dep_ID094621817131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID130823017131028813_"=20
class=3D"idt_4_ID462264116131028813_ID130823017131028813_A_D"><A =
name=3D"dep_ID130823017131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID475764316131028813_"=20
class=3D"idt_3_ID423563316131028813_ID475764316131028813_A_A"><A =
name=3D"brc_ID475764316131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID475764316131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID475764316131028813');manageTree('I=
D475764316131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID475764316131028813"></TD>
    <TD>
      <H6>An INSPIRE National Co-ordination organisation</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID475764316131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID491565116131028813_"=20
class=3D"idt_4_ID475764316131028813_ID491565116131028813_A_D"><A =
name=3D"dep_ID491565116131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID094621817131028813_"=20
class=3D"idt_4_ID475764316131028813_ID094621817131028813_A_D"><A =
name=3D"dep_ID094621817131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID130823017131028813_"=20
class=3D"idt_4_ID475764316131028813_ID130823017131028813_A_D"><A =
name=3D"dep_ID130823017131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID491565116131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID491565116131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID491565116131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Are=20
you or your organisation using and/or producing spatial data and/or =
services=20
(including for example publishing services or software development) for =
projects=20
at the<SPAN class=3D"comment"> -multiple choices reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID491565116131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID501065316131028813_"=20
class=3D"idt_3_ID491565116131028813_ID501065316131028813_A_A"><A =
name=3D"brc_ID501065316131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>international level</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>231</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID512665516131028813_"=20
class=3D"idt_3_ID491565116131028813_ID512665516131028813_A_A"><A =
name=3D"brc_ID512665516131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>national level</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 56%;">
            =
<H6>381</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID529165716131028813_"=20
class=3D"idt_3_ID491565116131028813_ID529165716131028813_A_A"><A =
name=3D"brc_ID529165716131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>regional level</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 60%;">
            =
<H6>345</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID533265916131028813_"=20
class=3D"idt_3_ID491565116131028813_ID533265916131028813_A_A"><A =
name=3D"brc_ID533265916131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>local level</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 63%;">
            =
<H6>322</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID585767516131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID585767516131028813_"></A>
<H3>Indicate the country where you legally reside or where your =
organisation is=20
principally based<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID585767516131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID591567716131028813_"=20
class=3D"idt_3_ID585767516131028813_ID591567716131028813_A_A"><A =
name=3D"brc_ID591567716131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Austria</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID608567916131028813_"=20
class=3D"idt_3_ID585767516131028813_ID608567916131028813_A_A"><A =
name=3D"brc_ID608567916131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Belgium</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>23</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID617968116131028813_"=20
class=3D"idt_3_ID585767516131028813_ID617968116131028813_A_A"><A =
name=3D"brc_ID617968116131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Bulgaria</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>12</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID626568316131028813_"=20
class=3D"idt_3_ID585767516131028813_ID626568316131028813_A_A"><A =
name=3D"brc_ID626568316131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Croatia</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID633868516131028813_"=20
class=3D"idt_3_ID585767516131028813_ID633868516131028813_A_A"><A =
name=3D"brc_ID633868516131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Cyprus</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>1</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID646568716131028813_"=20
class=3D"idt_3_ID585767516131028813_ID646568716131028813_A_A"><A =
name=3D"brc_ID646568716131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Czech Republic</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID652468916131028813_"=20
class=3D"idt_3_ID585767516131028813_ID652468916131028813_A_A"><A =
name=3D"brc_ID652468916131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Denmark</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>8</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID667769116131028813_"=20
class=3D"idt_3_ID585767516131028813_ID667769116131028813_A_A"><A =
name=3D"brc_ID667769116131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Estonia</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>2</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID671369316131028813_"=20
class=3D"idt_3_ID585767516131028813_ID671369316131028813_A_A"><A =
name=3D"brc_ID671369316131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Finland</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID685569516131028813_"=20
class=3D"idt_3_ID585767516131028813_ID685569516131028813_A_A"><A =
name=3D"brc_ID685569516131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>France</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>67</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID691569716131028813_"=20
class=3D"idt_3_ID585767516131028813_ID691569716131028813_A_A"><A =
name=3D"brc_ID691569716131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Germany</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>103</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID700869916131028813_"=20
class=3D"idt_3_ID585767516131028813_ID700869916131028813_A_A"><A =
name=3D"brc_ID700869916131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Greece</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID710670116131028813_"=20
class=3D"idt_3_ID585767516131028813_ID710670116131028813_A_A"><A =
name=3D"brc_ID710670116131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Hungary</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>3</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID375232535291729613_"=20
class=3D"idt_3_ID585767516131028813_ID375232535291729613_A_A"><A =
name=3D"brc_ID375232535291729613_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Iceland</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>3</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID723670316131028813_"=20
class=3D"idt_3_ID585767516131028813_ID723670316131028813_A_A"><A =
name=3D"brc_ID723670316131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Ireland</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>2</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID738570516131028813_"=20
class=3D"idt_3_ID585767516131028813_ID738570516131028813_A_A"><A =
name=3D"brc_ID738570516131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Italy</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>19</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID747670716131028813_"=20
class=3D"idt_3_ID585767516131028813_ID747670716131028813_A_A"><A =
name=3D"brc_ID747670716131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Latvia</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID375880953281729613_"=20
class=3D"idt_3_ID585767516131028813_ID375880953281729613_A_A"><A =
name=3D"brc_ID375880953281729613_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Liechtenstein</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>1</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID751670916131028813_"=20
class=3D"idt_3_ID585767516131028813_ID751670916131028813_A_A"><A =
name=3D"brc_ID751670916131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Lithuania</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>1</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID765971116131028813_"=20
class=3D"idt_3_ID585767516131028813_ID765971116131028813_A_A"><A =
name=3D"brc_ID765971116131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Luxembourg</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>2</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID777271316131028813_"=20
class=3D"idt_3_ID585767516131028813_ID777271316131028813_A_A"><A =
name=3D"brc_ID777271316131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Malta</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD>
            =
<H6>0</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID780871516131028813_"=20
class=3D"idt_3_ID585767516131028813_ID780871516131028813_A_A"><A =
name=3D"brc_ID780871516131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Netherlands</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370928636261729613_"=20
class=3D"idt_3_ID585767516131028813_ID370928636261729613_A_A"><A =
name=3D"brc_ID370928636261729613_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Norway</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>4</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID793571716131028813_"=20
class=3D"idt_3_ID585767516131028813_ID793571716131028813_A_A"><A =
name=3D"brc_ID793571716131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Poland</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>49</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID808571916131028813_"=20
class=3D"idt_3_ID585767516131028813_ID808571916131028813_A_A"><A =
name=3D"brc_ID808571916131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Portugal</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID812372116131028813_"=20
class=3D"idt_3_ID585767516131028813_ID812372116131028813_A_A"><A =
name=3D"brc_ID812372116131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Romania</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>9</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID822172316131028813_"=20
class=3D"idt_3_ID585767516131028813_ID822172316131028813_A_A"><A =
name=3D"brc_ID822172316131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Slovakia</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>4</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID834472516131028813_"=20
class=3D"idt_3_ID585767516131028813_ID834472516131028813_A_A"><A =
name=3D"brc_ID834472516131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Slovenia</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID846072716131028813_"=20
class=3D"idt_3_ID585767516131028813_ID846072716131028813_A_A"><A =
name=3D"brc_ID846072716131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Spain</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>111</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID858772916131028813_"=20
class=3D"idt_3_ID585767516131028813_ID858772916131028813_A_A"><A =
name=3D"brc_ID858772916131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Sweden</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376829500281729613_"=20
class=3D"idt_3_ID585767516131028813_ID376829500281729613_A_A"><A =
name=3D"brc_ID376829500281729613_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Switzerland</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>1</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID868473116131028813_"=20
class=3D"idt_3_ID585767516131028813_ID868473116131028813_A_A"><A =
name=3D"brc_ID868473116131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>United Kingdom</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371724042301729613_"=20
class=3D"idt_3_ID585767516131028813_ID371724042301729613_A_A"><A =
name=3D"brc_ID371724042301729613_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID371724042301729613_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID371724042301729613');manageTree('I=
D371724042301729613');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID371724042301729613"></TD>
    <TD>
      <H6>Other country</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID371724042301729613_"></DIV>
</DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID081521617131028813_"=20
class=3D"idt_2_ID391462316131028813_ID081521617131028813_O_S"><A =
name=3D"brc_ID081521617131028813_"></A>
<H2>Your involvement and experience with INSPIRE&nbsp;&nbsp;</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID081521617131028813_"></DIV>
<BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID094621817131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID094621817131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID094621817131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;<SPAN=20
style=3D"font-size: medium;">I or my&nbsp;organisation are- or have been =
involved=20
in projects implementing INSPIRE measures at local, regional, national =
or=20
international scale</SPAN><SPAN class=3D"comment"> -single choice reply- =

</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID094621817131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID108622017131028813_"=20
class=3D"idt_3_ID094621817131028813_ID108622017131028813_A_A"><A =
name=3D"brc_ID108622017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID108622017131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID108622017131028813');manageTree('I=
D108622017131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID108622017131028813"></TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 49%;">
            =
<H6>446</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID108622017131028813_"></DIV>
</DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID116322217131028813_"=20
class=3D"idt_3_ID094621817131028813_ID116322217131028813_A_A"><A =
name=3D"brc_ID116322217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>251</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID130823017131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID130823017131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID130823017131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Did=20
you and/or your&nbsp;organisation contribute (provided expertise and/or=20
reference documents and/or use-cases, participated in the review and/or =
testing)=20
to the development of the INSPIRE Implementing Rules.<SPAN =
class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID130823017131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID147123217131028813_"=20
class=3D"idt_3_ID130823017131028813_ID147123217131028813_A_A"><A =
name=3D"brc_ID147123217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID147123217131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID147123217131028813');manageTree('I=
D147123217131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID147123217131028813"></TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>309</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID147123217131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID166823817131028813_"=20
class=3D"idt_4_ID147123217131028813_ID166823817131028813_A_D"><A =
name=3D"dep_ID166823817131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID157123417131028813_"=20
class=3D"idt_3_ID130823017131028813_ID157123417131028813_A_A"><A =
name=3D"brc_ID157123417131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 55%;">
            =
<H6>388</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID166823817131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID166823817131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID166823817131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;I=20
and/or my&nbsp;organisation have contributed (provided expertise and/or=20
reference documents and/or use-cases, participated in the review and/or =
testing)=20
to the development of the INSPIRE Implementing Rules and/or Technical =
Guidance=20
on<SPAN class=3D"comment"> -multiple choices reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID166823817131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>309</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID172824017131028813_"=20
class=3D"idt_3_ID166823817131028813_ID172824017131028813_A_A"><A =
name=3D"brc_ID172824017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Metadata</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 52%;">
            =
<H6>186</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID181424217131028813_"=20
class=3D"idt_3_ID166823817131028813_ID181424217131028813_A_A"><A =
name=3D"brc_ID181424217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Network services</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>124</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID191024417131028813_"=20
class=3D"idt_3_ID166823817131028813_ID191024417131028813_A_A"><A =
name=3D"brc_ID191024417131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Data specifications</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 46%;">
            =
<H6>210</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID205324617131028813_"=20
class=3D"idt_3_ID166823817131028813_ID205324617131028813_A_A"><A =
name=3D"brc_ID205324617131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Data policy</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>90</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID219024817131028813_"=20
class=3D"idt_3_ID166823817131028813_ID219024817131028813_A_A"><A =
name=3D"brc_ID219024817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Monitoring and reporting</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>110</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID228725217131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID228725217131028813_"></A>
<H3><SPAN style=3D"font-size: medium;">Do you or your organisation USE =
spatial=20
data and/or services from a public authority or third party&nbsp;covered =
by one=20
or more of the spatial data themes listed in the Annexes I,II,III of the =
INSPIRE=20
directive?</SPAN><SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID228725217131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID235625417131028813_"=20
class=3D"idt_3_ID228725217131028813_ID235625417131028813_A_A"><A =
name=3D"brc_ID235625417131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID235625417131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID235625417131028813');manageTree('I=
D235625417131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID235625417131028813"></TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 34%;">
            =
<H6>579</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID235625417131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID266926417131028813_"=20
class=3D"idt_4_ID235625417131028813_ID266926417131028813_A_D"><A =
name=3D"dep_ID266926417131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID521804318131028813_"=20
class=3D"idt_4_ID235625417131028813_ID521804318131028813_A_D"><A =
name=3D"dep_ID521804318131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID533428018131028813_"=20
class=3D"idt_4_ID235625417131028813_ID533428018131028813_A_D"><A =
name=3D"dep_ID533428018131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID247625617131028813_"=20
class=3D"idt_3_ID228725217131028813_ID247625617131028813_A_A"><A =
name=3D"brc_ID247625617131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>118</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID266926417131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID266926417131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID266926417131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;<SPAN=20
style=3D"font-size: medium;">Which spatial data themes listed in Annexe =
I of the=20
INSPIRE Directive cover the spatial data USED by you or your=20
organisation?</SPAN><SPAN class=3D"comment"> -multiple choices reply- =
</SPAN><SPAN=20
class=3D"optional">(optional)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID266926417131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>579</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID274726617131028813_"=20
class=3D"idt_3_ID266926417131028813_ID274726617131028813_A_A"><A =
name=3D"brc_ID274726617131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID274726617131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID274726617131028813');manageTree('I=
D274726617131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID274726617131028813"></TD>
    <TD>
      <H6>1.	Coordinate reference systems</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>235</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID274726617131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID364328617131028813_"=20
class=3D"idt_4_ID274726617131028813_ID364328617131028813_A_D"><A =
name=3D"dep_ID364328617131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID280426817131028813_"=20
class=3D"idt_3_ID266926417131028813_ID280426817131028813_A_A"><A =
name=3D"brc_ID280426817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID280426817131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID280426817131028813');manageTree('I=
D280426817131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID280426817131028813"></TD>
    <TD>
      <H6>2.	Geographical grid systems</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>151</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID280426817131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID607334217131028813_"=20
class=3D"idt_4_ID280426817131028813_ID607334217131028813_A_D"><A =
name=3D"dep_ID607334217131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID294027017131028813_"=20
class=3D"idt_3_ID266926417131028813_ID294027017131028813_A_A"><A =
name=3D"brc_ID294027017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID294027017131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID294027017131028813');manageTree('I=
D294027017131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID294027017131028813"></TD>
    <TD>
      <H6>3.	Geographical names</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>263</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID294027017131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID847639817131028813_"=20
class=3D"idt_4_ID294027017131028813_ID847639817131028813_A_D"><A =
name=3D"dep_ID847639817131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID305227217131028813_"=20
class=3D"idt_3_ID266926417131028813_ID305227217131028813_A_A"><A =
name=3D"brc_ID305227217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID305227217131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID305227217131028813');manageTree('I=
D305227217131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID305227217131028813"></TD>
    <TD>
      <H6>4.	Administrative units</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 46%;">
            =
<H6>393</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID305227217131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID081447517131028813_"=20
class=3D"idt_4_ID305227217131028813_ID081447517131028813_A_D"><A =
name=3D"dep_ID081447517131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID317927417131028813_"=20
class=3D"idt_3_ID266926417131028813_ID317927417131028813_A_A"><A =
name=3D"brc_ID317927417131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID317927417131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID317927417131028813');manageTree('I=
D317927417131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID317927417131028813"></TD>
    <TD>
      <H6>5.	Addresses</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>258</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID317927417131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID324253317131028813_"=20
class=3D"idt_4_ID317927417131028813_ID324253317131028813_A_D"><A =
name=3D"dep_ID324253317131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID323027617131028813_"=20
class=3D"idt_3_ID266926417131028813_ID323027617131028813_A_A"><A =
name=3D"brc_ID323027617131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID323027617131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID323027617131028813');manageTree('I=
D323027617131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID323027617131028813"></TD>
    <TD>
      <H6>6.	Cadastral parcels</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 56%;">
            =
<H6>320</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID323027617131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID561858917131028813_"=20
class=3D"idt_4_ID323027617131028813_ID561858917131028813_A_D"><A =
name=3D"dep_ID561858917131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID332027817131028813_"=20
class=3D"idt_3_ID266926417131028813_ID332027817131028813_A_A"><A =
name=3D"brc_ID332027817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID332027817131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID332027817131028813');manageTree('I=
D332027817131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID332027817131028813"></TD>
    <TD>
      <H6>7.	Transport networks</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 60%;">
            =
<H6>289</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID332027817131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID801886517131028813_"=20
class=3D"idt_4_ID332027817131028813_ID801886517131028813_A_D"><A =
name=3D"dep_ID801886517131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID347128017131028813_"=20
class=3D"idt_3_ID266926417131028813_ID347128017131028813_A_A"><A =
name=3D"brc_ID347128017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID347128017131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID347128017131028813');manageTree('I=
D347128017131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID347128017131028813"></TD>
    <TD>
      <H6>8.	Hydrography</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 61%;">
            =
<H6>285</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID347128017131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID041092517131028813_"=20
class=3D"idt_4_ID347128017131028813_ID041092517131028813_A_D"><A =
name=3D"dep_ID041092517131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID356228217131028813_"=20
class=3D"idt_3_ID266926417131028813_ID356228217131028813_A_A"><A =
name=3D"brc_ID356228217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID356228217131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID356228217131028813');manageTree('I=
D356228217131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID356228217131028813"></TD>
    <TD>
      <H6>9.	Protected sites</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 58%;">
            =
<H6>302</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID356228217131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID287798517131028813_"=20
class=3D"idt_4_ID356228217131028813_ID287798517131028813_A_D"><A =
name=3D"dep_ID287798517131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID364328617131028813_"=20
class=3D"idt_2_ID391462316131028813_ID364328617131028813_O_M"><A =
name=3D"brc_ID364328617131028813_"></A>
<H2><B>Coordinate reference systems </B>- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID364328617131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID364328617131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373828817131028813_"=20
class=3D"idt_3_ID364328617131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID373828817131028813_"></A>
<H3>&nbsp;is <SPAN style=3D"text-decoration: =
underline;">documented</SPAN> (has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID373828817131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>235</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID384429017131028813_"=20
class=3D"idt_3_ID373828817131028813_ID384429017131028813_A_A"><A =
name=3D"brc_ID384429017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 47%;">
            =
<H6>155</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID396029217131028813_"=20
class=3D"idt_3_ID373828817131028813_ID396029217131028813_A_A"><A =
name=3D"brc_ID396029217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>26</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID403129417131028813_"=20
class=3D"idt_3_ID373828817131028813_ID403129417131028813_A_A"><A =
name=3D"brc_ID403129417131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>54</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID413129717131028813_"=20
class=3D"idt_3_ID364328617131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID413129717131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID413129717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>235</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID427829917131028813_"=20
class=3D"idt_3_ID413129717131028813_ID427829917131028813_A_A"><A =
name=3D"brc_ID427829917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 53%;">
            =
<H6>138</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID439030117131028813_"=20
class=3D"idt_3_ID413129717131028813_ID439030117131028813_A_A"><A =
name=3D"brc_ID439030117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>32</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID443130317131028813_"=20
class=3D"idt_3_ID413129717131028813_ID443130317131028813_A_A"><A =
name=3D"brc_ID443130317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>65</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID458930617131028813_"=20
class=3D"idt_3_ID364328617131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID458930617131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID458930617131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>235</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID462530817131028813_"=20
class=3D"idt_3_ID458930617131028813_ID462530817131028813_A_A"><A =
name=3D"brc_ID462530817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 53%;">
            =
<H6>137</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID477231017131028813_"=20
class=3D"idt_3_ID458930617131028813_ID477231017131028813_A_A"><A =
name=3D"brc_ID477231017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>34</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID483331217131028813_"=20
class=3D"idt_3_ID458930617131028813_ID483331217131028813_A_A"><A =
name=3D"brc_ID483331217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>64</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID492831517131028813_"=20
class=3D"idt_3_ID364328617131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID492831517131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID492831517131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>235</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID503931717131028813_"=20
class=3D"idt_3_ID492831517131028813_ID503931717131028813_A_A"><A =
name=3D"brc_ID503931717131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>98</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID515531917131028813_"=20
class=3D"idt_3_ID492831517131028813_ID515531917131028813_A_A"><A =
name=3D"brc_ID515531917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>57</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID522332117131028813_"=20
class=3D"idt_3_ID492831517131028813_ID522332117131028813_A_A"><A =
name=3D"brc_ID522332117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>80</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID375042833391530113_"=20
class=3D"idt_3_ID364328617131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID375042833391530113_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID375042833391530113_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>235</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377443133391530113_"=20
class=3D"idt_3_ID375042833391530113_ID377443133391530113_A_A"><A =
name=3D"brc_ID377443133391530113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 38%;">
            =
<H6>182</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377143233391530113_"=20
class=3D"idt_3_ID375042833391530113_ID377143233391530113_A_A"><A =
name=3D"brc_ID377143233391530113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>9</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377243333391530113_"=20
class=3D"idt_3_ID375042833391530113_ID377243333391530113_A_A"><A =
name=3D"brc_ID377243333391530113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>44</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID535832417131028813_"=20
class=3D"idt_3_ID364328617131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID535832417131028813_"></A>
<H3>
<P><SPAN style=3D"font-size: small;"><SPAN=20
style=3D"text-decoration: underline;">data policy</SPAN> (licence, =
charges, etc.)=20
is&nbsp;<SPAN style=3D"text-decoration: underline;">no obstacle</SPAN> =
for=20
use</SPAN></P><SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID535832417131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>235</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID541832617131028813_"=20
class=3D"idt_3_ID535832417131028813_ID541832617131028813_A_A"><A =
name=3D"brc_ID541832617131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>112</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID557632817131028813_"=20
class=3D"idt_3_ID535832417131028813_ID557632817131028813_A_A"><A =
name=3D"brc_ID557632817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID566433017131028813_"=20
class=3D"idt_3_ID535832417131028813_ID566433017131028813_A_A"><A =
name=3D"brc_ID566433017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>76</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID607334217131028813_"=20
class=3D"idt_2_ID391462316131028813_ID607334217131028813_O_M"><A =
name=3D"brc_ID607334217131028813_"></A>
<H2><B>Geographical grid systems</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID607334217131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID607334217131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID611834417131028813_"=20
class=3D"idt_3_ID607334217131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID611834417131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID611834417131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>151</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID622434617131028813_"=20
class=3D"idt_3_ID611834417131028813_ID622434617131028813_A_A"><A =
name=3D"brc_ID622434617131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 41%;">
            =
<H6>112</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID635934817131028813_"=20
class=3D"idt_3_ID611834417131028813_ID635934817131028813_A_A"><A =
name=3D"brc_ID635934817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID649035017131028813_"=20
class=3D"idt_3_ID611834417131028813_ID649035017131028813_A_A"><A =
name=3D"brc_ID649035017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID658435317131028813_"=20
class=3D"idt_3_ID607334217131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID658435317131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID658435317131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>151</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID661935517131028813_"=20
class=3D"idt_3_ID658435317131028813_ID661935517131028813_A_A"><A =
name=3D"brc_ID661935517131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 54%;">
            =
<H6>86</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID673135717131028813_"=20
class=3D"idt_3_ID658435317131028813_ID673135717131028813_A_A"><A =
name=3D"brc_ID673135717131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>26</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID689935917131028813_"=20
class=3D"idt_3_ID658435317131028813_ID689935917131028813_A_A"><A =
name=3D"brc_ID689935917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>39</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID694336317131028813_"=20
class=3D"idt_3_ID607334217131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID694336317131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID694336317131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>151</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID706136517131028813_"=20
class=3D"idt_3_ID694336317131028813_ID706136517131028813_A_A"><A =
name=3D"brc_ID706136517131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 53%;">
            =
<H6>89</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID712936717131028813_"=20
class=3D"idt_3_ID694336317131028813_ID712936717131028813_A_A"><A =
name=3D"brc_ID712936717131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID720136917131028813_"=20
class=3D"idt_3_ID694336317131028813_ID720136917131028813_A_A"><A =
name=3D"brc_ID720136917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID733837217131028813_"=20
class=3D"idt_3_ID607334217131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID733837217131028813_"></A>
<H3><SPAN style=3D"font-size: small;">can be <SPAN =
style=3D"text-decoration: underline;">downloaded</SPAN>=20
through web-based services</SPAN><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID733837217131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>151</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID740237417131028813_"=20
class=3D"idt_3_ID733837217131028813_ID740237417131028813_A_A"><A =
name=3D"brc_ID740237417131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 63%;">
            =
<H6>69</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID758237617131028813_"=20
class=3D"idt_3_ID733837217131028813_ID758237617131028813_A_A"><A =
name=3D"brc_ID758237617131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>37</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID760337817131028813_"=20
class=3D"idt_3_ID733837217131028813_ID760337817131028813_A_A"><A =
name=3D"brc_ID760337817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>45</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373903138581530113_"=20
class=3D"idt_3_ID607334217131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID373903138581530113_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID373903138581530113_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>151</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372903438581530113_"=20
class=3D"idt_3_ID373903138581530113_ID372903438581530113_A_A"><A =
name=3D"brc_ID372903438581530113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 37%;">
            =
<H6>119</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370703538581530113_"=20
class=3D"idt_3_ID373903138581530113_ID370703538581530113_A_A"><A =
name=3D"brc_ID370703538581530113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>9</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373803638581530113_"=20
class=3D"idt_3_ID373903138581530113_ID373803638581530113_A_A"><A =
name=3D"brc_ID373803638581530113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>23</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID776638117131028813_"=20
class=3D"idt_3_ID607334217131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID776638117131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data &nbsp;</SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID776638117131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>151</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID783538317131028813_"=20
class=3D"idt_3_ID776638117131028813_ID783538317131028813_A_A"><A =
name=3D"brc_ID783538317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 60%;">
            =
<H6>75</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID798238517131028813_"=20
class=3D"idt_3_ID776638117131028813_ID798238517131028813_A_A"><A =
name=3D"brc_ID798238517131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>31</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID804938717131028813_"=20
class=3D"idt_3_ID776638117131028813_ID804938717131028813_A_A"><A =
name=3D"brc_ID804938717131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>45</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID847639817131028813_"=20
class=3D"idt_2_ID391462316131028813_ID847639817131028813_O_M"><A =
name=3D"brc_ID847639817131028813_"></A>
<H2><B>Geographical&nbsp;names</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID847639817131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID847639817131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID858140017131028813_"=20
class=3D"idt_3_ID847639817131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID858140017131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID858140017131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>263</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID867140217131028813_"=20
class=3D"idt_3_ID858140017131028813_ID867140217131028813_A_A"><A =
name=3D"brc_ID867140217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 50%;">
            =
<H6>164</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID874940417131028813_"=20
class=3D"idt_3_ID858140017131028813_ID874940417131028813_A_A"><A =
name=3D"brc_ID874940417131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID885440617131028813_"=20
class=3D"idt_3_ID858140017131028813_ID885440617131028813_A_A"><A =
name=3D"brc_ID885440617131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>74</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID898840917131028813_"=20
class=3D"idt_3_ID847639817131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID898840917131028813_"></A>
<H3>
<P><SPAN style=3D"font-size: small;">can be <SPAN =
style=3D"text-decoration: underline;">discovered</SPAN>=20
through web-based services</SPAN></P><SPAN class=3D"comment"> -single =
choice=20
reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID898840917131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>263</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID908241117131028813_"=20
class=3D"idt_3_ID898840917131028813_ID908241117131028813_A_A"><A =
name=3D"brc_ID908241117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 45%;">
            =
<H6>181</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID913641317131028813_"=20
class=3D"idt_3_ID898840917131028813_ID913641317131028813_A_A"><A =
name=3D"brc_ID913641317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>21</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID922941517131028813_"=20
class=3D"idt_3_ID898840917131028813_ID922941517131028813_A_A"><A =
name=3D"brc_ID922941517131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>61</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID937341817131028813_"=20
class=3D"idt_3_ID847639817131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID937341817131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID937341817131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>263</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID946042017131028813_"=20
class=3D"idt_3_ID937341817131028813_ID946042017131028813_A_A"><A =
name=3D"brc_ID946042017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 44%;">
            =
<H6>184</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID957742217131028813_"=20
class=3D"idt_3_ID937341817131028813_ID957742217131028813_A_A"><A =
name=3D"brc_ID957742217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID966142417131028813_"=20
class=3D"idt_3_ID937341817131028813_ID966142417131028813_A_A"><A =
name=3D"brc_ID966142417131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>55</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID975342717131028813_"=20
class=3D"idt_3_ID847639817131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID975342717131028813_"></A>
<H3>
<P><SPAN style=3D"font-size: small;">can be <SPAN =
style=3D"text-decoration: underline;">downloaded</SPAN>=20
through web-based services</SPAN></P><SPAN class=3D"comment"> -single =
choice=20
reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID975342717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>263</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID985842917131028813_"=20
class=3D"idt_3_ID975342717131028813_ID985842917131028813_A_A"><A =
name=3D"brc_ID985842917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 60%;">
            =
<H6>132</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID993643117131028813_"=20
class=3D"idt_3_ID975342717131028813_ID993643117131028813_A_A"><A =
name=3D"brc_ID993643117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>67</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID004243317131028813_"=20
class=3D"idt_3_ID975342717131028813_ID004243317131028813_A_A"><A =
name=3D"brc_ID004243317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>64</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377537243001630113_"=20
class=3D"idt_3_ID847639817131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID377537243001630113_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID377537243001630113_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>263</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID375137543001630113_"=20
class=3D"idt_3_ID377537243001630113_ID375137543001630113_A_A"><A =
name=3D"brc_ID375137543001630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 34%;">
            =
<H6>217</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376737643001630113_"=20
class=3D"idt_3_ID377537243001630113_ID376737643001630113_A_A"><A =
name=3D"brc_ID376737643001630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370737743001630113_"=20
class=3D"idt_3_ID377537243001630113_ID370737743001630113_A_A"><A =
name=3D"brc_ID370737743001630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID010443617131028813_"=20
class=3D"idt_3_ID847639817131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID010443617131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data &nbsp;</SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID010443617131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>263</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID021443817131028813_"=20
class=3D"idt_3_ID010443617131028813_ID021443817131028813_A_A"><A =
name=3D"brc_ID021443817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 59%;">
            =
<H6>135</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID032044017131028813_"=20
class=3D"idt_3_ID010443617131028813_ID032044017131028813_A_A"><A =
name=3D"brc_ID032044017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>51</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID042444217131028813_"=20
class=3D"idt_3_ID010443617131028813_ID042444217131028813_A_A"><A =
name=3D"brc_ID042444217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>77</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID081447517131028813_"=20
class=3D"idt_2_ID391462316131028813_ID081447517131028813_O_M"><A =
name=3D"brc_ID081447517131028813_"></A>
<H2><B>Administrative units&nbsp;</B>- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID081447517131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID081447517131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID097747717131028813_"=20
class=3D"idt_3_ID081447517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID097747717131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID097747717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>393</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID101347917131028813_"=20
class=3D"idt_3_ID097747717131028813_ID101347917131028813_A_A"><A =
name=3D"brc_ID101347917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 42%;">
            =
<H6>283</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID112448117131028813_"=20
class=3D"idt_3_ID097747717131028813_ID112448117131028813_A_A"><A =
name=3D"brc_ID112448117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID123248317131028813_"=20
class=3D"idt_3_ID097747717131028813_ID123248317131028813_A_A"><A =
name=3D"brc_ID123248317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>77</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID133048717131028813_"=20
class=3D"idt_3_ID081447517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID133048717131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID133048717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>393</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID140748917131028813_"=20
class=3D"idt_3_ID133048717131028813_ID140748917131028813_A_A"><A =
name=3D"brc_ID140748917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 41%;">
            =
<H6>291</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID158449117131028813_"=20
class=3D"idt_3_ID133048717131028813_ID158449117131028813_A_A"><A =
name=3D"brc_ID158449117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID165049317131028813_"=20
class=3D"idt_3_ID133048717131028813_ID165049317131028813_A_A"><A =
name=3D"brc_ID165049317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>69</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID176049617131028813_"=20
class=3D"idt_3_ID081447517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID176049617131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID176049617131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>393</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID180549817131028813_"=20
class=3D"idt_3_ID176049617131028813_ID180549817131028813_A_A"><A =
name=3D"brc_ID180549817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 36%;">
            =
<H6>315</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID194850017131028813_"=20
class=3D"idt_3_ID176049617131028813_ID194850017131028813_A_A"><A =
name=3D"brc_ID194850017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID201550217131028813_"=20
class=3D"idt_3_ID176049617131028813_ID201550217131028813_A_A"><A =
name=3D"brc_ID201550217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>51</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID211750517131028813_"=20
class=3D"idt_3_ID081447517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID211750517131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID211750517131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>393</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID227350717131028813_"=20
class=3D"idt_3_ID211750517131028813_ID227350717131028813_A_A"><A =
name=3D"brc_ID227350717131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 55%;">
            =
<H6>221</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID237250917131028813_"=20
class=3D"idt_3_ID211750517131028813_ID237250917131028813_A_A"><A =
name=3D"brc_ID237250917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>89</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID243051117131028813_"=20
class=3D"idt_3_ID211750517131028813_ID243051117131028813_A_A"><A =
name=3D"brc_ID243051117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>83</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373927801021630113_"=20
class=3D"idt_3_ID081447517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID373927801021630113_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID373927801021630113_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>393</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID375128201021630113_"=20
class=3D"idt_3_ID373927801021630113_ID375128201021630113_A_A"><A =
name=3D"brc_ID375128201021630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 29%;">
            =
<H6>347</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377228301021630113_"=20
class=3D"idt_3_ID373927801021630113_ID377228301021630113_A_A"><A =
name=3D"brc_ID377228301021630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>8</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID379628401021630113_"=20
class=3D"idt_3_ID373927801021630113_ID379628401021630113_A_A"><A =
name=3D"brc_ID379628401021630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>38</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID255951517131028813_"=20
class=3D"idt_3_ID081447517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID255951517131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data&nbsp;</SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID255951517131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>393</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID269051717131028813_"=20
class=3D"idt_3_ID255951517131028813_ID269051717131028813_A_A"><A =
name=3D"brc_ID269051717131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 59%;">
            =
<H6>202</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID274551917131028813_"=20
class=3D"idt_3_ID255951517131028813_ID274551917131028813_A_A"><A =
name=3D"brc_ID274551917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>85</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID280252117131028813_"=20
class=3D"idt_3_ID255951517131028813_ID280252117131028813_A_A"><A =
name=3D"brc_ID280252117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>106</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID324253317131028813_"=20
class=3D"idt_2_ID391462316131028813_ID324253317131028813_O_M"><A =
name=3D"brc_ID324253317131028813_"></A>
<H2><B>Addresses</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID324253317131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID324253317131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID334253517131028813_"=20
class=3D"idt_3_ID324253317131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID334253517131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID334253517131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID348753717131028813_"=20
class=3D"idt_3_ID334253517131028813_ID348753717131028813_A_A"><A =
name=3D"brc_ID348753717131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 48%;">
            =
<H6>169</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID350153917131028813_"=20
class=3D"idt_3_ID334253517131028813_ID350153917131028813_A_A"><A =
name=3D"brc_ID350153917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID362054117131028813_"=20
class=3D"idt_3_ID334253517131028813_ID362054117131028813_A_A"><A =
name=3D"brc_ID362054117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>54</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372054417131028813_"=20
class=3D"idt_3_ID324253317131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID372054417131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID372054417131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID387954617131028813_"=20
class=3D"idt_3_ID372054417131028813_ID387954617131028813_A_A"><A =
name=3D"brc_ID387954617131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 47%;">
            =
<H6>171</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID397154817131028813_"=20
class=3D"idt_3_ID372054417131028813_ID397154817131028813_A_A"><A =
name=3D"brc_ID397154817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID407655017131028813_"=20
class=3D"idt_3_ID372054417131028813_ID407655017131028813_A_A"><A =
name=3D"brc_ID407655017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>52</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID417655317131028813_"=20
class=3D"idt_3_ID324253317131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID417655317131028813_"></A>
<H3>&nbsp;can be <SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID417655317131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID429855517131028813_"=20
class=3D"idt_3_ID417655317131028813_ID429855517131028813_A_A"><A =
name=3D"brc_ID429855517131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 45%;">
            =
<H6>178</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID432755717131028813_"=20
class=3D"idt_3_ID417655317131028813_ID432755717131028813_A_A"><A =
name=3D"brc_ID432755717131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>32</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID440855917131028813_"=20
class=3D"idt_3_ID417655317131028813_ID440855917131028813_A_A"><A =
name=3D"brc_ID440855917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>48</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID452756217131028813_"=20
class=3D"idt_3_ID324253317131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID452756217131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID452756217131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID462956417131028813_"=20
class=3D"idt_3_ID452756217131028813_ID462956417131028813_A_A"><A =
name=3D"brc_ID462956417131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>111</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID477656617131028813_"=20
class=3D"idt_3_ID452756217131028813_ID477656617131028813_A_A"><A =
name=3D"brc_ID477656617131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>84</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID482756817131028813_"=20
class=3D"idt_3_ID452756217131028813_ID482756817131028813_A_A"><A =
name=3D"brc_ID482756817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>63</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370678522091630113_"=20
class=3D"idt_3_ID324253317131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID370678522091630113_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID370678522091630113_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372978822091630113_"=20
class=3D"idt_3_ID370678522091630113_ID372978822091630113_A_A"><A =
name=3D"brc_ID372978822091630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 36%;">
            =
<H6>206</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372978922091630113_"=20
class=3D"idt_3_ID370678522091630113_ID372978922091630113_A_A"><A =
name=3D"brc_ID372978922091630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378179022091630113_"=20
class=3D"idt_3_ID370678522091630113_ID378179022091630113_A_A"><A =
name=3D"brc_ID378179022091630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>37</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID496557117131028813_"=20
class=3D"idt_3_ID324253317131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID496557117131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data&nbsp;</SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID496557117131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID506357317131028813_"=20
class=3D"idt_3_ID496557117131028813_ID506357317131028813_A_A"><A =
name=3D"brc_ID506357317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>124</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID511557517131028813_"=20
class=3D"idt_3_ID496557117131028813_ID511557517131028813_A_A"><A =
name=3D"brc_ID511557517131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>59</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID526757717131028813_"=20
class=3D"idt_3_ID496557117131028813_ID526757717131028813_A_A"><A =
name=3D"brc_ID526757717131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>75</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID561858917131028813_"=20
class=3D"idt_2_ID391462316131028813_ID561858917131028813_O_M"><A =
name=3D"brc_ID561858917131028813_"></A>
<H2><B>Cadastral parcels</B>&nbsp;- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID561858917131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID561858917131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID570959117131028813_"=20
class=3D"idt_3_ID561858917131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID570959117131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID570959117131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>320</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID587559317131028813_"=20
class=3D"idt_3_ID570959117131028813_ID587559317131028813_A_A"><A =
name=3D"brc_ID587559317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 43%;">
            =
<H6>227</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID595859517131028813_"=20
class=3D"idt_3_ID570959117131028813_ID595859517131028813_A_A"><A =
name=3D"brc_ID595859517131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID604159717131028813_"=20
class=3D"idt_3_ID570959117131028813_ID604159717131028813_A_A"><A =
name=3D"brc_ID604159717131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>53</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID615060117131028813_"=20
class=3D"idt_3_ID561858917131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID615060117131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID615060117131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>320</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID629760317131028813_"=20
class=3D"idt_3_ID615060117131028813_ID629760317131028813_A_A"><A =
name=3D"brc_ID629760317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 44%;">
            =
<H6>224</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID638760517131028813_"=20
class=3D"idt_3_ID615060117131028813_ID638760517131028813_A_A"><A =
name=3D"brc_ID638760517131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>46</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID644360717131028813_"=20
class=3D"idt_3_ID615060117131028813_ID644360717131028813_A_A"><A =
name=3D"brc_ID644360717131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>50</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID656861017131028813_"=20
class=3D"idt_3_ID561858917131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID656861017131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID656861017131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>320</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID668461217131028813_"=20
class=3D"idt_3_ID656861017131028813_ID668461217131028813_A_A"><A =
name=3D"brc_ID668461217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 41%;">
            =
<H6>235</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID673561417131028813_"=20
class=3D"idt_3_ID656861017131028813_ID673561417131028813_A_A"><A =
name=3D"brc_ID673561417131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>41</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID686961617131028813_"=20
class=3D"idt_3_ID656861017131028813_ID686961617131028813_A_A"><A =
name=3D"brc_ID686961617131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>44</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID696583817131028813_"=20
class=3D"idt_3_ID561858917131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID696583817131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID696583817131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>320</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID706384017131028813_"=20
class=3D"idt_3_ID696583817131028813_ID706384017131028813_A_A"><A =
name=3D"brc_ID706384017131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>143</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID719384217131028813_"=20
class=3D"idt_3_ID696583817131028813_ID719384217131028813_A_A"><A =
name=3D"brc_ID719384217131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>113</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID723784417131028813_"=20
class=3D"idt_3_ID696583817131028813_ID723784417131028813_A_A"><A =
name=3D"brc_ID723784417131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>64</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372315814161630113_"=20
class=3D"idt_3_ID561858917131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID372315814161630113_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID372315814161630113_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>320</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377616214161630113_"=20
class=3D"idt_3_ID372315814161630113_ID377616214161630113_A_A"><A =
name=3D"brc_ID377616214161630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 26%;">
            =
<H6>298</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378316314161630113_"=20
class=3D"idt_3_ID372315814161630113_ID378316314161630113_A_A"><A =
name=3D"brc_ID378316314161630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>5</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID375016414161630113_"=20
class=3D"idt_3_ID372315814161630113_ID375016414161630113_A_A"><A =
name=3D"brc_ID375016414161630113_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID730684717131028813_"=20
class=3D"idt_3_ID561858917131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID730684717131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID730684717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>320</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID742184917131028813_"=20
class=3D"idt_3_ID730684717131028813_ID742184917131028813_A_A"><A =
name=3D"brc_ID742184917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>142</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID755985117131028813_"=20
class=3D"idt_3_ID730684717131028813_ID755985117131028813_A_A"><A =
name=3D"brc_ID755985117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>80</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID760485317131028813_"=20
class=3D"idt_3_ID730684717131028813_ID760485317131028813_A_A"><A =
name=3D"brc_ID760485317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>98</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID801886517131028813_"=20
class=3D"idt_2_ID391462316131028813_ID801886517131028813_O_M"><A =
name=3D"brc_ID801886517131028813_"></A>
<H2><B>Transport networks</B>&nbsp;- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID801886517131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID801886517131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID813686717131028813_"=20
class=3D"idt_3_ID801886517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID813686717131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID813686717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>289</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID828686917131028813_"=20
class=3D"idt_3_ID813686717131028813_ID828686917131028813_A_A"><A =
name=3D"brc_ID828686917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 53%;">
            =
<H6>171</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID833487117131028813_"=20
class=3D"idt_3_ID813686717131028813_ID833487117131028813_A_A"><A =
name=3D"brc_ID833487117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID843287317131028813_"=20
class=3D"idt_3_ID813686717131028813_ID843287317131028813_A_A"><A =
name=3D"brc_ID843287317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>76</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID853487717131028813_"=20
class=3D"idt_3_ID801886517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID853487717131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID853487717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>289</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID862487917131028813_"=20
class=3D"idt_3_ID853487717131028813_ID862487917131028813_A_A"><A =
name=3D"brc_ID862487917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 53%;">
            =
<H6>168</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID877188117131028813_"=20
class=3D"idt_3_ID853487717131028813_ID877188117131028813_A_A"><A =
name=3D"brc_ID877188117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>46</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID881588317131028813_"=20
class=3D"idt_3_ID853487717131028813_ID881588317131028813_A_A"><A =
name=3D"brc_ID881588317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>75</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID898788717131028813_"=20
class=3D"idt_3_ID801886517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID898788717131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID898788717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>289</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID907188917131028813_"=20
class=3D"idt_3_ID898788717131028813_ID907188917131028813_A_A"><A =
name=3D"brc_ID907188917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 50%;">
            =
<H6>179</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID916589117131028813_"=20
class=3D"idt_3_ID898788717131028813_ID916589117131028813_A_A"><A =
name=3D"brc_ID916589117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>36</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID926489317131028813_"=20
class=3D"idt_3_ID898788717131028813_ID926489317131028813_A_A"><A =
name=3D"brc_ID926489317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>74</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID939489717131028813_"=20
class=3D"idt_3_ID801886517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID939489717131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID939489717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>289</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID949089917131028813_"=20
class=3D"idt_3_ID939489717131028813_ID949089917131028813_A_A"><A =
name=3D"brc_ID949089917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>111</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID954990117131028813_"=20
class=3D"idt_3_ID939489717131028813_ID954990117131028813_A_A"><A =
name=3D"brc_ID954990117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>97</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID967390317131028813_"=20
class=3D"idt_3_ID939489717131028813_ID967390317131028813_A_A"><A =
name=3D"brc_ID967390317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>81</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377283600500730213_"=20
class=3D"idt_3_ID801886517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID377283600500730213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID377283600500730213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>289</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373884000500730213_"=20
class=3D"idt_3_ID377283600500730213_ID373884000500730213_A_A"><A =
name=3D"brc_ID373884000500730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 40%;">
            =
<H6>217</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374084100500730213_"=20
class=3D"idt_3_ID377283600500730213_ID374084100500730213_A_A"><A =
name=3D"brc_ID374084100500730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377784200500730213_"=20
class=3D"idt_3_ID377283600500730213_ID377784200500730213_A_A"><A =
name=3D"brc_ID377784200500730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>52</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID979290717131028813_"=20
class=3D"idt_3_ID801886517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID979290717131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID979290717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>289</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID985990917131028813_"=20
class=3D"idt_3_ID979290717131028813_ID985990917131028813_A_A"><A =
name=3D"brc_ID985990917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>131</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID998291117131028813_"=20
class=3D"idt_3_ID979290717131028813_ID998291117131028813_A_A"><A =
name=3D"brc_ID998291117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>57</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID009991317131028813_"=20
class=3D"idt_3_ID979290717131028813_ID009991317131028813_A_A"><A =
name=3D"brc_ID009991317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>101</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID041092517131028813_"=20
class=3D"idt_2_ID391462316131028813_ID041092517131028813_O_M"><A =
name=3D"brc_ID041092517131028813_"></A>
<H2><B>Hydrography</B>&nbsp;- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID041092517131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID041092517131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID059592717131028813_"=20
class=3D"idt_3_ID041092517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID059592717131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID059592717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>285</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID067492917131028813_"=20
class=3D"idt_3_ID059592717131028813_ID067492917131028813_A_A"><A =
name=3D"brc_ID067492917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 46%;">
            =
<H6>191</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID077093117131028813_"=20
class=3D"idt_3_ID059592717131028813_ID077093117131028813_A_A"><A =
name=3D"brc_ID077093117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID081893317131028813_"=20
class=3D"idt_3_ID059592717131028813_ID081893317131028813_A_A"><A =
name=3D"brc_ID081893317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>65</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID096093717131028813_"=20
class=3D"idt_3_ID041092517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID096093717131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID096093717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>285</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID100493917131028813_"=20
class=3D"idt_3_ID096093717131028813_ID100493917131028813_A_A"><A =
name=3D"brc_ID100493917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 48%;">
            =
<H6>184</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID118794117131028813_"=20
class=3D"idt_3_ID096093717131028813_ID118794117131028813_A_A"><A =
name=3D"brc_ID118794117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>32</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID122594317131028813_"=20
class=3D"idt_3_ID096093717131028813_ID122594317131028813_A_A"><A =
name=3D"brc_ID122594317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>69</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID130294717131028813_"=20
class=3D"idt_3_ID041092517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID130294717131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID130294717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>285</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID141994917131028813_"=20
class=3D"idt_3_ID130294717131028813_ID141994917131028813_A_A"><A =
name=3D"brc_ID141994917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 47%;">
            =
<H6>189</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID158995117131028813_"=20
class=3D"idt_3_ID130294717131028813_ID158995117131028813_A_A"><A =
name=3D"brc_ID158995117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>23</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID163795317131028813_"=20
class=3D"idt_3_ID130294717131028813_ID163795317131028813_A_A"><A =
name=3D"brc_ID163795317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>73</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID171595717131028813_"=20
class=3D"idt_3_ID041092517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID171595717131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID171595717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>285</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID186995917131028813_"=20
class=3D"idt_3_ID171595717131028813_ID186995917131028813_A_A"><A =
name=3D"brc_ID186995917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>134</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID196496117131028813_"=20
class=3D"idt_3_ID171595717131028813_ID196496117131028813_A_A"><A =
name=3D"brc_ID196496117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>72</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID204796317131028813_"=20
class=3D"idt_3_ID171595717131028813_ID204796317131028813_A_A"><A =
name=3D"brc_ID204796317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>79</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378165233570730213_"=20
class=3D"idt_3_ID041092517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID378165233570730213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID378165233570730213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>285</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373965633570730213_"=20
class=3D"idt_3_ID378165233570730213_ID373965633570730213_A_A"><A =
name=3D"brc_ID373965633570730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 36%;">
            =
<H6>228</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374965733570730213_"=20
class=3D"idt_3_ID378165233570730213_ID374965733570730213_A_A"><A =
name=3D"brc_ID374965733570730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>10</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372865833570730213_"=20
class=3D"idt_3_ID378165233570730213_ID372865833570730213_A_A"><A =
name=3D"brc_ID372865833570730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID212396717131028813_"=20
class=3D"idt_3_ID041092517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID212396717131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID212396717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>285</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID226196917131028813_"=20
class=3D"idt_3_ID212396717131028813_ID226196917131028813_A_A"><A =
name=3D"brc_ID226196917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 61%;">
            =
<H6>140</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID238797117131028813_"=20
class=3D"idt_3_ID212396717131028813_ID238797117131028813_A_A"><A =
name=3D"brc_ID238797117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>55</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID240897317131028813_"=20
class=3D"idt_3_ID212396717131028813_ID240897317131028813_A_A"><A =
name=3D"brc_ID240897317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>90</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID287798517131028813_"=20
class=3D"idt_2_ID391462316131028813_ID287798517131028813_O_M"><A =
name=3D"brc_ID287798517131028813_"></A>
<H2><B>Protected&nbsp;sites</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID287798517131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID287798517131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID297298717131028813_"=20
class=3D"idt_3_ID287798517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID297298717131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID297298717131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>302</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID304898917131028813_"=20
class=3D"idt_3_ID297298717131028813_ID304898917131028813_A_A"><A =
name=3D"brc_ID304898917131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 43%;">
            =
<H6>215</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID313399117131028813_"=20
class=3D"idt_3_ID297298717131028813_ID313399117131028813_A_A"><A =
name=3D"brc_ID313399117131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID323599317131028813_"=20
class=3D"idt_3_ID297298717131028813_ID323599317131028813_A_A"><A =
name=3D"brc_ID323599317131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>67</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID338999617131028813_"=20
class=3D"idt_3_ID287798517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID338999617131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID338999617131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>302</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID341899817131028813_"=20
class=3D"idt_3_ID338999617131028813_ID341899817131028813_A_A"><A =
name=3D"brc_ID341899817131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 46%;">
            =
<H6>205</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID357500018131028813_"=20
class=3D"idt_3_ID338999617131028813_ID357500018131028813_A_A"><A =
name=3D"brc_ID357500018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>26</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID364600218131028813_"=20
class=3D"idt_3_ID338999617131028813_ID364600218131028813_A_A"><A =
name=3D"brc_ID364600218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>71</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372700518131028813_"=20
class=3D"idt_3_ID287798517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID372700518131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID372700518131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>302</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID388300718131028813_"=20
class=3D"idt_3_ID372700518131028813_ID388300718131028813_A_A"><A =
name=3D"brc_ID388300718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 44%;">
            =
<H6>211</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID392300918131028813_"=20
class=3D"idt_3_ID372700518131028813_ID392300918131028813_A_A"><A =
name=3D"brc_ID392300918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID406001118131028813_"=20
class=3D"idt_3_ID372700518131028813_ID406001118131028813_A_A"><A =
name=3D"brc_ID406001118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>66</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID417301518131028813_"=20
class=3D"idt_3_ID287798517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID417301518131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID417301518131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>302</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID428901718131028813_"=20
class=3D"idt_3_ID417301518131028813_ID428901718131028813_A_A"><A =
name=3D"brc_ID428901718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 59%;">
            =
<H6>155</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID436801918131028813_"=20
class=3D"idt_3_ID417301518131028813_ID436801918131028813_A_A"><A =
name=3D"brc_ID436801918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>63</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID442402118131028813_"=20
class=3D"idt_3_ID417301518131028813_ID442402118131028813_A_A"><A =
name=3D"brc_ID442402118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>84</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371237608580730213_"=20
class=3D"idt_3_ID287798517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID371237608580730213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID371237608580730213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>302</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370538008580730213_"=20
class=3D"idt_3_ID371237608580730213_ID370538008580730213_A_A"><A =
name=3D"brc_ID370538008580730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 33%;">
            =
<H6>254</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374038108580730213_"=20
class=3D"idt_3_ID371237608580730213_ID374038108580730213_A_A"><A =
name=3D"brc_ID374038108580730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>6</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID379738208580730213_"=20
class=3D"idt_3_ID371237608580730213_ID379738208580730213_A_A"><A =
name=3D"brc_ID379738208580730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID457202518131028813_"=20
class=3D"idt_3_ID287798517131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID457202518131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data&nbsp;policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID457202518131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>302</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID467802718131028813_"=20
class=3D"idt_3_ID457202518131028813_ID467802718131028813_A_A"><A =
name=3D"brc_ID467802718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 52%;">
            =
<H6>180</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID474702918131028813_"=20
class=3D"idt_3_ID457202518131028813_ID474702918131028813_A_A"><A =
name=3D"brc_ID474702918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>51</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID482403118131028813_"=20
class=3D"idt_3_ID457202518131028813_ID482403118131028813_A_A"><A =
name=3D"brc_ID482403118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>71</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID521804318131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID521804318131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID521804318131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;<SPAN=20
style=3D"font-size: medium;">Which spatial data themes listed in Annexe =
II of the=20
INSPIRE Directive cover the spatial data USED by you or your=20
organisation?</SPAN><SPAN class=3D"comment"> -multiple choices reply- =
</SPAN><SPAN=20
class=3D"optional">(optional)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID521804318131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>579</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID537004518131028813_"=20
class=3D"idt_3_ID521804318131028813_ID537004518131028813_A_A"><A =
name=3D"brc_ID537004518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID537004518131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID537004518131028813');manageTree('I=
D537004518131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID537004518131028813"></TD>
    <TD>
      <H6>1.Elevation</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>254</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID537004518131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID570305518131028813_"=20
class=3D"idt_4_ID537004518131028813_ID570305518131028813_A_D"><A =
name=3D"dep_ID570305518131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID546604718131028813_"=20
class=3D"idt_3_ID521804318131028813_ID546604718131028813_A_A"><A =
name=3D"brc_ID546604718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID546604718131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID546604718131028813');manageTree('I=
D546604718131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID546604718131028813"></TD>
    <TD>
      <H6>2.	Land cover</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 63%;">
            =
<H6>270</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID546604718131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID814911518131028813_"=20
class=3D"idt_4_ID546604718131028813_ID814911518131028813_A_D"><A =
name=3D"dep_ID814911518131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID550204918131028813_"=20
class=3D"idt_3_ID521804318131028813_ID550204918131028813_A_A"><A =
name=3D"brc_ID550204918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID550204918131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID550204918131028813');manageTree('I=
D550204918131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID550204918131028813"></TD>
    <TD>
      <H6>3.	Ortho-imagery</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 51%;">
            =
<H6>354</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID550204918131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID055817018131028813_"=20
class=3D"idt_4_ID550204918131028813_ID055817018131028813_A_D"><A =
name=3D"dep_ID055817018131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID561005118131028813_"=20
class=3D"idt_3_ID521804318131028813_ID561005118131028813_A_A"><A =
name=3D"brc_ID561005118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID561005118131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID561005118131028813');manageTree('I=
D561005118131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID561005118131028813"></TD>
    <TD>
      <H6>4.	Geology</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>121</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID561005118131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID291322518131028813_"=20
class=3D"idt_4_ID561005118131028813_ID291322518131028813_A_D"><A =
name=3D"dep_ID291322518131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID570305518131028813_"=20
class=3D"idt_2_ID391462316131028813_ID570305518131028813_O_M"><A =
name=3D"brc_ID570305518131028813_"></A>
<H2><B>Elevation</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID570305518131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID570305518131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID581705718131028813_"=20
class=3D"idt_3_ID570305518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID581705718131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID581705718131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>254</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID599705918131028813_"=20
class=3D"idt_3_ID581705718131028813_ID599705918131028813_A_A"><A =
name=3D"brc_ID599705918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 50%;">
            =
<H6>158</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID606306118131028813_"=20
class=3D"idt_3_ID581705718131028813_ID606306118131028813_A_A"><A =
name=3D"brc_ID606306118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID612806318131028813_"=20
class=3D"idt_3_ID581705718131028813_ID612806318131028813_A_A"><A =
name=3D"brc_ID612806318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>72</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID624406718131028813_"=20
class=3D"idt_3_ID570305518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID624406718131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID624406718131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>254</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID639406918131028813_"=20
class=3D"idt_3_ID624406718131028813_ID639406918131028813_A_A"><A =
name=3D"brc_ID639406918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 53%;">
            =
<H6>148</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID642407118131028813_"=20
class=3D"idt_3_ID624406718131028813_ID642407118131028813_A_A"><A =
name=3D"brc_ID642407118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID650507318131028813_"=20
class=3D"idt_3_ID624406718131028813_ID650507318131028813_A_A"><A =
name=3D"brc_ID650507318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>71</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID668507718131028813_"=20
class=3D"idt_3_ID570305518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID668507718131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewe</SPAN>d =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID668507718131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>254</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID671507918131028813_"=20
class=3D"idt_3_ID668507718131028813_ID671507918131028813_A_A"><A =
name=3D"brc_ID671507918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 55%;">
            =
<H6>144</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID689608118131028813_"=20
class=3D"idt_3_ID668507718131028813_ID689608118131028813_A_A"><A =
name=3D"brc_ID689608118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>37</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID697208318131028813_"=20
class=3D"idt_3_ID668507718131028813_ID697208318131028813_A_A"><A =
name=3D"brc_ID697208318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>73</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID706808718131028813_"=20
class=3D"idt_3_ID570305518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID706808718131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID706808718131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>254</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID718808918131028813_"=20
class=3D"idt_3_ID706808718131028813_ID718808918131028813_A_A"><A =
name=3D"brc_ID718808918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>97</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID727409118131028813_"=20
class=3D"idt_3_ID706808718131028813_ID727409118131028813_A_A"><A =
name=3D"brc_ID727409118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>83</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID737309318131028813_"=20
class=3D"idt_3_ID706808718131028813_ID737309318131028813_A_A"><A =
name=3D"brc_ID737309318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>74</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376110442590730213_"=20
class=3D"idt_3_ID570305518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID376110442590730213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID376110442590730213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>254</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376610942590730213_"=20
class=3D"idt_3_ID376110442590730213_ID376610942590730213_A_A"><A =
name=3D"brc_ID376610942590730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 37%;">
            =
<H6>201</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374711042590730213_"=20
class=3D"idt_3_ID376110442590730213_ID374711042590730213_A_A"><A =
name=3D"brc_ID374711042590730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>9</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378211142590730213_"=20
class=3D"idt_3_ID376110442590730213_ID378211142590730213_A_A"><A =
name=3D"brc_ID378211142590730213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>44</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID749609718131028813_"=20
class=3D"idt_3_ID570305518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID749609718131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID749609718131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>254</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID756409918131028813_"=20
class=3D"idt_3_ID749609718131028813_ID756409918131028813_A_A"><A =
name=3D"brc_ID756409918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>104</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID765310118131028813_"=20
class=3D"idt_3_ID749609718131028813_ID765310118131028813_A_A"><A =
name=3D"brc_ID765310118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>65</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID773110318131028813_"=20
class=3D"idt_3_ID749609718131028813_ID773110318131028813_A_A"><A =
name=3D"brc_ID773110318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>85</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID814911518131028813_"=20
class=3D"idt_2_ID391462316131028813_ID814911518131028813_O_M"><A =
name=3D"brc_ID814911518131028813_"></A>
<H2>Land cover - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID814911518131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID814911518131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID829011718131028813_"=20
class=3D"idt_3_ID814911518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID829011718131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID829011718131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>270</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID833111918131028813_"=20
class=3D"idt_3_ID829011718131028813_ID833111918131028813_A_A"><A =
name=3D"brc_ID833111918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 47%;">
            =
<H6>178</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID844212118131028813_"=20
class=3D"idt_3_ID829011718131028813_ID844212118131028813_A_A"><A =
name=3D"brc_ID844212118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID859612318131028813_"=20
class=3D"idt_3_ID829011718131028813_ID859612318131028813_A_A"><A =
name=3D"brc_ID859612318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>77</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID865812618131028813_"=20
class=3D"idt_3_ID814911518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID865812618131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID865812618131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>270</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID876912818131028813_"=20
class=3D"idt_3_ID865812618131028813_ID876912818131028813_A_A"><A =
name=3D"brc_ID876912818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 50%;">
            =
<H6>168</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID881113018131028813_"=20
class=3D"idt_3_ID865812618131028813_ID881113018131028813_A_A"><A =
name=3D"brc_ID881113018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID896713218131028813_"=20
class=3D"idt_3_ID865812618131028813_ID896713218131028813_A_A"><A =
name=3D"brc_ID896713218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>78</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID904313518131028813_"=20
class=3D"idt_3_ID814911518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID904313518131028813_"></A>
<H3>&nbsp;can be <SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID904313518131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>270</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID913113718131028813_"=20
class=3D"idt_3_ID904313518131028813_ID913113718131028813_A_A"><A =
name=3D"brc_ID913113718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 51%;">
            =
<H6>165</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID928113918131028813_"=20
class=3D"idt_3_ID904313518131028813_ID928113918131028813_A_A"><A =
name=3D"brc_ID928113918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID931614118131028813_"=20
class=3D"idt_3_ID904313518131028813_ID931614118131028813_A_A"><A =
name=3D"brc_ID931614118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>80</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID945814418131028813_"=20
class=3D"idt_3_ID814911518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID945814418131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID945814418131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>270</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID951014618131028813_"=20
class=3D"idt_3_ID945814418131028813_ID951014618131028813_A_A"><A =
name=3D"brc_ID951014618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>110</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID964014818131028813_"=20
class=3D"idt_3_ID945814418131028813_ID964014818131028813_A_A"><A =
name=3D"brc_ID964014818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>68</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID979315018131028813_"=20
class=3D"idt_3_ID945814418131028813_ID979315018131028813_A_A"><A =
name=3D"brc_ID979315018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>92</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID375060616000830213_"=20
class=3D"idt_3_ID814911518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID375060616000830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID375060616000830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>270</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378861016000830213_"=20
class=3D"idt_3_ID375060616000830213_ID378861016000830213_A_A"><A =
name=3D"brc_ID378861016000830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 38%;">
            =
<H6>210</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377261116000830213_"=20
class=3D"idt_3_ID375060616000830213_ID377261116000830213_A_A"><A =
name=3D"brc_ID377261116000830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>10</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371861216000830213_"=20
class=3D"idt_3_ID375060616000830213_ID371861216000830213_A_A"><A =
name=3D"brc_ID371861216000830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>50</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID983815318131028813_"=20
class=3D"idt_3_ID814911518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID983815318131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data&nbsp;</SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID983815318131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>270</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID991015518131028813_"=20
class=3D"idt_3_ID983815318131028813_ID991015518131028813_A_A"><A =
name=3D"brc_ID991015518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>120</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID008715718131028813_"=20
class=3D"idt_3_ID983815318131028813_ID008715718131028813_A_A"><A =
name=3D"brc_ID008715718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>59</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID013115918131028813_"=20
class=3D"idt_3_ID983815318131028813_ID013115918131028813_A_A"><A =
name=3D"brc_ID013115918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>91</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID055817018131028813_"=20
class=3D"idt_2_ID391462316131028813_ID055817018131028813_O_M"><A =
name=3D"brc_ID055817018131028813_"></A>
<H2><B>Ortho-imagery</B>&nbsp;- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID055817018131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID055817018131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID068717218131028813_"=20
class=3D"idt_3_ID055817018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID068717218131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID068717218131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>354</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID078017418131028813_"=20
class=3D"idt_3_ID068717218131028813_ID078017418131028813_A_A"><A =
name=3D"brc_ID078017418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 41%;">
            =
<H6>262</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID088417618131028813_"=20
class=3D"idt_3_ID068717218131028813_ID088417618131028813_A_A"><A =
name=3D"brc_ID088417618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID096417818131028813_"=20
class=3D"idt_3_ID068717218131028813_ID096417818131028813_A_A"><A =
name=3D"brc_ID096417818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>65</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID108218118131028813_"=20
class=3D"idt_3_ID055817018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID108218118131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID108218118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>354</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID111518318131028813_"=20
class=3D"idt_3_ID108218118131028813_ID111518318131028813_A_A"><A =
name=3D"brc_ID111518318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 40%;">
            =
<H6>266</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID123918518131028813_"=20
class=3D"idt_3_ID108218118131028813_ID123918518131028813_A_A"><A =
name=3D"brc_ID123918518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID132218718131028813_"=20
class=3D"idt_3_ID108218118131028813_ID132218718131028813_A_A"><A =
name=3D"brc_ID132218718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>55</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID144119018131028813_"=20
class=3D"idt_3_ID055817018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID144119018131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID144119018131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>354</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID158219218131028813_"=20
class=3D"idt_3_ID144119018131028813_ID158219218131028813_A_A"><A =
name=3D"brc_ID158219218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 35%;">
            =
<H6>289</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID164219418131028813_"=20
class=3D"idt_3_ID144119018131028813_ID164219418131028813_A_A"><A =
name=3D"brc_ID164219418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID171919618131028813_"=20
class=3D"idt_3_ID144119018131028813_ID171919618131028813_A_A"><A =
name=3D"brc_ID171919618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>45</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID188119918131028813_"=20
class=3D"idt_3_ID055817018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID188119918131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID188119918131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>354</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID195520118131028813_"=20
class=3D"idt_3_ID188119918131028813_ID195520118131028813_A_A"><A =
name=3D"brc_ID195520118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>152</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID203220318131028813_"=20
class=3D"idt_3_ID188119918131028813_ID203220318131028813_A_A"><A =
name=3D"brc_ID203220318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>136</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID212420518131028813_"=20
class=3D"idt_3_ID188119918131028813_ID212420518131028813_A_A"><A =
name=3D"brc_ID212420518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>66</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374599926010830213_"=20
class=3D"idt_3_ID055817018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID374599926010830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID374599926010830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>354</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370900227010830213_"=20
class=3D"idt_3_ID374599926010830213_ID370900227010830213_A_A"><A =
name=3D"brc_ID370900227010830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 32%;">
            =
<H6>300</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374500427010830213_"=20
class=3D"idt_3_ID374599926010830213_ID374500427010830213_A_A"><A =
name=3D"brc_ID374500427010830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373800527010830213_"=20
class=3D"idt_3_ID374599926010830213_ID373800527010830213_A_A"><A =
name=3D"brc_ID373800527010830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>41</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID226920818131028813_"=20
class=3D"idt_3_ID055817018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID226920818131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy =
</SPAN>(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID226920818131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>354</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID230221018131028813_"=20
class=3D"idt_3_ID226920818131028813_ID230221018131028813_A_A"><A =
name=3D"brc_ID230221018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>167</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID247021218131028813_"=20
class=3D"idt_3_ID226920818131028813_ID247021218131028813_A_A"><A =
name=3D"brc_ID247021218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>83</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID256421418131028813_"=20
class=3D"idt_3_ID226920818131028813_ID256421418131028813_A_A"><A =
name=3D"brc_ID256421418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>104</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID291322518131028813_"=20
class=3D"idt_2_ID391462316131028813_ID291322518131028813_O_M"><A =
name=3D"brc_ID291322518131028813_"></A>
<H2><B>Geology</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID291322518131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID291322518131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID301322718131028813_"=20
class=3D"idt_3_ID291322518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID301322718131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID301322718131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>121</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID316622918131028813_"=20
class=3D"idt_3_ID301322718131028813_ID316622918131028813_A_A"><A =
name=3D"brc_ID316622918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 49%;">
            =
<H6>77</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID324223118131028813_"=20
class=3D"idt_3_ID301322718131028813_ID324223118131028813_A_A"><A =
name=3D"brc_ID324223118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>10</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID337723318131028813_"=20
class=3D"idt_3_ID301322718131028813_ID337723318131028813_A_A"><A =
name=3D"brc_ID337723318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>34</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID345523618131028813_"=20
class=3D"idt_3_ID291322518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID345523618131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID345523618131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>121</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID351523818131028813_"=20
class=3D"idt_3_ID345523618131028813_ID351523818131028813_A_A"><A =
name=3D"brc_ID351523818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 48%;">
            =
<H6>79</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID365324018131028813_"=20
class=3D"idt_3_ID345523618131028813_ID365324018131028813_A_A"><A =
name=3D"brc_ID365324018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID375624218131028813_"=20
class=3D"idt_3_ID345523618131028813_ID375624218131028813_A_A"><A =
name=3D"brc_ID375624218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID382824518131028813_"=20
class=3D"idt_3_ID291322518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID382824518131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID382824518131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>121</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID399424718131028813_"=20
class=3D"idt_3_ID382824518131028813_ID399424718131028813_A_A"><A =
name=3D"brc_ID399424718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 46%;">
            =
<H6>82</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID409624918131028813_"=20
class=3D"idt_3_ID382824518131028813_ID409624918131028813_A_A"><A =
name=3D"brc_ID409624918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID410625118131028813_"=20
class=3D"idt_3_ID382824518131028813_ID410625118131028813_A_A"><A =
name=3D"brc_ID410625118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID423525418131028813_"=20
class=3D"idt_3_ID291322518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID423525418131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID423525418131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>121</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID430525618131028813_"=20
class=3D"idt_3_ID423525418131028813_ID430525618131028813_A_A"><A =
name=3D"brc_ID430525618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>52</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID442025818131028813_"=20
class=3D"idt_3_ID423525418131028813_ID442025818131028813_A_A"><A =
name=3D"brc_ID442025818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID457126018131028813_"=20
class=3D"idt_3_ID423525418131028813_ID457126018131028813_A_A"><A =
name=3D"brc_ID457126018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371917530020830213_"=20
class=3D"idt_3_ID291322518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID371917530020830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID371917530020830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>121</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373017930020830213_"=20
class=3D"idt_3_ID371917530020830213_ID373017930020830213_A_A"><A =
name=3D"brc_ID373017930020830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 36%;">
            =
<H6>97</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373918030020830213_"=20
class=3D"idt_3_ID371917530020830213_ID373918030020830213_A_A"><A =
name=3D"brc_ID373918030020830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>5</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373418130020830213_"=20
class=3D"idt_3_ID371917530020830213_ID373418130020830213_A_A"><A =
name=3D"brc_ID373418130020830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>19</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID467726318131028813_"=20
class=3D"idt_3_ID291322518131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID467726318131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID467726318131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>121</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID479426518131028813_"=20
class=3D"idt_3_ID467726318131028813_ID479426518131028813_A_A"><A =
name=3D"brc_ID479426518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>57</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID486926718131028813_"=20
class=3D"idt_3_ID467726318131028813_ID486926718131028813_A_A"><A =
name=3D"brc_ID486926718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>21</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID496126918131028813_"=20
class=3D"idt_3_ID467726318131028813_ID496126918131028813_A_A"><A =
name=3D"brc_ID496126918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>43</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID533428018131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID533428018131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID533428018131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;<SPAN=20
style=3D"font-size: medium;">Which spatial data themes listed in Annexe =
III of the=20
INSPIRE Directive cover the spatial data USED by you or your=20
organisation?</SPAN><SPAN class=3D"comment"> -multiple choices reply- =
</SPAN><SPAN=20
class=3D"optional">(optional)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID533428018131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>579</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID544228218131028813_"=20
class=3D"idt_3_ID533428018131028813_ID544228218131028813_A_A"><A =
name=3D"brc_ID544228218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID544228218131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID544228218131028813');manageTree('I=
D544228218131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID544228218131028813"></TD>
    <TD>
      <H6>1.	Statistical units</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>154</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID544228218131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID756432618131028813_"=20
class=3D"idt_4_ID544228218131028813_ID756432618131028813_A_D"><A =
name=3D"dep_ID756432618131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID551828418131028813_"=20
class=3D"idt_3_ID533428018131028813_ID551828418131028813_A_A"><A =
name=3D"brc_ID551828418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID551828418131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID551828418131028813');manageTree('I=
D551828418131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID551828418131028813"></TD>
    <TD>
      <H6>2.	Buildings</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>211</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID551828418131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID991238118131028813_"=20
class=3D"idt_4_ID551828418131028813_ID991238118131028813_A_D"><A =
name=3D"dep_ID991238118131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID564328618131028813_"=20
class=3D"idt_3_ID533428018131028813_ID564328618131028813_A_A"><A =
name=3D"brc_ID564328618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID564328618131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID564328618131028813');manageTree('I=
D564328618131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID564328618131028813"></TD>
    <TD>
      <H6>3.	Soil</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>128</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID564328618131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID234143918131028813_"=20
class=3D"idt_4_ID564328618131028813_ID234143918131028813_A_D"><A =
name=3D"dep_ID234143918131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID573428818131028813_"=20
class=3D"idt_3_ID533428018131028813_ID573428818131028813_A_A"><A =
name=3D"brc_ID573428818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID573428818131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID573428818131028813');manageTree('I=
D573428818131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID573428818131028813"></TD>
    <TD>
      <H6>4.	Land use</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>258</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID573428818131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID472350118131028813_"=20
class=3D"idt_4_ID573428818131028813_ID472350118131028813_A_D"><A =
name=3D"dep_ID472350118131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID581629018131028813_"=20
class=3D"idt_3_ID533428018131028813_ID581629018131028813_A_A"><A =
name=3D"brc_ID581629018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID581629018131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID581629018131028813');manageTree('I=
D581629018131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID581629018131028813"></TD>
    <TD>
      <H6>5.	Human health and safety</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>55</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID581629018131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID713155718131028813_"=20
class=3D"idt_4_ID581629018131028813_ID713155718131028813_A_D"><A =
name=3D"dep_ID713155718131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID595729218131028813_"=20
class=3D"idt_3_ID533428018131028813_ID595729218131028813_A_A"><A =
name=3D"brc_ID595729218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID595729218131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID595729218131028813');manageTree('I=
D595729218131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID595729218131028813"></TD>
    <TD>
      <H6>6.	Utility and governmental services</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>125</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID595729218131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID950961318131028813_"=20
class=3D"idt_4_ID595729218131028813_ID950961318131028813_A_D"><A =
name=3D"dep_ID950961318131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID609229418131028813_"=20
class=3D"idt_3_ID533428018131028813_ID609229418131028813_A_A"><A =
name=3D"brc_ID609229418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID609229418131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID609229418131028813');manageTree('I=
D609229418131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID609229418131028813"></TD>
    <TD>
      <H6>7.	Environmental monitoring facilities</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>96</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID609229418131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID191267018131028813_"=20
class=3D"idt_4_ID609229418131028813_ID191267018131028813_A_D"><A =
name=3D"dep_ID191267018131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID615129618131028813_"=20
class=3D"idt_3_ID533428018131028813_ID615129618131028813_A_A"><A =
name=3D"brc_ID615129618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID615129618131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID615129618131028813');manageTree('I=
D615129618131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID615129618131028813"></TD>
    <TD>
      <H6>8.	Production and industrial facilities</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>92</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID615129618131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID436973018131028813_"=20
class=3D"idt_4_ID615129618131028813_ID436973018131028813_A_D"><A =
name=3D"dep_ID436973018131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID625329818131028813_"=20
class=3D"idt_3_ID533428018131028813_ID625329818131028813_A_A"><A =
name=3D"brc_ID625329818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID625329818131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID625329818131028813');manageTree('I=
D625329818131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID625329818131028813"></TD>
    <TD>
      <H6>9.	Agricultural and aquaculture facilities</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>81</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID625329818131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID675681118131028813_"=20
class=3D"idt_4_ID625329818131028813_ID675681118131028813_A_D"><A =
name=3D"dep_ID675681118131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID631930018131028813_"=20
class=3D"idt_3_ID533428018131028813_ID631930018131028813_A_A"><A =
name=3D"brc_ID631930018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID631930018131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID631930018131028813');manageTree('I=
D631930018131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID631930018131028813"></TD>
    <TD>
      <H6>10.	Population distribution =E2=80=93 demography</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>122</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID631930018131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID912886618131028813_"=20
class=3D"idt_4_ID631930018131028813_ID912886618131028813_A_D"><A =
name=3D"dep_ID912886618131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID640430218131028813_"=20
class=3D"idt_3_ID533428018131028813_ID640430218131028813_A_A"><A =
name=3D"brc_ID640430218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID640430218131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID640430218131028813');manageTree('I=
D640430218131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID640430218131028813"></TD>
    <TD>
      <H6>11.	Area management/ restriction/regulation zones &amp; =
reporting=20
      units</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>131</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID640430218131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID154992118131028813_"=20
class=3D"idt_4_ID640430218131028813_ID154992118131028813_A_D"><A =
name=3D"dep_ID154992118131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID652730418131028813_"=20
class=3D"idt_3_ID533428018131028813_ID652730418131028813_A_A"><A =
name=3D"brc_ID652730418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID652730418131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID652730418131028813');manageTree('I=
D652730418131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID652730418131028813"></TD>
    <TD>
      <H6>12.	Natural risk zones</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>119</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID652730418131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID399397618131028813_"=20
class=3D"idt_4_ID652730418131028813_ID399397618131028813_A_D"><A =
name=3D"dep_ID399397618131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID663430618131028813_"=20
class=3D"idt_3_ID533428018131028813_ID663430618131028813_A_A"><A =
name=3D"brc_ID663430618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID663430618131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID663430618131028813');manageTree('I=
D663430618131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID663430618131028813"></TD>
    <TD>
      <H6>13.	Atmospheric conditions</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>60</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID663430618131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID630403119131028813_"=20
class=3D"idt_4_ID663430618131028813_ID630403119131028813_A_D"><A =
name=3D"dep_ID630403119131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID673230818131028813_"=20
class=3D"idt_3_ID533428018131028813_ID673230818131028813_A_A"><A =
name=3D"brc_ID673230818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID673230818131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID673230818131028813');manageTree('I=
D673230818131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID673230818131028813"></TD>
    <TD>
      <H6>14.	Meteorological geographical features</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>51</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID673230818131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID872008919131028813_"=20
class=3D"idt_4_ID673230818131028813_ID872008919131028813_A_D"><A =
name=3D"dep_ID872008919131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID684931018131028813_"=20
class=3D"idt_3_ID533428018131028813_ID684931018131028813_A_A"><A =
name=3D"brc_ID684931018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID684931018131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID684931018131028813');manageTree('I=
D684931018131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID684931018131028813"></TD>
    <TD>
      <H6>15.	Oceanographic geographical features</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>36</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID684931018131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID110914419131028813_"=20
class=3D"idt_4_ID684931018131028813_ID110914419131028813_A_D"><A =
name=3D"dep_ID110914419131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID690431218131028813_"=20
class=3D"idt_3_ID533428018131028813_ID690431218131028813_A_A"><A =
name=3D"brc_ID690431218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID690431218131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID690431218131028813');manageTree('I=
D690431218131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID690431218131028813"></TD>
    <TD>
      <H6>16.	Sea regions</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID690431218131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID357019919131028813_"=20
class=3D"idt_4_ID690431218131028813_ID357019919131028813_A_D"><A =
name=3D"dep_ID357019919131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID706931418131028813_"=20
class=3D"idt_3_ID533428018131028813_ID706931418131028813_A_A"><A =
name=3D"brc_ID706931418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID706931418131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID706931418131028813');manageTree('I=
D706931418131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID706931418131028813"></TD>
    <TD>
      <H6>17.	Bio-geographical regions</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>69</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID706931418131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID595025419131028813_"=20
class=3D"idt_4_ID706931418131028813_ID595025419131028813_A_D"><A =
name=3D"dep_ID595025419131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID717531618131028813_"=20
class=3D"idt_3_ID533428018131028813_ID717531618131028813_A_A"><A =
name=3D"brc_ID717531618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID717531618131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID717531618131028813');manageTree('I=
D717531618131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID717531618131028813"></TD>
    <TD>
      <H6>18.	Habitats and biotopes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>136</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID717531618131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID834030919131028813_"=20
class=3D"idt_4_ID717531618131028813_ID834030919131028813_A_D"><A =
name=3D"dep_ID834030919131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID725831818131028813_"=20
class=3D"idt_3_ID533428018131028813_ID725831818131028813_A_A"><A =
name=3D"brc_ID725831818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID725831818131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID725831818131028813');manageTree('I=
D725831818131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID725831818131028813"></TD>
    <TD>
      <H6>19.	Species distribution</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>92</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID725831818131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID076136419131028813_"=20
class=3D"idt_4_ID725831818131028813_ID076136419131028813_A_D"><A =
name=3D"dep_ID076136419131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID732132018131028813_"=20
class=3D"idt_3_ID533428018131028813_ID732132018131028813_A_A"><A =
name=3D"brc_ID732132018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID732132018131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID732132018131028813');manageTree('I=
D732132018131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID732132018131028813"></TD>
    <TD>
      <H6>20.	Energy Resources</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>77</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID732132018131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID315941919131028813_"=20
class=3D"idt_4_ID732132018131028813_ID315941919131028813_A_D"><A =
name=3D"dep_ID315941919131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID743832218131028813_"=20
class=3D"idt_3_ID533428018131028813_ID743832218131028813_A_A"><A =
name=3D"brc_ID743832218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID743832218131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID743832218131028813');manageTree('I=
D743832218131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID743832218131028813"></TD>
    <TD>
      <H6>21.	Mineral resources</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>61</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID743832218131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID553647419131028813_"=20
class=3D"idt_4_ID743832218131028813_ID553647419131028813_A_D"><A =
name=3D"dep_ID553647419131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID756432618131028813_"=20
class=3D"idt_2_ID391462316131028813_ID756432618131028813_O_M"><A =
name=3D"brc_ID756432618131028813_"></A>
<H2><B>Statistical units</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID756432618131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID756432618131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID760132818131028813_"=20
class=3D"idt_3_ID756432618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID760132818131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID760132818131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>154</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID770333018131028813_"=20
class=3D"idt_3_ID760132818131028813_ID770333018131028813_A_A"><A =
name=3D"brc_ID770333018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 51%;">
            =
<H6>94</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID785433218131028813_"=20
class=3D"idt_3_ID760132818131028813_ID785433218131028813_A_A"><A =
name=3D"brc_ID785433218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID796733418131028813_"=20
class=3D"idt_3_ID760132818131028813_ID796733418131028813_A_A"><A =
name=3D"brc_ID796733418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID805333718131028813_"=20
class=3D"idt_3_ID756432618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID805333718131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID805333718131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>154</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID813233918131028813_"=20
class=3D"idt_3_ID805333718131028813_ID813233918131028813_A_A"><A =
name=3D"brc_ID813233918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 53%;">
            =
<H6>91</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID829134118131028813_"=20
class=3D"idt_3_ID805333718131028813_ID829134118131028813_A_A"><A =
name=3D"brc_ID829134118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>23</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID838434318131028813_"=20
class=3D"idt_3_ID805333718131028813_ID838434318131028813_A_A"><A =
name=3D"brc_ID838434318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID844234618131028813_"=20
class=3D"idt_3_ID756432618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID844234618131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID844234618131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>154</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID851034818131028813_"=20
class=3D"idt_3_ID844234618131028813_ID851034818131028813_A_A"><A =
name=3D"brc_ID851034818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 55%;">
            =
<H6>86</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID862535018131028813_"=20
class=3D"idt_3_ID844234618131028813_ID862535018131028813_A_A"><A =
name=3D"brc_ID862535018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID874035218131028813_"=20
class=3D"idt_3_ID844234618131028813_ID874035218131028813_A_A"><A =
name=3D"brc_ID874035218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID888435518131028813_"=20
class=3D"idt_3_ID756432618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID888435518131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID888435518131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>154</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID891535718131028813_"=20
class=3D"idt_3_ID888435518131028813_ID891535718131028813_A_A"><A =
name=3D"brc_ID891535718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>66</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID904235918131028813_"=20
class=3D"idt_3_ID888435518131028813_ID904235918131028813_A_A"><A =
name=3D"brc_ID904235918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID913536118131028813_"=20
class=3D"idt_3_ID888435518131028813_ID913536118131028813_A_A"><A =
name=3D"brc_ID913536118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>53</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371503115050830213_"=20
class=3D"idt_3_ID756432618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID371503115050830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID371503115050830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>154</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371503515050830213_"=20
class=3D"idt_3_ID371503115050830213_ID371503515050830213_A_A"><A =
name=3D"brc_ID371503515050830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 35%;">
            =
<H6>125</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371703615050830213_"=20
class=3D"idt_3_ID371503115050830213_ID371703615050830213_A_A"><A =
name=3D"brc_ID371703615050830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>2</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372303715050830213_"=20
class=3D"idt_3_ID371503115050830213_ID372303715050830213_A_A"><A =
name=3D"brc_ID372303715050830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID921936418131028813_"=20
class=3D"idt_3_ID756432618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID921936418131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID921936418131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>154</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID930936618131028813_"=20
class=3D"idt_3_ID921936418131028813_ID930936618131028813_A_A"><A =
name=3D"brc_ID930936618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>73</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID946936818131028813_"=20
class=3D"idt_3_ID921936418131028813_ID946936818131028813_A_A"><A =
name=3D"brc_ID946936818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>23</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID957037018131028813_"=20
class=3D"idt_3_ID921936418131028813_ID957037018131028813_A_A"><A =
name=3D"brc_ID957037018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>58</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID991238118131028813_"=20
class=3D"idt_2_ID391462316131028813_ID991238118131028813_O_M"><A =
name=3D"brc_ID991238118131028813_"></A>
<H2><B>Buildings</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID991238118131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID991238118131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID003138318131028813_"=20
class=3D"idt_3_ID991238118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID003138318131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID003138318131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>211</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID014238518131028813_"=20
class=3D"idt_3_ID003138318131028813_ID014238518131028813_A_A"><A =
name=3D"brc_ID014238518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 52%;">
            =
<H6>127</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID026738718131028813_"=20
class=3D"idt_3_ID003138318131028813_ID026738718131028813_A_A"><A =
name=3D"brc_ID026738718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID031438918131028813_"=20
class=3D"idt_3_ID003138318131028813_ID031438918131028813_A_A"><A =
name=3D"brc_ID031438918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>56</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID045339218131028813_"=20
class=3D"idt_3_ID991238118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID045339218131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID045339218131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>211</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID050139418131028813_"=20
class=3D"idt_3_ID045339218131028813_ID050139418131028813_A_A"><A =
name=3D"brc_ID050139418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 55%;">
            =
<H6>120</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID066439618131028813_"=20
class=3D"idt_3_ID045339218131028813_ID066439618131028813_A_A"><A =
name=3D"brc_ID066439618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID077239818131028813_"=20
class=3D"idt_3_ID045339218131028813_ID077239818131028813_A_A"><A =
name=3D"brc_ID077239818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>49</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID086140118131028813_"=20
class=3D"idt_3_ID991238118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID086140118131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID086140118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>211</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID094340318131028813_"=20
class=3D"idt_3_ID086140118131028813_ID094340318131028813_A_A"><A =
name=3D"brc_ID094340318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 50%;">
            =
<H6>131</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID105640518131028813_"=20
class=3D"idt_3_ID086140118131028813_ID105640518131028813_A_A"><A =
name=3D"brc_ID105640518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>31</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID113940718131028813_"=20
class=3D"idt_3_ID086140118131028813_ID113940718131028813_A_A"><A =
name=3D"brc_ID113940718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>49</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID127041118131028813_"=20
class=3D"idt_3_ID991238118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID127041118131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID127041118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>211</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID133641318131028813_"=20
class=3D"idt_3_ID127041118131028813_ID133641318131028813_A_A"><A =
name=3D"brc_ID133641318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>69</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID149841518131028813_"=20
class=3D"idt_3_ID127041118131028813_ID149841518131028813_A_A"><A =
name=3D"brc_ID149841518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>77</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID152941718131028813_"=20
class=3D"idt_3_ID127041118131028813_ID152941718131028813_A_A"><A =
name=3D"brc_ID152941718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>65</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376315115060830213_"=20
class=3D"idt_3_ID991238118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID376315115060830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"optional">(optional)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID376315115060830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>211</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376615415060830213_"=20
class=3D"idt_3_ID376315115060830213_ID376615415060830213_A_A"><A =
name=3D"brc_ID376615415060830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 40%;">
            =
<H6>157</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378215515060830213_"=20
class=3D"idt_3_ID376315115060830213_ID378215515060830213_A_A"><A =
name=3D"brc_ID378215515060830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>6</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376315615060830213_"=20
class=3D"idt_3_ID376315115060830213_ID376315615060830213_A_A"><A =
name=3D"brc_ID376315615060830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>45</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID169542018131028813_"=20
class=3D"idt_3_ID991238118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID169542018131028813_"></A>
<H3>
<DIV id=3D"brc;ID376243708351626013;"></DIV></H3>
<DIV id=3D"brc;ID376243708351626013;">
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3></DIV><SPAN class=3D"comment"> -single =
choice reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID169542018131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>211</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID172742218131028813_"=20
class=3D"idt_3_ID169542018131028813_ID172742218131028813_A_A"><A =
name=3D"brc_ID172742218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>91</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID182342418131028813_"=20
class=3D"idt_3_ID169542018131028813_ID182342418131028813_A_A"><A =
name=3D"brc_ID182342418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID193142618131028813_"=20
class=3D"idt_3_ID169542018131028813_ID193142618131028813_A_A"><A =
name=3D"brc_ID193142618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>73</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID234143918131028813_"=20
class=3D"idt_2_ID391462316131028813_ID234143918131028813_O_M"><A =
name=3D"brc_ID234143918131028813_"></A>
<H2><B>Soil</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID234143918131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID234143918131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID243844318131028813_"=20
class=3D"idt_3_ID234143918131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID243844318131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID243844318131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>128</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID251944518131028813_"=20
class=3D"idt_3_ID243844318131028813_ID251944518131028813_A_A"><A =
name=3D"brc_ID251944518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 53%;">
            =
<H6>75</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID261844718131028813_"=20
class=3D"idt_3_ID243844318131028813_ID261844718131028813_A_A"><A =
name=3D"brc_ID261844718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>9</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID273444918131028813_"=20
class=3D"idt_3_ID243844318131028813_ID273444918131028813_A_A"><A =
name=3D"brc_ID273444918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>44</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID284345218131028813_"=20
class=3D"idt_3_ID234143918131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID284345218131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID284345218131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>128</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID291345418131028813_"=20
class=3D"idt_3_ID284345218131028813_ID291345418131028813_A_A"><A =
name=3D"brc_ID291345418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 57%;">
            =
<H6>69</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID303445618131028813_"=20
class=3D"idt_3_ID284345218131028813_ID303445618131028813_A_A"><A =
name=3D"brc_ID303445618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID316945818131028813_"=20
class=3D"idt_3_ID284345218131028813_ID316945818131028813_A_A"><A =
name=3D"brc_ID316945818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID324046118131028813_"=20
class=3D"idt_3_ID234143918131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID324046118131028813_"></A>
<H3>&nbsp;can be <SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID324046118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>128</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID333946318131028813_"=20
class=3D"idt_3_ID324046118131028813_ID333946318131028813_A_A"><A =
name=3D"brc_ID333946318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 59%;">
            =
<H6>65</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID341746518131028813_"=20
class=3D"idt_3_ID324046118131028813_ID341746518131028813_A_A"><A =
name=3D"brc_ID341746518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>23</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID358846718131028813_"=20
class=3D"idt_3_ID324046118131028813_ID358846718131028813_A_A"><A =
name=3D"brc_ID358846718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID361147018131028813_"=20
class=3D"idt_3_ID234143918131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID361147018131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID361147018131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>128</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378947218131028813_"=20
class=3D"idt_3_ID361147018131028813_ID378947218131028813_A_A"><A =
name=3D"brc_ID378947218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>38</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID388747418131028813_"=20
class=3D"idt_3_ID361147018131028813_ID388747418131028813_A_A"><A =
name=3D"brc_ID388747418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>48</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID396847618131028813_"=20
class=3D"idt_3_ID361147018131028813_ID396847618131028813_A_A"><A =
name=3D"brc_ID396847618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378038759060830213_"=20
class=3D"idt_3_ID234143918131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID378038759060830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID378038759060830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>128</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378739159060830213_"=20
class=3D"idt_3_ID378038759060830213_ID378739159060830213_A_A"><A =
name=3D"brc_ID378739159060830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 39%;">
            =
<H6>98</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID379339259060830213_"=20
class=3D"idt_3_ID378038759060830213_ID379339259060830213_A_A"><A =
name=3D"brc_ID379339259060830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>6</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374639359060830213_"=20
class=3D"idt_3_ID378038759060830213_ID374639359060830213_A_A"><A =
name=3D"brc_ID374639359060830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID407047918131028813_"=20
class=3D"idt_3_ID234143918131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID407047918131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data&nbsp;policy =
</SPAN>(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID407047918131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>128</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID416648118131028813_"=20
class=3D"idt_3_ID407047918131028813_ID416648118131028813_A_A"><A =
name=3D"brc_ID416648118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>50</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID429148318131028813_"=20
class=3D"idt_3_ID407047918131028813_ID429148318131028813_A_A"><A =
name=3D"brc_ID429148318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>32</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID435348518131028813_"=20
class=3D"idt_3_ID407047918131028813_ID435348518131028813_A_A"><A =
name=3D"brc_ID435348518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>46</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID472350118131028813_"=20
class=3D"idt_2_ID391462316131028813_ID472350118131028813_O_M"><A =
name=3D"brc_ID472350118131028813_"></A>
<H2><B>Land use</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID472350118131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID472350118131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID485750318131028813_"=20
class=3D"idt_3_ID472350118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID485750318131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID485750318131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID494150518131028813_"=20
class=3D"idt_3_ID485750318131028813_ID494150518131028813_A_A"><A =
name=3D"brc_ID494150518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 53%;">
            =
<H6>150</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID502950718131028813_"=20
class=3D"idt_3_ID485750318131028813_ID502950718131028813_A_A"><A =
name=3D"brc_ID502950718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID517350918131028813_"=20
class=3D"idt_3_ID485750318131028813_ID517350918131028813_A_A"><A =
name=3D"brc_ID517350918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>88</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID528951218131028813_"=20
class=3D"idt_3_ID472350118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID528951218131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID528951218131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID532051418131028813_"=20
class=3D"idt_3_ID528951218131028813_ID532051418131028813_A_A"><A =
name=3D"brc_ID532051418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 55%;">
            =
<H6>144</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID541751618131028813_"=20
class=3D"idt_3_ID528951218131028813_ID541751618131028813_A_A"><A =
name=3D"brc_ID541751618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID552951818131028813_"=20
class=3D"idt_3_ID528951218131028813_ID552951818131028813_A_A"><A =
name=3D"brc_ID552951818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>79</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID568752118131028813_"=20
class=3D"idt_3_ID472350118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID568752118131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">viewed</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID568752118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID571552318131028813_"=20
class=3D"idt_3_ID568752118131028813_ID571552318131028813_A_A"><A =
name=3D"brc_ID571552318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 54%;">
            =
<H6>147</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID582852518131028813_"=20
class=3D"idt_3_ID568752118131028813_ID582852518131028813_A_A"><A =
name=3D"brc_ID582852518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID599652718131028813_"=20
class=3D"idt_3_ID568752118131028813_ID599652718131028813_A_A"><A =
name=3D"brc_ID599652718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>76</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID607553018131028813_"=20
class=3D"idt_3_ID472350118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID607553018131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID607553018131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID611853218131028813_"=20
class=3D"idt_3_ID607553018131028813_ID611853218131028813_A_A"><A =
name=3D"brc_ID611853218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>105</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID622953418131028813_"=20
class=3D"idt_3_ID607553018131028813_ID622953418131028813_A_A"><A =
name=3D"brc_ID622953418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>71</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID631453618131028813_"=20
class=3D"idt_3_ID607553018131028813_ID631453618131028813_A_A"><A =
name=3D"brc_ID631453618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>82</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376950603080830213_"=20
class=3D"idt_3_ID472350118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID376950603080830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID376950603080830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID379651003080830213_"=20
class=3D"idt_3_ID376950603080830213_ID379651003080830213_A_A"><A =
name=3D"brc_ID379651003080830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 37%;">
            =
<H6>203</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376251103080830213_"=20
class=3D"idt_3_ID376950603080830213_ID376251103080830213_A_A"><A =
name=3D"brc_ID376251103080830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>8</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377951203080830213_"=20
class=3D"idt_3_ID376950603080830213_ID377951203080830213_A_A"><A =
name=3D"brc_ID377951203080830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID643753918131028813_"=20
class=3D"idt_3_ID472350118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID643753918131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID643753918131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>258</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID652554118131028813_"=20
class=3D"idt_3_ID643753918131028813_ID652554118131028813_A_A"><A =
name=3D"brc_ID652554118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>124</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID664754318131028813_"=20
class=3D"idt_3_ID643753918131028813_ID664754318131028813_A_A"><A =
name=3D"brc_ID664754318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID677954518131028813_"=20
class=3D"idt_3_ID643753918131028813_ID677954518131028813_A_A"><A =
name=3D"brc_ID677954518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>87</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID713155718131028813_"=20
class=3D"idt_2_ID391462316131028813_ID713155718131028813_O_M"><A =
name=3D"brc_ID713155718131028813_"></A>
<H2><B>Human health and safety&nbsp;</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID713155718131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID713155718131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID725055918131028813_"=20
class=3D"idt_3_ID713155718131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID725055918131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID725055918131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>55</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID731556118131028813_"=20
class=3D"idt_3_ID725055918131028813_ID731556118131028813_A_A"><A =
name=3D"brc_ID731556118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID744756318131028813_"=20
class=3D"idt_3_ID725055918131028813_ID744756318131028813_A_A"><A =
name=3D"brc_ID744756318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>9</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID756756518131028813_"=20
class=3D"idt_3_ID725055918131028813_ID756756518131028813_A_A"><A =
name=3D"brc_ID756756518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID764956918131028813_"=20
class=3D"idt_3_ID713155718131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID764956918131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID764956918131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>55</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID774057118131028813_"=20
class=3D"idt_3_ID764956918131028813_ID774057118131028813_A_A"><A =
name=3D"brc_ID774057118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID783257318131028813_"=20
class=3D"idt_3_ID764956918131028813_ID783257318131028813_A_A"><A =
name=3D"brc_ID783257318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID794657518131028813_"=20
class=3D"idt_3_ID764956918131028813_ID794657518131028813_A_A"><A =
name=3D"brc_ID794657518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID803257818131028813_"=20
class=3D"idt_3_ID713155718131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID803257818131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID803257818131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>55</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID815558018131028813_"=20
class=3D"idt_3_ID803257818131028813_ID815558018131028813_A_A"><A =
name=3D"brc_ID815558018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID824758218131028813_"=20
class=3D"idt_3_ID803257818131028813_ID824758218131028813_A_A"><A =
name=3D"brc_ID824758218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID833758418131028813_"=20
class=3D"idt_3_ID803257818131028813_ID833758418131028813_A_A"><A =
name=3D"brc_ID833758418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID842458718131028813_"=20
class=3D"idt_3_ID713155718131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID842458718131028813_"></A>
<H3>
<P>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services</P><SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID842458718131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>55</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID859358918131028813_"=20
class=3D"idt_3_ID842458718131028813_ID859358918131028813_A_A"><A =
name=3D"brc_ID859358918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID868359118131028813_"=20
class=3D"idt_3_ID842458718131028813_ID868359118131028813_A_A"><A =
name=3D"brc_ID868359118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID876159318131028813_"=20
class=3D"idt_3_ID842458718131028813_ID876159318131028813_A_A"><A =
name=3D"brc_ID876159318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377934132080830213_"=20
class=3D"idt_3_ID713155718131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID377934132080830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID377934132080830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>55</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373934932080830213_"=20
class=3D"idt_3_ID377934132080830213_ID373934932080830213_A_A"><A =
name=3D"brc_ID373934932080830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 51%;">
            =
<H6>34</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373935032080830213_"=20
class=3D"idt_3_ID377934132080830213_ID373935032080830213_A_A"><A =
name=3D"brc_ID373935032080830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>5</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376935132080830213_"=20
class=3D"idt_3_ID377934132080830213_ID376935132080830213_A_A"><A =
name=3D"brc_ID376935132080830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID885959618131028813_"=20
class=3D"idt_3_ID713155718131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID885959618131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data&nbsp;</SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID885959618131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>55</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID896459818131028813_"=20
class=3D"idt_3_ID885959618131028813_ID896459818131028813_A_A"><A =
name=3D"brc_ID896459818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID907160018131028813_"=20
class=3D"idt_3_ID885959618131028813_ID907160018131028813_A_A"><A =
name=3D"brc_ID907160018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>10</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID915560218131028813_"=20
class=3D"idt_3_ID885959618131028813_ID915560218131028813_A_A"><A =
name=3D"brc_ID915560218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID950961318131028813_"=20
class=3D"idt_2_ID391462316131028813_ID950961318131028813_O_M"><A =
name=3D"brc_ID950961318131028813_"></A>
<H2><B>Utility and governmental services&nbsp;</B> - USER=20
experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID950961318131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID950961318131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID962761518131028813_"=20
class=3D"idt_3_ID950961318131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID962761518131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID962761518131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>125</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID978761718131028813_"=20
class=3D"idt_3_ID962761518131028813_ID978761718131028813_A_A"><A =
name=3D"brc_ID978761718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>52</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID982561918131028813_"=20
class=3D"idt_3_ID962761518131028813_ID982561918131028813_A_A"><A =
name=3D"brc_ID982561918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID991062118131028813_"=20
class=3D"idt_3_ID962761518131028813_ID991062118131028813_A_A"><A =
name=3D"brc_ID991062118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>56</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID007162418131028813_"=20
class=3D"idt_3_ID950961318131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID007162418131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID007162418131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>125</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID012262618131028813_"=20
class=3D"idt_3_ID007162418131028813_ID012262618131028813_A_A"><A =
name=3D"brc_ID012262618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>49</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID022562818131028813_"=20
class=3D"idt_3_ID007162418131028813_ID022562818131028813_A_A"><A =
name=3D"brc_ID022562818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID034963018131028813_"=20
class=3D"idt_3_ID007162418131028813_ID034963018131028813_A_A"><A =
name=3D"brc_ID034963018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>51</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID045763318131028813_"=20
class=3D"idt_3_ID950961318131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID045763318131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID045763318131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>125</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID056963518131028813_"=20
class=3D"idt_3_ID045763318131028813_ID056963518131028813_A_A"><A =
name=3D"brc_ID056963518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>46</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID068163718131028813_"=20
class=3D"idt_3_ID045763318131028813_ID068163718131028813_A_A"><A =
name=3D"brc_ID068163718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID074363918131028813_"=20
class=3D"idt_3_ID045763318131028813_ID074363918131028813_A_A"><A =
name=3D"brc_ID074363918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>52</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID085364318131028813_"=20
class=3D"idt_3_ID950961318131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID085364318131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID085364318131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>125</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID099964518131028813_"=20
class=3D"idt_3_ID085364318131028813_ID099964518131028813_A_A"><A =
name=3D"brc_ID099964518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID102364718131028813_"=20
class=3D"idt_3_ID085364318131028813_ID102364718131028813_A_A"><A =
name=3D"brc_ID102364718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>50</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID113864918131028813_"=20
class=3D"idt_3_ID085364318131028813_ID113864918131028813_A_A"><A =
name=3D"brc_ID113864918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>48</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370364020090830213_"=20
class=3D"idt_3_ID950961318131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID370364020090830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID370364020090830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>125</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370764520090830213_"=20
class=3D"idt_3_ID370364020090830213_ID370764520090830213_A_A"><A =
name=3D"brc_ID370764520090830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 53%;">
            =
<H6>73</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID379864620090830213_"=20
class=3D"idt_3_ID370364020090830213_ID379864620090830213_A_A"><A =
name=3D"brc_ID379864620090830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374864720090830213_"=20
class=3D"idt_3_ID370364020090830213_ID374864720090830213_A_A"><A =
name=3D"brc_ID374864720090830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>37</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID122665318131028813_"=20
class=3D"idt_3_ID950961318131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID122665318131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data </SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID122665318131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>125</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID131365518131028813_"=20
class=3D"idt_3_ID122665318131028813_ID131365518131028813_A_A"><A =
name=3D"brc_ID131365518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>50</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID148465718131028813_"=20
class=3D"idt_3_ID122665318131028813_ID148465718131028813_A_A"><A =
name=3D"brc_ID148465718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID150865918131028813_"=20
class=3D"idt_3_ID122665318131028813_ID150865918131028813_A_A"><A =
name=3D"brc_ID150865918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>51</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID191267018131028813_"=20
class=3D"idt_2_ID391462316131028813_ID191267018131028813_O_M"><A =
name=3D"brc_ID191267018131028813_"></A>
<H2><B>Environmental monitoring facilities&nbsp;</B> - USER=20
experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID191267018131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID191267018131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID201767218131028813_"=20
class=3D"idt_3_ID191267018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID201767218131028813_"></A>
<H3>is<SPAN style=3D"text-decoration: underline;"> documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID201767218131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>96</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID212067418131028813_"=20
class=3D"idt_3_ID201767218131028813_ID212067418131028813_A_A"><A =
name=3D"brc_ID212067418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 58%;">
            =
<H6>51</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID228367618131028813_"=20
class=3D"idt_3_ID201767218131028813_ID228367618131028813_A_A"><A =
name=3D"brc_ID228367618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>12</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID236167818131028813_"=20
class=3D"idt_3_ID201767218131028813_ID236167818131028813_A_A"><A =
name=3D"brc_ID236167818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID248068218131028813_"=20
class=3D"idt_3_ID191267018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID248068218131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID248068218131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>96</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID258368418131028813_"=20
class=3D"idt_3_ID248068218131028813_ID258368418131028813_A_A"><A =
name=3D"brc_ID258368418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 58%;">
            =
<H6>51</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID263368618131028813_"=20
class=3D"idt_3_ID248068218131028813_ID263368618131028813_A_A"><A =
name=3D"brc_ID263368618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID274668818131028813_"=20
class=3D"idt_3_ID248068218131028813_ID274668818131028813_A_A"><A =
name=3D"brc_ID274668818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>30</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID281369118131028813_"=20
class=3D"idt_3_ID191267018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID281369118131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID281369118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>96</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID297769318131028813_"=20
class=3D"idt_3_ID281369118131028813_ID297769318131028813_A_A"><A =
name=3D"brc_ID297769318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 60%;">
            =
<H6>48</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID308269518131028813_"=20
class=3D"idt_3_ID281369118131028813_ID308269518131028813_A_A"><A =
name=3D"brc_ID308269518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID310569718131028813_"=20
class=3D"idt_3_ID281369118131028813_ID310569718131028813_A_A"><A =
name=3D"brc_ID310569718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>34</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID325570118131028813_"=20
class=3D"idt_3_ID191267018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID325570118131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">downloaded</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID325570118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>96</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID333570318131028813_"=20
class=3D"idt_3_ID325570118131028813_ID333570318131028813_A_A"><A =
name=3D"brc_ID333570318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>30</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID342770518131028813_"=20
class=3D"idt_3_ID325570118131028813_ID342770518131028813_A_A"><A =
name=3D"brc_ID342770518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>26</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID353370718131028813_"=20
class=3D"idt_3_ID325570118131028813_ID353370718131028813_A_A"><A =
name=3D"brc_ID353370718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371791757090830213_"=20
class=3D"idt_3_ID191267018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID371791757090830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID371791757090830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>96</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374992157090830213_"=20
class=3D"idt_3_ID371791757090830213_ID374992157090830213_A_A"><A =
name=3D"brc_ID374992157090830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 43%;">
            =
<H6>68</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373592257090830213_"=20
class=3D"idt_3_ID371791757090830213_ID373592257090830213_A_A"><A =
name=3D"brc_ID373592257090830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>6</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377592357090830213_"=20
class=3D"idt_3_ID371791757090830213_ID377592357090830213_A_A"><A =
name=3D"brc_ID377592357090830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID366071118131028813_"=20
class=3D"idt_3_ID191267018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID366071118131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID366071118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>96</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376971418131028813_"=20
class=3D"idt_3_ID366071118131028813_ID376971418131028813_A_A"><A =
name=3D"brc_ID376971418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>41</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID386471618131028813_"=20
class=3D"idt_3_ID366071118131028813_ID386471618131028813_A_A"><A =
name=3D"brc_ID386471618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID397171818131028813_"=20
class=3D"idt_3_ID366071118131028813_ID397171818131028813_A_A"><A =
name=3D"brc_ID397171818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>39</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID436973018131028813_"=20
class=3D"idt_2_ID391462316131028813_ID436973018131028813_O_M"><A =
name=3D"brc_ID436973018131028813_"></A>
<H2><B>Production and industrial&nbsp;facilities</B>&nbsp; - USER=20
experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID436973018131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID436973018131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID446873218131028813_"=20
class=3D"idt_3_ID436973018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID446873218131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID446873218131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID455173418131028813_"=20
class=3D"idt_3_ID446873218131028813_ID455173418131028813_A_A"><A =
name=3D"brc_ID455173418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>34</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID469073618131028813_"=20
class=3D"idt_3_ID446873218131028813_ID469073618131028813_A_A"><A =
name=3D"brc_ID469073618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID475173818131028813_"=20
class=3D"idt_3_ID446873218131028813_ID475173818131028813_A_A"><A =
name=3D"brc_ID475173818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>36</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID488574218131028813_"=20
class=3D"idt_3_ID436973018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID488574218131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID488574218131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID493974418131028813_"=20
class=3D"idt_3_ID488574218131028813_ID493974418131028813_A_A"><A =
name=3D"brc_ID493974418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID508974618131028813_"=20
class=3D"idt_3_ID488574218131028813_ID508974618131028813_A_A"><A =
name=3D"brc_ID508974618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID517074818131028813_"=20
class=3D"idt_3_ID488574218131028813_ID517074818131028813_A_A"><A =
name=3D"brc_ID517074818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>34</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID525675118131028813_"=20
class=3D"idt_3_ID436973018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID525675118131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID525675118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID531775318131028813_"=20
class=3D"idt_3_ID525675118131028813_ID531775318131028813_A_A"><A =
name=3D"brc_ID531775318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>36</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID547675518131028813_"=20
class=3D"idt_3_ID525675118131028813_ID547675518131028813_A_A"><A =
name=3D"brc_ID547675518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID557975718131028813_"=20
class=3D"idt_3_ID525675118131028813_ID557975718131028813_A_A"><A =
name=3D"brc_ID557975718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID563276118131028813_"=20
class=3D"idt_3_ID436973018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID563276118131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloaded</SPAN>&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID563276118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID570676318131028813_"=20
class=3D"idt_3_ID563276118131028813_ID570676318131028813_A_A"><A =
name=3D"brc_ID570676318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>23</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID585978818131028813_"=20
class=3D"idt_3_ID563276118131028813_ID585978818131028813_A_A"><A =
name=3D"brc_ID585978818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>39</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID594279018131028813_"=20
class=3D"idt_3_ID563276118131028813_ID594279018131028813_A_A"><A =
name=3D"brc_ID594279018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>30</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371943841100830213_"=20
class=3D"idt_3_ID436973018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID371943841100830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID371943841100830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378844141100830213_"=20
class=3D"idt_3_ID371943841100830213_ID378844141100830213_A_A"><A =
name=3D"brc_ID378844141100830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 51%;">
            =
<H6>56</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372944241100830213_"=20
class=3D"idt_3_ID371943841100830213_ID372944241100830213_A_A"><A =
name=3D"brc_ID372944241100830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>11</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374944341100830213_"=20
class=3D"idt_3_ID371943841100830213_ID374944341100830213_A_A"><A =
name=3D"brc_ID374944341100830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID603379418131028813_"=20
class=3D"idt_3_ID436973018131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID603379418131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data&nbsp;</SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.)is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID603379418131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID615879618131028813_"=20
class=3D"idt_3_ID603379418131028813_ID615879618131028813_A_A"><A =
name=3D"brc_ID615879618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID624179818131028813_"=20
class=3D"idt_3_ID603379418131028813_ID624179818131028813_A_A"><A =
name=3D"brc_ID624179818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID633680018131028813_"=20
class=3D"idt_3_ID603379418131028813_ID633680018131028813_A_A"><A =
name=3D"brc_ID633680018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>37</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID675681118131028813_"=20
class=3D"idt_2_ID391462316131028813_ID675681118131028813_O_M"><A =
name=3D"brc_ID675681118131028813_"></A>
<H2><B>Agricultural and aquaculture facilities</B>&nbsp;- USER=20
experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID675681118131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID675681118131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID680681318131028813_"=20
class=3D"idt_3_ID675681118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID680681318131028813_"></A>
<H3>&nbsp;is <SPAN style=3D"text-decoration: =
underline;">documented</SPAN> (has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID680681318131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>81</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID695981518131028813_"=20
class=3D"idt_3_ID680681318131028813_ID695981518131028813_A_A"><A =
name=3D"brc_ID695981518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>23</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID701781718131028813_"=20
class=3D"idt_3_ID680681318131028813_ID701781718131028813_A_A"><A =
name=3D"brc_ID701781718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>26</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID710581918131028813_"=20
class=3D"idt_3_ID680681318131028813_ID710581918131028813_A_A"><A =
name=3D"brc_ID710581918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>32</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID723182218131028813_"=20
class=3D"idt_3_ID675681118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID723182218131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID723182218131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>81</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID737982418131028813_"=20
class=3D"idt_3_ID723182218131028813_ID737982418131028813_A_A"><A =
name=3D"brc_ID737982418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID742282618131028813_"=20
class=3D"idt_3_ID723182218131028813_ID742282618131028813_A_A"><A =
name=3D"brc_ID742282618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID758482818131028813_"=20
class=3D"idt_3_ID723182218131028813_ID758482818131028813_A_A"><A =
name=3D"brc_ID758482818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID765083118131028813_"=20
class=3D"idt_3_ID675681118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID765083118131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID765083118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>81</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID774283318131028813_"=20
class=3D"idt_3_ID765083118131028813_ID774283318131028813_A_A"><A =
name=3D"brc_ID774283318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID787583518131028813_"=20
class=3D"idt_3_ID765083118131028813_ID787583518131028813_A_A"><A =
name=3D"brc_ID787583518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID797683718131028813_"=20
class=3D"idt_3_ID765083118131028813_ID797683718131028813_A_A"><A =
name=3D"brc_ID797683718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID803184018131028813_"=20
class=3D"idt_3_ID675681118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID803184018131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloaded</SPAN>&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID803184018131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>81</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID814984218131028813_"=20
class=3D"idt_3_ID803184018131028813_ID814984218131028813_A_A"><A =
name=3D"brc_ID814984218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID829984418131028813_"=20
class=3D"idt_3_ID803184018131028813_ID829984418131028813_A_A"><A =
name=3D"brc_ID829984418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 63%;">
            =
<H6>37</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID838084618131028813_"=20
class=3D"idt_3_ID803184018131028813_ID838084618131028813_A_A"><A =
name=3D"brc_ID838084618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371918450110830213_"=20
class=3D"idt_3_ID675681118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID371918450110830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID371918450110830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>81</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373318750110830213_"=20
class=3D"idt_3_ID371918450110830213_ID373318750110830213_A_A"><A =
name=3D"brc_ID373318750110830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 54%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372618850110830213_"=20
class=3D"idt_3_ID371918450110830213_ID372618850110830213_A_A"><A =
name=3D"brc_ID372618850110830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>10</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372618950110830213_"=20
class=3D"idt_3_ID371918450110830213_ID372618950110830213_A_A"><A =
name=3D"brc_ID372618950110830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID849384918131028813_"=20
class=3D"idt_3_ID675681118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID849384918131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID849384918131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>81</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID851985118131028813_"=20
class=3D"idt_3_ID849384918131028813_ID851985118131028813_A_A"><A =
name=3D"brc_ID851985118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID861085318131028813_"=20
class=3D"idt_3_ID849384918131028813_ID861085318131028813_A_A"><A =
name=3D"brc_ID861085318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID873585518131028813_"=20
class=3D"idt_3_ID849384918131028813_ID873585518131028813_A_A"><A =
name=3D"brc_ID873585518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>38</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID912886618131028813_"=20
class=3D"idt_2_ID391462316131028813_ID912886618131028813_O_M"><A =
name=3D"brc_ID912886618131028813_"></A>
<H2><B>Population distribution - demography</B> - USER =
experience&nbsp;&nbsp;<A=20
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID912886618131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID912886618131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID923286818131028813_"=20
class=3D"idt_3_ID912886618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID923286818131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID923286818131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>122</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID930787018131028813_"=20
class=3D"idt_3_ID923286818131028813_ID930787018131028813_A_A"><A =
name=3D"brc_ID930787018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 50%;">
            =
<H6>77</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID945487218131028813_"=20
class=3D"idt_3_ID923286818131028813_ID945487218131028813_A_A"><A =
name=3D"brc_ID945487218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>11</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID955287418131028813_"=20
class=3D"idt_3_ID923286818131028813_ID955287418131028813_A_A"><A =
name=3D"brc_ID955287418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>34</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID969187718131028813_"=20
class=3D"idt_3_ID912886618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID969187718131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID969187718131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>122</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID971587918131028813_"=20
class=3D"idt_3_ID969187718131028813_ID971587918131028813_A_A"><A =
name=3D"brc_ID971587918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 55%;">
            =
<H6>68</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID986888118131028813_"=20
class=3D"idt_3_ID969187718131028813_ID986888118131028813_A_A"><A =
name=3D"brc_ID986888118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID990688318131028813_"=20
class=3D"idt_3_ID969187718131028813_ID990688318131028813_A_A"><A =
name=3D"brc_ID990688318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>36</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID005088618131028813_"=20
class=3D"idt_3_ID912886618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID005088618131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID005088618131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>122</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID014088818131028813_"=20
class=3D"idt_3_ID005088618131028813_ID014088818131028813_A_A"><A =
name=3D"brc_ID014088818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 63%;">
            =
<H6>56</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID024989018131028813_"=20
class=3D"idt_3_ID005088618131028813_ID024989018131028813_A_A"><A =
name=3D"brc_ID024989018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID036789218131028813_"=20
class=3D"idt_3_ID005088618131028813_ID036789218131028813_A_A"><A =
name=3D"brc_ID036789218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>39</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID043289518131028813_"=20
class=3D"idt_3_ID912886618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID043289518131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloaded</SPAN>&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID043289518131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>122</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID052189718131028813_"=20
class=3D"idt_3_ID043289518131028813_ID052189718131028813_A_A"><A =
name=3D"brc_ID052189718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 63%;">
            =
<H6>56</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID060989918131028813_"=20
class=3D"idt_3_ID043289518131028813_ID060989918131028813_A_A"><A =
name=3D"brc_ID060989918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID071090118131028813_"=20
class=3D"idt_3_ID043289518131028813_ID071090118131028813_A_A"><A =
name=3D"brc_ID071090118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>39</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371890829120830213_"=20
class=3D"idt_3_ID912886618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID371890829120830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID371890829120830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>122</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID375591129120830213_"=20
class=3D"idt_3_ID371890829120830213_ID375591129120830213_A_A"><A =
name=3D"brc_ID375591129120830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 36%;">
            =
<H6>97</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370391229120830213_"=20
class=3D"idt_3_ID371890829120830213_ID370391229120830213_A_A"><A =
name=3D"brc_ID370391229120830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>3</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373891329120830213_"=20
class=3D"idt_3_ID371890829120830213_ID373891329120830213_A_A"><A =
name=3D"brc_ID373891329120830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID085590418131028813_"=20
class=3D"idt_3_ID912886618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID085590418131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data&nbsp;</SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID085590418131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>122</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID091490618131028813_"=20
class=3D"idt_3_ID085590418131028813_ID091490618131028813_A_A"><A =
name=3D"brc_ID091490618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 63%;">
            =
<H6>56</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID107990818131028813_"=20
class=3D"idt_3_ID085590418131028813_ID107990818131028813_A_A"><A =
name=3D"brc_ID107990818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID117591018131028813_"=20
class=3D"idt_3_ID085590418131028813_ID117591018131028813_A_A"><A =
name=3D"brc_ID117591018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>48</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID154992118131028813_"=20
class=3D"idt_2_ID391462316131028813_ID154992118131028813_O_M"><A =
name=3D"brc_ID154992118131028813_"></A>
<H2><B>Area management/restriction/regulation zones &amp; reporting =
units</B> -=20
USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID154992118131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID154992118131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID166092318131028813_"=20
class=3D"idt_3_ID154992118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID166092318131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID166092318131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>131</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID177292518131028813_"=20
class=3D"idt_3_ID166092318131028813_ID177292518131028813_A_A"><A =
name=3D"brc_ID177292518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>63</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID184892718131028813_"=20
class=3D"idt_3_ID166092318131028813_ID184892718131028813_A_A"><A =
name=3D"brc_ID184892718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID191292918131028813_"=20
class=3D"idt_3_ID166092318131028813_ID191292918131028813_A_A"><A =
name=3D"brc_ID191292918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>54</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID207993218131028813_"=20
class=3D"idt_3_ID154992118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID207993218131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID207993218131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>131</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID219093418131028813_"=20
class=3D"idt_3_ID207993218131028813_ID219093418131028813_A_A"><A =
name=3D"brc_ID219093418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 59%;">
            =
<H6>67</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID222693618131028813_"=20
class=3D"idt_3_ID207993218131028813_ID222693618131028813_A_A"><A =
name=3D"brc_ID222693618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>10</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID236893818131028813_"=20
class=3D"idt_3_ID207993218131028813_ID236893818131028813_A_A"><A =
name=3D"brc_ID236893818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>54</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID246294118131028813_"=20
class=3D"idt_3_ID154992118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID246294118131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID246294118131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>131</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID250494318131028813_"=20
class=3D"idt_3_ID246294118131028813_ID250494318131028813_A_A"><A =
name=3D"brc_ID250494318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 60%;">
            =
<H6>65</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID268194518131028813_"=20
class=3D"idt_3_ID246294118131028813_ID268194518131028813_A_A"><A =
name=3D"brc_ID268194518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>9</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID275894718131028813_"=20
class=3D"idt_3_ID246294118131028813_ID275894718131028813_A_A"><A =
name=3D"brc_ID275894718131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>57</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID283495018131028813_"=20
class=3D"idt_3_ID154992118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID283495018131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloaded</SPAN>&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID283495018131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>131</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID298295218131028813_"=20
class=3D"idt_3_ID283495018131028813_ID298295218131028813_A_A"><A =
name=3D"brc_ID298295218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>41</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID302295418131028813_"=20
class=3D"idt_3_ID283495018131028813_ID302295418131028813_A_A"><A =
name=3D"brc_ID302295418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>30</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID313095618131028813_"=20
class=3D"idt_3_ID283495018131028813_ID313095618131028813_A_A"><A =
name=3D"brc_ID313095618131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 63%;">
            =
<H6>60</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378277905130830213_"=20
class=3D"idt_3_ID154992118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID378277905130830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID378277905130830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>131</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376278205130830213_"=20
class=3D"idt_3_ID378277905130830213_ID376278205130830213_A_A"><A =
name=3D"brc_ID376278205130830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 41%;">
            =
<H6>97</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374178305130830213_"=20
class=3D"idt_3_ID378277905130830213_ID374178305130830213_A_A"><A =
name=3D"brc_ID374178305130830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>6</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372578405130830213_"=20
class=3D"idt_3_ID378277905130830213_ID372578405130830213_A_A"><A =
name=3D"brc_ID372578405130830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID327995918131028813_"=20
class=3D"idt_3_ID154992118131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID327995918131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID327995918131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>131</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID337196118131028813_"=20
class=3D"idt_3_ID327995918131028813_ID337196118131028813_A_A"><A =
name=3D"brc_ID337196118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 61%;">
            =
<H6>64</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID346496318131028813_"=20
class=3D"idt_3_ID327995918131028813_ID346496318131028813_A_A"><A =
name=3D"brc_ID346496318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID352996518131028813_"=20
class=3D"idt_3_ID327995918131028813_ID352996518131028813_A_A"><A =
name=3D"brc_ID352996518131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>50</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID399397618131028813_"=20
class=3D"idt_2_ID391462316131028813_ID399397618131028813_O_M"><A =
name=3D"brc_ID399397618131028813_"></A>
<H2><B>Natural risk zones</B>&nbsp;- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID399397618131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID399397618131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID403397818131028813_"=20
class=3D"idt_3_ID399397618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID403397818131028813_"></A>
<H3>&nbsp;is <SPAN style=3D"text-decoration: =
underline;">documented</SPAN> (has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID403397818131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>119</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID412498018131028813_"=20
class=3D"idt_3_ID403397818131028813_ID412498018131028813_A_A"><A =
name=3D"brc_ID412498018131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>56</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID420598218131028813_"=20
class=3D"idt_3_ID403397818131028813_ID420598218131028813_A_A"><A =
name=3D"brc_ID420598218131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>21</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID431798418131028813_"=20
class=3D"idt_3_ID403397818131028813_ID431798418131028813_A_A"><A =
name=3D"brc_ID431798418131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID449298718131028813_"=20
class=3D"idt_3_ID399397618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID449298718131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID449298718131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>119</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID459498918131028813_"=20
class=3D"idt_3_ID449298718131028813_ID459498918131028813_A_A"><A =
name=3D"brc_ID459498918131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>53</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID467699118131028813_"=20
class=3D"idt_3_ID449298718131028813_ID467699118131028813_A_A"><A =
name=3D"brc_ID467699118131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>26</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID471699318131028813_"=20
class=3D"idt_3_ID449298718131028813_ID471699318131028813_A_A"><A =
name=3D"brc_ID471699318131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID486299618131028813_"=20
class=3D"idt_3_ID399397618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID486299618131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID486299618131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>119</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID496999818131028813_"=20
class=3D"idt_3_ID486299618131028813_ID496999818131028813_A_A"><A =
name=3D"brc_ID496999818131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 63%;">
            =
<H6>55</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID506800019131028813_"=20
class=3D"idt_3_ID486299618131028813_ID506800019131028813_A_A"><A =
name=3D"brc_ID506800019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>23</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID517300219131028813_"=20
class=3D"idt_3_ID486299618131028813_ID517300219131028813_A_A"><A =
name=3D"brc_ID517300219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>41</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID521100519131028813_"=20
class=3D"idt_3_ID399397618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID521100519131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloaded</SPAN>&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID521100519131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>119</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID533400719131028813_"=20
class=3D"idt_3_ID521100519131028813_ID533400719131028813_A_A"><A =
name=3D"brc_ID533400719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID544400919131028813_"=20
class=3D"idt_3_ID521100519131028813_ID544400919131028813_A_A"><A =
name=3D"brc_ID544400919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>44</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID556401119131028813_"=20
class=3D"idt_3_ID521100519131028813_ID556401119131028813_A_A"><A =
name=3D"brc_ID556401119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377792041130830213_"=20
class=3D"idt_3_ID399397618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID377792041130830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID377792041130830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>119</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371092341130830213_"=20
class=3D"idt_3_ID377792041130830213_ID371092341130830213_A_A"><A =
name=3D"brc_ID371092341130830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 44%;">
            =
<H6>83</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373592441130830213_"=20
class=3D"idt_3_ID377792041130830213_ID373592441130830213_A_A"><A =
name=3D"brc_ID373592441130830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>6</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID379892541130830213_"=20
class=3D"idt_3_ID377792041130830213_ID379892541130830213_A_A"><A =
name=3D"brc_ID379892541130830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>30</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID566801419131028813_"=20
class=3D"idt_3_ID399397618131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID566801419131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID566801419131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>119</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID577201619131028813_"=20
class=3D"idt_3_ID566801419131028813_ID577201619131028813_A_A"><A =
name=3D"brc_ID577201619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID588601819131028813_"=20
class=3D"idt_3_ID566801419131028813_ID588601819131028813_A_A"><A =
name=3D"brc_ID588601819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID591102019131028813_"=20
class=3D"idt_3_ID566801419131028813_ID591102019131028813_A_A"><A =
name=3D"brc_ID591102019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>48</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID630403119131028813_"=20
class=3D"idt_2_ID391462316131028813_ID630403119131028813_O_M"><A =
name=3D"brc_ID630403119131028813_"></A>
<H2><B>Atmospheric conditions&nbsp;</B>- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID630403119131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID630403119131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID649203319131028813_"=20
class=3D"idt_3_ID630403119131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID649203319131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID649203319131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>60</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID654203519131028813_"=20
class=3D"idt_3_ID649203319131028813_ID654203519131028813_A_A"><A =
name=3D"brc_ID654203519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 61%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID667303719131028813_"=20
class=3D"idt_3_ID649203319131028813_ID667303719131028813_A_A"><A =
name=3D"brc_ID667303719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>11</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID672403919131028813_"=20
class=3D"idt_3_ID649203319131028813_ID672403919131028813_A_A"><A =
name=3D"brc_ID672403919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID685804319131028813_"=20
class=3D"idt_3_ID630403119131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID685804319131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID685804319131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>60</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID699104519131028813_"=20
class=3D"idt_3_ID685804319131028813_ID699104519131028813_A_A"><A =
name=3D"brc_ID699104519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 61%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID705504719131028813_"=20
class=3D"idt_3_ID685804319131028813_ID705504719131028813_A_A"><A =
name=3D"brc_ID705504719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID718304919131028813_"=20
class=3D"idt_3_ID685804319131028813_ID718304919131028813_A_A"><A =
name=3D"brc_ID718304919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID720505319131028813_"=20
class=3D"idt_3_ID630403119131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID720505319131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID720505319131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>60</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID736605519131028813_"=20
class=3D"idt_3_ID720505319131028813_ID736605519131028813_A_A"><A =
name=3D"brc_ID736605519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>26</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID744805719131028813_"=20
class=3D"idt_3_ID720505319131028813_ID744805719131028813_A_A"><A =
name=3D"brc_ID744805719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID759605919131028813_"=20
class=3D"idt_3_ID720505319131028813_ID759605919131028813_A_A"><A =
name=3D"brc_ID759605919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID765506219131028813_"=20
class=3D"idt_3_ID630403119131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID765506219131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloaded</SPAN>&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID765506219131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>60</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID779606419131028813_"=20
class=3D"idt_3_ID765506219131028813_ID779606419131028813_A_A"><A =
name=3D"brc_ID779606419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID787006619131028813_"=20
class=3D"idt_3_ID765506219131028813_ID787006619131028813_A_A"><A =
name=3D"brc_ID787006619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID798706819131028813_"=20
class=3D"idt_3_ID765506219131028813_ID798706819131028813_A_A"><A =
name=3D"brc_ID798706819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>19</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372834520140830213_"=20
class=3D"idt_3_ID630403119131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID372834520140830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID372834520140830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>60</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371534820140830213_"=20
class=3D"idt_3_ID372834520140830213_ID371534820140830213_A_A"><A =
name=3D"brc_ID371534820140830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 44%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372034920140830213_"=20
class=3D"idt_3_ID372834520140830213_ID372034920140830213_A_A"><A =
name=3D"brc_ID372034920140830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>3</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377635020140830213_"=20
class=3D"idt_3_ID372834520140830213_ID377635020140830213_A_A"><A =
name=3D"brc_ID377635020140830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID800507119131028813_"=20
class=3D"idt_3_ID630403119131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID800507119131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data&nbsp;policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID800507119131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>60</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID812007319131028813_"=20
class=3D"idt_3_ID800507119131028813_ID812007319131028813_A_A"><A =
name=3D"brc_ID812007319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>21</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID823307519131028813_"=20
class=3D"idt_3_ID800507119131028813_ID823307519131028813_A_A"><A =
name=3D"brc_ID823307519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>12</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID834307719131028813_"=20
class=3D"idt_3_ID800507119131028813_ID834307719131028813_A_A"><A =
name=3D"brc_ID834307719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID872008919131028813_"=20
class=3D"idt_2_ID391462316131028813_ID872008919131028813_O_M"><A =
name=3D"brc_ID872008919131028813_"></A>
<H2><B>Meteorological geographical features</B> - USER =
experience&nbsp;&nbsp;<A=20
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID872008919131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID872008919131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID883409119131028813_"=20
class=3D"idt_3_ID872008919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID883409119131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID883409119131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>51</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID898209319131028813_"=20
class=3D"idt_3_ID883409119131028813_ID898209319131028813_A_A"><A =
name=3D"brc_ID898209319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>19</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID900209519131028813_"=20
class=3D"idt_3_ID883409119131028813_ID900209519131028813_A_A"><A =
name=3D"brc_ID900209519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>12</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID911809719131028813_"=20
class=3D"idt_3_ID883409119131028813_ID911809719131028813_A_A"><A =
name=3D"brc_ID911809719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID921910019131028813_"=20
class=3D"idt_3_ID872008919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID921910019131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID921910019131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>51</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID938310219131028813_"=20
class=3D"idt_3_ID921910019131028813_ID938310219131028813_A_A"><A =
name=3D"brc_ID938310219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID943710419131028813_"=20
class=3D"idt_3_ID921910019131028813_ID943710419131028813_A_A"><A =
name=3D"brc_ID943710419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID955210619131028813_"=20
class=3D"idt_3_ID921910019131028813_ID955210619131028813_A_A"><A =
name=3D"brc_ID955210619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID968110919131028813_"=20
class=3D"idt_3_ID872008919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID968110919131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID968110919131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>51</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID972611119131028813_"=20
class=3D"idt_3_ID968110919131028813_ID972611119131028813_A_A"><A =
name=3D"brc_ID972611119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID988211319131028813_"=20
class=3D"idt_3_ID968110919131028813_ID988211319131028813_A_A"><A =
name=3D"brc_ID988211319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>11</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID994811519131028813_"=20
class=3D"idt_3_ID968110919131028813_ID994811519131028813_A_A"><A =
name=3D"brc_ID994811519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID002511819131028813_"=20
class=3D"idt_3_ID872008919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID002511819131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloaded&nbsp;</SPAN>through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID002511819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>51</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID013812019131028813_"=20
class=3D"idt_3_ID002511819131028813_ID013812019131028813_A_A"><A =
name=3D"brc_ID013812019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>12</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID024912219131028813_"=20
class=3D"idt_3_ID002511819131028813_ID024912219131028813_A_A"><A =
name=3D"brc_ID024912219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID032312419131028813_"=20
class=3D"idt_3_ID002511819131028813_ID032312419131028813_A_A"><A =
name=3D"brc_ID032312419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>21</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372812156140830213_"=20
class=3D"idt_3_ID872008919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID372812156140830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID372812156140830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>51</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374512456140830213_"=20
class=3D"idt_3_ID372812156140830213_ID374512456140830213_A_A"><A =
name=3D"brc_ID374512456140830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 45%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372512556140830213_"=20
class=3D"idt_3_ID372812156140830213_ID372512556140830213_A_A"><A =
name=3D"brc_ID372512556140830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>3</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373612656140830213_"=20
class=3D"idt_3_ID372812156140830213_ID373612656140830213_A_A"><A =
name=3D"brc_ID373612656140830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID042412719131028813_"=20
class=3D"idt_3_ID872008919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID042412719131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID042412719131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>51</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID057012919131028813_"=20
class=3D"idt_3_ID042412719131028813_ID057012919131028813_A_A"><A =
name=3D"brc_ID057012919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID063113119131028813_"=20
class=3D"idt_3_ID042412719131028813_ID063113119131028813_A_A"><A =
name=3D"brc_ID063113119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>12</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID070713319131028813_"=20
class=3D"idt_3_ID042412719131028813_ID070713319131028813_A_A"><A =
name=3D"brc_ID070713319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>19</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID110914419131028813_"=20
class=3D"idt_2_ID391462316131028813_ID110914419131028813_O_M"><A =
name=3D"brc_ID110914419131028813_"></A>
<H2><B>Oceanographic geographical features</B> - USER =
experience&nbsp;&nbsp;<A=20
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID110914419131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID110914419131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID122414619131028813_"=20
class=3D"idt_3_ID110914419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID122414619131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID122414619131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>36</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID139714819131028813_"=20
class=3D"idt_3_ID122414619131028813_ID139714819131028813_A_A"><A =
name=3D"brc_ID139714819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID146615019131028813_"=20
class=3D"idt_3_ID122414619131028813_ID146615019131028813_A_A"><A =
name=3D"brc_ID146615019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>3</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID153015219131028813_"=20
class=3D"idt_3_ID122414619131028813_ID153015219131028813_A_A"><A =
name=3D"brc_ID153015219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 60%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID163615519131028813_"=20
class=3D"idt_3_ID110914419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID163615519131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID163615519131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>36</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID175715719131028813_"=20
class=3D"idt_3_ID163615519131028813_ID175715719131028813_A_A"><A =
name=3D"brc_ID175715719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID186115919131028813_"=20
class=3D"idt_3_ID163615519131028813_ID186115919131028813_A_A"><A =
name=3D"brc_ID186115919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>4</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID197716119131028813_"=20
class=3D"idt_3_ID163615519131028813_ID197716119131028813_A_A"><A =
name=3D"brc_ID197716119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID207616419131028813_"=20
class=3D"idt_3_ID110914419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID207616419131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID207616419131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>36</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID219216619131028813_"=20
class=3D"idt_3_ID207616419131028813_ID219216619131028813_A_A"><A =
name=3D"brc_ID219216619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID228716819131028813_"=20
class=3D"idt_3_ID207616419131028813_ID228716819131028813_A_A"><A =
name=3D"brc_ID228716819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>3</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID233017019131028813_"=20
class=3D"idt_3_ID207616419131028813_ID233017019131028813_A_A"><A =
name=3D"brc_ID233017019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 56%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID245017319131028813_"=20
class=3D"idt_3_ID110914419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID245017319131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloaded</SPAN>&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID245017319131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>36</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID255617519131028813_"=20
class=3D"idt_3_ID245017319131028813_ID255617519131028813_A_A"><A =
name=3D"brc_ID255617519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>10</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID264717719131028813_"=20
class=3D"idt_3_ID245017319131028813_ID264717719131028813_A_A"><A =
name=3D"brc_ID264717719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>6</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID279617919131028813_"=20
class=3D"idt_3_ID245017319131028813_ID279617919131028813_A_A"><A =
name=3D"brc_ID279617919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 56%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372751117160830213_"=20
class=3D"idt_3_ID110914419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID372751117160830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID372751117160830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>36</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376151517160830213_"=20
class=3D"idt_3_ID372751117160830213_ID376151517160830213_A_A"><A =
name=3D"brc_ID376151517160830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 60%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377051617160830213_"=20
class=3D"idt_3_ID372751117160830213_ID377051617160830213_A_A"><A =
name=3D"brc_ID377051617160830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>3</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377551717160830213_"=20
class=3D"idt_3_ID372751117160830213_ID377551717160830213_A_A"><A =
name=3D"brc_ID377551717160830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID288618219131028813_"=20
class=3D"idt_3_ID110914419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID288618219131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID288618219131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>36</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID294318419131028813_"=20
class=3D"idt_3_ID288618219131028813_ID294318419131028813_A_A"><A =
name=3D"brc_ID294318419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>12</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID303418619131028813_"=20
class=3D"idt_3_ID288618219131028813_ID303418619131028813_A_A"><A =
name=3D"brc_ID303418619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>6</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID316518819131028813_"=20
class=3D"idt_3_ID288618219131028813_ID316518819131028813_A_A"><A =
name=3D"brc_ID316518819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 60%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID357019919131028813_"=20
class=3D"idt_2_ID391462316131028813_ID357019919131028813_O_M"><A =
name=3D"brc_ID357019919131028813_"></A>
<H2><B>Sea Regions</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID357019919131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID357019919131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID362920119131028813_"=20
class=3D"idt_3_ID357019919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID362920119131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID362920119131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>42</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371520319131028813_"=20
class=3D"idt_3_ID362920119131028813_ID371520319131028813_A_A"><A =
name=3D"brc_ID371520319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID387920519131028813_"=20
class=3D"idt_3_ID362920119131028813_ID387920519131028813_A_A"><A =
name=3D"brc_ID387920519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>7</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID396920719131028813_"=20
class=3D"idt_3_ID362920119131028813_ID396920719131028813_A_A"><A =
name=3D"brc_ID396920719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID406121019131028813_"=20
class=3D"idt_3_ID357019919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID406121019131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID406121019131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>42</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID410321219131028813_"=20
class=3D"idt_3_ID406121019131028813_ID410321219131028813_A_A"><A =
name=3D"brc_ID410321219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID428121419131028813_"=20
class=3D"idt_3_ID406121019131028813_ID428121419131028813_A_A"><A =
name=3D"brc_ID428121419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>8</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID431721619131028813_"=20
class=3D"idt_3_ID406121019131028813_ID431721619131028813_A_A"><A =
name=3D"brc_ID431721619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID448721919131028813_"=20
class=3D"idt_3_ID357019919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID448721919131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID448721919131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>42</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID458722119131028813_"=20
class=3D"idt_3_ID448721919131028813_ID458722119131028813_A_A"><A =
name=3D"brc_ID458722119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID462422319131028813_"=20
class=3D"idt_3_ID448721919131028813_ID462422319131028813_A_A"><A =
name=3D"brc_ID462422319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>10</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID475822519131028813_"=20
class=3D"idt_3_ID448721919131028813_ID475822519131028813_A_A"><A =
name=3D"brc_ID475822519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID488422819131028813_"=20
class=3D"idt_3_ID357019919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID488422819131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloaded</SPAN>&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID488422819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>42</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID496923019131028813_"=20
class=3D"idt_3_ID488422819131028813_ID496923019131028813_A_A"><A =
name=3D"brc_ID496923019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>12</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID505223219131028813_"=20
class=3D"idt_3_ID488422819131028813_ID505223219131028813_A_A"><A =
name=3D"brc_ID505223219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>11</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID511023419131028813_"=20
class=3D"idt_3_ID488422819131028813_ID511023419131028813_A_A"><A =
name=3D"brc_ID511023419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>19</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID379086854160830213_"=20
class=3D"idt_3_ID357019919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID379086854160830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID379086854160830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>42</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372987154160830213_"=20
class=3D"idt_3_ID379086854160830213_ID372987154160830213_A_A"><A =
name=3D"brc_ID372987154160830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 52%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371587254160830213_"=20
class=3D"idt_3_ID379086854160830213_ID371587254160830213_A_A"><A =
name=3D"brc_ID371587254160830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>4</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370687354160830213_"=20
class=3D"idt_3_ID379086854160830213_ID370687354160830213_A_A"><A =
name=3D"brc_ID370687354160830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID520123719131028813_"=20
class=3D"idt_3_ID357019919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID520123719131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data </SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID520123719131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>42</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID531223919131028813_"=20
class=3D"idt_3_ID520123719131028813_ID531223919131028813_A_A"><A =
name=3D"brc_ID531223919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID547624119131028813_"=20
class=3D"idt_3_ID520123719131028813_ID547624119131028813_A_A"><A =
name=3D"brc_ID547624119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>6</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID555424319131028813_"=20
class=3D"idt_3_ID520123719131028813_ID555424319131028813_A_A"><A =
name=3D"brc_ID555424319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID595025419131028813_"=20
class=3D"idt_2_ID391462316131028813_ID595025419131028813_O_M"><A =
name=3D"brc_ID595025419131028813_"></A>
<H2><B>Bio-geographical regions&nbsp;</B>- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID595025419131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID595025419131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID607325619131028813_"=20
class=3D"idt_3_ID595025419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID607325619131028813_"></A>
<H3>is <SPAN style=3D"text-decoration: underline;">documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID607325619131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>69</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID614225819131028813_"=20
class=3D"idt_3_ID607325619131028813_ID614225819131028813_A_A"><A =
name=3D"brc_ID614225819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 44%;">
            =
<H6>48</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID620126019131028813_"=20
class=3D"idt_3_ID607325619131028813_ID620126019131028813_A_A"><A =
name=3D"brc_ID620126019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>7</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID639226219131028813_"=20
class=3D"idt_3_ID607325619131028813_ID639226219131028813_A_A"><A =
name=3D"brc_ID639226219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID647726519131028813_"=20
class=3D"idt_3_ID595025419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID647726519131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID647726519131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>69</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID652726719131028813_"=20
class=3D"idt_3_ID647726519131028813_ID652726719131028813_A_A"><A =
name=3D"brc_ID652726719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 52%;">
            =
<H6>41</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID666826919131028813_"=20
class=3D"idt_3_ID647726519131028813_ID666826919131028813_A_A"><A =
name=3D"brc_ID666826919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>10</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID674427119131028813_"=20
class=3D"idt_3_ID647726519131028813_ID674427119131028813_A_A"><A =
name=3D"brc_ID674427119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID689227419131028813_"=20
class=3D"idt_3_ID595025419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID689227419131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID689227419131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>69</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID692627619131028813_"=20
class=3D"idt_3_ID689227419131028813_ID692627619131028813_A_A"><A =
name=3D"brc_ID692627619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 54%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID709027819131028813_"=20
class=3D"idt_3_ID689227419131028813_ID709027819131028813_A_A"><A =
name=3D"brc_ID709027819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>8</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID712328019131028813_"=20
class=3D"idt_3_ID689227419131028813_ID712328019131028813_A_A"><A =
name=3D"brc_ID712328019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>21</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID728428319131028813_"=20
class=3D"idt_3_ID595025419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID728428319131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloaded</SPAN>&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID728428319131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>69</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID732728519131028813_"=20
class=3D"idt_3_ID728428319131028813_ID732728519131028813_A_A"><A =
name=3D"brc_ID732728519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>30</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID748328719131028813_"=20
class=3D"idt_3_ID728428319131028813_ID748328719131028813_A_A"><A =
name=3D"brc_ID748328719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID759528919131028813_"=20
class=3D"idt_3_ID728428319131028813_ID759528919131028813_A_A"><A =
name=3D"brc_ID759528919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370218414180830213_"=20
class=3D"idt_3_ID595025419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID370218414180830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID370218414180830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>69</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378618714180830213_"=20
class=3D"idt_3_ID370218414180830213_ID378618714180830213_A_A"><A =
name=3D"brc_ID378618714180830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 39%;">
            =
<H6>53</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371118814180830213_"=20
class=3D"idt_3_ID370218414180830213_ID371118814180830213_A_A"><A =
name=3D"brc_ID371118814180830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>3</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID379718914180830213_"=20
class=3D"idt_3_ID370218414180830213_ID379718914180830213_A_A"><A =
name=3D"brc_ID379718914180830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID768229219131028813_"=20
class=3D"idt_3_ID595025419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID768229219131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data&nbsp;</SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID768229219131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>69</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID777429419131028813_"=20
class=3D"idt_3_ID768229219131028813_ID777429419131028813_A_A"><A =
name=3D"brc_ID777429419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 56%;">
            =
<H6>38</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID789229619131028813_"=20
class=3D"idt_3_ID768229219131028813_ID789229619131028813_A_A"><A =
name=3D"brc_ID789229619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>11</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID790329819131028813_"=20
class=3D"idt_3_ID768229219131028813_ID790329819131028813_A_A"><A =
name=3D"brc_ID790329819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID834030919131028813_"=20
class=3D"idt_2_ID391462316131028813_ID834030919131028813_O_M"><A =
name=3D"brc_ID834030919131028813_"></A>
<H2><B>Habitats and biotopes</B> - USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID834030919131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID834030919131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID840431119131028813_"=20
class=3D"idt_3_ID834030919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID840431119131028813_"></A>
<H3>is<SPAN style=3D"text-decoration: underline;"> documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID840431119131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>136</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID854331319131028813_"=20
class=3D"idt_3_ID840431119131028813_ID854331319131028813_A_A"><A =
name=3D"brc_ID854331319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 55%;">
            =
<H6>76</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID868031519131028813_"=20
class=3D"idt_3_ID840431119131028813_ID868031519131028813_A_A"><A =
name=3D"brc_ID868031519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID874231719131028813_"=20
class=3D"idt_3_ID840431119131028813_ID874231719131028813_A_A"><A =
name=3D"brc_ID874231719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>44</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID881432019131028813_"=20
class=3D"idt_3_ID834030919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID881432019131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID881432019131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>136</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID892032219131028813_"=20
class=3D"idt_3_ID881432019131028813_ID892032219131028813_A_A"><A =
name=3D"brc_ID892032219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 53%;">
            =
<H6>80</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID900532419131028813_"=20
class=3D"idt_3_ID881432019131028813_ID900532419131028813_A_A"><A =
name=3D"brc_ID900532419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID919032619131028813_"=20
class=3D"idt_3_ID881432019131028813_ID919032619131028813_A_A"><A =
name=3D"brc_ID919032619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>39</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID923632919131028813_"=20
class=3D"idt_3_ID834030919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID923632919131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID923632919131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>136</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID939633119131028813_"=20
class=3D"idt_3_ID923632919131028813_ID939633119131028813_A_A"><A =
name=3D"brc_ID939633119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 56%;">
            =
<H6>75</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID947733319131028813_"=20
class=3D"idt_3_ID923632919131028813_ID947733319131028813_A_A"><A =
name=3D"brc_ID947733319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID955633519131028813_"=20
class=3D"idt_3_ID923632919131028813_ID955633519131028813_A_A"><A =
name=3D"brc_ID955633519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>44</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID968233819131028813_"=20
class=3D"idt_3_ID834030919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID968233819131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloade</SPAN>d&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID968233819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>136</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID979134019131028813_"=20
class=3D"idt_3_ID968233819131028813_ID979134019131028813_A_A"><A =
name=3D"brc_ID979134019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>60</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID980934219131028813_"=20
class=3D"idt_3_ID968233819131028813_ID980934219131028813_A_A"><A =
name=3D"brc_ID980934219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID995634419131028813_"=20
class=3D"idt_3_ID968233819131028813_ID995634419131028813_A_A"><A =
name=3D"brc_ID995634419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376150647180830213_"=20
class=3D"idt_3_ID834030919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID376150647180830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID376150647180830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>136</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370950947180830213_"=20
class=3D"idt_3_ID376150647180830213_ID370950947180830213_A_A"><A =
name=3D"brc_ID370950947180830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 38%;">
            =
<H6>106</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373351047180830213_"=20
class=3D"idt_3_ID376150647180830213_ID373351047180830213_A_A"><A =
name=3D"brc_ID373351047180830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>5</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374151147180830213_"=20
class=3D"idt_3_ID376150647180830213_ID374151147180830213_A_A"><A =
name=3D"brc_ID374151147180830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID003534719131028813_"=20
class=3D"idt_3_ID834030919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID003534719131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data</SPAN> <SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID003534719131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>136</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID012534919131028813_"=20
class=3D"idt_3_ID003534719131028813_ID012534919131028813_A_A"><A =
name=3D"brc_ID012534919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 58%;">
            =
<H6>72</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID023935119131028813_"=20
class=3D"idt_3_ID003534719131028813_ID023935119131028813_A_A"><A =
name=3D"brc_ID023935119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID034035319131028813_"=20
class=3D"idt_3_ID003534719131028813_ID034035319131028813_A_A"><A =
name=3D"brc_ID034035319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>44</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID076136419131028813_"=20
class=3D"idt_2_ID391462316131028813_ID076136419131028813_O_M"><A =
name=3D"brc_ID076136419131028813_"></A>
<H2><B>Species distribution</B>&nbsp;- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID076136419131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID076136419131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID084336619131028813_"=20
class=3D"idt_3_ID076136419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID084336619131028813_"></A>
<H3>is<SPAN style=3D"text-decoration: underline;"> documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID084336619131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID095236819131028813_"=20
class=3D"idt_3_ID084336619131028813_ID095236819131028813_A_A"><A =
name=3D"brc_ID095236819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>39</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID107937019131028813_"=20
class=3D"idt_3_ID084336619131028813_ID107937019131028813_A_A"><A =
name=3D"brc_ID107937019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID115737219131028813_"=20
class=3D"idt_3_ID084336619131028813_ID115737219131028813_A_A"><A =
name=3D"brc_ID115737219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID127337519131028813_"=20
class=3D"idt_3_ID076136419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID127337519131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID127337519131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID130237719131028813_"=20
class=3D"idt_3_ID127337519131028813_ID130237719131028813_A_A"><A =
name=3D"brc_ID130237719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>39</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID141537919131028813_"=20
class=3D"idt_3_ID127337519131028813_ID141537919131028813_A_A"><A =
name=3D"brc_ID141537919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID157938119131028813_"=20
class=3D"idt_3_ID127337519131028813_ID157938119131028813_A_A"><A =
name=3D"brc_ID157938119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID169238419131028813_"=20
class=3D"idt_3_ID076136419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID169238419131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID169238419131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID174938619131028813_"=20
class=3D"idt_3_ID169238419131028813_ID174938619131028813_A_A"><A =
name=3D"brc_ID174938619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>36</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID189638819131028813_"=20
class=3D"idt_3_ID169238419131028813_ID189638819131028813_A_A"><A =
name=3D"brc_ID189638819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID191439019131028813_"=20
class=3D"idt_3_ID169238419131028813_ID191439019131028813_A_A"><A =
name=3D"brc_ID191439019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>38</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID206039319131028813_"=20
class=3D"idt_3_ID076136419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID206039319131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloade</SPAN>d&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID206039319131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID218039519131028813_"=20
class=3D"idt_3_ID206039319131028813_ID218039519131028813_A_A"><A =
name=3D"brc_ID218039519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID220739719131028813_"=20
class=3D"idt_3_ID206039319131028813_ID220739719131028813_A_A"><A =
name=3D"brc_ID220739719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>23</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID235139919131028813_"=20
class=3D"idt_3_ID206039319131028813_ID235139919131028813_A_A"><A =
name=3D"brc_ID235139919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>41</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374894228190830213_"=20
class=3D"idt_3_ID076136419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID374894228190830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID374894228190830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377594528190830213_"=20
class=3D"idt_3_ID374894228190830213_ID377594528190830213_A_A"><A =
name=3D"brc_ID377594528190830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 44%;">
            =
<H6>64</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376894628190830213_"=20
class=3D"idt_3_ID374894228190830213_ID376894628190830213_A_A"><A =
name=3D"brc_ID376894628190830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>4</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372494728190830213_"=20
class=3D"idt_3_ID374894228190830213_ID372494728190830213_A_A"><A =
name=3D"brc_ID372494728190830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID243240219131028813_"=20
class=3D"idt_3_ID076136419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID243240219131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data </SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID243240219131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>92</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID253140419131028813_"=20
class=3D"idt_3_ID243240219131028813_ID253140419131028813_A_A"><A =
name=3D"brc_ID253140419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID260140619131028813_"=20
class=3D"idt_3_ID243240219131028813_ID260140619131028813_A_A"><A =
name=3D"brc_ID260140619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID276140819131028813_"=20
class=3D"idt_3_ID243240219131028813_ID276140819131028813_A_A"><A =
name=3D"brc_ID276140819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>37</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID315941919131028813_"=20
class=3D"idt_2_ID391462316131028813_ID315941919131028813_O_M"><A =
name=3D"brc_ID315941919131028813_"></A>
<H2><B>Energy resources</B>&nbsp;- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID315941919131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID315941919131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID326742119131028813_"=20
class=3D"idt_3_ID315941919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID326742119131028813_"></A>
<H3>is<SPAN style=3D"text-decoration: underline;"> documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID326742119131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>77</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID331442319131028813_"=20
class=3D"idt_3_ID326742119131028813_ID331442319131028813_A_A"><A =
name=3D"brc_ID331442319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID340342519131028813_"=20
class=3D"idt_3_ID326742119131028813_ID340342519131028813_A_A"><A =
name=3D"brc_ID340342519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID354842719131028813_"=20
class=3D"idt_3_ID326742119131028813_ID354842719131028813_A_A"><A =
name=3D"brc_ID354842719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID361643019131028813_"=20
class=3D"idt_3_ID315941919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID361643019131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID361643019131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>77</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376243219131028813_"=20
class=3D"idt_3_ID361643019131028813_ID376243219131028813_A_A"><A =
name=3D"brc_ID376243219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID387443419131028813_"=20
class=3D"idt_3_ID361643019131028813_ID387443419131028813_A_A"><A =
name=3D"brc_ID387443419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID398943619131028813_"=20
class=3D"idt_3_ID361643019131028813_ID398943619131028813_A_A"><A =
name=3D"brc_ID398943619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>31</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID406443919131028813_"=20
class=3D"idt_3_ID315941919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID406443919131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID406443919131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>77</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID416644119131028813_"=20
class=3D"idt_3_ID406443919131028813_ID416644119131028813_A_A"><A =
name=3D"brc_ID416644119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>26</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID421544319131028813_"=20
class=3D"idt_3_ID406443919131028813_ID421544319131028813_A_A"><A =
name=3D"brc_ID421544319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID435344519131028813_"=20
class=3D"idt_3_ID406443919131028813_ID435344519131028813_A_A"><A =
name=3D"brc_ID435344519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID445944819131028813_"=20
class=3D"idt_3_ID315941919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID445944819131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloade</SPAN>d&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID445944819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>77</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID450745019131028813_"=20
class=3D"idt_3_ID445944819131028813_ID450745019131028813_A_A"><A =
name=3D"brc_ID450745019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID469445219131028813_"=20
class=3D"idt_3_ID445944819131028813_ID469445219131028813_A_A"><A =
name=3D"brc_ID469445219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID474045419131028813_"=20
class=3D"idt_3_ID445944819131028813_ID474045419131028813_A_A"><A =
name=3D"brc_ID474045419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>32</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370551003200830213_"=20
class=3D"idt_3_ID315941919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID370551003200830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID370551003200830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>77</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID377251303200830213_"=20
class=3D"idt_3_ID370551003200830213_ID377251303200830213_A_A"><A =
name=3D"brc_ID377251303200830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 61%;">
            =
<H6>38</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370751403200830213_"=20
class=3D"idt_3_ID370551003200830213_ID370751403200830213_A_A"><A =
name=3D"brc_ID370751403200830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>7</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID372551503200830213_"=20
class=3D"idt_3_ID370551003200830213_ID372551503200830213_A_A"><A =
name=3D"brc_ID372551503200830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>32</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID484745719131028813_"=20
class=3D"idt_3_ID315941919131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID484745719131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data&nbsp;</SPAN><SPAN =
style=3D"text-decoration: underline;">policy</SPAN>=20
(licence, charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: =
underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID484745719131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>77</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID494545919131028813_"=20
class=3D"idt_3_ID484745719131028813_ID494545919131028813_A_A"><A =
name=3D"brc_ID494545919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID509846119131028813_"=20
class=3D"idt_3_ID484745719131028813_ID509846119131028813_A_A"><A =
name=3D"brc_ID509846119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID515746319131028813_"=20
class=3D"idt_3_ID484745719131028813_ID515746319131028813_A_A"><A =
name=3D"brc_ID515746319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 59%;">
            =
<H6>39</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID553647419131028813_"=20
class=3D"idt_2_ID391462316131028813_ID553647419131028813_O_M"><A =
name=3D"brc_ID553647419131028813_"></A>
<H2><B>Mineral resources&nbsp;</B>- USER experience&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID553647419131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID553647419131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID566947619131028813_"=20
class=3D"idt_3_ID553647419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID566947619131028813_"></A>
<H3>is<SPAN style=3D"text-decoration: underline;"> documented</SPAN> =
(has=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID566947619131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>61</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID570447819131028813_"=20
class=3D"idt_3_ID566947619131028813_ID570447819131028813_A_A"><A =
name=3D"brc_ID570447819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 59%;">
            =
<H6>31</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID589548019131028813_"=20
class=3D"idt_3_ID566947619131028813_ID589548019131028813_A_A"><A =
name=3D"brc_ID589548019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>11</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID590948219131028813_"=20
class=3D"idt_3_ID566947619131028813_ID590948219131028813_A_A"><A =
name=3D"brc_ID590948219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>19</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID605448519131028813_"=20
class=3D"idt_3_ID553647419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID605448519131028813_"></A>
<H3>can be <SPAN style=3D"text-decoration: underline;">discovered</SPAN> =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID605448519131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>61</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID619748719131028813_"=20
class=3D"idt_3_ID605448519131028813_ID619748719131028813_A_A"><A =
name=3D"brc_ID619748719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 61%;">
            =
<H6>30</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID622948919131028813_"=20
class=3D"idt_3_ID605448519131028813_ID622948919131028813_A_A"><A =
name=3D"brc_ID622948919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>12</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID634649119131028813_"=20
class=3D"idt_3_ID605448519131028813_ID634649119131028813_A_A"><A =
name=3D"brc_ID634649119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>19</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID647949419131028813_"=20
class=3D"idt_3_ID553647419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID647949419131028813_"></A>
<H3>can be&nbsp;<SPAN style=3D"text-decoration: =
underline;">viewed</SPAN> through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID647949419131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>61</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID651949619131028813_"=20
class=3D"idt_3_ID647949419131028813_ID651949619131028813_A_A"><A =
name=3D"brc_ID651949619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID669449819131028813_"=20
class=3D"idt_3_ID647949419131028813_ID669449819131028813_A_A"><A =
name=3D"brc_ID669449819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>11</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID675950019131028813_"=20
class=3D"idt_3_ID647949419131028813_ID675950019131028813_A_A"><A =
name=3D"brc_ID675950019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>21</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID682950319131028813_"=20
class=3D"idt_3_ID553647419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID682950319131028813_"></A>
<H3>can be <SPAN=20
style=3D"text-decoration: underline;">downloade</SPAN>d&nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID682950319131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>61</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID690150519131028813_"=20
class=3D"idt_3_ID682950319131028813_ID690150519131028813_A_A"><A =
name=3D"brc_ID690150519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID706850719131028813_"=20
class=3D"idt_3_ID682950319131028813_ID706850719131028813_A_A"><A =
name=3D"brc_ID706850719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 67%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID719950919131028813_"=20
class=3D"idt_3_ID682950319131028813_ID719950919131028813_A_A"><A =
name=3D"brc_ID719950919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378114835200830213_"=20
class=3D"idt_3_ID553647419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID378114835200830213_"></A>
<H3>comes from a public authority<SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID378114835200830213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>61</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374915135200830213_"=20
class=3D"idt_3_ID378114835200830213_ID374915135200830213_A_A"><A =
name=3D"brc_ID374915135200830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 45%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370415235200830213_"=20
class=3D"idt_3_ID378114835200830213_ID370415235200830213_A_A"><A =
name=3D"brc_ID370415235200830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>2</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID374215335200830213_"=20
class=3D"idt_3_ID378114835200830213_ID374215335200830213_A_A"><A =
name=3D"brc_ID374215335200830213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID725951219131028813_"=20
class=3D"idt_3_ID553647419131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID725951219131028813_"></A>
<H3>
<H3><SPAN style=3D"text-decoration: underline;">data policy</SPAN> =
(licence,=20
charges, etc.) is&nbsp;<SPAN style=3D"text-decoration: underline;">no=20
obstacle</SPAN> for use</H3><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID725951219131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>61</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID735151419131028813_"=20
class=3D"idt_3_ID725951219131028813_ID735151419131028813_A_A"><A =
name=3D"brc_ID735151419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>21</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID748651619131028813_"=20
class=3D"idt_3_ID725951219131028813_ID748651619131028813_A_A"><A =
name=3D"brc_ID748651619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID755351819131028813_"=20
class=3D"idt_3_ID725951219131028813_ID755351819131028813_A_A"><A =
name=3D"brc_ID755351819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>26</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID796352919131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID796352919131028813_"></A>
<H3><SPAN style=3D"font-size: medium;">I have used the EU geo-portal to =
access=20
spatial data</SPAN><SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID796352919131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID802353119131028813_"=20
class=3D"idt_3_ID796352919131028813_ID802353119131028813_A_A"><A =
name=3D"brc_ID802353119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID802353119131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID802353119131028813');manageTree('I=
D802353119131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID802353119131028813"></TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>217</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID802353119131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID831654119131028813_"=20
class=3D"idt_4_ID802353119131028813_ID831654119131028813_A_D"><A =
name=3D"dep_ID831654119131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID814653319131028813_"=20
class=3D"idt_3_ID796352919131028813_ID814653319131028813_A_A"><A =
name=3D"brc_ID814653319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID814653319131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID814653319131028813');manageTree('I=
D814653319131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID814653319131028813"></TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 45%;">
            =
<H6>480</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID814653319131028813_"></DIV>
</DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID831654119131028813_"=20
class=3D"idt_2_ID391462316131028813_ID831654119131028813_O_M"><A =
name=3D"brc_ID831654119131028813_"></A>
<H2>I have used the EU geo-portal and was able to&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID831654119131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID831654119131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID842054319131028813_"=20
class=3D"idt_3_ID831654119131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID842054319131028813_"></A>
<H3>Discover the spatial data that I need as well as the conditions for =
use and=20
other relevant documentation (metadata)<SPAN class=3D"comment"> -single =
choice=20
reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID842054319131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>217</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID857054519131028813_"=20
class=3D"idt_3_ID842054319131028813_ID857054519131028813_A_A"><A =
name=3D"brc_ID857054519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID863054719131028813_"=20
class=3D"idt_3_ID842054319131028813_ID863054719131028813_A_A"><A =
name=3D"brc_ID863054719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>103</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID872654919131028813_"=20
class=3D"idt_3_ID842054319131028813_ID872654919131028813_A_A"><A =
name=3D"brc_ID872654919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>26</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID880655119131028813_"=20
class=3D"idt_3_ID842054319131028813_ID880655119131028813_A_A"><A =
name=3D"brc_ID880655119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>45</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID897855419131028813_"=20
class=3D"idt_3_ID842054319131028813_ID897855419131028813_A_A"><A =
name=3D"brc_ID897855419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>8</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DIV=
></DIV>
<BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID905055719131028813_"=20
class=3D"idt_3_ID831654119131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID905055719131028813_"></A>
<H3>View (display) the spatial data that I need<SPAN class=3D"comment"> =
-single=20
choice reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID905055719131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>217</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID910955919131028813_"=20
class=3D"idt_3_ID905055719131028813_ID910955919131028813_A_A"><A =
name=3D"brc_ID910955919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID925156119131028813_"=20
class=3D"idt_3_ID905055719131028813_ID925156119131028813_A_A"><A =
name=3D"brc_ID925156119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 63%;">
            =
<H6>101</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID931556319131028813_"=20
class=3D"idt_3_ID905055719131028813_ID931556319131028813_A_A"><A =
name=3D"brc_ID931556319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID946856519131028813_"=20
class=3D"idt_3_ID905055719131028813_ID946856519131028813_A_A"><A =
name=3D"brc_ID946856519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>46</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID956856719131028813_"=20
class=3D"idt_3_ID905055719131028813_ID956856719131028813_A_A"><A =
name=3D"brc_ID956856719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID961857019131028813_"=20
class=3D"idt_3_ID831654119131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID961857019131028813_"></A>
<H3>Download the spatial data that I need<SPAN class=3D"comment"> =
-single choice=20
reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID961857019131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>217</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID975557219131028813_"=20
class=3D"idt_3_ID961857019131028813_ID975557219131028813_A_A"><A =
name=3D"brc_ID975557219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>20</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID982157419131028813_"=20
class=3D"idt_3_ID961857019131028813_ID982157419131028813_A_A"><A =
name=3D"brc_ID982157419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>37</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID997957619131028813_"=20
class=3D"idt_3_ID961857019131028813_ID997957619131028813_A_A"><A =
name=3D"brc_ID997957619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>75</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID001257819131028813_"=20
class=3D"idt_3_ID961857019131028813_ID001257819131028813_A_A"><A =
name=3D"brc_ID001257819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>52</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID011958019131028813_"=20
class=3D"idt_3_ID961857019131028813_ID011958019131028813_A_A"><A =
name=3D"brc_ID011958019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID075359519131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID075359519131028813_"></A>
<H3><SPAN style=3D"font-size: medium;">I have used&nbsp;other =
international,=20
national or regional&nbsp;geo-portals to access spatial data</SPAN><SPAN =
class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID075359519131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID089659719131028813_"=20
class=3D"idt_3_ID075359519131028813_ID089659719131028813_A_A"><A =
name=3D"brc_ID089659719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID089659719131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID089659719131028813');manageTree('I=
D089659719131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID089659719131028813"></TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 38%;">
            =
<H6>537</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID089659719131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID101760319131028813_"=20
class=3D"idt_4_ID089659719131028813_ID101760319131028813_A_D"><A =
name=3D"dep_ID101760319131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID095859919131028813_"=20
class=3D"idt_3_ID075359519131028813_ID095859919131028813_A_A"><A =
name=3D"brc_ID095859919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>160</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID101760319131028813_"=20
class=3D"idt_2_ID391462316131028813_ID101760319131028813_O_M"><A =
name=3D"brc_ID101760319131028813_"></A>
<H2>I have used&nbsp;other international, national or =
regional&nbsp;geo-portals=20
to access spatial data and was able to&nbsp;&nbsp;<A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID101760319131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>
</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID101760319131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID117660519131028813_"=20
class=3D"idt_3_ID101760319131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID117660519131028813_"></A>
<H3>Discover the spatial data that I need as well as the conditions for =
use and=20
other relevant documentation (metadata)<SPAN class=3D"comment"> -single =
choice=20
reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID117660519131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>537</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID129460719131028813_"=20
class=3D"idt_3_ID117660519131028813_ID129460719131028813_A_A"><A =
name=3D"brc_ID129460719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>139</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID131260919131028813_"=20
class=3D"idt_3_ID117660519131028813_ID131260919131028813_A_A"><A =
name=3D"brc_ID131260919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 57%;">
            =
<H6>287</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID143461119131028813_"=20
class=3D"idt_3_ID117660519131028813_ID143461119131028813_A_A"><A =
name=3D"brc_ID143461119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>56</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID159461319131028813_"=20
class=3D"idt_3_ID117660519131028813_ID159461319131028813_A_A"><A =
name=3D"brc_ID159461319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>50</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID167961519131028813_"=20
class=3D"idt_3_ID117660519131028813_ID167961519131028813_A_A"><A =
name=3D"brc_ID167961519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>5</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DIV=
></DIV>
<BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID173861819131028813_"=20
class=3D"idt_3_ID101760319131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID173861819131028813_"></A>
<H3>View (display) the spatial data that I need<SPAN class=3D"comment"> =
-single=20
choice reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID173861819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>537</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID188962019131028813_"=20
class=3D"idt_3_ID173861819131028813_ID188962019131028813_A_A"><A =
name=3D"brc_ID188962019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>149</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID191062219131028813_"=20
class=3D"idt_3_ID173861819131028813_ID191062219131028813_A_A"><A =
name=3D"brc_ID191062219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 56%;">
            =
<H6>297</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID207362419131028813_"=20
class=3D"idt_3_ID173861819131028813_ID207362419131028813_A_A"><A =
name=3D"brc_ID207362419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID217662619131028813_"=20
class=3D"idt_3_ID173861819131028813_ID217662619131028813_A_A"><A =
name=3D"brc_ID217662619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>41</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID225762819131028813_"=20
class=3D"idt_3_ID173861819131028813_ID225762819131028813_A_A"><A =
name=3D"brc_ID225762819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>3</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DIV=
></DIV>
<BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID235563119131028813_"=20
class=3D"idt_3_ID101760319131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID235563119131028813_"></A>
<H3>&nbsp;Download the spatial data that I need<SPAN class=3D"comment"> =
-single=20
choice reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID235563119131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>537</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID248363319131028813_"=20
class=3D"idt_3_ID235563119131028813_ID248363319131028813_A_A"><A =
name=3D"brc_ID248363319131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>93</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID253063519131028813_"=20
class=3D"idt_3_ID235563119131028813_ID253063519131028813_A_A"><A =
name=3D"brc_ID253063519131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>183</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID268363719131028813_"=20
class=3D"idt_3_ID235563119131028813_ID268363719131028813_A_A"><A =
name=3D"brc_ID268363719131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>104</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID279763919131028813_"=20
class=3D"idt_3_ID235563119131028813_ID279763919131028813_A_A"><A =
name=3D"brc_ID279763919131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>125</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID281564119131028813_"=20
class=3D"idt_3_ID235563119131028813_ID281564119131028813_A_A"><A =
name=3D"brc_ID281564119131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>32</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID349565619131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID349565619131028813_"></A>
<H3><SPAN style=3D"font-size: medium;">Do you or your organisation =
PRODUCE spatial=20
data and services&nbsp;covered by one or more of the spatial data themes =
listed=20
in the Annexes I,II,III of the INSPIRE Directive?</SPAN><SPAN =
class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID349565619131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID356865819131028813_"=20
class=3D"idt_3_ID349565619131028813_ID356865819131028813_A_A"><A =
name=3D"brc_ID356865819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID356865819131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID356865819131028813');manageTree('I=
D356865819131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID356865819131028813"></TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 52%;">
            =
<H6>419</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID356865819131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID374066419131028813_"=20
class=3D"idt_4_ID356865819131028813_ID374066419131028813_A_D"><A =
name=3D"dep_ID374066419131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID472168619131028813_"=20
class=3D"idt_4_ID356865819131028813_ID472168619131028813_A_D"><A =
name=3D"dep_ID472168619131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID521969819131028813_"=20
class=3D"idt_4_ID356865819131028813_ID521969819131028813_A_D"><A =
name=3D"dep_ID521969819131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID743774419131028813_"=20
class=3D"idt_4_ID356865819131028813_ID743774419131028813_A_D"><A =
name=3D"dep_ID743774419131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID888377819131028813_"=20
class=3D"idt_4_ID356865819131028813_ID888377819131028813_A_D"><A =
name=3D"dep_ID888377819131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID027281219131028813_"=20
class=3D"idt_4_ID356865819131028813_ID027281219131028813_A_D"><A =
name=3D"dep_ID027281219131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID167284619131028813_"=20
class=3D"idt_4_ID356865819131028813_ID167284619131028813_A_D"><A =
name=3D"dep_ID167284619131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID303388019131028813_"=20
class=3D"idt_4_ID356865819131028813_ID303388019131028813_A_D"><A =
name=3D"dep_ID303388019131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID448291419131028813_"=20
class=3D"idt_4_ID356865819131028813_ID448291419131028813_A_D"><A =
name=3D"dep_ID448291419131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID540593819131028813_"=20
class=3D"idt_4_ID356865819131028813_ID540593819131028813_A_D"><A =
name=3D"dep_ID540593819131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID646696219131028813_"=20
class=3D"idt_4_ID356865819131028813_ID646696219131028813_A_D"><A =
name=3D"dep_ID646696219131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID366566019131028813_"=20
class=3D"idt_3_ID349565619131028813_ID366566019131028813_A_A"><A =
name=3D"brc_ID366566019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>278</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID374066419131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID374066419131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID374066419131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Which=20
spatial data themes listed in Annexe I of the INSPIRE Directive cover =
the=20
spatial data&nbsp;PRODUCED by you or your organisation?<SPAN =
class=3D"comment">=20
-multiple choices reply- </SPAN><SPAN =
class=3D"optional">(optional)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID374066419131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>419</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID383466619131028813_"=20
class=3D"idt_3_ID374066419131028813_ID383466619131028813_A_A"><A =
name=3D"brc_ID383466619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>1.	Coordinate reference systems</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>72</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID391066819131028813_"=20
class=3D"idt_3_ID374066419131028813_ID391066819131028813_A_A"><A =
name=3D"brc_ID391066819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>2.	Geographical grid systems</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>67</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID403267019131028813_"=20
class=3D"idt_3_ID374066419131028813_ID403267019131028813_A_A"><A =
name=3D"brc_ID403267019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>3.	Geographical names</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>104</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID415567219131028813_"=20
class=3D"idt_3_ID374066419131028813_ID415567219131028813_A_A"><A =
name=3D"brc_ID415567219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>4.	Administrative units</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>114</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID422767419131028813_"=20
class=3D"idt_3_ID374066419131028813_ID422767419131028813_A_A"><A =
name=3D"brc_ID422767419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>5.	Addresses</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>104</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID438567619131028813_"=20
class=3D"idt_3_ID374066419131028813_ID438567619131028813_A_A"><A =
name=3D"brc_ID438567619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>6.	Cadastral parcels</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>75</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID448467819131028813_"=20
class=3D"idt_3_ID374066419131028813_ID448467819131028813_A_A"><A =
name=3D"brc_ID448467819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>7.	Transport networks</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>140</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID459368019131028813_"=20
class=3D"idt_3_ID374066419131028813_ID459368019131028813_A_A"><A =
name=3D"brc_ID459368019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>8.	Hydrography</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 78%;">
            =
<H6>115</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID462168219131028813_"=20
class=3D"idt_3_ID374066419131028813_ID462168219131028813_A_A"><A =
name=3D"brc_ID462168219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>9.	Protected sites</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>131</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID472168619131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID472168619131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID472168619131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Which=20
spatial data themes listed in Annexe II of the INSPIRE Directive cover =
the=20
spatial data&nbsp;PRODUCED by you or your organisation?<SPAN =
class=3D"comment">=20
-multiple choices reply- </SPAN><SPAN =
class=3D"optional">(optional)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID472168619131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>419</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID485268819131028813_"=20
class=3D"idt_3_ID472168619131028813_ID485268819131028813_A_A"><A =
name=3D"brc_ID485268819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>1.Elevation</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>121</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID491569019131028813_"=20
class=3D"idt_3_ID472168619131028813_ID491569019131028813_A_A"><A =
name=3D"brc_ID491569019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>2.	Land cover</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>133</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID505069219131028813_"=20
class=3D"idt_3_ID472168619131028813_ID505069219131028813_A_A"><A =
name=3D"brc_ID505069219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>3.	Ortho-imagery</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 76%;">
            =
<H6>125</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID514069419131028813_"=20
class=3D"idt_3_ID472168619131028813_ID514069419131028813_A_A"><A =
name=3D"brc_ID514069419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>4.	Geology</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>56</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID521969819131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID521969819131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID521969819131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Which=20
spatial data themes listed in Annexe III of the INSPIRE Directive cover =
the=20
spatial data PRODUCED by you or your organisation?<SPAN =
class=3D"comment">=20
-multiple choices reply- </SPAN><SPAN =
class=3D"optional">(optional)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID521969819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>419</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID535470019131028813_"=20
class=3D"idt_3_ID521969819131028813_ID535470019131028813_A_A"><A =
name=3D"brc_ID535470019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>1.	Statistical units</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>52</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID548870219131028813_"=20
class=3D"idt_3_ID521969819131028813_ID548870219131028813_A_A"><A =
name=3D"brc_ID548870219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>2.	Buildings</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>108</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID553070419131028813_"=20
class=3D"idt_3_ID521969819131028813_ID553070419131028813_A_A"><A =
name=3D"brc_ID553070419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>3.	Soil</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>57</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID566370619131028813_"=20
class=3D"idt_3_ID521969819131028813_ID566370619131028813_A_A"><A =
name=3D"brc_ID566370619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>4.	Land use</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>170</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID577670819131028813_"=20
class=3D"idt_3_ID521969819131028813_ID577670819131028813_A_A"><A =
name=3D"brc_ID577670819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>5.	Human health and safety</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>38</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID582871019131028813_"=20
class=3D"idt_3_ID521969819131028813_ID582871019131028813_A_A"><A =
name=3D"brc_ID582871019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>6.	Utility and governmental services</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>107</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID593171219131028813_"=20
class=3D"idt_3_ID521969819131028813_ID593171219131028813_A_A"><A =
name=3D"brc_ID593171219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>7.	Environmental monitoring facilities</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>83</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID606871419131028813_"=20
class=3D"idt_3_ID521969819131028813_ID606871419131028813_A_A"><A =
name=3D"brc_ID606871419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>8.	Production and industrial facilities</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>63</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID614771619131028813_"=20
class=3D"idt_3_ID521969819131028813_ID614771619131028813_A_A"><A =
name=3D"brc_ID614771619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>9.	Agricultural and aquaculture facilities</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>44</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID622971819131028813_"=20
class=3D"idt_3_ID521969819131028813_ID622971819131028813_A_A"><A =
name=3D"brc_ID622971819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>10.	Population distribution =E2=80=93 demography</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>36</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID635772019131028813_"=20
class=3D"idt_3_ID521969819131028813_ID635772019131028813_A_A"><A =
name=3D"brc_ID635772019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>11.	Area management/ restriction/regulation zones &amp; =
reporting=20
      units</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>107</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID644872219131028813_"=20
class=3D"idt_3_ID521969819131028813_ID644872219131028813_A_A"><A =
name=3D"brc_ID644872219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>12.	Natural risk zones</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>89</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID657572419131028813_"=20
class=3D"idt_3_ID521969819131028813_ID657572419131028813_A_A"><A =
name=3D"brc_ID657572419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>13.	Atmospheric conditions</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID669972619131028813_"=20
class=3D"idt_3_ID521969819131028813_ID669972619131028813_A_A"><A =
name=3D"brc_ID669972619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>14.	Meteorological geographical features</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID671772819131028813_"=20
class=3D"idt_3_ID521969819131028813_ID671772819131028813_A_A"><A =
name=3D"brc_ID671772819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>15.	Oceanographic geographical features</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID689073019131028813_"=20
class=3D"idt_3_ID521969819131028813_ID689073019131028813_A_A"><A =
name=3D"brc_ID689073019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>16.	Sea regions</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>23</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID698473219131028813_"=20
class=3D"idt_3_ID521969819131028813_ID698473219131028813_A_A"><A =
name=3D"brc_ID698473219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>17.	Bio-geographical regions</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID705373419131028813_"=20
class=3D"idt_3_ID521969819131028813_ID705373419131028813_A_A"><A =
name=3D"brc_ID705373419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>18.	Habitats and biotopes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>82</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID716773619131028813_"=20
class=3D"idt_3_ID521969819131028813_ID716773619131028813_A_A"><A =
name=3D"brc_ID716773619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>19.	Species distribution</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>63</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID726673819131028813_"=20
class=3D"idt_3_ID521969819131028813_ID726673819131028813_A_A"><A =
name=3D"brc_ID726673819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>20.	Energy Resources</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>46</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID732874019131028813_"=20
class=3D"idt_3_ID521969819131028813_ID732874019131028813_A_A"><A =
name=3D"brc_ID732874019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>21.	Mineral resources</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>37</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID743774419131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID743774419131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID743774419131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;My=20
organisation has a data policy (licensing, charging, copyright, etc.) =
which=20
allows public authority organisations in my country&nbsp;to access and =
use its=20
spatial data and services without restrictions likely to create =
practical=20
obstacles for their use<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID743774419131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>419</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID750274619131028813_"=20
class=3D"idt_3_ID743774419131028813_ID750274619131028813_A_A"><A =
name=3D"brc_ID750274619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID750274619131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID750274619131028813');manageTree('I=
D750274619131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID750274619131028813"></TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 58%;">
            =
<H6>222</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID750274619131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID847376819131028813_"=20
class=3D"idt_4_ID750274619131028813_ID847376819131028813_A_D"><A =
name=3D"dep_ID847376819131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID764774819131028813_"=20
class=3D"idt_3_ID743774419131028813_ID764774819131028813_A_A"><A =
name=3D"brc_ID764774819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>77</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID775775019131028813_"=20
class=3D"idt_3_ID743774419131028813_ID775775019131028813_A_A"><A =
name=3D"brc_ID775775019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID775775019131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID775775019131028813');manageTree('I=
D775775019131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID775775019131028813"></TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>120</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID775775019131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID785575419131028813_"=20
class=3D"idt_4_ID775775019131028813_ID785575419131028813_A_D"><A =
name=3D"dep_ID785575419131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID847376819131028813_"=20
class=3D"idt_4_ID775775019131028813_ID847376819131028813_A_D"><A =
name=3D"dep_ID847376819131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID785575419131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID785575419131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID785575419131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Please=20
indicate the<B> %</B> of your spatial datasets and services for which =
there are=20
no restrictions likely to create obstacles to their use<SPAN =
class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID785575419131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>120</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID794775619131028813_"=20
class=3D"idt_3_ID785575419131028813_ID794775619131028813_A_A"><A =
name=3D"brc_ID794775619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&gt;76%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 88%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID805875819131028813_"=20
class=3D"idt_3_ID785575419131028813_ID805875819131028813_A_A"><A =
name=3D"brc_ID805875819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>51-75%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID812476019131028813_"=20
class=3D"idt_3_ID785575419131028813_ID812476019131028813_A_A"><A =
name=3D"brc_ID812476019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>26-50%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID823576219131028813_"=20
class=3D"idt_3_ID785575419131028813_ID823576219131028813_A_A"><A =
name=3D"brc_ID823576219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&lt; 25%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>21</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID830276419131028813_"=20
class=3D"idt_3_ID785575419131028813_ID830276419131028813_A_A"><A =
name=3D"brc_ID830276419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>do not know</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 71%;">
            =
<H6>43</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID847376819131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID847376819131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID847376819131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;The=20
data policies of my organisation (licensing, charging, copyright, etc.) =
which=20
allow &nbsp;public organisations in my country to access, exchange and =
use its=20
spatial data and services are also open on equal terms to public =
authorities of=20
other EU Member States, to the EU institutions and bodies, and to bodies =

established by international agreements to which the EU and Member =
States are=20
parties<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID847376819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>342</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID859777019131028813_"=20
class=3D"idt_3_ID847376819131028813_ID859777019131028813_A_A"><A =
name=3D"brc_ID859777019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 46%;">
            =
<H6>230</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID866277219131028813_"=20
class=3D"idt_3_ID847376819131028813_ID866277219131028813_A_A"><A =
name=3D"brc_ID866277219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID874177419131028813_"=20
class=3D"idt_3_ID847376819131028813_ID874177419131028813_A_A"><A =
name=3D"brc_ID874177419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>98</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID888377819131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID888377819131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID888377819131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;The=20
spatial datasets and services of my organisation are&nbsp;documented =
(have=20
metadata)<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID888377819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>419</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID895378019131028813_"=20
class=3D"idt_3_ID888377819131028813_ID895378019131028813_A_A"><A =
name=3D"brc_ID895378019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID895378019131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID895378019131028813');manageTree('I=
D895378019131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID895378019131028813"></TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 54%;">
            =
<H6>243</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID895378019131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID920378819131028813_"=20
class=3D"idt_4_ID895378019131028813_ID920378819131028813_A_D"><A =
name=3D"dep_ID920378819131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID909678219131028813_"=20
class=3D"idt_3_ID888377819131028813_ID909678219131028813_A_A"><A =
name=3D"brc_ID909678219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>39</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID918878419131028813_"=20
class=3D"idt_3_ID888377819131028813_ID918878419131028813_A_A"><A =
name=3D"brc_ID918878419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID918878419131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID918878419131028813');manageTree('I=
D918878419131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID918878419131028813"></TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>137</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID918878419131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID920378819131028813_"=20
class=3D"idt_4_ID918878419131028813_ID920378819131028813_A_D"><A =
name=3D"dep_ID920378819131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID969579819131028813_"=20
class=3D"idt_4_ID918878419131028813_ID969579819131028813_A_D"><A =
name=3D"dep_ID969579819131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID920378819131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID920378819131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID920378819131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;The=20
documentation of the spatial datasets and services of my organisation is =

compliant with the INSPIRE implementing rules on metadata<SPAN =
class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID920378819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>380</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID931079019131028813_"=20
class=3D"idt_3_ID920378819131028813_ID931079019131028813_A_A"><A =
name=3D"brc_ID931079019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 57%;">
            =
<H6>205</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID942579219131028813_"=20
class=3D"idt_3_ID920378819131028813_ID942579219131028813_A_A"><A =
name=3D"brc_ID942579219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>21</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID955179419131028813_"=20
class=3D"idt_3_ID920378819131028813_ID955179419131028813_A_A"><A =
name=3D"brc_ID955179419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>154</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID969579819131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID969579819131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID969579819131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Please=20
indicate the<B> %</B> of your spatial datasets and services which are =
documented=20
(have metadata)<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID969579819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>137</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID971780019131028813_"=20
class=3D"idt_3_ID969579819131028813_ID971780019131028813_A_A"><A =
name=3D"brc_ID971780019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&gt;76%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>17</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID981380219131028813_"=20
class=3D"idt_3_ID969579819131028813_ID981380219131028813_A_A"><A =
name=3D"brc_ID981380219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>51-75%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>18</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID990180419131028813_"=20
class=3D"idt_3_ID969579819131028813_ID990180419131028813_A_A"><A =
name=3D"brc_ID990180419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>26-50%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>22</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID006680619131028813_"=20
class=3D"idt_3_ID969579819131028813_ID006680619131028813_A_A"><A =
name=3D"brc_ID006680619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&lt; 25%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID018780819131028813_"=20
class=3D"idt_3_ID969579819131028813_ID018780819131028813_A_A"><A =
name=3D"brc_ID018780819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>do not know</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>45</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID027281219131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID027281219131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID027281219131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;The=20
spatial datasets and services of my organisation&nbsp;are discoverable =
through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID027281219131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>419</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID039181419131028813_"=20
class=3D"idt_3_ID027281219131028813_ID039181419131028813_A_A"><A =
name=3D"brc_ID039181419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID039181419131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID039181419131028813');manageTree('I=
D039181419131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID039181419131028813"></TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 59%;">
            =
<H6>215</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID039181419131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID129183619131028813_"=20
class=3D"idt_4_ID039181419131028813_ID129183619131028813_A_D"><A =
name=3D"dep_ID129183619131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID047981619131028813_"=20
class=3D"idt_3_ID027281219131028813_ID047981619131028813_A_A"><A =
name=3D"brc_ID047981619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>66</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID058481819131028813_"=20
class=3D"idt_3_ID027281219131028813_ID058481819131028813_A_A"><A =
name=3D"brc_ID058481819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID058481819131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID058481819131028813');manageTree('I=
D058481819131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID058481819131028813"></TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>138</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID058481819131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID066682219131028813_"=20
class=3D"idt_4_ID058481819131028813_ID066682219131028813_A_D"><A =
name=3D"dep_ID066682219131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID129183619131028813_"=20
class=3D"idt_4_ID058481819131028813_ID129183619131028813_A_D"><A =
name=3D"dep_ID129183619131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID066682219131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID066682219131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID066682219131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Please=20
indicate the<B> %</B> of your spatial datasets and services =
which&nbsp;is=20
discoverable through web-based services<SPAN class=3D"comment"> -single =
choice=20
reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID066682219131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>138</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID071782419131028813_"=20
class=3D"idt_3_ID066682219131028813_ID071782419131028813_A_A"><A =
name=3D"brc_ID071782419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&gt;76%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>8</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID081682619131028813_"=20
class=3D"idt_3_ID066682219131028813_ID081682619131028813_A_A"><A =
name=3D"brc_ID081682619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>51-75%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID095982819131028813_"=20
class=3D"idt_3_ID066682219131028813_ID095982819131028813_A_A"><A =
name=3D"brc_ID095982819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>26-50%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID103783019131028813_"=20
class=3D"idt_3_ID066682219131028813_ID103783019131028813_A_A"><A =
name=3D"brc_ID103783019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&lt; 25%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>34</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID117183219131028813_"=20
class=3D"idt_3_ID066682219131028813_ID117183219131028813_A_A"><A =
name=3D"brc_ID117183219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>do not know</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID129183619131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID129183619131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID129183619131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;The=20
web-based services through which the spatial datasets and =
services&nbsp;of my=20
organisation can be discovered are compliant with the INSPIRE =
implementing rule=20
on network services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID129183619131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>353</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID134783819131028813_"=20
class=3D"idt_3_ID129183619131028813_ID134783819131028813_A_A"><A =
name=3D"brc_ID134783819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>167</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID141484019131028813_"=20
class=3D"idt_3_ID129183619131028813_ID141484019131028813_A_A"><A =
name=3D"brc_ID141484019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>36</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID158684219131028813_"=20
class=3D"idt_3_ID129183619131028813_ID158684219131028813_A_A"><A =
name=3D"brc_ID158684219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>150</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID167284619131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID167284619131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID167284619131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;The=20
spatial datasets of my organisation&nbsp;can be viewed =
(displayed)&nbsp;through=20
web-based services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID167284619131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>419</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID174484819131028813_"=20
class=3D"idt_3_ID167284619131028813_ID174484819131028813_A_A"><A =
name=3D"brc_ID174484819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID174484819131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID174484819131028813');manageTree('I=
D174484819131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID174484819131028813"></TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 58%;">
            =
<H6>221</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID174484819131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID261187019131028813_"=20
class=3D"idt_4_ID174484819131028813_ID261187019131028813_A_D"><A =
name=3D"dep_ID261187019131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID185185019131028813_"=20
class=3D"idt_3_ID167284619131028813_ID185185019131028813_A_A"><A =
name=3D"brc_ID185185019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>57</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID195985219131028813_"=20
class=3D"idt_3_ID167284619131028813_ID195985219131028813_A_A"><A =
name=3D"brc_ID195985219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID195985219131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID195985219131028813');manageTree('I=
D195985219131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID195985219131028813"></TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 73%;">
            =
<H6>141</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID195985219131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID209485619131028813_"=20
class=3D"idt_4_ID195985219131028813_ID209485619131028813_A_D"><A =
name=3D"dep_ID209485619131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID261187019131028813_"=20
class=3D"idt_4_ID195985219131028813_ID261187019131028813_A_D"><A =
name=3D"dep_ID261187019131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID209485619131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID209485619131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID209485619131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Please=20
indicate the<B> %</B> of your spatial datasets&nbsp; which&nbsp;can be =
viewed=20
(displayed)&nbsp;through web-based services<SPAN class=3D"comment"> =
-single choice=20
reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID209485619131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>141</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID212285819131028813_"=20
class=3D"idt_3_ID209485619131028813_ID212285819131028813_A_A"><A =
name=3D"brc_ID212285819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&gt;76%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID221786019131028813_"=20
class=3D"idt_3_ID209485619131028813_ID221786019131028813_A_A"><A =
name=3D"brc_ID221786019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>51-75%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID238886219131028813_"=20
class=3D"idt_3_ID209485619131028813_ID238886219131028813_A_A"><A =
name=3D"brc_ID238886219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>26-50%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>26</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID249486419131028813_"=20
class=3D"idt_3_ID209485619131028813_ID249486419131028813_A_A"><A =
name=3D"brc_ID249486419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&lt; 25%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID252486619131028813_"=20
class=3D"idt_3_ID209485619131028813_ID252486619131028813_A_A"><A =
name=3D"brc_ID252486619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>do not know</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>44</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID261187019131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID261187019131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID261187019131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;The=20
web-based services through which the spatial datasets of my organisation =
can=20
be&nbsp;viewed (displayed)&nbsp;are compliant with the INSPIRE =
implementing rule=20
on network services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID261187019131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>362</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID279487219131028813_"=20
class=3D"idt_3_ID261187019131028813_ID279487219131028813_A_A"><A =
name=3D"brc_ID279487219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>156</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID288287419131028813_"=20
class=3D"idt_3_ID261187019131028813_ID288287419131028813_A_A"><A =
name=3D"brc_ID288287419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>46</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID293087619131028813_"=20
class=3D"idt_3_ID261187019131028813_ID293087619131028813_A_A"><A =
name=3D"brc_ID293087619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>160</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID303388019131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID303388019131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID303388019131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;The=20
spatial data of my organisation&nbsp;can be downloaded &nbsp;through =
web-based=20
services<SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID303388019131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>419</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID316988219131028813_"=20
class=3D"idt_3_ID303388019131028813_ID316988219131028813_A_A"><A =
name=3D"brc_ID316988219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID316988219131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID316988219131028813');manageTree('I=
D316988219131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID316988219131028813"></TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>134</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID316988219131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID407890419131028813_"=20
class=3D"idt_4_ID316988219131028813_ID407890419131028813_A_D"><A =
name=3D"dep_ID407890419131028813_"></A>
</DIV></DIV></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID323788419131028813_"=20
class=3D"idt_3_ID303388019131028813_ID323788419131028813_A_A"><A =
name=3D"brc_ID323788419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>137</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID339688619131028813_"=20
class=3D"idt_3_ID303388019131028813_ID339688619131028813_A_A"><A =
name=3D"brc_ID339688619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID339688619131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID339688619131028813');manageTree('I=
D339688619131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID339688619131028813"></TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>148</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID339688619131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID341189019131028813_"=20
class=3D"idt_4_ID339688619131028813_ID341189019131028813_A_D"><A =
name=3D"dep_ID341189019131028813_"></A>
</DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID407890419131028813_"=20
class=3D"idt_4_ID339688619131028813_ID407890419131028813_A_D"><A =
name=3D"dep_ID407890419131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID341189019131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID341189019131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID341189019131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Please=20
indicate the<B> %</B> of your spatial datasets which&nbsp;can be can be=20
downloaded through web-based services<SPAN class=3D"comment"> -single =
choice=20
reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID341189019131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>148</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID350989219131028813_"=20
class=3D"idt_3_ID341189019131028813_ID350989219131028813_A_A"><A =
name=3D"brc_ID350989219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&gt;76%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 94%;">
            =
<H6>11</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID368289419131028813_"=20
class=3D"idt_3_ID341189019131028813_ID368289419131028813_A_A"><A =
name=3D"brc_ID368289419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>51-75%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>21</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370389619131028813_"=20
class=3D"idt_3_ID341189019131028813_ID370389619131028813_A_A"><A =
name=3D"brc_ID370389619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>26-50%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID385289819131028813_"=20
class=3D"idt_3_ID341189019131028813_ID385289819131028813_A_A"><A =
name=3D"brc_ID385289819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&lt; 25%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>49</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID391790019131028813_"=20
class=3D"idt_3_ID341189019131028813_ID391790019131028813_A_A"><A =
name=3D"brc_ID391790019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>do not know</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>43</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID407890419131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID407890419131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID407890419131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;The=20
web-based services through which the spatial datasets of my organisation =
can=20
be&nbsp;downloaded&nbsp;are compliant with the INSPIRE implementing rule =
on=20
network services<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID407890419131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>282</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID410790619131028813_"=20
class=3D"idt_3_ID407890419131028813_ID410790619131028813_A_A"><A =
name=3D"brc_ID410790619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>105</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID424290819131028813_"=20
class=3D"idt_3_ID407890419131028813_ID424290819131028813_A_A"><A =
name=3D"brc_ID424290819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>51</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID431491019131028813_"=20
class=3D"idt_3_ID407890419131028813_ID431491019131028813_A_A"><A =
name=3D"brc_ID431491019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>126</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></D=
IV>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID448291419131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID448291419131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID448291419131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;My=20
organisation has restructured its spatial datasets according to the =
INSPIRE data=20
specifications or&nbsp; has implemented transformation services<SPAN =
class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID448291419131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>419</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID458091619131028813_"=20
class=3D"idt_3_ID448291419131028813_ID458091619131028813_A_A"><A =
name=3D"brc_ID458091619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>67</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID461391819131028813_"=20
class=3D"idt_3_ID448291419131028813_ID461391819131028813_A_A"><A =
name=3D"brc_ID461391819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 56%;">
            =
<H6>233</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID470592019131028813_"=20
class=3D"idt_3_ID448291419131028813_ID470592019131028813_A_A"><A =
name=3D"brc_ID470592019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID470592019131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID470592019131028813');manageTree('I=
D470592019131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID470592019131028813"></TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>119</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID470592019131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID485692419131028813_"=20
class=3D"idt_4_ID470592019131028813_ID485692419131028813_A_D"><A =
name=3D"dep_ID485692419131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID485692419131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID485692419131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID485692419131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Please=20
indicate the<B> %</B> of&nbsp; spatial datasets&nbsp; which you and/or =
your=20
organisation have&nbsp;restructured&nbsp; according to the INSPIRE data=20
specifications or for which transformation services have been set =
up<SPAN class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID485692419131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>119</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID492092619131028813_"=20
class=3D"idt_3_ID485692419131028813_ID492092619131028813_A_A"><A =
name=3D"brc_ID492092619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&gt;76%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>5</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID505092819131028813_"=20
class=3D"idt_3_ID485692419131028813_ID505092819131028813_A_A"><A =
name=3D"brc_ID505092819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>51-75%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>6</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID514593019131028813_"=20
class=3D"idt_3_ID485692419131028813_ID514593019131028813_A_A"><A =
name=3D"brc_ID514593019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>26-50%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>24</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID525193219131028813_"=20
class=3D"idt_3_ID485692419131028813_ID525193219131028813_A_A"><A =
name=3D"brc_ID525193219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&lt; 25%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 75%;">
            =
<H6>37</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID539393419131028813_"=20
class=3D"idt_3_ID485692419131028813_ID539393419131028813_A_A"><A =
name=3D"brc_ID539393419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>do not know</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 68%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID540593819131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID540593819131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID540593819131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;The=20
spatial datasets and services of my organisation can be&nbsp;discovered =
and=20
accessed&nbsp;through the&nbsp;EU-INSPIRE geo-portal<SPAN =
class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID540593819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>419</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID550894019131028813_"=20
class=3D"idt_3_ID540593819131028813_ID550894019131028813_A_A"><A =
name=3D"brc_ID550894019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>91</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID564794219131028813_"=20
class=3D"idt_3_ID540593819131028813_ID564794219131028813_A_A"><A =
name=3D"brc_ID564794219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 58%;">
            =
<H6>221</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID570694419131028813_"=20
class=3D"idt_3_ID540593819131028813_ID570694419131028813_A_A"><A =
name=3D"brc_ID570694419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID570694419131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID570694419131028813');manageTree('I=
D570694419131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID570694419131028813"></TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>107</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID570694419131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID585694819131028813_"=20
class=3D"idt_4_ID570694419131028813_ID585694819131028813_A_D"><A =
name=3D"dep_ID585694819131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID585694819131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID585694819131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID585694819131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Please=20
indicate the<B> %</B> of your spatial datasets and services =
which&nbsp;can be=20
discovered and accessed&nbsp;through the&nbsp;EU-INSPIRE geo-portal<SPAN =
class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID585694819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>107</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID592395019131028813_"=20
class=3D"idt_3_ID585694819131028813_ID592395019131028813_A_A"><A =
name=3D"brc_ID592395019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&gt;76%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>6</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID605695219131028813_"=20
class=3D"idt_3_ID585694819131028813_ID605695219131028813_A_A"><A =
name=3D"brc_ID605695219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>51-75%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>13</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID612395419131028813_"=20
class=3D"idt_3_ID585694819131028813_ID612395419131028813_A_A"><A =
name=3D"brc_ID612395419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>26-50%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>19</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID625295619131028813_"=20
class=3D"idt_3_ID585694819131028813_ID625295619131028813_A_A"><A =
name=3D"brc_ID625295619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&lt; 25%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID636895819131028813_"=20
class=3D"idt_3_ID585694819131028813_ID636895819131028813_A_A"><A =
name=3D"brc_ID636895819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>do not know</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>42</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID646696219131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID646696219131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID646696219131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;The=20
spatial datasets and services of my organisation can be&nbsp;discovered =
and=20
accessed&nbsp;through the&nbsp;national and/or regional geo-portal<SPAN =
class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID646696219131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>419</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID657396419131028813_"=20
class=3D"idt_3_ID646696219131028813_ID657396419131028813_A_A"><A =
name=3D"brc_ID657396419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Yes</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 61%;">
            =
<H6>206</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID664496619131028813_"=20
class=3D"idt_3_ID646696219131028813_ID664496619131028813_A_A"><A =
name=3D"brc_ID664496619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>111</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID679496819131028813_"=20
class=3D"idt_3_ID646696219131028813_ID679496819131028813_A_A"><A =
name=3D"brc_ID679496819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;"><IMG id=3D"img_ID679496819131028813_" =
class=3D"noImageBorder"=20
      =
onclick=3D"addOrRemoveFromSelection('ID679496819131028813');manageTree('I=
D679496819131028813');"=20
      =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif"=20
      data-answerId=3D"ID679496819131028813"></TD>
    <TD>
      <H6>Partially</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>102</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"left: 2%; width: 97%; display: none; position: relative;" =
id=3D"leav_ID679496819131028813_">
<DIV style=3D"display: none; position: relative;" =
id=3D"dep_ID682797219131028813_"=20
class=3D"idt_4_ID679496819131028813_ID682797219131028813_A_D"><A =
name=3D"dep_ID682797219131028813_"></A>
</DIV></DIV></DIV></DIV></DIV><BR></DIV>
<DIV style=3D"display: none; position: relative;" =
id=3D"brc_ID682797219131028813_"=20
class=3D"idt_2_ID391462316131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID682797219131028813_"></A>
<H3><A =
href=3D"http://ec.europa.eu/yourvoice/ipm/forms/dispatch?userstate=3Dchar=
ts&amp;print=3Dtrue&amp;selection=3D#dep_ID682797219131028813_"><IMG=20
class=3D"noImageBorder" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif"></A>&=
nbsp;Please=20
indicate the<B> %</B> of your spatial datasets and services =
which&nbsp;can be=20
discovered and accessed&nbsp;through the&nbsp;national and/or=20
regional&nbsp;geo-portal<SPAN class=3D"comment"> -single choice reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID682797219131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>102</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID694797419131028813_"=20
class=3D"idt_3_ID682797219131028813_ID694797419131028813_A_A"><A =
name=3D"brc_ID694797419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&gt;76%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 92%;">
            =
<H6>10</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID703097619131028813_"=20
class=3D"idt_3_ID682797219131028813_ID703097619131028813_A_A"><A =
name=3D"brc_ID703097619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>51-75%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID717997819131028813_"=20
class=3D"idt_3_ID682797219131028813_ID717997819131028813_A_A"><A =
name=3D"brc_ID717997819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>26-50%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>11</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID727298019131028813_"=20
class=3D"idt_3_ID682797219131028813_ID727298019131028813_A_A"><A =
name=3D"brc_ID727298019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>&lt; 25%</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>29</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID735498219131028813_"=20
class=3D"idt_3_ID682797219131028813_ID735498219131028813_A_A"><A =
name=3D"brc_ID735498219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>do not know</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>38</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID749498619131028813_"=20
class=3D"idt_2_ID391462316131028813_ID749498619131028813_O_M"><A =
name=3D"brc_ID749498619131028813_"></A>
<H2>INSPIRE co-ordination&nbsp;&nbsp;</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID749498619131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID752798819131028813_"=20
class=3D"idt_3_ID749498619131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID752798819131028813_"></A>
<H3><SPAN style=3D"font-size: small;">The implementation of INSPIRE is =
well=20
co-ordinated in my country</SPAN><SPAN class=3D"comment"> -single choice =
reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID752798819131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID764399019131028813_"=20
class=3D"idt_3_ID752798819131028813_ID764399019131028813_A_A"><A =
name=3D"brc_ID764399019131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>89</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID777299219131028813_"=20
class=3D"idt_3_ID752798819131028813_ID777299219131028813_A_A"><A =
name=3D"brc_ID777299219131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 65%;">
            =
<H6>307</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID788999419131028813_"=20
class=3D"idt_3_ID752798819131028813_ID788999419131028813_A_A"><A =
name=3D"brc_ID788999419131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>138</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID790799619131028813_"=20
class=3D"idt_3_ID752798819131028813_ID790799619131028813_A_A"><A =
name=3D"brc_ID790799619131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>138</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID802699819131028813_"=20
class=3D"idt_3_ID752798819131028813_ID802699819131028813_A_A"><A =
name=3D"brc_ID802699819131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>25</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID811100120131028813_"=20
class=3D"idt_3_ID749498619131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID811100120131028813_"></A>
<H3>The implementation of INSPIRE is well co-ordinated between my =
country and=20
its neighbouring countries<SPAN class=3D"comment"> -single choice reply- =

</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID811100120131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID820700320131028813_"=20
class=3D"idt_3_ID811100120131028813_ID820700320131028813_A_A"><A =
name=3D"brc_ID820700320131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>27</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID834200520131028813_"=20
class=3D"idt_3_ID811100120131028813_ID834200520131028813_A_A"><A =
name=3D"brc_ID834200520131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 87%;">
            =
<H6>112</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID849400720131028813_"=20
class=3D"idt_3_ID811100120131028813_ID849400720131028813_A_A"><A =
name=3D"brc_ID849400720131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 51%;">
            =
<H6>424</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID855700920131028813_"=20
class=3D"idt_3_ID811100120131028813_ID855700920131028813_A_A"><A =
name=3D"brc_ID855700920131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>94</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID865601120131028813_"=20
class=3D"idt_3_ID811100120131028813_ID865601120131028813_A_A"><A =
name=3D"brc_ID865601120131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID879901520131028813_"=20
class=3D"idt_3_ID749498619131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID879901520131028813_"></A>
<H3>The implementation of INSPIRE is well co-ordinated at EU =
level&nbsp;by the=20
Commission assisted by relevant organisations, in particular the =
European=20
Environment Agency<SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID879901520131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID884401720131028813_"=20
class=3D"idt_3_ID879901520131028813_ID884401720131028813_A_A"><A =
name=3D"brc_ID884401720131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID896601920131028813_"=20
class=3D"idt_3_ID879901520131028813_ID896601920131028813_A_A"><A =
name=3D"brc_ID896601920131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 80%;">
            =
<H6>171</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID904502120131028813_"=20
class=3D"idt_3_ID879901520131028813_ID904502120131028813_A_A"><A =
name=3D"brc_ID904502120131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 56%;">
            =
<H6>386</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID915502320131028813_"=20
class=3D"idt_3_ID879901520131028813_ID915502320131028813_A_A"><A =
name=3D"brc_ID915502320131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>77</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID922202520131028813_"=20
class=3D"idt_3_ID879901520131028813_ID922202520131028813_A_A"><A =
name=3D"brc_ID922202520131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>28</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID987904020131028813_"=20
class=3D"idt_2_ID391462316131028813_ID987904020131028813_O_M"><A =
name=3D"brc_ID987904020131028813_"></A>
<H2><B><SPAN style=3D"font-size: medium;">My opinion on=20
INSPIRE</SPAN></B>&nbsp;&nbsp;</H2>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID987904020131028813_">
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID998304220131028813_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID998304220131028813_"></A>
<H3><SPAN style=3D"font-family: arial,helvetica,sans-serif; font-size: =
small;"=20
lang=3D"EN-GB">The objectives of INSPIRE of making spatial&nbsp;data and =

services&nbsp;more easily shared and used are still =
pertinent</SPAN><SPAN class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID998304220131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID004504420131028813_"=20
class=3D"idt_3_ID998304220131028813_ID004504420131028813_A_A"><A =
name=3D"brc_ID004504420131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 54%;">
            =
<H6>398</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID016204620131028813_"=20
class=3D"idt_3_ID998304220131028813_ID016204620131028813_A_A"><A =
name=3D"brc_ID016204620131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>247</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID028104820131028813_"=20
class=3D"idt_3_ID998304220131028813_ID028104820131028813_A_A"><A =
name=3D"brc_ID028104820131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>33</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID038605020131028813_"=20
class=3D"idt_3_ID998304220131028813_ID038605020131028813_A_A"><A =
name=3D"brc_ID038605020131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID048605220131028813_"=20
class=3D"idt_3_ID998304220131028813_ID048605220131028813_A_A"><A =
name=3D"brc_ID048605220131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>3</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DIV=
></DIV>
<BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID053105620131028813_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID053105620131028813_"></A>
<H3>
<P><SPAN style=3D"font-family: arial,helvetica,sans-serif; font-size: =
small;">The=20
actions foreseen by INSPIRE are still appropriate to meet its=20
objectives</SPAN></P><SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN=20
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID053105620131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID065905820131028813_"=20
class=3D"idt_3_ID053105620131028813_ID065905820131028813_A_A"><A =
name=3D"brc_ID065905820131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>133</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID072406020131028813_"=20
class=3D"idt_3_ID053105620131028813_ID072406020131028813_A_A"><A =
name=3D"brc_ID072406020131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>327</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID085206220131028813_"=20
class=3D"idt_3_ID053105620131028813_ID085206220131028813_A_A"><A =
name=3D"brc_ID085206220131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 83%;">
            =
<H6>146</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID095906420131028813_"=20
class=3D"idt_3_ID053105620131028813_ID095906420131028813_A_A"><A =
name=3D"brc_ID095906420131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>82</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID106406620131028813_"=20
class=3D"idt_3_ID053105620131028813_ID106406620131028813_A_A"><A =
name=3D"brc_ID106406620131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>9</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DIV=
></DIV>
<BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID111307020131028813_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID111307020131028813_"></A>
<H3><SPAN style=3D'font-family: "Cambria","serif"; font-size: small;'=20
lang=3D"EN-GB"><SPAN style=3D"font-family: =
arial,helvetica,sans-serif;">INSPIRE has=20
helped me/my organisation in becoming more efficient and =
effective</SPAN>=20
</SPAN><SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID111307020131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID125807220131028813_"=20
class=3D"idt_3_ID111307020131028813_ID125807220131028813_A_A"><A =
name=3D"brc_ID125807220131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 89%;">
            =
<H6>99</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID132507420131028813_"=20
class=3D"idt_3_ID111307020131028813_ID132507420131028813_A_A"><A =
name=3D"brc_ID132507420131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 72%;">
            =
<H6>241</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID143707620131028813_"=20
class=3D"idt_3_ID111307020131028813_ID143707620131028813_A_A"><A =
name=3D"brc_ID143707620131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>186</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID156507820131028813_"=20
class=3D"idt_3_ID111307020131028813_ID156507820131028813_A_A"><A =
name=3D"brc_ID156507820131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>128</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID169708020131028813_"=20
class=3D"idt_3_ID111307020131028813_ID169708020131028813_A_A"><A =
name=3D"brc_ID169708020131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>43</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID170608320131028813_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID170608320131028813_"></A>
<H3><SPAN style=3D"font-family: arial,helvetica,sans-serif; font-size: =
small;"=20
lang=3D"EN-GB">INSPIRE has&nbsp;stimulated&nbsp;the use of the spatial =
data and=20
services</SPAN><SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID170608320131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID185808520131028813_"=20
class=3D"idt_3_ID170608320131028813_ID185808520131028813_A_A"><A =
name=3D"brc_ID185808520131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>198</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID194308720131028813_"=20
class=3D"idt_3_ID170608320131028813_ID194308720131028813_A_A"><A =
name=3D"brc_ID194308720131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 66%;">
            =
<H6>298</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID204608920131028813_"=20
class=3D"idt_3_ID170608320131028813_ID204608920131028813_A_A"><A =
name=3D"brc_ID204608920131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>119</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID213209120131028813_"=20
class=3D"idt_3_ID170608320131028813_ID213209120131028813_A_A"><A =
name=3D"brc_ID213209120131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 93%;">
            =
<H6>63</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID226909320131028813_"=20
class=3D"idt_3_ID170608320131028813_ID226909320131028813_A_A"><A =
name=3D"brc_ID226909320131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>19</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID237109620131028813_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID237109620131028813_"></A>
<H3>
<P><SPAN style=3D'font-family: "Cambria","serif"; font-size: small;'=20
lang=3D"EN-GB"><SPAN style=3D"font-family: =
arial,helvetica,sans-serif;">INSPIRE has=20
improved the availability and accessibility of spatial data and =
services</SPAN>=20
</SPAN></P><SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID237109620131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID242009820131028813_"=20
class=3D"idt_3_ID237109620131028813_ID242009820131028813_A_A"><A =
name=3D"brc_ID242009820131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>204</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID258510020131028813_"=20
class=3D"idt_3_ID237109620131028813_ID258510020131028813_A_A"><A =
name=3D"brc_ID258510020131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 60%;">
            =
<H6>348</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID260210220131028813_"=20
class=3D"idt_3_ID237109620131028813_ID260210220131028813_A_A"><A =
name=3D"brc_ID260210220131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 90%;">
            =
<H6>86</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID277210420131028813_"=20
class=3D"idt_3_ID237109620131028813_ID277210420131028813_A_A"><A =
name=3D"brc_ID277210420131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>47</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID282110620131028813_"=20
class=3D"idt_3_ID237109620131028813_ID282110620131028813_A_A"><A =
name=3D"brc_ID282110620131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>12</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID297010920131028813_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID297010920131028813_"></A>
<H3>
<P><SPAN=20
style=3D"font-family: arial,helvetica,sans-serif; font-size: =
small;">INSPIRE makes=20
it easier to find and use spatial data and services in cross-border=20
areas</SPAN></P><SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID297010920131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID309311120131028813_"=20
class=3D"idt_3_ID297010920131028813_ID309311120131028813_A_A"><A =
name=3D"brc_ID309311120131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 86%;">
            =
<H6>124</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID317011320131028813_"=20
class=3D"idt_3_ID297010920131028813_ID317011320131028813_A_A"><A =
name=3D"brc_ID317011320131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>259</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID322211520131028813_"=20
class=3D"idt_3_ID297010920131028813_ID322211520131028813_A_A"><A =
name=3D"brc_ID322211520131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 70%;">
            =
<H6>258</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID331111720131028813_"=20
class=3D"idt_3_ID297010920131028813_ID331111720131028813_A_A"><A =
name=3D"brc_ID331111720131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>40</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID343611920131028813_"=20
class=3D"idt_3_ID297010920131028813_ID343611920131028813_A_A"><A =
name=3D"brc_ID343611920131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>16</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID350312220131028813_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID350312220131028813_"></A>
<H3>
<P><SPAN style=3D"font-family: arial, helvetica, sans-serif; font-size: =
small;"=20
lang=3D"EN-GB">The benefits of INSPIRE will be greater than the=20
costs</SPAN></P><SPAN class=3D"comment"> -single choice reply- =
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID350312220131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID363812420131028813_"=20
class=3D"idt_3_ID350312220131028813_ID363812420131028813_A_A"><A =
name=3D"brc_ID363812420131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>135</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID378612620131028813_"=20
class=3D"idt_3_ID350312220131028813_ID378612620131028813_A_A"><A =
name=3D"brc_ID378612620131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 79%;">
            =
<H6>186</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID384712820131028813_"=20
class=3D"idt_3_ID350312220131028813_ID384712820131028813_A_A"><A =
name=3D"brc_ID384712820131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 69%;">
            =
<H6>266</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID396813020131028813_"=20
class=3D"idt_3_ID350312220131028813_ID396813020131028813_A_A"><A =
name=3D"brc_ID396813020131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>75</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID407413220131028813_"=20
class=3D"idt_3_ID350312220131028813_ID407413220131028813_A_A"><A =
name=3D"brc_ID407413220131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>35</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID416613520131028813_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID416613520131028813_"></A>
<H3><SPAN style=3D'font-family: "Cambria","serif"; font-size: small;'=20
lang=3D"EN-GB"><SPAN style=3D"font-family: =
arial,helvetica,sans-serif;">INSPIRE=20
improves access to the information needed&nbsp; for environmental =
policies and=20
decisions</SPAN> </SPAN><SPAN class=3D"comment"> -single choice reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID416613520131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID427313720131028813_"=20
class=3D"idt_3_ID416613520131028813_ID427313720131028813_A_A"><A =
name=3D"brc_ID427313720131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>159</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID433113920131028813_"=20
class=3D"idt_3_ID416613520131028813_ID433113920131028813_A_A"><A =
name=3D"brc_ID433113920131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 61%;">
            =
<H6>336</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID447714120131028813_"=20
class=3D"idt_3_ID416613520131028813_ID447714120131028813_A_A"><A =
name=3D"brc_ID447714120131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>153</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID451114320131028813_"=20
class=3D"idt_3_ID416613520131028813_ID451114320131028813_A_A"><A =
name=3D"brc_ID451114320131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>38</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID465314520131028813_"=20
class=3D"idt_3_ID416613520131028813_ID465314520131028813_A_A"><A =
name=3D"brc_ID465314520131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>11</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID370451011060930213_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID370451011060930213_"></A>
<H3><SPAN>INSPIRE also improves access to the information needed for =
other=20
(non-environmental) policies and decisions</SPAN><SPAN =
class=3D"comment"> -single=20
choice reply- </SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID370451011060930213_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID373251411060930213_"=20
class=3D"idt_3_ID370451011060930213_ID373251411060930213_A_A"><A =
name=3D"brc_ID373251411060930213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 84%;">
            =
<H6>138</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371951511060930213_"=20
class=3D"idt_3_ID370451011060930213_ID371951511060930213_A_A"><A =
name=3D"brc_ID371951511060930213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 61%;">
            =
<H6>342</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371051611060930213_"=20
class=3D"idt_3_ID370451011060930213_ID371051611060930213_A_A"><A =
name=3D"brc_ID371051611060930213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 81%;">
            =
<H6>169</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID376451711060930213_"=20
class=3D"idt_3_ID370451011060930213_ID376451711060930213_A_A"><A =
name=3D"brc_ID376451711060930213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>34</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID371551811060930213_"=20
class=3D"idt_3_ID370451011060930213_ID371551811060930213_A_A"><A =
name=3D"brc_ID371551811060930213_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>14</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID479014820131028813_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID479014820131028813_"></A>
<H3><SPAN style=3D"font-family: arial,helvetica,sans-serif; font-size: =
small;"=20
lang=3D"EN-GB">INSPIRE contributes&nbsp;to a more open policy for public =
sector=20
data</SPAN><SPAN class=3D"comment"> -single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN>
</H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID479014820131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID480415020131028813_"=20
class=3D"idt_3_ID479014820131028813_ID480415020131028813_A_A"><A =
name=3D"brc_ID480415020131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 74%;">
            =
<H6>226</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID498715220131028813_"=20
class=3D"idt_3_ID479014820131028813_ID498715220131028813_A_A"><A =
name=3D"brc_ID498715220131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 59%;">
            =
<H6>353</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID507415420131028813_"=20
class=3D"idt_3_ID479014820131028813_ID507415420131028813_A_A"><A =
name=3D"brc_ID507415420131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 91%;">
            =
<H6>79</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID512315620131028813_"=20
class=3D"idt_3_ID479014820131028813_ID512315620131028813_A_A"><A =
name=3D"brc_ID512315620131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 97%;">
            =
<H6>30</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID525315820131028813_"=20
class=3D"idt_3_ID479014820131028813_ID525315820131028813_A_A"><A =
name=3D"brc_ID525315820131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>9</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DIV=
></DIV>
<BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID535016120131028813_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID535016120131028813_"></A>
<H3><SPAN style=3D"font-family: arial,helvetica,sans-serif; font-size: =
small;"=20
lang=3D"EN-GB">INSPIRE contributes to more innovative applications and =
services=20
using spatial data</SPAN><SPAN class=3D"comment"> -single choice reply-=20
</SPAN><SPAN class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID535016120131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID542016320131028813_"=20
class=3D"idt_3_ID535016120131028813_ID542016320131028813_A_A"><A =
name=3D"brc_ID542016320131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 77%;">
            =
<H6>197</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID556216520131028813_"=20
class=3D"idt_3_ID535016120131028813_ID556216520131028813_A_A"><A =
name=3D"brc_ID556216520131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 64%;">
            =
<H6>315</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID568016720131028813_"=20
class=3D"idt_3_ID535016120131028813_ID568016720131028813_A_A"><A =
name=3D"brc_ID568016720131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 85%;">
            =
<H6>127</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID573916920131028813_"=20
class=3D"idt_3_ID535016120131028813_ID573916920131028813_A_A"><A =
name=3D"brc_ID573916920131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 95%;">
            =
<H6>43</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID589617120131028813_"=20
class=3D"idt_3_ID535016120131028813_ID589617120131028813_A_A"><A =
name=3D"brc_ID589617120131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 98%;">
            =
<H6>15</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID596317420131028813_"=20
class=3D"idt_3_ID987904020131028813_O_X">
<DIV class=3D"ipmframe"><A name=3D"brc_ID596317420131028813_"></A>
<H3>
<P><SPAN=20
style=3D"font-family: arial,helvetica,sans-serif; font-size: =
small;">INSPIRE=20
contributes to more general eGovernment activities</SPAN></P><SPAN =
class=3D"comment">=20
-single choice reply- </SPAN><SPAN =
class=3D"compulsory">(compulsory)</SPAN></H3>
<DIV style=3D"left: 2%; width: 98%; display: block; position: relative;" =
id=3D"leav_ID596317420131028813_">
<TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H5>Requested records</H5></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left;">
          <TD style=3D"width: 20%;">
            =
<H5>697</H5></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID607817620131028813_"=20
class=3D"idt_3_ID596317420131028813_ID607817620131028813_A_A"><A =
name=3D"brc_ID607817620131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>157</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID618417820131028813_"=20
class=3D"idt_3_ID596317420131028813_ID618417820131028813_A_A"><A =
name=3D"brc_ID618417820131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Agree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 62%;">
            =
<H6>334</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID624818020131028813_"=20
class=3D"idt_3_ID596317420131028813_ID624818020131028813_A_A"><A =
name=3D"brc_ID624818020131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>No opinion</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 82%;">
            =
<H6>157</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID632918220131028813_"=20
class=3D"idt_3_ID596317420131028813_ID632918220131028813_A_A"><A =
name=3D"brc_ID632918220131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 96%;">
            =
<H6>37</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV>
<DIV style=3D"display: block; position: relative;" =
id=3D"brc_ID646018420131028813_"=20
class=3D"idt_3_ID596317420131028813_ID646018420131028813_A_A"><A =
name=3D"brc_ID646018420131028813_"></A>
<TABLE class=3D"ipmtop3" cellSpacing=3D"0" cellPadding=3D"0" =
width=3D"99%">
  <TBODY>
  <TR style=3D"text-align: center; vertical-align: top;">
    <TD style=3D"width: 3%;">&nbsp;</TD>
    <TD>
      <H6>Disagree strongly</H6></TD>
    <TD style=3D"width: 55%;">
      <TABLE cellSpacing=3D"0" cellPadding=3D"0" width=3D"100%">
        <TBODY>
        <TR style=3D"text-align: left; vertical-align: middle;">
          <TD><IMG style=3D"width: 100%; height: 14px;" =
src=3D"http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif"></TD=
>
          <TD style=3D"width: 99%;">
            =
<H6>12</H6></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></DIV></DI=
V>
</DIV><BR></DIV></DIV><BR></DIV></DIV><BR></DIV></DIV></DIV>
<SCRIPT language=3D"javascript" =
type=3D"text/javascript">progressbar_stop();</SCRIPT>
</BODY></HTML>

------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: image/gif
Content-Transfer-Encoding: base64
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/images/menu_arrow.gif

R0lGODlhDAAMAPcAAP/MRf/knP/++wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///yH5BAEAAP8ALAAAAAAMAAwA
QAgrAP8JHEiQIICDAQoOPMgwYcGGCgUyRBix4kIADiNOzGhwIsaHEBVStGgxIAA7

------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: image/gif
Content-Transfer-Encoding: base64
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/images/foldericon.gif

R0lGODlhEAAQAPcAAAAAAIAAAACAAICAAAAAgIAAgACAgICAgMDAwP8AAP//////AAAA//8A/wD/
/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAZgAAmQAAzAAA/wAzAAAzMwAzZgAzmQAzzAAz/wBm
AABmMwBmZgBmmQBmzABm/wCZAACZMwCZZgCZmQCZzACZ/wDMAADMMwDMZgDMmQDMzADM/wD/AAD/
MwD/ZgD/mQD/zAD//zMAADMAMzMAZjMAmTMAzDMA/zMzADMzMzMzZjMzmTMzzDMz/zNmADNmMzNm
ZjNmmTNmzDNm/zOZADOZMzOZZjOZmTOZzDOZ/zPMADPMMzPMZjPMmTPMzDPM/zP/ADP/MzP/ZjP/
mTP/zDP//2YAAGYAM2YAZmYAmWYAzGYA/2YzAGYzM2YzZmYzmWYzzGYz/2ZmAGZmM2ZmZmZmmWZm
zGZm/2aZAGaZM2aZZmaZmWaZzGaZ/2bMAGbMM2bMZmbMmWbMzGbM/2b/AGb/M2b/Zmb/mWb/zGb/
/5kAAJkAM5kAZpkAmZkAzJkA/5kzAJkzM5kzZpkzmZkzzJkz/5lmAJlmM5lmZplmmZlmzJlm/5mZ
AJmZM5mZZpmZmZmZzJmZ/5nMAJnMM5nMZpnMmZnMzJnM/5n/AJn/M5n/Zpn/mZn/zJn//8wAAMwA
M8wAZswAmcwAzMwA/8wzAMwzM8wzZswzmcwzzMwz/8xmAMxmM8xmZsxmmcxmzMxm/8yZAMyZM8yZ
ZsyZmcyZzMyZ/8zMAMzMM8zMZszMmczMzMzM/8z/AMz/M8z/Zsz/mcz/zMz///8AAP8AM/8AZv8A
mf8AzP8A//8zAP8zM/8zZv8zmf8zzP8z//9mAP9mM/9mZv9mmf9mzP9m//+ZAP+ZM/+ZZv+Zmf+Z
zP+Z///MAP/MM//MZv/Mmf/MzP/M////AP//M///Zv//mf//zP///yH5BAEAAAoALAAAAAAQABAA
QAh5ABUIHEiwoEBT/vopTHjP371+D6UBUIDQn8WLGP1JpCito8ePHidS9PfAYr+NBhEqXKnw4cN+
Eyu27IcPosOHIg3qJGiqZ8+cBU2B7KjMFKuerA4mXLl06T17MRMuZdnw3kaVLCFqtRrV5VaI97gK
BEC2rFmzO3cGBAA7

------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: image/gif
Content-Transfer-Encoding: base64
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/images/blue_line.gif

R0lGODlhAQAOAPcAAAAAAIAAAACAAICAAAAAgIAAgACAgICAgMDAwP8AAAD/AP//AAAA//8A/wD/
/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAZgAAmQAAzAAA/wAzAAAzMwAzZgAzmQAzzAAz/wBm
AABmMwBmZgBmmQBmzABm/wCZAACZMwCZZgCZmQCZzACZ/wDMAADMMwDMZgDMmQDMzADM/wD/AAD/
MwD/ZgD/mQD/zAD//zMAADMAMzMAZjMAmTMAzDMA/zMzADMzMzMzZjMzmTMzzDMz/zNmADNmMzNm
ZjNmmTNmzDNm/zOZADOZMzOZZjOZmTOZzDOZ/zPMADPMMzPMZjPMmTPMzDPM/zP/ADP/MzP/ZjP/
mTP/zDP//2YAAGYAM2YAZmYAmWYAzGYA/2YzAGYzM2YzZmYzmWYzzGYz/2ZmAGZmM2ZmZmZmmWZm
zGZm/2aZAGaZM2aZZmaZmWaZzGaZ/2bMAGbMM2bMZmbMmWbMzGbM/2b/AGb/M2b/Zmb/mWb/zGb/
/5kAAJkAM5kAZpkAmZkAzJkA/5kzAJkzM5kzZpkzmZkzzJkz/5lmAJlmM5lmZplmmZlmzJlm/5mZ
AJmZM5mZZpmZmZmZzJmZ/5nMAJnMM5nMZpnMmZnMzJnM/5n/AJn/M5n/Zpn/mZn/zJn//8wAAMwA
M8wAZswAmcwAzMwA/8wzAMwzM8wzZswzmcwzzMwz/8xmAMxmM8xmZsxmmcxmzMxm/8yZAMyZM8yZ
ZsyZmcyZzMyZ/8zMAMzMM8zMZszMmczMzMzM/8z/AMz/M8z/Zsz/mcz/zMz///8AAP8AM/8AZv8A
mf8AzP8A//8zAP8zM/8zZv8zmf8zzP8z//9mAP9mM/9mZv9mmf9mzP9m//+ZAP+ZM/+ZZv+Zmf+Z
zP+Z///MAP/MM//MZv/Mmf/MzP/M////AP//M///Zv//mf//zP///yH5BAEAABAALAAAAAABAA4A
AAgIAMUIHEiQYEAAOw==

------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: image/gif
Content-Transfer-Encoding: base64
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/images/dep2file.gif

R0lGODlhGwAQAPcAAAAAAIAAAACAAICAAAAAgIAAgACAgICAgMDAwP8AAAD/AP//AAAA//8A/wD/
/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAZgAAmQAAzAAA/wAzAAAzMwAzZgAzmQAzzAAz/wBm
AABmMwBmZgBmmQBmzABm/wCZAACZMwCZZgCZmQCZzACZ/wDMAADMMwDMZgDMmQDMzADM/wD/AAD/
MwD/ZgD/mQD/zAD//zMAADMAMzMAZjMAmTMAzDMA/zMzADMzMzMzZjMzmTMzzDMz/zNmADNmMzNm
ZjNmmTNmzDNm/zOZADOZMzOZZjOZmTOZzDOZ/zPMADPMMzPMZjPMmTPMzDPM/zP/ADP/MzP/ZjP/
mTP/zDP//2YAAGYAM2YAZmYAmWYAzGYA/2YzAGYzM2YzZmYzmWYzzGYz/2ZmAGZmM2ZmZmZmmWZm
zGZm/2aZAGaZM2aZZmaZmWaZzGaZ/2bMAGbMM2bMZmbMmWbMzGbM/2b/AGb/M2b/Zmb/mWb/zGb/
/5kAAJkAM5kAZpkAmZkAzJkA/5kzAJkzM5kzZpkzmZkzzJkz/5lmAJlmM5lmZplmmZlmzJlm/5mZ
AJmZM5mZZpmZmZmZzJmZ/5nMAJnMM5nMZpnMmZnMzJnM/5n/AJn/M5n/Zpn/mZn/zJn//8wAAMwA
M8wAZswAmcwAzMwA/8wzAMwzM8wzZswzmcwzzMwz/8xmAMxmM8xmZsxmmcxmzMxm/8yZAMyZM8yZ
ZsyZmcyZzMyZ/8zMAMzMM8zMZszMmczMzMzM/8z/AMz/M8z/Zsz/mcz/zMz///8AAP8AM/8AZv8A
mf8AzP8A//8zAP8zM/8zZv8zmf8zzP8z//9mAP9mM/9mZv9mmf9mzP9m//+ZAP+ZM/+ZZv+Zmf+Z
zP+Z///MAP/MM//MZv/Mmf/MzP/M////AP//M///Zv//mf//zP///yH5BAEAABAALAAAAAAbABAA
QAj1ACEIHEiQIKo/owihOoiqoEBR//75+0ctlaosAwulU/eOI7x3+KjdITjKD6pRoxoW/MOPXz+X
+ai9+tOHIKF/27ZV01btHbx0Hd8B9flOSx8qRx0qHSiq30uX/VL9w7My4kSpNQeichl0ZzWRBiP+
41ntFcaH+Yiqo7bNHzWqGbdRm/sqVaqRS/PqFViopVOXqrLuLYjq5V9+WqYoJlhI7D9VeJn+VYcz
Ziq4Dx1TmdJkykCWQoWmw6ftbVh/20L6SyWYkD9tQNNpw/dVi02J1PyRThcb6E/e6ebOFQwBVTV8
r/PhC82R+V5ReO4Y7YMH6WCCAQEAOw==

------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: text/css;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/css/custom-theme/jquery-ui-1.8.9.custom.css

.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	position: absolute !important; cliptop: 1px; clipright: 1px; =
clipbottom: 1px; clipleft: 1px;
}
.ui-helper-reset {
	list-style: none; margin: 0px; padding: 0px; outline: 0px; border: 0px =
currentColor; line-height: 1.3; font-size: 100%; text-decoration: none;
}
.ui-helper-clearfix::after {
	height: 0px; clear: both; display: block; visibility: hidden; content: =
".";
}
.ui-helper-clearfix {
	display: inline-block;
}
* html .ui-helper-clearfix {
	height: 1%;
}
.ui-helper-clearfix {
	display: block;
}
.ui-helper-zfix {
	left: 0px; top: 0px; width: 100%; height: 100%; filter: =
Alpha(Opacity=3D0); position: absolute; opacity: 0;
}
.ui-state-disabled {
	cursor: default !important;
}
.ui-icon {
	text-indent: -99999px; overflow: hidden; display: block; =
background-repeat: no-repeat;
}
.ui-widget-overlay {
	left: 0px; top: 0px; width: 100%; height: 100%; position: absolute;
}
.ui-widget {
	font-family: Lucida Grande, Lucida Sans, Arial, sans-serif; font-size: =
1.1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input {
	font-family: Lucida Grande, Lucida Sans, Arial, sans-serif; font-size: =
1em;
}
.ui-widget select {
	font-family: Lucida Grande, Lucida Sans, Arial, sans-serif; font-size: =
1em;
}
.ui-widget textarea {
	font-family: Lucida Grande, Lucida Sans, Arial, sans-serif; font-size: =
1em;
}
.ui-widget button {
	font-family: Lucida Grande, Lucida Sans, Arial, sans-serif; font-size: =
1em;
}
.ui-widget-content {
	background: url("images/ui-bg_highlight-hard_100_f2f5f7_1x100.png") =
repeat-x 50% top rgb(242, 245, 247); border: 1px solid rgb(221, 221, =
221); color: rgb(54, 43, 54);
}
.ui-widget-content a {
	color: rgb(54, 43, 54);
}
.ui-widget-header {
	background: url("images/ui-bg_highlight-soft_100_deedf7_1x100.png") =
repeat-x 50% 50% rgb(222, 237, 247); border: 1px solid rgb(174, 208, =
234); color: rgb(34, 34, 34); font-weight: bold;
}
.ui-widget-header a {
	color: rgb(34, 34, 34);
}
.ui-state-default {
	background: rgb(215, 235, 249); border: 1px solid rgb(174, 208, 234); =
color: rgb(39, 121, 170); font-weight: bold;
}
.ui-widget-content .ui-state-default {
	background: rgb(215, 235, 249); border: 1px solid rgb(174, 208, 234); =
color: rgb(39, 121, 170); font-weight: bold;
}
.ui-widget-header .ui-state-default {
	background: rgb(215, 235, 249); border: 1px solid rgb(174, 208, 234); =
color: rgb(39, 121, 170); font-weight: bold;
}
.ui-state-default a {
	color: rgb(39, 121, 170); text-decoration: none;
}
.ui-state-default a:link {
	color: rgb(39, 121, 170); text-decoration: none;
}
.ui-state-default a:visited {
	color: rgb(39, 121, 170); text-decoration: none;
}
.ui-state-hover {
	background: url("images/ui-bg_flat_100_e4f1fb_40x100.png") repeat-x 50% =
50% rgb(228, 241, 251); border: 1px solid rgb(116, 178, 226); color: =
rgb(0, 112, 163); font-weight: bold;
}
.ui-widget-content .ui-state-hover {
	background: url("images/ui-bg_flat_100_e4f1fb_40x100.png") repeat-x 50% =
50% rgb(228, 241, 251); border: 1px solid rgb(116, 178, 226); color: =
rgb(0, 112, 163); font-weight: bold;
}
.ui-widget-header .ui-state-hover {
	background: url("images/ui-bg_flat_100_e4f1fb_40x100.png") repeat-x 50% =
50% rgb(228, 241, 251); border: 1px solid rgb(116, 178, 226); color: =
rgb(0, 112, 163); font-weight: bold;
}
.ui-state-focus {
	background: url("images/ui-bg_flat_100_e4f1fb_40x100.png") repeat-x 50% =
50% rgb(228, 241, 251); border: 1px solid rgb(116, 178, 226); color: =
rgb(0, 112, 163); font-weight: bold;
}
.ui-widget-content .ui-state-focus {
	background: url("images/ui-bg_flat_100_e4f1fb_40x100.png") repeat-x 50% =
50% rgb(228, 241, 251); border: 1px solid rgb(116, 178, 226); color: =
rgb(0, 112, 163); font-weight: bold;
}
.ui-widget-header .ui-state-focus {
	background: url("images/ui-bg_flat_100_e4f1fb_40x100.png") repeat-x 50% =
50% rgb(228, 241, 251); border: 1px solid rgb(116, 178, 226); color: =
rgb(0, 112, 163); font-weight: bold;
}
.ui-state-hover a {
	color: rgb(0, 112, 163); text-decoration: none;
}
.ui-state-hover a:hover {
	color: rgb(0, 112, 163); text-decoration: none;
}
.ui-state-active {
	background: url("images/ui-bg_flat_50_3baae3_40x100.png") repeat-x 50% =
50% rgb(59, 170, 227); border: 1px solid rgb(38, 148, 232); color: =
rgb(255, 255, 255); font-weight: bold;
}
.ui-widget-content .ui-state-active {
	background: url("images/ui-bg_flat_50_3baae3_40x100.png") repeat-x 50% =
50% rgb(59, 170, 227); border: 1px solid rgb(38, 148, 232); color: =
rgb(255, 255, 255); font-weight: bold;
}
.ui-widget-header .ui-state-active {
	background: url("images/ui-bg_flat_50_3baae3_40x100.png") repeat-x 50% =
50% rgb(59, 170, 227); border: 1px solid rgb(38, 148, 232); color: =
rgb(255, 255, 255); font-weight: bold;
}
.ui-state-active a {
	color: rgb(255, 255, 255); text-decoration: none;
}
.ui-state-active a:link {
	color: rgb(255, 255, 255); text-decoration: none;
}
.ui-state-active a:visited {
	color: rgb(255, 255, 255); text-decoration: none;
}
.ui-widget :active {
=09
}
.ui-state-highlight {
	background: url("images/ui-bg_highlight-soft_25_ffef8f_1x100.png") =
repeat-x 50% top rgb(255, 239, 143); border: 1px solid rgb(249, 221, =
52); color: rgb(54, 54, 54);
}
.ui-widget-content .ui-state-highlight {
	background: url("images/ui-bg_highlight-soft_25_ffef8f_1x100.png") =
repeat-x 50% top rgb(255, 239, 143); border: 1px solid rgb(249, 221, =
52); color: rgb(54, 54, 54);
}
.ui-widget-header .ui-state-highlight {
	background: url("images/ui-bg_highlight-soft_25_ffef8f_1x100.png") =
repeat-x 50% top rgb(255, 239, 143); border: 1px solid rgb(249, 221, =
52); color: rgb(54, 54, 54);
}
.ui-state-highlight a {
	color: rgb(54, 54, 54);
}
.ui-widget-content .ui-state-highlight a {
	color: rgb(54, 54, 54);
}
.ui-widget-header .ui-state-highlight a {
	color: rgb(54, 54, 54);
}
.ui-state-error {
	background: url("images/ui-bg_flat_15_cd0a0a_40x100.png") repeat-x 50% =
50% rgb(205, 10, 10); border: 1px solid rgb(205, 10, 10); color: =
rgb(255, 255, 255);
}
.ui-widget-content .ui-state-error {
	background: url("images/ui-bg_flat_15_cd0a0a_40x100.png") repeat-x 50% =
50% rgb(205, 10, 10); border: 1px solid rgb(205, 10, 10); color: =
rgb(255, 255, 255);
}
.ui-widget-header .ui-state-error {
	background: url("images/ui-bg_flat_15_cd0a0a_40x100.png") repeat-x 50% =
50% rgb(205, 10, 10); border: 1px solid rgb(205, 10, 10); color: =
rgb(255, 255, 255);
}
.ui-state-error a {
	color: rgb(255, 255, 255);
}
.ui-widget-content .ui-state-error a {
	color: rgb(255, 255, 255);
}
.ui-widget-header .ui-state-error a {
	color: rgb(255, 255, 255);
}
.ui-state-error-text {
	color: rgb(255, 255, 255);
}
.ui-widget-content .ui-state-error-text {
	color: rgb(255, 255, 255);
}
.ui-widget-header .ui-state-error-text {
	color: rgb(255, 255, 255);
}
.ui-priority-primary {
	font-weight: bold;
}
.ui-widget-content .ui-priority-primary {
	font-weight: bold;
}
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary {
	font-weight: normal; filter: Alpha(Opacity=3D70); opacity: 0.7;
}
.ui-widget-content .ui-priority-secondary {
	font-weight: normal; filter: Alpha(Opacity=3D70); opacity: 0.7;
}
.ui-widget-header .ui-priority-secondary {
	font-weight: normal; filter: Alpha(Opacity=3D70); opacity: 0.7;
}
.ui-state-disabled {
	filter: Alpha(Opacity=3D35); opacity: 0.35; background-image: none;
}
.ui-widget-content .ui-state-disabled {
	filter: Alpha(Opacity=3D35); opacity: 0.35; background-image: none;
}
.ui-widget-header .ui-state-disabled {
	filter: Alpha(Opacity=3D35); opacity: 0.35; background-image: none;
}
.ui-icon {
	width: 16px; height: 16px; background-image: =
url("images/ui-icons_72a7cf_256x240.png");
}
.ui-widget-content .ui-icon {
	background-image: url("images/ui-icons_72a7cf_256x240.png");
}
.ui-widget-header .ui-icon {
	background-image: url("images/ui-icons_72a7cf_256x240.png");
}
.ui-state-default .ui-icon {
	background-image: url("images/ui-icons_3d80b3_256x240.png");
}
.ui-state-hover .ui-icon {
	background-image: url("images/ui-icons_2694e8_256x240.png");
}
.ui-state-focus .ui-icon {
	background-image: url("images/ui-icons_2694e8_256x240.png");
}
.ui-state-active .ui-icon {
	background-image: url("images/ui-icons_ffffff_256x240.png");
}
.ui-state-highlight .ui-icon {
	background-image: url("images/ui-icons_2e83ff_256x240.png");
}
.ui-state-error .ui-icon {
	background-image: url("images/ui-icons_ffffff_256x240.png");
}
.ui-state-error-text .ui-icon {
	background-image: url("images/ui-icons_ffffff_256x240.png");
}
.ui-icon-carat-1-n {
=09
}
.ui-icon-carat-1-ne {
	background-position: -16px 0px;
}
.ui-icon-carat-1-e {
	background-position: -32px 0px;
}
.ui-icon-carat-1-se {
	background-position: -48px 0px;
}
.ui-icon-carat-1-s {
	background-position: -64px 0px;
}
.ui-icon-carat-1-sw {
	background-position: -80px 0px;
}
.ui-icon-carat-1-w {
	background-position: -96px 0px;
}
.ui-icon-carat-1-nw {
	background-position: -112px 0px;
}
.ui-icon-carat-2-n-s {
	background-position: -128px 0px;
}
.ui-icon-carat-2-e-w {
	background-position: -144px 0px;
}
.ui-icon-triangle-1-n {
	background-position: 0px -16px;
}
.ui-icon-triangle-1-ne {
	background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
	background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
	background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
	background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
	background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
	background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
	background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
	background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
	background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
	background-position: 0px -32px;
}
.ui-icon-arrow-1-ne {
	background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
	background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
	background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
	background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
	background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
	background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
	background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
	background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
	background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
	background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
	background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
	background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
	background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
	background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
	background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
	background-position: 0px -48px;
}
.ui-icon-arrowthick-1-ne {
	background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
	background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
	background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
	background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
	background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
	background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
	background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
	background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
	background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
	background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
	background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
	background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
	background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
	background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
	background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
	background-position: 0px -64px;
}
.ui-icon-arrowreturnthick-1-n {
	background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
	background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
	background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
	background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
	background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
	background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
	background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
	background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
	background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
	background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
	background-position: -176px -64px;
}
.ui-icon-arrow-4 {
	background-position: 0px -80px;
}
.ui-icon-arrow-4-diag {
	background-position: -16px -80px;
}
.ui-icon-extlink {
	background-position: -32px -80px;
}
.ui-icon-newwin {
	background-position: -48px -80px;
}
.ui-icon-refresh {
	background-position: -64px -80px;
}
.ui-icon-shuffle {
	background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
	background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
	background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
	background-position: 0px -96px;
}
.ui-icon-folder-open {
	background-position: -16px -96px;
}
.ui-icon-document {
	background-position: -32px -96px;
}
.ui-icon-document-b {
	background-position: -48px -96px;
}
.ui-icon-note {
	background-position: -64px -96px;
}
.ui-icon-mail-closed {
	background-position: -80px -96px;
}
.ui-icon-mail-open {
	background-position: -96px -96px;
}
.ui-icon-suitcase {
	background-position: -112px -96px;
}
.ui-icon-comment {
	background-position: -128px -96px;
}
.ui-icon-person {
	background-position: -144px -96px;
}
.ui-icon-print {
	background-position: -160px -96px;
}
.ui-icon-trash {
	background-position: -176px -96px;
}
.ui-icon-locked {
	background-position: -192px -96px;
}
.ui-icon-unlocked {
	background-position: -208px -96px;
}
.ui-icon-bookmark {
	background-position: -224px -96px;
}
.ui-icon-tag {
	background-position: -240px -96px;
}
.ui-icon-home {
	background-position: 0px -112px;
}
.ui-icon-flag {
	background-position: -16px -112px;
}
.ui-icon-calendar {
	background-position: -32px -112px;
}
.ui-icon-cart {
	background-position: -48px -112px;
}
.ui-icon-pencil {
	background-position: -64px -112px;
}
.ui-icon-clock {
	background-position: -80px -112px;
}
.ui-icon-disk {
	background-position: -96px -112px;
}
.ui-icon-calculator {
	background-position: -112px -112px;
}
.ui-icon-zoomin {
	background-position: -128px -112px;
}
.ui-icon-zoomout {
	background-position: -144px -112px;
}
.ui-icon-search {
	background-position: -160px -112px;
}
.ui-icon-wrench {
	background-position: -176px -112px;
}
.ui-icon-gear {
	background-position: -192px -112px;
}
.ui-icon-heart {
	background-position: -208px -112px;
}
.ui-icon-star {
	background-position: -224px -112px;
}
.ui-icon-link {
	background-position: -240px -112px;
}
.ui-icon-cancel {
	background-position: 0px -128px;
}
.ui-icon-plus {
	background-position: -16px -128px;
}
.ui-icon-plusthick {
	background-position: -32px -128px;
}
.ui-icon-minus {
	background-position: -48px -128px;
}
.ui-icon-minusthick {
	background-position: -64px -128px;
}
.ui-icon-close {
	background-position: -80px -128px;
}
.ui-icon-closethick {
	background-position: -96px -128px;
}
.ui-icon-key {
	background-position: -112px -128px;
}
.ui-icon-lightbulb {
	background-position: -128px -128px;
}
.ui-icon-scissors {
	background-position: -144px -128px;
}
.ui-icon-clipboard {
	background-position: -160px -128px;
}
.ui-icon-copy {
	background-position: -176px -128px;
}
.ui-icon-contact {
	background-position: -192px -128px;
}
.ui-icon-image {
	background-position: -208px -128px;
}
.ui-icon-video {
	background-position: -224px -128px;
}
.ui-icon-script {
	background-position: -240px -128px;
}
.ui-icon-alert {
	background-position: 0px -144px;
}
.ui-icon-info {
	background-position: -16px -144px;
}
.ui-icon-notice {
	background-position: -32px -144px;
}
.ui-icon-help {
	background-position: -48px -144px;
}
.ui-icon-check {
	background-position: -64px -144px;
}
.ui-icon-bullet {
	background-position: -80px -144px;
}
.ui-icon-radio-off {
	background-position: -96px -144px;
}
.ui-icon-radio-on {
	background-position: -112px -144px;
}
.ui-icon-pin-w {
	background-position: -128px -144px;
}
.ui-icon-pin-s {
	background-position: -144px -144px;
}
.ui-icon-play {
	background-position: 0px -160px;
}
.ui-icon-pause {
	background-position: -16px -160px;
}
.ui-icon-seek-next {
	background-position: -32px -160px;
}
.ui-icon-seek-prev {
	background-position: -48px -160px;
}
.ui-icon-seek-end {
	background-position: -64px -160px;
}
.ui-icon-seek-start {
	background-position: -80px -160px;
}
.ui-icon-seek-first {
	background-position: -80px -160px;
}
.ui-icon-stop {
	background-position: -96px -160px;
}
.ui-icon-eject {
	background-position: -112px -160px;
}
.ui-icon-volume-off {
	background-position: -128px -160px;
}
.ui-icon-volume-on {
	background-position: -144px -160px;
}
.ui-icon-power {
	background-position: 0px -176px;
}
.ui-icon-signal-diag {
	background-position: -16px -176px;
}
.ui-icon-signal {
	background-position: -32px -176px;
}
.ui-icon-battery-0 {
	background-position: -48px -176px;
}
.ui-icon-battery-1 {
	background-position: -64px -176px;
}
.ui-icon-battery-2 {
	background-position: -80px -176px;
}
.ui-icon-battery-3 {
	background-position: -96px -176px;
}
.ui-icon-circle-plus {
	background-position: 0px -192px;
}
.ui-icon-circle-minus {
	background-position: -16px -192px;
}
.ui-icon-circle-close {
	background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
	background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
	background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
	background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
	background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
	background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
	background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
	background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
	background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
	background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
	background-position: -192px -192px;
}
.ui-icon-circle-check {
	background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
	background-position: 0px -208px;
}
.ui-icon-circlesmall-minus {
	background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
	background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
	background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
	background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
	background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
	background-position: 0px -224px;
}
.ui-icon-grip-dotted-horizontal {
	background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
	background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
	background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
	background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
	background-position: -80px -224px;
}
.ui-corner-tl {
	border-top-left-radius: 6px; -moz-border-radius-topleft: 6px; =
-webkit-border-top-left-radius: 6px;
}
.ui-corner-tr {
	border-top-right-radius: 6px; -moz-border-radius-topright: 6px; =
-webkit-border-top-right-radius: 6px;
}
.ui-corner-bl {
	border-bottom-left-radius: 6px; -moz-border-radius-bottomleft: 6px; =
-webkit-border-bottom-left-radius: 6px;
}
.ui-corner-br {
	border-bottom-right-radius: 6px; -moz-border-radius-bottomright: 6px; =
-webkit-border-bottom-right-radius: 6px;
}
.ui-corner-top {
	border-top-left-radius: 6px; border-top-right-radius: 6px; =
-moz-border-radius-topleft: 6px; -webkit-border-top-left-radius: 6px; =
-moz-border-radius-topright: 6px; -webkit-border-top-right-radius: 6px;
}
.ui-corner-bottom {
	border-bottom-right-radius: 6px; border-bottom-left-radius: 6px; =
-moz-border-radius-bottomleft: 6px; -webkit-border-bottom-left-radius: =
6px; -moz-border-radius-bottomright: 6px; =
-webkit-border-bottom-right-radius: 6px;
}
.ui-corner-right {
	border-top-right-radius: 6px; border-bottom-right-radius: 6px; =
-moz-border-radius-topright: 6px; -webkit-border-top-right-radius: 6px; =
-moz-border-radius-bottomright: 6px; -webkit-border-bottom-right-radius: =
6px;
}
.ui-corner-left {
	border-top-left-radius: 6px; border-bottom-left-radius: 6px; =
-moz-border-radius-topleft: 6px; -webkit-border-top-left-radius: 6px; =
-moz-border-radius-bottomleft: 6px; -webkit-border-bottom-left-radius: =
6px;
}
.ui-corner-all {
	border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: =
6px;
}
.ui-widget-overlay {
	background: url("images/ui-bg_diagonals-thick_90_eeeeee_40x40.png") 50% =
50% rgb(238, 238, 238); filter: Alpha(Opacity=3D80); opacity: 0.8;
}
.ui-widget-shadow {
	background: url("images/ui-bg_highlight-hard_70_000000_1x100.png") =
repeat-x 50% top rgb(0, 0, 0); margin: -7px 0px 0px -7px; padding: 7px; =
border-radius: 8px; filter: Alpha(Opacity=3D30); opacity: 0.3; =
-moz-border-radius: 8px; -webkit-border-radius: 8px;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	font-size: 0.1px; display: block; position: absolute; z-index: 99999;
}
.ui-resizable-disabled .ui-resizable-handle {
	display: none;
}
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	left: 0px; top: -5px; width: 100%; height: 7px; cursor: n-resize;
}
.ui-resizable-s {
	left: 0px; width: 100%; height: 7px; bottom: -5px; cursor: s-resize;
}
.ui-resizable-e {
	top: 0px; width: 7px; height: 100%; right: -5px; cursor: e-resize;
}
.ui-resizable-w {
	left: -5px; top: 0px; width: 7px; height: 100%; cursor: w-resize;
}
.ui-resizable-se {
	width: 12px; height: 12px; right: 1px; bottom: 1px; cursor: se-resize;
}
.ui-resizable-sw {
	left: -5px; width: 9px; height: 9px; bottom: -5px; cursor: sw-resize;
}
.ui-resizable-nw {
	left: -5px; top: -5px; width: 9px; height: 9px; cursor: nw-resize;
}
.ui-resizable-ne {
	top: -5px; width: 9px; height: 9px; right: -5px; cursor: ne-resize;
}
.ui-selectable-helper {
	border: 1px dotted black; position: absolute; z-index: 100;
}
.ui-accordion {
	width: 100%;
}
.ui-accordion .ui-accordion-header {
	margin-top: 1px; position: relative; cursor: pointer; zoom: 1;
}
.ui-accordion .ui-accordion-li-fix {
	display: inline;
}
.ui-accordion .ui-accordion-header-active {
	border-bottom-color: currentColor !important; border-bottom-width: 0px =
!important; border-bottom-style: none !important;
}
.ui-accordion .ui-accordion-header a {
	padding: 0.5em 0.5em 0.5em 0.7em; font-size: 1em; display: block;
}
.ui-accordion-icons .ui-accordion-header a {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-icon {
	left: 0.5em; top: 50%; margin-top: -8px; position: absolute;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em; top: 1px; overflow: auto; margin-top: -2px; =
margin-bottom: 2px; border-top-color: currentColor; border-top-width: =
0px; border-top-style: none; display: none; position: relative; zoom: 1;
}
.ui-accordion .ui-accordion-content-active {
	display: block;
}
.ui-autocomplete {
	position: absolute; cursor: default;
}
* html .ui-autocomplete {
	width: 1px;
}
.ui-menu {
	list-style: none; margin: 0px; padding: 2px; float: left; display: =
block;
}
.ui-menu .ui-menu {
	margin-top: -3px;
}
.ui-menu .ui-menu-item {
	margin: 0px; padding: 0px; width: 100%; clear: left; float: left; zoom: =
1;
}
.ui-menu .ui-menu-item a {
	padding: 0.2em 0.4em; line-height: 1.5; text-decoration: none; display: =
block; zoom: 1;
}
.ui-menu .ui-menu-item a.ui-state-hover {
	margin: -1px; font-weight: normal;
}
.ui-menu .ui-menu-item a.ui-state-active {
	margin: -1px; font-weight: normal;
}
.ui-button {
	padding: 0px; text-align: center; overflow: visible; text-decoration: =
none !important; margin-right: 0.1em; display: inline-block; position: =
relative; cursor: pointer; zoom: 1;
}
.ui-button-icon-only {
	width: 2.2em;
}
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}
.ui-button .ui-button-text {
	line-height: 1.4; display: block;
}
.ui-button-text-only .ui-button-text {
	padding: 0.4em 1em;
}
.ui-button-icon-only .ui-button-text {
	padding: 0.4em; text-indent: -9999999px;
}
.ui-button-icons-only .ui-button-text {
	padding: 0.4em; text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text {
	padding: 0.4em 1em 0.4em 2.1em;
}
.ui-button-text-icons .ui-button-text {
	padding: 0.4em 1em 0.4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text {
	padding: 0.4em 2.1em 0.4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding: 0.4em 2.1em 0.4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-right: 2.1em; padding-left: 2.1em;
}
input.ui-button {
	padding: 0.4em 1em;
}
.ui-button-icon-only .ui-icon {
	top: 50%; margin-top: -8px; position: absolute;
}
.ui-button-text-icon-primary .ui-icon {
	top: 50%; margin-top: -8px; position: absolute;
}
.ui-button-text-icon-secondary .ui-icon {
	top: 50%; margin-top: -8px; position: absolute;
}
.ui-button-text-icons .ui-icon {
	top: 50%; margin-top: -8px; position: absolute;
}
.ui-button-icons-only .ui-icon {
	top: 50%; margin-top: -8px; position: absolute;
}
.ui-button-icon-only .ui-icon {
	left: 50%; margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary {
	left: 0.5em;
}
.ui-button-text-icons .ui-button-icon-primary {
	left: 0.5em;
}
.ui-button-icons-only .ui-button-icon-primary {
	left: 0.5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary {
	right: 0.5em;
}
.ui-button-text-icons .ui-button-icon-secondary {
	right: 0.5em;
}
.ui-button-icons-only .ui-button-icon-secondary {
	right: 0.5em;
}
.ui-button-text-icons .ui-button-icon-secondary {
	right: 0.5em;
}
.ui-button-icons-only .ui-button-icon-secondary {
	right: 0.5em;
}
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-right: -0.3em; margin-left: 0px;
}
.ui-dialog {
	padding: 0.2em; width: 300px; overflow: hidden; position: absolute;
}
.ui-dialog .ui-dialog-titlebar {
	padding: 0.4em 1em; position: relative;
}
.ui-dialog .ui-dialog-title {
	margin: 0.1em 16px 0.1em 0px; float: left;
}
.ui-dialog .ui-dialog-titlebar-close {
	margin: -10px 0px 0px; padding: 1px; top: 50%; width: 19px; height: =
18px; right: 0.3em; position: absolute;
}
.ui-dialog .ui-dialog-titlebar-close span {
	margin: 1px; display: block;
}
.ui-dialog .ui-dialog-titlebar-close:hover {
	padding: 0px;
}
.ui-dialog .ui-dialog-titlebar-close:focus {
	padding: 0px;
}
.ui-dialog .ui-dialog-content {
	padding: 0.5em 1em; border: 0px currentColor; overflow: auto; position: =
relative; zoom: 1;
}
.ui-dialog .ui-dialog-buttonpane {
	border-width: 1px 0px 0px; margin: 0.5em 0px 0px; padding: 0.3em 1em =
0.5em 0.4em; text-align: left; background-image: none;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: 0.5em 0.4em 0.5em 0px; cursor: pointer;
}
.ui-dialog .ui-resizable-se {
	width: 14px; height: 14px; right: 3px; bottom: 3px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-slider {
	text-align: left; position: relative;
}
.ui-slider .ui-slider-handle {
	width: 1.2em; height: 1.2em; position: absolute; z-index: 2; cursor: =
default;
}
.ui-slider .ui-slider-range {
	border: 0px currentColor; font-size: 0.7em; display: block; position: =
absolute; z-index: 1;
}
.ui-slider-horizontal {
	height: 0.8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -0.3em; margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0px; height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0px;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0px;
}
.ui-slider-vertical {
	width: 0.8em; height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -0.3em; margin-bottom: -0.6em; margin-left: 0px;
}
.ui-slider-vertical .ui-slider-range {
	left: 0px; width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0px;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0px;
}
.ui-tabs {
	padding: 0.2em; position: relative; zoom: 1;
}
.ui-tabs .ui-tabs-nav {
	margin: 0px; padding: 0.2em 0.2em 0px;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none; margin: 0px 0.2em 1px 0px; padding: 0px; top: 1px; =
border-bottom-color: currentColor !important; border-bottom-width: 0px =
!important; border-bottom-style: none !important; float: left; =
white-space: nowrap; position: relative;
}
.ui-tabs .ui-tabs-nav li a {
	padding: 0.5em 1em; text-decoration: none; float: left;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
	padding-bottom: 1px; margin-bottom: 0px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a {
	cursor: text;
}
.ui-tabs .ui-tabs-nav li.ui-state-disabled a {
	cursor: text;
}
.ui-tabs .ui-tabs-nav li.ui-state-processing a {
	cursor: text;
}
.ui-tabs .ui-tabs-nav li a {
	cursor: pointer;
}
.ui-tabs-collapsible.ui-tabs .ui-tabs-nav li.ui-tabs-selected a {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	border-width: 0px; padding: 1em 1.4em; display: block;
}
.ui-tabs .ui-tabs-hide {
	display: none !important;
}
.ui-datepicker {
	padding: 0.2em 0.2em 0px; width: 17em; display: none;
}
.ui-datepicker .ui-datepicker-header {
	padding: 0.2em 0px; position: relative;
}
.ui-datepicker .ui-datepicker-prev {
	top: 2px; width: 1.8em; height: 1.8em; position: absolute;
}
.ui-datepicker .ui-datepicker-next {
	top: 2px; width: 1.8em; height: 1.8em; position: absolute;
}
.ui-datepicker .ui-datepicker-prev-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span {
	left: 50%; top: 50%; margin-top: -8px; margin-left: -8px; display: =
block; position: absolute;
}
.ui-datepicker .ui-datepicker-next span {
	left: 50%; top: 50%; margin-top: -8px; margin-left: -8px; display: =
block; position: absolute;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0px 2.3em; text-align: center; line-height: 1.8em;
}
.ui-datepicker .ui-datepicker-title select {
	margin: 1px 0px; font-size: 1em;
}
.ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}
.ui-datepicker select.ui-datepicker-month {
	width: 49%;
}
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}
.ui-datepicker table {
	margin: 0px 0px 0.4em; width: 100%; font-size: 0.9em; border-collapse: =
collapse;
}
.ui-datepicker th {
	padding: 0.7em 0.3em; border: 0px currentColor; text-align: center; =
font-weight: bold;
}
.ui-datepicker td {
	padding: 1px; border: 0px currentColor;
}
.ui-datepicker td span {
	padding: 0.2em; text-align: right; text-decoration: none; display: =
block;
}
.ui-datepicker td a {
	padding: 0.2em; text-align: right; text-decoration: none; display: =
block;
}
.ui-datepicker .ui-datepicker-buttonpane {
	margin: 0.7em 0px 0px; padding: 0px 0.2em; border-right-color: =
currentColor; border-bottom-color: currentColor; border-left-color: =
currentColor; border-right-width: 0px; border-bottom-width: 0px; =
border-left-width: 0px; border-right-style: none; border-bottom-style: =
none; border-left-style: none; background-image: none;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	margin: 0.5em 0.2em 0.4em; padding: 0.2em 0.6em 0.3em; width: auto; =
overflow: visible; float: right; cursor: pointer;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}
.ui-datepicker-multi.ui-datepicker {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	margin: 0px auto 0.4em; width: 95%;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
	border-left-width: 0px;
}
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0px;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	width: 100%; clear: both;
}
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	left: auto; right: 2px;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px; right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	left: auto; right: 1px;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px; right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane =
button.ui-datepicker-current {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
	border-right-width: 0px; border-left-width: 1px;
}
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0px; border-left-width: 1px;
}
.ui-datepicker-cover {
	left: -4px; top: -4px; width: 200px; height: 200px; display: block; =
filter: mask(); position: absolute; z-index: -1;
}
.ui-progressbar {
	height: 2em; text-align: left;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px; height: 100%;
}

------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: text/css;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/css/ipmprint.css

body {
	margin: 0px 0px 0px 10px; color: rgb(85, 85, 85); font-family: =
Trebuchet MS, Verdana, Arial; font-size: 13px; background-color: =
rgb(255, 255, 255);
}
table {
	margin: 1px; font-family: Trebuchet MS, Verdana, Arial; font-size: =
13px;
}
a {
	font-weight: bold; text-decoration: none;
}
h1 {
	text-align: center; color: rgb(255, 153, 0); font-family: Arial, =
Trebuchet MS, Verdana; font-size: 24px; font-style: normal; font-weight: =
bold; text-decoration: none;
}
.formtitle {
	text-align: center; color: rgb(255, 153, 0); font-family: Arial, =
Trebuchet MS, Verdana; font-size: 24px; font-style: normal; font-weight: =
bold; text-decoration: none;
}
h2 {
	margin: 1px; padding: 2px; text-align: left; color: rgb(34, 34, 34); =
font-family: Arial, Trebuchet MS, Verdana; font-size: 16px; font-style: =
normal; text-decoration: none;
}
.sectiontitle {
	margin: 1px; padding: 2px; text-align: left; color: rgb(85, 85, 85); =
font-family: Arial, Trebuchet MS, Verdana; font-size: 16px; font-style: =
normal; font-weight: bold; text-decoration: none; background-color: =
rgb(238, 238, 238);
}
h3 {
	margin: 0px; padding: 2px; text-align: left; color: rgb(0, 0, 0); =
font-family: Trebuchet MS, Verdana, Arial; font-size: 13px; font-style: =
normal; font-weight: normal; text-decoration: none; background-color: =
rgb(250, 250, 250);
}
.question {
	margin: 0px; padding: 2px; text-align: left; color: rgb(85, 85, 85); =
font-family: Trebuchet MS, Verdana, Arial; font-size: 13px; font-style: =
normal; font-weight: normal; text-decoration: none;
}
h4 {
	margin: 0px; text-align: left; color: rgb(34, 34, 34); font-family: =
Arial, Trebuchet MS, Verdana; font-size: 13px; font-style: normal; =
font-weight: bold; text-decoration: none;
}
.subtitle {
	margin: 0px; text-align: left; color: rgb(34, 34, 34); font-family: =
Arial, Trebuchet MS, Verdana; font-size: 13px; font-style: normal; =
font-weight: bold; text-decoration: none;
}
h5 {
	text-align: left; color: rgb(34, 34, 34); padding-right: 2px; =
padding-left: 2px; font-family: Arial, Trebuchet MS, Verdana; font-size: =
12px; font-style: normal; font-weight: bold; text-decoration: none; =
margin-bottom: 0px;
}
.answertitle {
	text-align: left; color: rgb(34, 34, 34); padding-right: 2px; =
padding-left: 2px; font-family: Arial, Trebuchet MS, Verdana; font-size: =
12px; font-style: normal; font-weight: bold; text-decoration: none; =
margin-bottom: 0px;
}
h6 {
	margin: 0px; text-align: left; color: rgb(85, 85, 85); padding-right: =
2px; padding-left: 2px; font-family: Trebuchet MS, Verdana, Arial; =
font-size: 12px; font-style: normal; font-weight: normal; =
text-decoration: none;
}
.answer {
	margin: 0px; text-align: left; color: rgb(0, 0, 0); padding-right: 2px; =
padding-left: 2px; font-family: Trebuchet MS, Verdana, Arial; font-size: =
12px; font-style: normal; font-weight: normal; text-decoration: none;
}
.sectiondesc {
	padding-left: 4px; font-family: Trebuchet MS, Verdana, Arial; =
font-size: 13px; font-style: normal; font-weight: normal; =
text-decoration: none;
}
.ipmhelp {
	padding: 5px; color: rgb(34, 34, 34); font-family: Arial, Trebuchet MS, =
Verdana; font-size: 11px; font-style: normal; font-weight: normal; =
text-decoration: none;
}
.compulsory {
	color: rgb(51, 51, 51); font-size: 13px; font-style: normal; =
font-weight: normal; text-decoration: none;
}
.optional {
	color: rgb(102, 102, 102); font-size: 12px; font-style: normal; =
font-weight: normal; text-decoration: none;
}
.comment {
	font-size: 12px; font-style: normal; font-weight: normal; =
text-decoration: none;
}
em {
	color: rgb(51, 51, 51); font-style: normal; font-weight: bold; =
text-decoration: none;
}
.boldtext {
	color: rgb(51, 51, 51); font-style: normal; font-weight: bold; =
text-decoration: none;
}
.ipmbutton {
	border: 1px solid rgb(39, 120, 158); text-align: center; color: rgb(39, =
120, 158); font-family: Trebuchet MS, Verdana, Arial; font-size: 11px; =
font-style: normal; font-weight: normal; text-decoration: none; =
background-color: rgb(231, 243, 248);
}
.ipmframe {
	border: 1px solid rgb(153, 153, 153);
}
.ipmleft {
	border-left-color: rgb(153, 153, 153); border-left-width: 1px; =
border-left-style: solid;
}
.ipmbottom {
	border-bottom-color: rgb(153, 153, 153); border-bottom-width: 1px; =
border-bottom-style: solid;
}
.ipmframe2 {
	border: 1px solid rgb(34, 34, 34);
}
.ipmleft2 {
	border-left-color: rgb(34, 34, 34); border-left-width: 1px; =
border-left-style: solid;
}
.ipmbottom2 {
	border-bottom-color: rgb(34, 34, 34); border-bottom-width: 1px; =
border-bottom-style: solid;
}
.ipmright2 {
	border-right-color: rgb(34, 34, 34); border-right-width: 1px; =
border-right-style: solid;
}
.ipmtop {
	border-top-color: rgb(153, 153, 153); border-top-width: 1px; =
border-top-style: solid;
}
.ipmtop2 {
	border-top-color: rgb(34, 34, 34); border-top-width: 1px; =
border-top-style: solid;
}
.ipmbackground {
	background-color: rgb(238, 238, 238);
}
.ipmbackground2 {
	background-color: rgb(238, 238, 238);
}
.taglogical {
	color: rgb(34, 34, 34); font-family: Trebuchet MS, Verdana, Arial; =
font-size: 13px; font-style: normal; font-weight: bold; text-decoration: =
none;
}
.tagparenthesis {
	color: rgb(34, 34, 34); font-family: Trebuchet MS, Verdana, Arial; =
font-size: 13px; font-style: normal; font-weight: bold; text-decoration: =
none;
}
#divFoldCont {
	left: 10px; top: 130px; width: 160px; visibility: hidden; position: =
absolute;
}
.ipmmenu1 {
	width: 150px; position: absolute;
}
.ipmmenu2 {
	left: 20px; width: 140px; visibility: hidden; position: absolute;
}
.ipmmenu3 {
	left: 20px; width: 140px; visibility: hidden; position: absolute;
}
.ipmmenu1link {
	color: rgb(39, 120, 158); font-family: Trebuchet MS, Verdana, Arial; =
font-size: 13px; font-weight: bold; text-decoration: none;
}
.ipmmenu2link {
	color: rgb(39, 120, 158); font-family: Trebuchet MS, Verdana, Arial; =
font-size: 13px; font-weight: bold; text-decoration: none;
}
.ipmmenu3link {
	color: rgb(39, 120, 158); font-family: Trebuchet MS, Verdana, Arial; =
font-size: 13px; font-weight: normal; text-decoration: none;
}

------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: application/octet-stream
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/scripts/jquery-1.4.2.min.js

/*!=0A=
 * jQuery JavaScript Library v1.4.2=0A=
 * http://jquery.com/=0A=
 *=0A=
 * Copyright 2010, John Resig=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * Includes Sizzle.js=0A=
 * http://sizzlejs.com/=0A=
 * Copyright 2010, The Dojo Foundation=0A=
 * Released under the MIT, BSD, and GPL Licenses.=0A=
 *=0A=
 * Date: Sat Feb 13 22:33:48 2010 -0500=0A=
 */=0A=
(function(A,w){function =
ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTi=
meout(ma,1);return}c.ready()}}function =
Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalE=
val(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.re=
moveChild(b)}function X(a,b,d,f,e,j){var i=3Da.length;if(typeof =
b=3D=3D=3D"object"){for(var o in b)X(a,o,b[o],f,e,d);return =
a}if(d!=3D=3Dw){f=3D!j&&f&&c.isFunction(d);for(o=3D0;o<i;o++)e(a[o],b,f?d=
.call(a[o],o,e(a[o],b)):d,j);return a}return i?=0A=
e(a[0],b):w}function J(){return(new Date).getTime()}function Y(){return =
false}function Z(){return true}function na(a,b,d){d[0].type=3Da;return =
c.event.handle.apply(b,d)}function oa(a){var =
b,d=3D[],f=3D[],e=3Darguments,j,i,o,k,n,r;i=3Dc.data(this,"events");if(!(=
a.liveFired=3D=3D=3Dthis||!i||!i.live||a.button&&a.type=3D=3D=3D"click"))=
{a.liveFired=3Dthis;var =
u=3Di.live.slice(0);for(k=3D0;k<u.length;k++){i=3Du[k];i.origType.replace=
(O,"")=3D=3D=3Da.type?f.push(i.selector):u.splice(k--,1)}j=3Dc(a.target).=
closest(f,a.currentTarget);n=3D0;for(r=3D=0A=
j.length;n<r;n++)for(k=3D0;k<u.length;k++){i=3Du[k];if(j[n].selector=3D=3D=
=3Di.selector){o=3Dj[n].elem;f=3Dnull;if(i.preType=3D=3D=3D"mouseenter"||=
i.preType=3D=3D=3D"mouseleave")f=3Dc(a.relatedTarget).closest(i.selector)=
[0];if(!f||f!=3D=3Do)d.push({elem:o,handleObj:i})}}n=3D0;for(r=3Dd.length=
;n<r;n++){j=3Dd[n];a.currentTarget=3Dj.elem;a.data=3Dj.handleObj.data;a.h=
andleObj=3Dj.handleObj;if(j.handleObj.origHandler.apply(j.elem,e)=3D=3D=3D=
false){b=3Dfalse;break}}return b}}function =
pa(a,b){return"live."+(a&&a!=3D=3D"*"?a+".":"")+b.replace(/\./g,"`").repl=
ace(/ /g,=0A=
"&")}function =
qa(a){return!a||!a.parentNode||a.parentNode.nodeType=3D=3D=3D11}function =
ra(a,b){var =
d=3D0;b.each(function(){if(this.nodeName=3D=3D=3D(a[d]&&a[d].nodeName)){v=
ar f=3Dc.data(a[d++]),e=3Dc.data(this,f);if(f=3Df&&f.events){delete =
e.handle;e.events=3D{};for(var j in f)for(var i in =
f[j])c.event.add(this,j,f[j][i],f[j][i].data)}}})}function sa(a,b,d){var =
f,e,j;b=3Db&&b[0]?b[0].ownerDocument||b[0]:s;if(a.length=3D=3D=3D1&&typeo=
f =
a[0]=3D=3D=3D"string"&&a[0].length<512&&b=3D=3D=3Ds&&!ta.test(a[0])&&(c.s=
upport.checkClone||!ua.test(a[0]))){e=3D=0A=
true;if(j=3Dc.fragments[a[0]])if(j!=3D=3D1)f=3Dj}if(!f){f=3Db.createDocum=
entFragment();c.clean(a,b,f,d)}if(e)c.fragments[a[0]]=3Dj?f:1;return{frag=
ment:f,cacheable:e}}function K(a,b){var =
d=3D{};c.each(va.concat.apply([],va.slice(0,b)),function(){d[this]=3Da});=
return d}function wa(a){return"scrollTo"in =
a&&a.document?a:a.nodeType=3D=3D=3D9?a.defaultView||a.parentWindow:false}=
var c=3Dfunction(a,b){return new =
c.fn.init(a,b)},Ra=3DA.jQuery,Sa=3DA.$,s=3DA.document,T,Ta=3D/^[^<]*(<[\w=
\W]+>)[^>]*$|^#([\w-]+)$/,Ua=3D/^.[^:#\[\.,]*$/,Va=3D/\S/,=0A=
Wa=3D/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=3D/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=3D=
navigator.userAgent,xa=3Dfalse,Q=3D[],L,$=3DObject.prototype.toString,aa=3D=
Object.prototype.hasOwnProperty,ba=3DArray.prototype.push,R=3DArray.proto=
type.slice,ya=3DArray.prototype.indexOf;c.fn=3Dc.prototype=3D{init:functi=
on(a,b){var d,f;if(!a)return =
this;if(a.nodeType){this.context=3Dthis[0]=3Da;this.length=3D1;return =
this}if(a=3D=3D=3D"body"&&!b){this.context=3Ds;this[0]=3Ds.body;this.sele=
ctor=3D"body";this.length=3D1;return this}if(typeof =
a=3D=3D=3D"string")if((d=3DTa.exec(a))&&=0A=
(d[1]||!b))if(d[1]){f=3Db?b.ownerDocument||b:s;if(a=3DXa.exec(a))if(c.isP=
lainObject(b)){a=3D[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else =
a=3D[f.createElement(a[1])];else{a=3Dsa([d[1]],[f]);a=3D(a.cacheable?a.fr=
agment.cloneNode(true):a.fragment).childNodes}return =
c.merge(this,a)}else{if(b=3Ds.getElementById(d[2])){if(b.id!=3D=3Dd[2])re=
turn =
T.find(a);this.length=3D1;this[0]=3Db}this.context=3Ds;this.selector=3Da;=
return this}else =
if(!b&&/^\w+$/.test(a)){this.selector=3Da;this.context=3Ds;a=3Ds.getEleme=
ntsByTagName(a);return c.merge(this,=0A=
a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else =
if(c.isFunction(a))return =
T.ready(a);if(a.selector!=3D=3Dw){this.selector=3Da.selector;this.context=
=3Da.context}return =
c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){=
return this.length},toArray:function(){return =
R.call(this,0)},get:function(a){return =
a=3D=3Dnull?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:functi=
on(a,b,d){var =
f=3Dc();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=3Dthis;f.con=
text=3Dthis.context;if(b=3D=3D=3D=0A=
"find")f.selector=3Dthis.selector+(this.selector?" ":"")+d;else =
if(b)f.selector=3Dthis.selector+"."+b+"("+d+")";return =
f},each:function(a,b){return =
c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c=
);else Q&&Q.push(a);return this},eq:function(a){return =
a=3D=3D=3D-1?this.slice(a):this.slice(a,+a+1)},first:function(){return =
this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return =
this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","=
))},map:function(a){return this.pushStack(c.map(this,=0A=
function(b,d){return a.call(b,d,b)}))},end:function(){return =
this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.ini=
t.prototype=3Dc.fn;c.extend=3Dc.fn.extend=3Dfunction(){var =
a=3Darguments[0]||{},b=3D1,d=3Darguments.length,f=3Dfalse,e,j,i,o;if(type=
of a=3D=3D=3D"boolean"){f=3Da;a=3Darguments[1]||{};b=3D2}if(typeof =
a!=3D=3D"object"&&!c.isFunction(a))a=3D{};if(d=3D=3D=3Db){a=3Dthis;--b}fo=
r(;b<d;b++)if((e=3Darguments[b])!=3Dnull)for(j in =
e){i=3Da[j];o=3De[j];if(a!=3D=3Do)if(f&&o&&(c.isPlainObject(o)||c.isArray=
(o))){i=3Di&&(c.isPlainObject(i)||=0A=
c.isArray(i))?i:c.isArray(o)?[]:{};a[j]=3Dc.extend(f,i,o)}else =
if(o!=3D=3Dw)a[j]=3Do}return =
a};c.extend({noConflict:function(a){A.$=3DSa;if(a)A.jQuery=3DRa;return =
c},isReady:false,ready:function(){if(!c.isReady){if(!s.body)return =
setTimeout(c.ready,13);c.isReady=3Dtrue;if(Q){for(var =
a,b=3D0;a=3DQ[b++];)a.call(s,c);Q=3Dnull}c.fn.triggerHandler&&c(s).trigge=
rHandler("ready")}},bindReady:function(){if(!xa){xa=3Dtrue;if(s.readyStat=
e=3D=3D=3D"complete")return =
c.ready();if(s.addEventListener){s.addEventListener("DOMContentLoaded",=0A=
L,false);A.addEventListener("load",c.ready,false)}else =
if(s.attachEvent){s.attachEvent("onreadystatechange",L);A.attachEvent("on=
load",c.ready);var =
a=3Dfalse;try{a=3DA.frameElement=3D=3Dnull}catch(b){}s.documentElement.do=
Scroll&&a&&ma()}}},isFunction:function(a){return =
$.call(a)=3D=3D=3D"[object Function]"},isArray:function(a){return =
$.call(a)=3D=3D=3D"[object =
Array]"},isPlainObject:function(a){if(!a||$.call(a)!=3D=3D"[object =
Object]"||a.nodeType||a.setInterval)return =
false;if(a.constructor&&!aa.call(a,"constructor")&&!aa.call(a.constructor=
.prototype,=0A=
"isPrototypeOf"))return false;var b;for(b in a);return =
b=3D=3D=3Dw||aa.call(a,b)},isEmptyObject:function(a){for(var b in =
a)return false;return true},error:function(a){throw =
a;},parseJSON:function(a){if(typeof a!=3D=3D"string"||!a)return =
null;a=3Dc.trim(a);if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u=
[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\=
d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return =
A.JSON&&A.JSON.parse?A.JSON.parse(a):(new Function("return "+=0A=
a))();else c.error("Invalid JSON: =
"+a)},noop:function(){},globalEval:function(a){if(a&&Va.test(a)){var =
b=3Ds.getElementsByTagName("head")[0]||s.documentElement,d=3Ds.createElem=
ent("script");d.type=3D"text/javascript";if(c.support.scriptEval)d.append=
Child(s.createTextNode(a));else =
d.text=3Da;b.insertBefore(d,b.firstChild);b.removeChild(d)}},nodeName:fun=
ction(a,b){return =
a.nodeName&&a.nodeName.toUpperCase()=3D=3D=3Db.toUpperCase()},each:functi=
on(a,b,d){var =
f,e=3D0,j=3Da.length,i=3Dj=3D=3D=3Dw||c.isFunction(a);if(d)if(i)for(f in =
a){if(b.apply(a[f],=0A=
d)=3D=3D=3Dfalse)break}else =
for(;e<j;){if(b.apply(a[e++],d)=3D=3D=3Dfalse)break}else if(i)for(f in =
a){if(b.call(a[f],f,a[f])=3D=3D=3Dfalse)break}else =
for(d=3Da[0];e<j&&b.call(d,e,d)!=3D=3Dfalse;d=3Da[++e]);return =
a},trim:function(a){return(a||"").replace(Wa,"")},makeArray:function(a,b)=
{b=3Db||[];if(a!=3Dnull)a.length=3D=3Dnull||typeof =
a=3D=3D=3D"string"||c.isFunction(a)||typeof =
a!=3D=3D"function"&&a.setInterval?ba.call(b,a):c.merge(b,a);return =
b},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var =
d=3D0,f=3Db.length;d<f;d++)if(b[d]=3D=3D=3D=0A=
a)return d;return-1},merge:function(a,b){var =
d=3Da.length,f=3D0;if(typeof b.length=3D=3D=3D"number")for(var =
e=3Db.length;f<e;f++)a[d++]=3Db[f];else =
for(;b[f]!=3D=3Dw;)a[d++]=3Db[f++];a.length=3Dd;return =
a},grep:function(a,b,d){for(var =
f=3D[],e=3D0,j=3Da.length;e<j;e++)!d!=3D=3D!b(a[e],e)&&f.push(a[e]);retur=
n f},map:function(a,b,d){for(var =
f=3D[],e,j=3D0,i=3Da.length;j<i;j++){e=3Db(a[j],j,d);if(e!=3Dnull)f[f.len=
gth]=3De}return =
f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length=3D=
=3D=3D2)if(typeof b=3D=3D=3D"string"){d=3Da;a=3Dd[b];b=3Dw}else if(b&&=0A=
!c.isFunction(b)){d=3Db;b=3Dw}if(!b&&a)b=3Dfunction(){return =
a.apply(d||this,arguments)};if(a)b.guid=3Da.guid=3Da.guid||b.guid||c.guid=
++;return b},uaMatch:function(a){a=3Da.toLowerCase();a=3D/(webkit)[ =
\/]([\w.]+)/.exec(a)||/(opera)(?:.*version)?[ =
\/]([\w.]+)/.exec(a)||/(msie) =
([\w.]+)/.exec(a)||!/compatible/.test(a)&&/(mozilla)(?:.*? =
rv:([\w.]+))?/.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}},br=
owser:{}});P=3Dc.uaMatch(P);if(P.browser){c.browser[P.browser]=3Dtrue;c.b=
rowser.version=3DP.version}if(c.browser.webkit)c.browser.safari=3D=0A=
true;if(ya)c.inArray=3Dfunction(a,b){return =
ya.call(b,a)};T=3Dc(s);if(s.addEventListener)L=3Dfunction(){s.removeEvent=
Listener("DOMContentLoaded",L,false);c.ready()};else =
if(s.attachEvent)L=3Dfunction(){if(s.readyState=3D=3D=3D"complete"){s.det=
achEvent("onreadystatechange",L);c.ready()}};(function(){c.support=3D{};v=
ar =
a=3Ds.documentElement,b=3Ds.createElement("script"),d=3Ds.createElement("=
div"),f=3D"script"+J();d.style.display=3D"none";d.innerHTML=3D"   =
<link/><table></table><a href=3D'/a' =
style=3D'color:red;float:left;opacity:.55;'>a</a><input =
type=3D'checkbox'/>";=0A=
var =
e=3Dd.getElementsByTagName("*"),j=3Dd.getElementsByTagName("a")[0];if(!(!=
e||!e.length||!j)){c.support=3D{leadingWhitespace:d.firstChild.nodeType=3D=
=3D=3D3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.g=
etElementsByTagName("link").length,style:/red/.test(j.getAttribute("style=
")),hrefNormalized:j.getAttribute("href")=3D=3D=3D"/a",opacity:/^0.55$/.t=
est(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByT=
agName("input")[0].value=3D=3D=3D"on",optSelected:s.createElement("select=
").appendChild(s.createElement("option")).selected,=0A=
parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNod=
e=3D=3D=3Dnull,deleteExpando:true,checkClone:false,scriptEval:false,noClo=
neEvent:true,boxModel:null};b.type=3D"text/javascript";try{b.appendChild(=
s.createTextNode("window."+f+"=3D1;"))}catch(i){}a.insertBefore(b,a.first=
Child);if(A[f]){c.support.scriptEval=3Dtrue;delete A[f]}try{delete =
b.test}catch(o){c.support.deleteExpando=3Dfalse}a.removeChild(b);if(d.att=
achEvent&&d.fireEvent){d.attachEvent("onclick",function =
k(){c.support.noCloneEvent=3D=0A=
false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")=
}d=3Ds.createElement("div");d.innerHTML=3D"<input type=3D'radio' =
name=3D'radiotest' =
checked=3D'checked'/>";a=3Ds.createDocumentFragment();a.appendChild(d.fir=
stChild);c.support.checkClone=3Da.cloneNode(true).cloneNode(true).lastChi=
ld.checked;c(function(){var =
k=3Ds.createElement("div");k.style.width=3Dk.style.paddingLeft=3D"1px";s.=
body.appendChild(k);c.boxModel=3Dc.support.boxModel=3Dk.offsetWidth=3D=3D=
=3D2;s.body.removeChild(k).style.display=3D"none"});a=3Dfunction(k){var =
n=3D=0A=
s.createElement("div");k=3D"on"+k;var r=3Dk in =
n;if(!r){n.setAttribute(k,"return;");r=3Dtypeof =
n[k]=3D=3D=3D"function"}return =
r};c.support.submitBubbles=3Da("submit");c.support.changeBubbles=3Da("cha=
nge");a=3Db=3Dd=3De=3Dj=3Dnull}})();c.props=3D{"for":"htmlFor","class":"c=
lassName",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpac=
ing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useM=
ap",frameborder:"frameBorder"};var =
G=3D"jQuery"+J(),Ya=3D0,za=3D{};c.extend({cache:{},expando:G,noData:{embe=
d:true,object:true,=0A=
applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.to=
LowerCase()])){a=3Da=3D=3DA?za:a;var f=3Da[G],e=3Dc.cache;if(!f&&typeof =
b=3D=3D=3D"string"&&d=3D=3D=3Dw)return null;f||(f=3D++Ya);if(typeof =
b=3D=3D=3D"object"){a[G]=3Df;e[f]=3Dc.extend(true,{},b)}else =
if(!e[f]){a[G]=3Df;e[f]=3D{}}a=3De[f];if(d!=3D=3Dw)a[b]=3Dd;return =
typeof =
b=3D=3D=3D"string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.n=
oData[a.nodeName.toLowerCase()])){a=3Da=3D=3DA?za:a;var =
d=3Da[G],f=3Dc.cache,e=3Df[d];if(b){if(e){delete =
e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando=
)delete a[c.expando];=0A=
else a.removeAttribute&&a.removeAttribute(c.expando);delete =
f[d]}}}});c.fn.extend({data:function(a,b){if(typeof =
a=3D=3D=3D"undefined"&&this.length)return c.data(this[0]);else if(typeof =
a=3D=3D=3D"object")return this.each(function(){c.data(this,a)});var =
d=3Da.split(".");d[1]=3Dd[1]?"."+d[1]:"";if(b=3D=3D=3Dw){var =
f=3Dthis.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f=3D=3D=3Dw&&this.l=
ength)f=3Dc.data(this[0],a);return =
f=3D=3D=3Dw&&d[1]?this.data(d[0]):f}else return =
this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this,=0A=
a,b)})},removeData:function(a){return =
this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a=
,b,d){if(a){b=3D(b||"fx")+"queue";var f=3Dc.data(a,b);if(!d)return =
f||[];if(!f||c.isArray(d))f=3Dc.data(a,b,c.makeArray(d));else =
f.push(d);return f}},dequeue:function(a,b){b=3Db||"fx";var =
d=3Dc.queue(a,b),f=3Dd.shift();if(f=3D=3D=3D"inprogress")f=3Dd.shift();if=
(f){b=3D=3D=3D"fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue=
(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof =
a!=3D=3D"string"){b=3Da;a=3D"fx"}if(b=3D=3D=3D=0A=
w)return c.queue(this[0],a);return this.each(function(){var =
d=3Dc.queue(this,a,b);a=3D=3D=3D"fx"&&d[0]!=3D=3D"inprogress"&&c.dequeue(=
this,a)})},dequeue:function(a){return =
this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=3Dc.fx?c.=
fx.speeds[a]||a:a;b=3Db||"fx";return this.queue(b,function(){var =
d=3Dthis;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(=
a){return this.queue(a||"fx",[])}});var =
Aa=3D/[\n\t]/g,ca=3D/\s+/,Za=3D/\r/g,$a=3D/href|src|style/,ab=3D/(button|=
input)/i,bb=3D/(button|input|object|select|textarea)/i,=0A=
cb=3D/^(a|area)$/i,Ba=3D/radio|checkbox/;c.fn.extend({attr:function(a,b){=
return X(this,a,b,true,c.attr)},removeAttr:function(a){return =
this.each(function(){c.attr(this,a,"");this.nodeType=3D=3D=3D1&&this.remo=
veAttribute(a)})},addClass:function(a){if(c.isFunction(a))return =
this.each(function(n){var =
r=3Dc(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof =
a=3D=3D=3D"string")for(var =
b=3D(a||"").split(ca),d=3D0,f=3Dthis.length;d<f;d++){var =
e=3Dthis[d];if(e.nodeType=3D=3D=3D1)if(e.className){for(var j=3D" =
"+e.className+" ",=0A=
i=3De.className,o=3D0,k=3Db.length;o<k;o++)if(j.indexOf(" "+b[o]+" =
")<0)i+=3D" "+b[o];e.className=3Dc.trim(i)}else e.className=3Da}return =
this},removeClass:function(a){if(c.isFunction(a))return =
this.each(function(k){var =
n=3Dc(this);n.removeClass(a.call(this,k,n.attr("class")))});if(a&&typeof =
a=3D=3D=3D"string"||a=3D=3D=3Dw)for(var =
b=3D(a||"").split(ca),d=3D0,f=3Dthis.length;d<f;d++){var =
e=3Dthis[d];if(e.nodeType=3D=3D=3D1&&e.className)if(a){for(var j=3D(" =
"+e.className+" ").replace(Aa," =
"),i=3D0,o=3Db.length;i<o;i++)j=3Dj.replace(" "+b[i]+" ",=0A=
" ");e.className=3Dc.trim(j)}else e.className=3D""}return =
this},toggleClass:function(a,b){var d=3Dtypeof a,f=3Dtypeof =
b=3D=3D=3D"boolean";if(c.isFunction(a))return this.each(function(e){var =
j=3Dc(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return =
this.each(function(){if(d=3D=3D=3D"string")for(var =
e,j=3D0,i=3Dc(this),o=3Db,k=3Da.split(ca);e=3Dk[j++];){o=3Df?o:!i.hasClas=
s(e);i[o?"addClass":"removeClass"](e)}else =
if(d=3D=3D=3D"undefined"||d=3D=3D=3D"boolean"){this.className&&c.data(thi=
s,"__className__",this.className);this.className=3D=0A=
this.className||a=3D=3D=3Dfalse?"":c.data(this,"__className__")||""}})},h=
asClass:function(a){a=3D" "+a+" ";for(var =
b=3D0,d=3Dthis.length;b<d;b++)if((" "+this[b].className+" =
").replace(Aa," ").indexOf(a)>-1)return true;return =
false},val:function(a){if(a=3D=3D=3Dw){var =
b=3Dthis[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}=
).specified?b.value:b.text;if(c.nodeName(b,"select")){var =
d=3Db.selectedIndex,f=3D[],e=3Db.options;b=3Db.type=3D=3D=3D"select-one";=
if(d<0)return null;var j=3Db?d:0;for(d=3Db?d+1:e.length;j<d;j++){var i=3D=0A=
e[j];if(i.selected){a=3Dc(i).val();if(b)return a;f.push(a)}}return =
f}if(Ba.test(b.type)&&!c.support.checkOn)return =
b.getAttribute("value")=3D=3D=3Dnull?"on":b.value;return(b.value||"").rep=
lace(Za,"")}return w}var o=3Dc.isFunction(a);return =
this.each(function(k){var =
n=3Dc(this),r=3Da;if(this.nodeType=3D=3D=3D1){if(o)r=3Da.call(this,k,n.va=
l());if(typeof =
r=3D=3D=3D"number")r+=3D"";if(c.isArray(r)&&Ba.test(this.type))this.check=
ed=3Dc.inArray(n.val(),r)>=3D0;else if(c.nodeName(this,"select")){var =
u=3Dc.makeArray(r);c("option",this).each(function(){this.selected=3D=0A=
c.inArray(c(this).val(),u)>=3D0});if(!u.length)this.selectedIndex=3D-1}el=
se =
this.value=3Dr}})}});c.extend({attrFn:{val:true,css:true,html:true,text:t=
rue,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){=
if(!a||a.nodeType=3D=3D=3D3||a.nodeType=3D=3D=3D8)return w;if(f&&b in =
c.attrFn)return c(a)[b](d);f=3Da.nodeType!=3D=3D1||!c.isXMLDoc(a);var =
e=3Dd!=3D=3Dw;b=3Df&&c.props[b]||b;if(a.nodeType=3D=3D=3D1){var =
j=3D$a.test(b);if(b in =
a&&f&&!j){if(e){b=3D=3D=3D"type"&&ab.test(a.nodeName)&&a.parentNode&&c.er=
ror("type property can't be changed");=0A=
a[b]=3Dd}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return =
a.getAttributeNode(b).nodeValue;if(b=3D=3D=3D"tabIndex")return(b=3Da.getA=
ttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.te=
st(a.nodeName)&&a.href?0:w;return =
a[b]}if(!c.support.style&&f&&b=3D=3D=3D"style"){if(e)a.style.cssText=3D""=
+d;return =
a.style.cssText}e&&a.setAttribute(b,""+d);a=3D!c.support.hrefNormalized&&=
f&&j?a.getAttribute(b,2):a.getAttribute(b);return =
a=3D=3D=3Dnull?w:a}return c.style(a,b,d)}});var =
O=3D/\.(.*)$/,db=3Dfunction(a){return a.replace(/[^\w\s\.\|`]/g,=0A=
function(b){return"\\"+b})};c.event=3D{add:function(a,b,d,f){if(!(a.nodeT=
ype=3D=3D=3D3||a.nodeType=3D=3D=3D8)){if(a.setInterval&&a!=3D=3DA&&!a.fra=
meElement)a=3DA;var =
e,j;if(d.handler){e=3Dd;d=3De.handler}if(!d.guid)d.guid=3Dc.guid++;if(j=3D=
c.data(a)){var =
i=3Dj.events=3Dj.events||{},o=3Dj.handle;if(!o)j.handle=3Do=3Dfunction(){=
return typeof =
c!=3D=3D"undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,argum=
ents):w};o.elem=3Da;b=3Db.split(" ");for(var =
k,n=3D0,r;k=3Db[n++];){j=3De?c.extend({},e):{handler:d,data:f};if(k.index=
Of(".")>-1){r=3Dk.split(".");=0A=
k=3Dr.shift();j.namespace=3Dr.slice(0).sort().join(".")}else{r=3D[];j.nam=
espace=3D""}j.type=3Dk;j.guid=3Dd.guid;var =
u=3Di[k],z=3Dc.event.special[k]||{};if(!u){u=3Di[k]=3D[];if(!z.setup||z.s=
etup.call(a,f,r,o)=3D=3D=3Dfalse)if(a.addEventListener)a.addEventListener=
(k,o,false);else =
a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.ha=
ndler.guid)j.handler.guid=3Dd.guid}u.push(j);c.event.global[k]=3Dtrue}a=3D=
null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType=3D=3D=3D3||a.n=
odeType=3D=3D=3D8)){var e,j=3D0,i,o,k,n,r,u,z=3Dc.data(a),=0A=
C=3Dz&&z.events;if(z&&C){if(b&&b.type){d=3Db.handler;b=3Db.type}if(!b||ty=
peof b=3D=3D=3D"string"&&b.charAt(0)=3D=3D=3D"."){b=3Db||"";for(e in =
C)c.event.remove(a,e+b)}else{for(b=3Db.split(" =
");e=3Db[j++];){n=3De;i=3De.indexOf(".")<0;o=3D[];if(!i){o=3De.split(".")=
;e=3Do.shift();k=3Dnew =
RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|=
$)")}if(r=3DC[e])if(d){n=3Dc.event.special[e]||{};for(B=3Df||0;B<r.length=
;B++){u=3Dr[B];if(d.guid=3D=3D=3Du.guid){if(i||k.test(u.namespace)){f=3D=3D=
null&&r.splice(B--,1);n.remove&&n.remove.call(a,u)}if(f!=3D=0A=
null)break}}if(r.length=3D=3D=3D0||f!=3Dnull&&r.length=3D=3D=3D1){if(!n.t=
eardown||n.teardown.call(a,o)=3D=3D=3Dfalse)Ca(a,e,z.handle);delete =
C[e]}}else for(var =
B=3D0;B<r.length;B++){u=3Dr[B];if(i||k.test(u.namespace)){c.event.remove(=
a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=3Dz.handle=
)b.elem=3Dnull;delete z.events;delete =
z.handle;c.isEmptyObject(z)&&c.removeData(a)}}}}},trigger:function(a,b,d,=
f){var e=3Da.type||a;if(!f){a=3Dtypeof =
a=3D=3D=3D"object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf(=
"!")>=3D0){a.type=3D=0A=
e=3De.slice(0,-1);a.exclusive=3Dtrue}if(!d){a.stopPropagation();c.event.g=
lobal[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.=
trigger(a,b,this.handle.elem)})}if(!d||d.nodeType=3D=3D=3D3||d.nodeType=3D=
=3D=3D8)return =
w;a.result=3Dw;a.target=3Dd;b=3Dc.makeArray(b);b.unshift(a)}a.currentTarg=
et=3Dd;(f=3Dc.data(d,"handle"))&&f.apply(d,b);f=3Dd.parentNode||d.ownerDo=
cument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["=
on"+e]&&d["on"+e].apply(d,b)=3D=3D=3Dfalse)a.result=3Dfalse}catch(j){}if(=
!a.isPropagationStopped()&&=0A=
f)c.event.trigger(a,b,f,true);else =
if(!a.isDefaultPrevented()){f=3Da.target;var =
i,o=3Dc.nodeName(f,"a")&&e=3D=3D=3D"click",k=3Dc.event.special[e]||{};if(=
(!k._default||k._default.call(d,a)=3D=3D=3Dfalse)&&!o&&!(f&&f.nodeName&&c=
.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=3Df["on"+e])f["on"+=
e]=3Dnull;c.event.triggered=3Dtrue;f[e]()}}catch(n){}if(i)f["on"+e]=3Di;c=
.event.triggered=3Dfalse}}},handle:function(a){var =
b,d,f,e;a=3Darguments[0]=3Dc.event.fix(a||A.event);a.currentTarget=3Dthis=
;b=3Da.type.indexOf(".")<0&&!a.exclusive;=0A=
if(!b){d=3Da.type.split(".");a.type=3Dd.shift();f=3Dnew =
RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=3Dc=
.data(this,"events");d=3De[a.type];if(e&&d){d=3Dd.slice(0);e=3D0;for(var =
j=3Dd.length;e<j;e++){var =
i=3Dd[e];if(b||f.test(i.namespace)){a.handler=3Di.handler;a.data=3Di.data=
;a.handleObj=3Di;i=3Di.handler.apply(this,arguments);if(i!=3D=3Dw){a.resu=
lt=3Di;if(i=3D=3D=3Dfalse){a.preventDefault();a.stopPropagation()}}if(a.i=
sImmediatePropagationStopped())break}}}return a.result},props:"altKey =
attrChange attrName bubbles button cancelable charCode clientX clientY =
ctrlKey currentTarget data detail eventPhase fromElement handler keyCode =
layerX layerY metaKey newValue offsetX offsetY originalTarget pageX =
pageY prevValue relatedNode relatedTarget screenX screenY shiftKey =
srcElement target toElement view wheelDelta which".split(" "),=0A=
fix:function(a){if(a[G])return a;var b=3Da;a=3Dc.Event(b);for(var =
d=3Dthis.props.length,f;d;){f=3Dthis.props[--d];a[f]=3Db[f]}if(!a.target)=
a.target=3Da.srcElement||s;if(a.target.nodeType=3D=3D=3D3)a.target=3Da.ta=
rget.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=3Da.fr=
omElement=3D=3D=3Da.target?a.toElement:a.fromElement;if(a.pageX=3D=3Dnull=
&&a.clientX!=3Dnull){b=3Ds.documentElement;d=3Ds.body;a.pageX=3Da.clientX=
+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft|=
|0);a.pageY=3Da.clientY+(b&&b.scrollTop||=0A=
d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(!a.which&&(a.ch=
arCode||a.charCode=3D=3D=3D0?a.charCode:a.keyCode))a.which=3Da.charCode||=
a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=3Da.ctrlKey;if(!a.which&&a.b=
utton!=3D=3Dw)a.which=3Da.button&1?1:a.button&2?3:a.button&4?2:0;return =
a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.no=
op},live:{add:function(a){c.event.add(this,a.origType,c.extend({},a,{hand=
ler:oa}))},remove:function(a){var =
b=3Dtrue,d=3Da.origType.replace(O,"");c.each(c.data(this,=0A=
"events").live||[],function(){if(d=3D=3D=3Dthis.origType.replace(O,""))re=
turn =
b=3Dfalse});b&&c.event.remove(this,a.origType,oa)}},beforeunload:{setup:f=
unction(a,b,d){if(this.setInterval)this.onbeforeunload=3Dd;return =
false},teardown:function(a,b){if(this.onbeforeunload=3D=3D=3Db)this.onbef=
oreunload=3Dnull}}}};var =
Ca=3Ds.removeEventListener?function(a,b,d){a.removeEventListener(b,d,fals=
e)}:function(a,b,d){a.detachEvent("on"+b,d)};c.Event=3Dfunction(a){if(!th=
is.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=3D=0A=
a;this.type=3Da.type}else =
this.type=3Da;this.timeStamp=3DJ();this[G]=3Dtrue};c.Event.prototype=3D{p=
reventDefault:function(){this.isDefaultPrevented=3DZ;var =
a=3Dthis.originalEvent;if(a){a.preventDefault&&a.preventDefault();a.retur=
nValue=3Dfalse}},stopPropagation:function(){this.isPropagationStopped=3DZ=
;var =
a=3Dthis.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.can=
celBubble=3Dtrue}},stopImmediatePropagation:function(){this.isImmediatePr=
opagationStopped=3DZ;this.stopPropagation()},isDefaultPrevented:Y,isPropa=
gationStopped:Y,=0A=
isImmediatePropagationStopped:Y};var Da=3Dfunction(a){var =
b=3Da.relatedTarget;try{for(;b&&b!=3D=3Dthis;)b=3Db.parentNode;if(b!=3D=3D=
this){a.type=3Da.data;c.event.handle.apply(this,arguments)}}catch(d){}},E=
a=3Dfunction(a){a.type=3Da.data;c.event.handle.apply(this,arguments)};c.e=
ach({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.=
special[a]=3D{setup:function(d){c.event.add(this,b,d&&d.selector?Ea:Da,a)=
},teardown:function(d){c.event.remove(this,b,d&&d.selector?Ea:Da)}}});if(=
!c.support.submitBubbles)c.event.special.submit=3D=0A=
{setup:function(){if(this.nodeName.toLowerCase()!=3D=3D"form"){c.event.ad=
d(this,"click.specialSubmit",function(a){var =
b=3Da.target,d=3Db.type;if((d=3D=3D=3D"submit"||d=3D=3D=3D"image")&&c(b).=
closest("form").length)return =
na("submit",this,arguments)});c.event.add(this,"keypress.specialSubmit",f=
unction(a){var =
b=3Da.target,d=3Db.type;if((d=3D=3D=3D"text"||d=3D=3D=3D"password")&&c(b)=
.closest("form").length&&a.keyCode=3D=3D=3D13)return =
na("submit",this,arguments)})}else return =
false},teardown:function(){c.event.remove(this,".specialSubmit")}};=0A=
if(!c.support.changeBubbles){var =
da=3D/textarea|input|select/i,ea,Fa=3Dfunction(a){var =
b=3Da.type,d=3Da.value;if(b=3D=3D=3D"radio"||b=3D=3D=3D"checkbox")d=3Da.c=
hecked;else =
if(b=3D=3D=3D"select-multiple")d=3Da.selectedIndex>-1?c.map(a.options,fun=
ction(f){return f.selected}).join("-"):"";else =
if(a.nodeName.toLowerCase()=3D=3D=3D"select")d=3Da.selectedIndex;return =
d},fa=3Dfunction(a,b){var =
d=3Da.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=3Dc.data(d,"_c=
hange_data");e=3DFa(d);if(a.type!=3D=3D"focusout"||d.type!=3D=3D"radio")c=
.data(d,"_change_data",=0A=
e);if(!(f=3D=3D=3Dw||e=3D=3D=3Df))if(f!=3Dnull||e){a.type=3D"change";retu=
rn =
c.event.trigger(a,b,d)}}};c.event.special.change=3D{filters:{focusout:fa,=
click:function(a){var =
b=3Da.target,d=3Db.type;if(d=3D=3D=3D"radio"||d=3D=3D=3D"checkbox"||b.nod=
eName.toLowerCase()=3D=3D=3D"select")return =
fa.call(this,a)},keydown:function(a){var =
b=3Da.target,d=3Db.type;if(a.keyCode=3D=3D=3D13&&b.nodeName.toLowerCase()=
!=3D=3D"textarea"||a.keyCode=3D=3D=3D32&&(d=3D=3D=3D"checkbox"||d=3D=3D=3D=
"radio")||d=3D=3D=3D"select-multiple")return =
fa.call(this,a)},beforeactivate:function(a){a=3Da.target;c.data(a,=0A=
"_change_data",Fa(a))}},setup:function(){if(this.type=3D=3D=3D"file")retu=
rn false;for(var a in =
ea)c.event.add(this,a+".specialChange",ea[a]);return =
da.test(this.nodeName)},teardown:function(){c.event.remove(this,".special=
Change");return =
da.test(this.nodeName)}};ea=3Dc.event.special.change.filters}s.addEventLi=
stener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function =
d(f){f=3Dc.event.fix(f);f.type=3Db;return =
c.event.handle.call(this,f)}c.event.special[b]=3D{setup:function(){this.a=
ddEventListener(a,=0A=
d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.eac=
h(["bind","one"],function(a,b){c.fn[b]=3Dfunction(d,f,e){if(typeof =
d=3D=3D=3D"object"){for(var j in d)this[b](j,f,d[j],e);return =
this}if(c.isFunction(f)){e=3Df;f=3Dw}var =
i=3Db=3D=3D=3D"one"?c.proxy(e,function(k){c(this).unbind(k,i);return =
e.apply(this,arguments)}):e;if(d=3D=3D=3D"unload"&&b!=3D=3D"one")this.one=
(d,f,e);else{j=3D0;for(var =
o=3Dthis.length;j<o;j++)c.event.add(this[j],d,i,f)}return =
this}});c.fn.extend({unbind:function(a,b){if(typeof a=3D=3D=3D"object"&&=0A=
!a.preventDefault)for(var d in a)this.unbind(d,a[d]);else{d=3D0;for(var =
f=3Dthis.length;d<f;d++)c.event.remove(this[d],a,b)}return =
this},delegate:function(a,b,d,f){return =
this.live(b,d,f,a)},undelegate:function(a,b,d){return =
arguments.length=3D=3D=3D0?this.unbind("live"):this.die(b,null,d,a)},trig=
ger:function(a,b){return =
this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function=
(a,b){if(this[0]){a=3Dc.Event(a);a.preventDefault();a.stopPropagation();c=
.event.trigger(a,b,this[0]);return a.result}},=0A=
toggle:function(a){for(var =
b=3Darguments,d=3D1;d<b.length;)c.proxy(a,b[d++]);return =
this.click(c.proxy(a,function(f){var =
e=3D(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.gu=
id,e+1);f.preventDefault();return =
b[e].apply(this,arguments)||false}))},hover:function(a,b){return =
this.mouseenter(a).mouseleave(b||a)}});var =
Ga=3D{focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"=
mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=3Dfunction(d,f,e,j=
){var i,o=3D0,k,n,r=3Dj||this.selector,=0A=
u=3Dj?this:c(this.context);if(c.isFunction(f)){e=3Df;f=3Dw}for(d=3D(d||""=
).split(" =
");(i=3Dd[o++])!=3Dnull;){j=3DO.exec(i);k=3D"";if(j){k=3Dj[0];i=3Di.repla=
ce(O,"")}if(i=3D=3D=3D"hover")d.push("mouseenter"+k,"mouseleave"+k);else{=
n=3Di;if(i=3D=3D=3D"focus"||i=3D=3D=3D"blur"){d.push(Ga[i]+k);i+=3Dk}else=
 =
i=3D(Ga[i]||i)+k;b=3D=3D=3D"live"?u.each(function(){c.event.add(this,pa(i=
,r),{data:f,selector:r,handler:e,origType:i,origHandler:e,preType:n})}):u=
.unbind(pa(i,r),e)}}return this}});c.each("blur focus focusin focusout =
load resize scroll unload click dblclick mousedown mouseup mousemove =
mouseover mouseout mouseenter mouseleave change select submit keydown =
keypress keyup error".split(" "),=0A=
function(a,b){c.fn[b]=3Dfunction(d){return =
d?this.bind(b,d):this.trigger(b)};if(c.attrFn)c.attrFn[b]=3Dtrue});A.atta=
chEvent&&!A.addEventListener&&A.attachEvent("onunload",function(){for(var=
 a in =
c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}c=
atch(b){}});(function(){function a(g){for(var =
h=3D"",l,m=3D0;g[m];m++){l=3Dg[m];if(l.nodeType=3D=3D=3D3||l.nodeType=3D=3D=
=3D4)h+=3Dl.nodeValue;else =
if(l.nodeType!=3D=3D8)h+=3Da(l.childNodes)}return h}function =
b(g,h,l,m,q,p){q=3D0;for(var v=3Dm.length;q<v;q++){var t=3Dm[q];=0A=
if(t){t=3Dt[g];for(var =
y=3Dfalse;t;){if(t.sizcache=3D=3D=3Dl){y=3Dm[t.sizset];break}if(t.nodeTyp=
e=3D=3D=3D1&&!p){t.sizcache=3Dl;t.sizset=3Dq}if(t.nodeName.toLowerCase()=3D=
=3D=3Dh){y=3Dt;break}t=3Dt[g]}m[q]=3Dy}}}function =
d(g,h,l,m,q,p){q=3D0;for(var v=3Dm.length;q<v;q++){var =
t=3Dm[q];if(t){t=3Dt[g];for(var =
y=3Dfalse;t;){if(t.sizcache=3D=3D=3Dl){y=3Dm[t.sizset];break}if(t.nodeTyp=
e=3D=3D=3D1){if(!p){t.sizcache=3Dl;t.sizset=3Dq}if(typeof =
h!=3D=3D"string"){if(t=3D=3D=3Dh){y=3Dtrue;break}}else =
if(k.filter(h,[t]).length>0){y=3Dt;break}}t=3Dt[g]}m[q]=3Dy}}}var =
f=3D/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]=
'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,=0A=
e=3D0,j=3DObject.prototype.toString,i=3Dfalse,o=3Dtrue;[0,0].sort(functio=
n(){o=3Dfalse;return 0});var k=3Dfunction(g,h,l,m){l=3Dl||[];var =
q=3Dh=3Dh||s;if(h.nodeType!=3D=3D1&&h.nodeType!=3D=3D9)return[];if(!g||ty=
peof g!=3D=3D"string")return l;for(var =
p=3D[],v,t,y,S,H=3Dtrue,M=3Dx(h),I=3Dg;(f.exec(""),v=3Df.exec(I))!=3D=3Dn=
ull;){I=3Dv[3];p.push(v[1]);if(v[2]){S=3Dv[3];break}}if(p.length>1&&r.exe=
c(g))if(p.length=3D=3D=3D2&&n.relative[p[0]])t=3Dga(p[0]+p[1],h);else =
for(t=3Dn.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=3Dp.shift();if(n=
.relative[g])g+=3Dp.shift();=0A=
t=3Dga(g,t)}else{if(!m&&p.length>1&&h.nodeType=3D=3D=3D9&&!M&&n.match.ID.=
test(p[0])&&!n.match.ID.test(p[p.length-1])){v=3Dk.find(p.shift(),h,M);h=3D=
v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=3Dm?{expr:p.pop(),set:z=
(m)}:k.find(p.pop(),p.length=3D=3D=3D1&&(p[0]=3D=3D=3D"~"||p[0]=3D=3D=3D"=
+")&&h.parentNode?h.parentNode:h,M);t=3Dv.expr?k.filter(v.expr,v.set):v.s=
et;if(p.length>0)y=3Dz(t);else H=3Dfalse;for(;p.length;){var =
D=3Dp.pop();v=3DD;if(n.relative[D])v=3Dp.pop();else =
D=3D"";if(v=3D=3Dnull)v=3Dh;n.relative[D](y,v,M)}}else =
y=3D[]}y||(y=3Dt);y||k.error(D||=0A=
g);if(j.call(y)=3D=3D=3D"[object =
Array]")if(H)if(h&&h.nodeType=3D=3D=3D1)for(g=3D0;y[g]!=3Dnull;g++){if(y[=
g]&&(y[g]=3D=3D=3Dtrue||y[g].nodeType=3D=3D=3D1&&E(h,y[g])))l.push(t[g])}=
else =
for(g=3D0;y[g]!=3Dnull;g++)y[g]&&y[g].nodeType=3D=3D=3D1&&l.push(t[g]);el=
se l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return =
l};k.uniqueSort=3Dfunction(g){if(B){i=3Do;g.sort(B);if(i)for(var =
h=3D1;h<g.length;h++)g[h]=3D=3D=3Dg[h-1]&&g.splice(h--,1)}return =
g};k.matches=3Dfunction(g,h){return =
k(g,null,null,h)};k.find=3Dfunction(g,h,l){var m,q;if(!g)return[];=0A=
for(var p=3D0,v=3Dn.order.length;p<v;p++){var =
t=3Dn.order[p];if(q=3Dn.leftMatch[t].exec(g)){var =
y=3Dq[1];q.splice(1,1);if(y.substr(y.length-1)!=3D=3D"\\"){q[1]=3D(q[1]||=
"").replace(/\\/g,"");m=3Dn.find[t](q,h,l);if(m!=3Dnull){g=3Dg.replace(n.=
match[t],"");break}}}}m||(m=3Dh.getElementsByTagName("*"));return{set:m,e=
xpr:g}};k.filter=3Dfunction(g,h,l,m){for(var =
q=3Dg,p=3D[],v=3Dh,t,y,S=3Dh&&h[0]&&x(h[0]);g&&h.length;){for(var H in =
n.filter)if((t=3Dn.leftMatch[H].exec(g))!=3Dnull&&t[2]){var =
M=3Dn.filter[H],I,D;D=3Dt[1];y=3Dfalse;t.splice(1,1);if(D.substr(D.length=
-=0A=
1)!=3D=3D"\\"){if(v=3D=3D=3Dp)p=3D[];if(n.preFilter[H])if(t=3Dn.preFilter=
[H](t,v,l,p,m,S)){if(t=3D=3D=3Dtrue)continue}else =
y=3DI=3Dtrue;if(t)for(var =
U=3D0;(D=3Dv[U])!=3Dnull;U++)if(D){I=3DM(D,t,U,v);var =
Ha=3Dm^!!I;if(l&&I!=3Dnull)if(Ha)y=3Dtrue;else v[U]=3Dfalse;else =
if(Ha){p.push(D);y=3Dtrue}}if(I!=3D=3Dw){l||(v=3Dp);g=3Dg.replace(n.match=
[H],"");if(!y)return[];break}}}if(g=3D=3D=3Dq)if(y=3D=3Dnull)k.error(g);e=
lse break;q=3Dg}return v};k.error=3Dfunction(g){throw"Syntax error, =
unrecognized expression: "+g;};var =
n=3Dk.selectors=3D{order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\u=
FFFF-]|\\.)+)/,=0A=
CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=3D['"]*((?:[\w\u00c0=
-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\=
S?=3D)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CH=
ILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth=
|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=3D[^-]|$)/,PSEUDO:/:((?:[\=
w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},lef=
tMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:=
function(g){return g.getAttribute("href")}},=0A=
relative:{"+":function(g,h){var l=3Dtypeof =
h=3D=3D=3D"string",m=3Dl&&!/\W/.test(h);l=3Dl&&!m;if(m)h=3Dh.toLowerCase(=
);m=3D0;for(var =
q=3Dg.length,p;m<q;m++)if(p=3Dg[m]){for(;(p=3Dp.previousSibling)&&p.nodeT=
ype!=3D=3D1;);g[m]=3Dl||p&&p.nodeName.toLowerCase()=3D=3D=3Dh?p||false:p=3D=
=3D=3Dh}l&&k.filter(h,g,true)},">":function(g,h){var l=3Dtypeof =
h=3D=3D=3D"string";if(l&&!/\W/.test(h)){h=3Dh.toLowerCase();for(var =
m=3D0,q=3Dg.length;m<q;m++){var =
p=3Dg[m];if(p){l=3Dp.parentNode;g[m]=3Dl.nodeName.toLowerCase()=3D=3D=3Dh=
?l:false}}}else{m=3D0;for(q=3Dg.length;m<q;m++)if(p=3Dg[m])g[m]=3D=0A=
l?p.parentNode:p.parentNode=3D=3D=3Dh;l&&k.filter(h,g,true)}},"":function=
(g,h,l){var m=3De++,q=3Dd;if(typeof =
h=3D=3D=3D"string"&&!/\W/.test(h)){var =
p=3Dh=3Dh.toLowerCase();q=3Db}q("parentNode",h,m,g,p,l)},"~":function(g,h=
,l){var m=3De++,q=3Dd;if(typeof h=3D=3D=3D"string"&&!/\W/.test(h)){var =
p=3Dh=3Dh.toLowerCase();q=3Db}q("previousSibling",h,m,g,p,l)}},find:{ID:f=
unction(g,h,l){if(typeof =
h.getElementById!=3D=3D"undefined"&&!l)return(g=3Dh.getElementById(g[1]))=
?[g]:[]},NAME:function(g,h){if(typeof =
h.getElementsByName!=3D=3D"undefined"){var l=3D[];=0A=
h=3Dh.getElementsByName(g[1]);for(var =
m=3D0,q=3Dh.length;m<q;m++)h[m].getAttribute("name")=3D=3D=3Dg[1]&&l.push=
(h[m]);return l.length=3D=3D=3D0?null:l}},TAG:function(g,h){return =
h.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,h,l,m,q,p){g=3D=
" "+g[1].replace(/\\/g,"")+" ";if(p)return g;p=3D0;for(var =
v;(v=3Dh[p])!=3Dnull;p++)if(v)if(q^(v.className&&(" "+v.className+" =
").replace(/[\t\n]/g," ").indexOf(g)>=3D0))l||m.push(v);else =
if(l)h[p]=3Dfalse;return false},ID:function(g){return =
g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},=0A=
CHILD:function(g){if(g[1]=3D=3D=3D"nth"){var =
h=3D/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]=3D=3D=3D"even"&&"2n"||g[2]=3D=3D=
=3D"odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=3Dh[1]+(h[2]||=
1)-0;g[3]=3Dh[3]-0}g[0]=3De++;return =
g},ATTR:function(g,h,l,m,q,p){h=3Dg[1].replace(/\\/g,"");if(!p&&n.attrMap=
[h])g[1]=3Dn.attrMap[h];if(g[2]=3D=3D=3D"~=3D")g[4]=3D" "+g[4]+" =
";return =
g},PSEUDO:function(g,h,l,m,q){if(g[1]=3D=3D=3D"not")if((f.exec(g[3])||"")=
.length>1||/^\w/.test(g[3]))g[3]=3Dk(g[3],null,null,h);else{g=3Dk.filter(=
g[3],h,l,true^q);l||m.push.apply(m,=0A=
g);return false}else =
if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return =
g},POS:function(g){g.unshift(true);return =
g}},filters:{enabled:function(g){return =
g.disabled=3D=3D=3Dfalse&&g.type!=3D=3D"hidden"},disabled:function(g){ret=
urn g.disabled=3D=3D=3Dtrue},checked:function(g){return =
g.checked=3D=3D=3Dtrue},selected:function(g){return =
g.selected=3D=3D=3Dtrue},parent:function(g){return!!g.firstChild},empty:f=
unction(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).len=
gth},header:function(g){return/h\d/i.test(g.nodeName)},=0A=
text:function(g){return"text"=3D=3D=3Dg.type},radio:function(g){return"ra=
dio"=3D=3D=3Dg.type},checkbox:function(g){return"checkbox"=3D=3D=3Dg.type=
},file:function(g){return"file"=3D=3D=3Dg.type},password:function(g){retu=
rn"password"=3D=3D=3Dg.type},submit:function(g){return"submit"=3D=3D=3Dg.=
type},image:function(g){return"image"=3D=3D=3Dg.type},reset:function(g){r=
eturn"reset"=3D=3D=3Dg.type},button:function(g){return"button"=3D=3D=3Dg.=
type||g.nodeName.toLowerCase()=3D=3D=3D"button"},input:function(g){return=
/input|select|textarea|button/i.test(g.nodeName)}},=0A=
setFilters:{first:function(g,h){return =
h=3D=3D=3D0},last:function(g,h,l,m){return =
h=3D=3D=3Dm.length-1},even:function(g,h){return =
h%2=3D=3D=3D0},odd:function(g,h){return =
h%2=3D=3D=3D1},lt:function(g,h,l){return =
h<l[3]-0},gt:function(g,h,l){return h>l[3]-0},nth:function(g,h,l){return =
l[3]-0=3D=3D=3Dh},eq:function(g,h,l){return =
l[3]-0=3D=3D=3Dh}},filter:{PSEUDO:function(g,h,l,m){var =
q=3Dh[1],p=3Dn.filters[q];if(p)return p(g,l,h,m);else =
if(q=3D=3D=3D"contains")return(g.textContent||g.innerText||a([g])||"").in=
dexOf(h[3])>=3D0;else if(q=3D=3D=3D"not"){h=3D=0A=
h[3];l=3D0;for(m=3Dh.length;l<m;l++)if(h[l]=3D=3D=3Dg)return =
false;return true}else k.error("Syntax error, unrecognized expression: =
"+q)},CHILD:function(g,h){var l=3Dh[1],m=3Dg;switch(l){case "only":case =
"first":for(;m=3Dm.previousSibling;)if(m.nodeType=3D=3D=3D1)return =
false;if(l=3D=3D=3D"first")return true;m=3Dg;case =
"last":for(;m=3Dm.nextSibling;)if(m.nodeType=3D=3D=3D1)return =
false;return true;case "nth":l=3Dh[2];var =
q=3Dh[3];if(l=3D=3D=3D1&&q=3D=3D=3D0)return true;h=3Dh[0];var =
p=3Dg.parentNode;if(p&&(p.sizcache!=3D=3Dh||!g.nodeIndex)){var =
v=3D0;for(m=3Dp.firstChild;m;m=3D=0A=
m.nextSibling)if(m.nodeType=3D=3D=3D1)m.nodeIndex=3D++v;p.sizcache=3Dh}g=3D=
g.nodeIndex-q;return =
l=3D=3D=3D0?g=3D=3D=3D0:g%l=3D=3D=3D0&&g/l>=3D0}},ID:function(g,h){return=
 =
g.nodeType=3D=3D=3D1&&g.getAttribute("id")=3D=3D=3Dh},TAG:function(g,h){r=
eturn =
h=3D=3D=3D"*"&&g.nodeType=3D=3D=3D1||g.nodeName.toLowerCase()=3D=3D=3Dh},=
CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" =
").indexOf(h)>-1},ATTR:function(g,h){var =
l=3Dh[1];g=3Dn.attrHandle[l]?n.attrHandle[l](g):g[l]!=3Dnull?g[l]:g.getAt=
tribute(l);l=3Dg+"";var m=3Dh[2];h=3Dh[4];return =
g=3D=3Dnull?m=3D=3D=3D"!=3D":m=3D=3D=3D=0A=
"=3D"?l=3D=3D=3Dh:m=3D=3D=3D"*=3D"?l.indexOf(h)>=3D0:m=3D=3D=3D"~=3D"?(" =
"+l+" =
").indexOf(h)>=3D0:!h?l&&g!=3D=3Dfalse:m=3D=3D=3D"!=3D"?l!=3D=3Dh:m=3D=3D=
=3D"^=3D"?l.indexOf(h)=3D=3D=3D0:m=3D=3D=3D"$=3D"?l.substr(l.length-h.len=
gth)=3D=3D=3Dh:m=3D=3D=3D"|=3D"?l=3D=3D=3Dh||l.substr(0,h.length+1)=3D=3D=
=3Dh+"-":false},POS:function(g,h,l,m){var =
q=3Dn.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=3Dn.match.POS;for(var =
u in n.match){n.match[u]=3Dnew =
RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u=
]=3Dnew =
RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,fun=
ction(g,=0A=
h){return"\\"+(h-0+1)}))}var =
z=3Dfunction(g,h){g=3DArray.prototype.slice.call(g,0);if(h){h.push.apply(=
h,g);return h}return =
g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C=
){z=3Dfunction(g,h){h=3Dh||[];if(j.call(g)=3D=3D=3D"[object =
Array]")Array.prototype.push.apply(h,g);else if(typeof =
g.length=3D=3D=3D"number")for(var =
l=3D0,m=3Dg.length;l<m;l++)h.push(g[l]);else =
for(l=3D0;g[l];l++)h.push(g[l]);return h}}var =
B;if(s.documentElement.compareDocumentPosition)B=3Dfunction(g,h){if(!g.co=
mpareDocumentPosition||=0A=
!h.compareDocumentPosition){if(g=3D=3Dh)i=3Dtrue;return =
g.compareDocumentPosition?-1:1}g=3Dg.compareDocumentPosition(h)&4?-1:g=3D=
=3D=3Dh?0:1;if(g=3D=3D=3D0)i=3Dtrue;return g};else if("sourceIndex"in =
s.documentElement)B=3Dfunction(g,h){if(!g.sourceIndex||!h.sourceIndex){if=
(g=3D=3Dh)i=3Dtrue;return =
g.sourceIndex?-1:1}g=3Dg.sourceIndex-h.sourceIndex;if(g=3D=3D=3D0)i=3Dtru=
e;return g};else =
if(s.createRange)B=3Dfunction(g,h){if(!g.ownerDocument||!h.ownerDocument)=
{if(g=3D=3Dh)i=3Dtrue;return g.ownerDocument?-1:1}var =
l=3Dg.ownerDocument.createRange(),m=3D=0A=
h.ownerDocument.createRange();l.setStart(g,0);l.setEnd(g,0);m.setStart(h,=
0);m.setEnd(h,0);g=3Dl.compareBoundaryPoints(Range.START_TO_END,m);if(g=3D=
=3D=3D0)i=3Dtrue;return g};(function(){var =
g=3Ds.createElement("div"),h=3D"script"+(new =
Date).getTime();g.innerHTML=3D"<a name=3D'"+h+"'/>";var =
l=3Ds.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(=
h)){n.find.ID=3Dfunction(m,q,p){if(typeof =
q.getElementById!=3D=3D"undefined"&&!p)return(q=3Dq.getElementById(m[1]))=
?q.id=3D=3D=3Dm[1]||typeof q.getAttributeNode!=3D=3D"undefined"&&=0A=
q.getAttributeNode("id").nodeValue=3D=3D=3Dm[1]?[q]:w:[]};n.filter.ID=3Df=
unction(m,q){var p=3Dtypeof =
m.getAttributeNode!=3D=3D"undefined"&&m.getAttributeNode("id");return =
m.nodeType=3D=3D=3D1&&p&&p.nodeValue=3D=3D=3Dq}}l.removeChild(g);l=3Dg=3D=
null})();(function(){var =
g=3Ds.createElement("div");g.appendChild(s.createComment(""));if(g.getEle=
mentsByTagName("*").length>0)n.find.TAG=3Dfunction(h,l){l=3Dl.getElements=
ByTagName(h[1]);if(h[1]=3D=3D=3D"*"){h=3D[];for(var =
m=3D0;l[m];m++)l[m].nodeType=3D=3D=3D1&&h.push(l[m]);l=3Dh}return =
l};g.innerHTML=3D"<a href=3D'#'></a>";=0A=
if(g.firstChild&&typeof =
g.firstChild.getAttribute!=3D=3D"undefined"&&g.firstChild.getAttribute("h=
ref")!=3D=3D"#")n.attrHandle.href=3Dfunction(h){return =
h.getAttribute("href",2)};g=3Dnull})();s.querySelectorAll&&function(){var=
 g=3Dk,h=3Ds.createElement("div");h.innerHTML=3D"<p =
class=3D'TEST'></p>";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST")=
.length=3D=3D=3D0)){k=3Dfunction(m,q,p,v){q=3Dq||s;if(!v&&q.nodeType=3D=3D=
=3D9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return =
g(m,q,p,v)};for(var l in g)k[l]=3Dg[l];h=3Dnull}}();=0A=
(function(){var g=3Ds.createElement("div");g.innerHTML=3D"<div =
class=3D'test e'></div><div =
class=3D'test'></div>";if(!(!g.getElementsByClassName||g.getElementsByCla=
ssName("e").length=3D=3D=3D0)){g.lastChild.className=3D"e";if(g.getElemen=
tsByClassName("e").length!=3D=3D1){n.order.splice(1,0,"CLASS");n.find.CLA=
SS=3Dfunction(h,l,m){if(typeof =
l.getElementsByClassName!=3D=3D"undefined"&&!m)return =
l.getElementsByClassName(h[1])};g=3Dnull}}})();var =
E=3Ds.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPos=
ition(h)&16)}:=0A=
function(g,h){return =
g!=3D=3Dh&&(g.contains?g.contains(h):true)},x=3Dfunction(g){return(g=3D(g=
?g.ownerDocument||g:0).documentElement)?g.nodeName!=3D=3D"HTML":false},ga=
=3Dfunction(g,h){var =
l=3D[],m=3D"",q;for(h=3Dh.nodeType?[h]:h;q=3Dn.match.PSEUDO.exec(g);){m+=3D=
q[0];g=3Dg.replace(n.match.PSEUDO,"")}g=3Dn.relative[g]?g+"*":g;q=3D0;for=
(var p=3Dh.length;q<p;q++)k(g,h[q],l);return =
k.filter(m,l)};c.find=3Dk;c.expr=3Dk.selectors;c.expr[":"]=3Dc.expr.filte=
rs;c.unique=3Dk.uniqueSort;c.text=3Da;c.isXMLDoc=3Dx;c.contains=3DE})();v=
ar eb=3D/Until$/,fb=3D/^(?:parents|prevUntil|prevAll)/,=0A=
gb=3D/,/;R=3DArray.prototype.slice;var =
Ia=3Dfunction(a,b,d){if(c.isFunction(b))return =
c.grep(a,function(e,j){return!!b.call(e,j,e)=3D=3D=3Dd});else =
if(b.nodeType)return c.grep(a,function(e){return =
e=3D=3D=3Db=3D=3D=3Dd});else if(typeof b=3D=3D=3D"string"){var =
f=3Dc.grep(a,function(e){return =
e.nodeType=3D=3D=3D1});if(Ua.test(b))return c.filter(b,f,!d);else =
b=3Dc.filter(b,f)}return c.grep(a,function(e){return =
c.inArray(e,b)>=3D0=3D=3D=3Dd})};c.fn.extend({find:function(a){for(var =
b=3Dthis.pushStack("","find",a),d=3D0,f=3D0,e=3Dthis.length;f<e;f++){d=3D=
b.length;=0A=
c.find(a,this[f],b);if(f>0)for(var j=3Dd;j<b.length;j++)for(var =
i=3D0;i<d;i++)if(b[i]=3D=3D=3Db[j]){b.splice(j--,1);break}}return =
b},has:function(a){var b=3Dc(a);return this.filter(function(){for(var =
d=3D0,f=3Db.length;d<f;d++)if(c.contains(this,b[d]))return =
true})},not:function(a){return =
this.pushStack(Ia(this,a,false),"not",a)},filter:function(a){return =
this.pushStack(Ia(this,a,true),"filter",a)},is:function(a){return!!a&&c.f=
ilter(a,this).length>0},closest:function(a,b){if(c.isArray(a)){var =
d=3D[],f=3Dthis[0],e,j=3D=0A=
{},i;if(f&&a.length){e=3D0;for(var =
o=3Da.length;e<o;e++){i=3Da[e];j[i]||(j[i]=3Dc.expr.match.POS.test(i)?c(i=
,b||this.context):i)}for(;f&&f.ownerDocument&&f!=3D=3Db;){for(i in =
j){e=3Dj[i];if(e.jquery?e.index(f)>-1:c(f).is(e)){d.push({selector:i,elem=
:f});delete j[i]}}f=3Df.parentNode}}return d}var =
k=3Dc.expr.match.POS.test(a)?c(a,b||this.context):null;return =
this.map(function(n,r){for(;r&&r.ownerDocument&&r!=3D=3Db;){if(k?k.index(=
r)>-1:c(r).is(a))return r;r=3Dr.parentNode}return =
null})},index:function(a){if(!a||typeof a=3D=3D=3D=0A=
"string")return =
c.inArray(this[0],a?c(a):this.parent().children());return =
c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=3Dtypeof =
a=3D=3D=3D"string"?c(a,b||this.context):c.makeArray(a);b=3Dc.merge(this.g=
et(),a);return =
this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){retu=
rn =
this.add(this.prevObject)}});c.each({parent:function(a){return(a=3Da.pare=
ntNode)&&a.nodeType!=3D=3D11?a:null},parents:function(a){return =
c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return =
c.dir(a,"parentNode",=0A=
d)},next:function(a){return =
c.nth(a,2,"nextSibling")},prev:function(a){return =
c.nth(a,2,"previousSibling")},nextAll:function(a){return =
c.dir(a,"nextSibling")},prevAll:function(a){return =
c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return =
c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return =
c.dir(a,"previousSibling",d)},siblings:function(a){return =
c.sibling(a.parentNode.firstChild,a)},children:function(a){return =
c.sibling(a.firstChild)},contents:function(a){return =
c.nodeName(a,"iframe")?=0A=
a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},f=
unction(a,b){c.fn[a]=3Dfunction(d,f){var =
e=3Dc.map(this,b,d);eb.test(a)||(f=3Dd);if(f&&typeof =
f=3D=3D=3D"string")e=3Dc.filter(f,e);e=3Dthis.length>1?c.unique(e):e;if((=
this.length>1||gb.test(f))&&fb.test(a))e=3De.reverse();return =
this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:funct=
ion(a,b,d){if(d)a=3D":not("+a+")";return =
c.find.matches(a,b)},dir:function(a,b,d){var =
f=3D[];for(a=3Da[b];a&&a.nodeType!=3D=3D9&&(d=3D=3D=3Dw||a.nodeType!=3D=3D=
1||!c(a).is(d));){a.nodeType=3D=3D=3D=0A=
1&&f.push(a);a=3Da[b]}return f},nth:function(a,b,d){b=3Db||1;for(var =
f=3D0;a;a=3Da[d])if(a.nodeType=3D=3D=3D1&&++f=3D=3D=3Db)break;return =
a},sibling:function(a,b){for(var =
d=3D[];a;a=3Da.nextSibling)a.nodeType=3D=3D=3D1&&a!=3D=3Db&&d.push(a);ret=
urn d}});var Ja=3D/ =
jQuery\d+=3D"(?:\d+|null)"/g,V=3D/^\s+/,Ka=3D/(<([\w:]+)[^>]*?)\/>/g,hb=3D=
/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=3D/<([\w:]+)/,=
ib=3D/<tbody/i,jb=3D/<|&#?\w+;/,ta=3D/<script|<object|<embed|<option|<sty=
le/i,ua=3D/checked\s*(?:[^=3D]|=3D\s*.checked.)/i,Ma=3Dfunction(a,b,d){re=
turn hb.test(d)?=0A=
a:b+"></"+d+">"},F=3D{option:[1,"<select =
multiple=3D'multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"=
],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>=
"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tb=
ody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],=
_default:[0,"",""]};F.optgroup=3DF.option;F.tbody=3DF.tfoot=3DF.colgroup=3D=
F.caption=3DF.thead;F.th=3DF.td;if(!c.support.htmlSerialize)F._default=3D=
[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))=
return this.each(function(b){var d=3D=0A=
c(this);d.text(a.call(this,b,d.text()))});if(typeof =
a!=3D=3D"object"&&a!=3D=3Dw)return =
this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a)=
);return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return =
this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var =
b=3Dc(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.in=
sertBefore(this[0]);b.map(function(){for(var =
d=3Dthis;d.firstChild&&d.firstChild.nodeType=3D=3D=3D1;)d=3Dd.firstChild;=
return d}).append(this)}return this},=0A=
wrapInner:function(a){if(c.isFunction(a))return =
this.each(function(b){c(this).wrapInner(a.call(this,b))});return =
this.each(function(){var =
b=3Dc(this),d=3Db.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:fu=
nction(a){return =
this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return =
this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWit=
h(this.childNodes)}).end()},append:function(){return =
this.domManip(arguments,true,function(a){this.nodeType=3D=3D=3D1&&this.ap=
pendChild(a)})},=0A=
prepend:function(){return =
this.domManip(arguments,true,function(a){this.nodeType=3D=3D=3D1&&this.in=
sertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].pa=
rentNode)return =
this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,=
this)});else if(arguments.length){var =
a=3Dc(arguments[0]);a.push.apply(a,this.toArray());return =
this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[=
0].parentNode)return =
this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,=0A=
this.nextSibling)});else if(arguments.length){var =
a=3Dthis.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0])=
.toArray());return a}},remove:function(a,b){for(var =
d=3D0,f;(f=3Dthis[d])!=3Dnull;d++)if(!a||c.filter(a,[f]).length){if(!b&&f=
.nodeType=3D=3D=3D1){c.cleanData(f.getElementsByTagName("*"));c.cleanData=
([f])}f.parentNode&&f.parentNode.removeChild(f)}return =
this},empty:function(){for(var =
a=3D0,b;(b=3Dthis[a])!=3Dnull;a++)for(b.nodeType=3D=3D=3D1&&c.cleanData(b=
.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);=0A=
return this},clone:function(a){var =
b=3Dthis.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){va=
r =
d=3Dthis.outerHTML,f=3Dthis.ownerDocument;if(!d){d=3Df.createElement("div=
");d.appendChild(this.cloneNode(true));d=3Dd.innerHTML}return =
c.clean([d.replace(Ja,"").replace(/=3D([^=3D"'>\s]+\/)>/g,'=3D"$1">').rep=
lace(V,"")],f)[0]}else return =
this.cloneNode(true)});if(a=3D=3D=3Dtrue){ra(this,b);ra(this.find("*"),b.=
find("*"))}return b},html:function(a){if(a=3D=3D=3Dw)return =
this[0]&&this[0].nodeType=3D=3D=3D1?this[0].innerHTML.replace(Ja,=0A=
""):null;else if(typeof =
a=3D=3D=3D"string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a)=
)&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=3Da.replace(Ka,Ma);try{f=
or(var =
b=3D0,d=3Dthis.length;b<d;b++)if(this[b].nodeType=3D=3D=3D1){c.cleanData(=
this[b].getElementsByTagName("*"));this[b].innerHTML=3Da}}catch(f){this.e=
mpty().append(a)}}else c.isFunction(a)?this.each(function(e){var =
j=3Dc(this),i=3Dj.html();j.empty().append(function(){return =
a.call(this,e,i)})}):this.empty().append(a);return =
this},replaceWith:function(a){if(this[0]&&=0A=
this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var =
d=3Dc(this),f=3Dd.html();d.replaceWith(a.call(this,b,f))});if(typeof =
a!=3D=3D"string")a=3Dc(a).detach();return this.each(function(){var =
b=3Dthis.nextSibling,d=3Dthis.parentNode;c(this).remove();b?c(b).before(a=
):c(d).append(a)})}else return =
this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function=
(a){return this.remove(a,true)},domManip:function(a,b,d){function =
f(u){return c.nodeName(u,"table")?u.getElementsByTagName("tbody")[0]||=0A=
u.appendChild(u.ownerDocument.createElement("tbody")):u}var =
e,j,i=3Da[0],o=3D[],k;if(!c.support.checkClone&&arguments.length=3D=3D=3D=
3&&typeof i=3D=3D=3D"string"&&ua.test(i))return =
this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(i))re=
turn this.each(function(u){var =
z=3Dc(this);a[0]=3Di.call(this,u,b?z.html():w);z.domManip(a,b,d)});if(thi=
s[0]){e=3Di&&i.parentNode;e=3Dc.support.parentNode&&e&&e.nodeType=3D=3D=3D=
11&&e.childNodes.length=3D=3D=3Dthis.length?{fragment:e}:sa(a,this,o);k=3D=
e.fragment;if(j=3Dk.childNodes.length=3D=3D=3D=0A=
1?(k=3Dk.firstChild):k.firstChild){b=3Db&&c.nodeName(j,"tr");for(var =
n=3D0,r=3Dthis.length;n<r;n++)d.call(b?f(this[n],j):this[n],n>0||e.cachea=
ble||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return =
this}});c.fragments=3D{};c.each({appendTo:"append",prependTo:"prepend",in=
sertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},functio=
n(a,b){c.fn[a]=3Dfunction(d){var f=3D[];d=3Dc(d);var =
e=3Dthis.length=3D=3D=3D1&&this[0].parentNode;if(e&&e.nodeType=3D=3D=3D11=
&&e.childNodes.length=3D=3D=3D1&&d.length=3D=3D=3D1){d[b](this[0]);=0A=
return this}else{e=3D0;for(var j=3Dd.length;e<j;e++){var =
i=3D(e>0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=3Df.conc=
at(i)}return =
this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=3D=
b||s;if(typeof =
b.createElement=3D=3D=3D"undefined")b=3Db.ownerDocument||b[0]&&b[0].owner=
Document||s;for(var e=3D[],j=3D0,i;(i=3Da[j])!=3Dnull;j++){if(typeof =
i=3D=3D=3D"number")i+=3D"";if(i){if(typeof =
i=3D=3D=3D"string"&&!jb.test(i))i=3Db.createTextNode(i);else if(typeof =
i=3D=3D=3D"string"){i=3Di.replace(Ka,Ma);var o=3D(La.exec(i)||["",=0A=
""])[1].toLowerCase(),k=3DF[o]||F._default,n=3Dk[0],r=3Db.createElement("=
div");for(r.innerHTML=3Dk[1]+i+k[2];n--;)r=3Dr.lastChild;if(!c.support.tb=
ody){n=3Dib.test(i);o=3Do=3D=3D=3D"table"&&!n?r.firstChild&&r.firstChild.=
childNodes:k[1]=3D=3D=3D"<table>"&&!n?r.childNodes:[];for(k=3Do.length-1;=
k>=3D0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parent=
Node.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertB=
efore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=3Dr.childNodes}if(i.=
nodeType)e.push(i);else e=3D=0A=
c.merge(e,i)}}if(d)for(j=3D0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!=
e[j].type||e[j].type.toLowerCase()=3D=3D=3D"text/javascript"))f.push(e[j]=
.parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType=3D=
=3D=3D1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTa=
gName("script"))));d.appendChild(e[j])}return =
e},cleanData:function(a){for(var =
b,d,f=3Dc.cache,e=3Dc.event.special,j=3Dc.support.deleteExpando,i=3D0,o;(=
o=3Da[i])!=3Dnull;i++)if(d=3Do[c.expando]){b=3Df[d];if(b.events)for(var =
k in b.events)e[k]?=0A=
c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else =
o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var =
kb=3D/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=3D/alpha\([^)]=
*\)/,Oa=3D/opacity=3D([^)]*)/,ha=3D/float/i,ia=3D/-([a-z])/ig,lb=3D/([A-Z=
])/g,mb=3D/^-?\d+(?:px)?$/i,nb=3D/^-?\d/,ob=3D{position:"absolute",visibi=
lity:"hidden",display:"block"},pb=3D["Left","Right"],qb=3D["Top","Bottom"=
],rb=3Ds.defaultView&&s.defaultView.getComputedStyle,Pa=3Dc.support.cssFl=
oat?"cssFloat":"styleFloat",ja=3D=0A=
function(a,b){return b.toUpperCase()};c.fn.css=3Dfunction(a,b){return =
X(this,a,b,true,function(d,f,e){if(e=3D=3D=3Dw)return =
c.curCSS(d,f);if(typeof =
e=3D=3D=3D"number"&&!kb.test(f))e+=3D"px";c.style(d,f,e)})};c.extend({sty=
le:function(a,b,d){if(!a||a.nodeType=3D=3D=3D3||a.nodeType=3D=3D=3D8)retu=
rn =
w;if((b=3D=3D=3D"width"||b=3D=3D=3D"height")&&parseFloat(d)<0)d=3Dw;var =
f=3Da.style||a,e=3Dd!=3D=3Dw;if(!c.support.opacity&&b=3D=3D=3D"opacity"){=
if(e){f.zoom=3D1;b=3DparseInt(d,10)+""=3D=3D=3D"NaN"?"":"alpha(opacity=3D=
"+d*100+")";a=3Df.filter||c.curCSS(a,"filter")||"";f.filter=3D=0A=
Na.test(a)?a.replace(Na,b):b}return =
f.filter&&f.filter.indexOf("opacity=3D")>=3D0?parseFloat(Oa.exec(f.filter=
)[1])/100+"":""}if(ha.test(b))b=3DPa;b=3Db.replace(ia,ja);if(e)f[b]=3Dd;r=
eturn =
f[b]},css:function(a,b,d,f){if(b=3D=3D=3D"width"||b=3D=3D=3D"height"){var=
 e,j=3Db=3D=3D=3D"width"?pb:qb;function =
i(){e=3Db=3D=3D=3D"width"?a.offsetWidth:a.offsetHeight;f!=3D=3D"border"&&=
c.each(j,function(){f||(e-=3DparseFloat(c.curCSS(a,"padding"+this,true))|=
|0);if(f=3D=3D=3D"margin")e+=3DparseFloat(c.curCSS(a,"margin"+this,true))=
||0;else e-=3DparseFloat(c.curCSS(a,=0A=
"border"+this+"Width",true))||0})}a.offsetWidth!=3D=3D0?i():c.swap(a,ob,i=
);return Math.max(0,Math.round(e))}return =
c.curCSS(a,b,d)},curCSS:function(a,b,d){var =
f,e=3Da.style;if(!c.support.opacity&&b=3D=3D=3D"opacity"&&a.currentStyle)=
{f=3DOa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";r=
eturn =
f=3D=3D=3D""?"1":f}if(ha.test(b))b=3DPa;if(!d&&e&&e[b])f=3De[b];else =
if(rb){if(ha.test(b))b=3D"float";b=3Db.replace(lb,"-$1").toLowerCase();e=3D=
a.ownerDocument.defaultView;if(!e)return =
null;if(a=3De.getComputedStyle(a,null))f=3D=0A=
a.getPropertyValue(b);if(b=3D=3D=3D"opacity"&&f=3D=3D=3D"")f=3D"1"}else =
if(a.currentStyle){d=3Db.replace(ia,ja);f=3Da.currentStyle[b]||a.currentS=
tyle[d];if(!mb.test(f)&&nb.test(f)){b=3De.left;var =
j=3Da.runtimeStyle.left;a.runtimeStyle.left=3Da.currentStyle.left;e.left=3D=
d=3D=3D=3D"fontSize"?"1em":f||0;f=3De.pixelLeft+"px";e.left=3Db;a.runtime=
Style.left=3Dj}}return f},swap:function(a,b,d){var f=3D{};for(var e in =
b){f[e]=3Da.style[e];a.style[e]=3Db[e]}d.call(a);for(e in =
b)a.style[e]=3Df[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=3D=
function(a){var b=3D=0A=
a.offsetWidth,d=3Da.offsetHeight,f=3Da.nodeName.toLowerCase()=3D=3D=3D"tr=
";return =
b=3D=3D=3D0&&d=3D=3D=3D0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display"=
)=3D=3D=3D"none"};c.expr.filters.visible=3Dfunction(a){return!c.expr.filt=
ers.hidden(a)}}var =
sb=3DJ(),tb=3D/<script(.|\s)*?\/script>/gi,ub=3D/select|textarea/i,vb=3D/=
color|date|datetime|email|hidden|month|number|password|range|search|tel|t=
ext|time|url|week/i,N=3D/=3D\?(&|$)/,ka=3D/\?/,wb=3D/(\?|&)_=3D.*?(&|$)/,=
xb=3D/^(\w+:)?\/\/([^\/?#]+)/,yb=3D/%20/g,zb=3Dc.fn.load;c.fn.extend({loa=
d:function(a,b,d){if(typeof a!=3D=3D=0A=
"string")return zb.call(this,a);else if(!this.length)return this;var =
f=3Da.indexOf(" ");if(f>=3D0){var =
e=3Da.slice(f,a.length);a=3Da.slice(0,f)}f=3D"GET";if(b)if(c.isFunction(b=
)){d=3Db;b=3Dnull}else if(typeof =
b=3D=3D=3D"object"){b=3Dc.param(b,c.ajaxSettings.traditional);f=3D"POST"}=
var =
j=3Dthis;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,=
o){if(o=3D=3D=3D"success"||o=3D=3D=3D"notmodified")j.html(e?c("<div =
/>").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.e=
ach(d,[i.responseText,o,i])}});return this},=0A=
serialize:function(){return =
c.param(this.serializeArray())},serializeArray:function(){return =
this.map(function(){return =
this.elements?c.makeArray(this.elements):this}).filter(function(){return =
this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test=
(this.type))}).map(function(a,b){a=3Dc(this).val();return =
a=3D=3Dnull?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,valu=
e:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop =
ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),=0A=
function(a,b){c.fn[b]=3Dfunction(d){return =
this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=3D=
f||d;d=3Db;b=3Dnull}return =
c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:functio=
n(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return =
c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=3Df||d;=
d=3Db;b=3D{}}return =
c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:functi=
on(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,=0A=
global:true,type:"GET",contentType:"application/x-www-form-urlencoded",pr=
ocessData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=3D=3D=
"file:"||!A.ActiveXObject)?function(){return new =
A.XMLHttpRequest}:function(){try{return new =
A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"applicatio=
n/xml, text/xml",html:"text/html",script:"text/javascript, =
application/javascript",json:"application/json, =
text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:=
{},ajax:function(a){function b(){e.success&&=0A=
e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function =
d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);=
e.global&&!--c.active&&c.event.trigger("ajaxStop")}function =
f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var =
e=3Dc.extend(true,{},c.ajaxSettings,a),j,i,o,k=3Da&&a.context||e,n=3De.ty=
pe.toUpperCase();if(e.data&&e.processData&&typeof =
e.data!=3D=3D"string")e.data=3Dc.param(e.data,e.traditional);if(e.dataTyp=
e=3D=3D=3D"jsonp"){if(n=3D=3D=3D"GET")N.test(e.url)||(e.url+=3D(ka.test(e=
.url)?=0A=
"&":"?")+(e.jsonp||"callback")+"=3D?");else =
if(!e.data||!N.test(e.data))e.data=3D(e.data?e.data+"&":"")+(e.jsonp||"ca=
llback")+"=3D?";e.dataType=3D"json"}if(e.dataType=3D=3D=3D"json"&&(e.data=
&&N.test(e.data)||N.test(e.url))){j=3De.jsonpCallback||"jsonp"+sb++;if(e.=
data)e.data=3D(e.data+"").replace(N,"=3D"+j+"$1");e.url=3De.url.replace(N=
,"=3D"+j+"$1");e.dataType=3D"script";A[j]=3DA[j]||function(q){o=3Dq;b();d=
();A[j]=3Dw;try{delete =
A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType=3D=3D=3D"script"&&e.cac=
he=3D=3D=3Dnull)e.cache=3Dfalse;if(e.cache=3D=3D=3D=0A=
false&&n=3D=3D=3D"GET"){var =
r=3DJ(),u=3De.url.replace(wb,"$1_=3D"+r+"$2");e.url=3Du+(u=3D=3D=3De.url?=
(ka.test(e.url)?"&":"?")+"_=3D"+r:"")}if(e.data&&n=3D=3D=3D"GET")e.url+=3D=
(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("a=
jaxStart");r=3D(r=3Dxb.exec(e.url))&&(r[1]&&r[1]!=3D=3Dlocation.protocol|=
|r[2]!=3D=3Dlocation.host);if(e.dataType=3D=3D=3D"script"&&n=3D=3D=3D"GET=
"&&r){var =
z=3Ds.getElementsByTagName("head")[0]||s.documentElement,C=3Ds.createElem=
ent("script");C.src=3De.url;if(e.scriptCharset)C.charset=3De.scriptCharse=
t;if(!j){var B=3D=0A=
false;C.onload=3DC.onreadystatechange=3Dfunction(){if(!B&&(!this.readySta=
te||this.readyState=3D=3D=3D"loaded"||this.readyState=3D=3D=3D"complete")=
){B=3Dtrue;b();d();C.onload=3DC.onreadystatechange=3Dnull;z&&C.parentNode=
&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var =
E=3Dfalse,x=3De.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,=
e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.set=
RequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModifi=
ed[e.url]&&x.setRequestHeader("If-Modified-Since",=0A=
c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",=
c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest")=
;x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[=
e.dataType]+", =
*/*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,=
x,e)=3D=3D=3Dfalse){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.=
abort();return false}e.global&&f("ajaxSend",[x,e]);var =
g=3Dx.onreadystatechange=3Dfunction(q){if(!x||x.readyState=3D=3D=3D0||q=3D=
=3D=3D"abort"){E||=0A=
d();E=3Dtrue;if(x)x.onreadystatechange=3Dc.noop}else =
if(!E&&x&&(x.readyState=3D=3D=3D4||q=3D=3D=3D"timeout")){E=3Dtrue;x.onrea=
dystatechange=3Dc.noop;i=3Dq=3D=3D=3D"timeout"?"timeout":!c.httpSuccess(x=
)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success=
";var =
p;if(i=3D=3D=3D"success")try{o=3Dc.httpData(x,e.dataType,e)}catch(v){i=3D=
"parsererror";p=3Dv}if(i=3D=3D=3D"success"||i=3D=3D=3D"notmodified")j||b(=
);else =
c.handleError(e,x,i,p);d();q=3D=3D=3D"timeout"&&x.abort();if(e.async)x=3D=
null}};try{var h=3Dx.abort;x.abort=3Dfunction(){x&&h.call(x);=0A=
g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&=
g("timeout")},e.timeout);try{x.send(n=3D=3D=3D"POST"||n=3D=3D=3D"PUT"||n=3D=
=3D=3D"DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.asyn=
c||g();return =
x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,=
d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,=
a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.pro=
tocol=3D=3D=3D"file:"||a.status>=3D200&&a.status<300||a.status=3D=3D=3D30=
4||a.status=3D=3D=3D=0A=
1223||a.status=3D=3D=3D0}catch(b){}return =
false},httpNotModified:function(a,b){var =
d=3Da.getResponseHeader("Last-Modified"),f=3Da.getResponseHeader("Etag");=
if(d)c.lastModified[b]=3Dd;if(f)c.etag[b]=3Df;return =
a.status=3D=3D=3D304||a.status=3D=3D=3D0},httpData:function(a,b,d){var =
f=3Da.getResponseHeader("content-type")||"",e=3Db=3D=3D=3D"xml"||!b&&f.in=
dexOf("xml")>=3D0;a=3De?a.responseXML:a.responseText;e&&a.documentElement=
.nodeName=3D=3D=3D"parsererror"&&c.error("parsererror");if(d&&d.dataFilte=
r)a=3Dd.dataFilter(a,b);if(typeof a=3D=3D=3D"string")if(b=3D=3D=3D=0A=
"json"||!b&&f.indexOf("json")>=3D0)a=3Dc.parseJSON(a);else =
if(b=3D=3D=3D"script"||!b&&f.indexOf("javascript")>=3D0)c.globalEval(a);r=
eturn a},param:function(a,b){function =
d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d=
(i+"["+(typeof =
n=3D=3D=3D"object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=3Dnull&&typeof=
 =
o=3D=3D=3D"object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}funct=
ion =
f(i,o){o=3Dc.isFunction(o)?o():o;e[e.length]=3DencodeURIComponent(i)+"=3D=
"+encodeURIComponent(o)}var =
e=3D[];if(b=3D=3D=3Dw)b=3Dc.ajaxSettings.traditional;=0A=
if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});e=
lse for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var =
la=3D{},Ab=3D/toggle|show|hide/,Bb=3D/^([+-]=3D)?([\d+-.]+)(.*)$/,W,va=3D=
[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["wid=
th","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]]=
;c.fn.extend({show:function(a,b){if(a||a=3D=3D=3D0)return =
this.animate(K("show",3),a,b);else{a=3D0;for(b=3Dthis.length;a<b;a++){var=
 d=3Dc.data(this[a],"olddisplay");=0A=
this[a].style.display=3Dd||"";if(c.css(this[a],"display")=3D=3D=3D"none")=
{d=3Dthis[a].nodeName;var f;if(la[d])f=3Dla[d];else{var e=3Dc("<"+d+" =
/>").appendTo("body");f=3De.css("display");if(f=3D=3D=3D"none")f=3D"block=
";e.remove();la[d]=3Df}c.data(this[a],"olddisplay",f)}}a=3D0;for(b=3Dthis=
.length;a<b;a++)this[a].style.display=3Dc.data(this[a],"olddisplay")||"";=
return this}},hide:function(a,b){if(a||a=3D=3D=3D0)return =
this.animate(K("hide",3),a,b);else{a=3D0;for(b=3Dthis.length;a<b;a++){var=
 d=3Dc.data(this[a],"olddisplay");!d&&d!=3D=3D"none"&&c.data(this[a],=0A=
"olddisplay",c.css(this[a],"display"))}a=3D0;for(b=3Dthis.length;a<b;a++)=
this[a].style.display=3D"none";return =
this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=3Dtypeof =
a=3D=3D=3D"boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.appl=
y(this,arguments);else a=3D=3Dnull||d?this.each(function(){var =
f=3Dd?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(K=
("toggle",3),a,b);return this},fadeTo:function(a,b,d){return =
this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},=
a,d)},=0A=
animate:function(a,b,d,f){var =
e=3Dc.speed(b,d,f);if(c.isEmptyObject(a))return =
this.each(e.complete);return =
this[e.queue=3D=3D=3Dfalse?"each":"queue"](function(){var =
j=3Dc.extend({},e),i,o=3Dthis.nodeType=3D=3D=3D1&&c(this).is(":hidden"),k=
=3Dthis;for(i in a){var =
n=3Di.replace(ia,ja);if(i!=3D=3Dn){a[n]=3Da[i];delete =
a[i];i=3Dn}if(a[i]=3D=3D=3D"hide"&&o||a[i]=3D=3D=3D"show"&&!o)return =
j.complete.call(this);if((i=3D=3D=3D"height"||i=3D=3D=3D"width")&&this.st=
yle){j.display=3Dc.css(this,"display");j.overflow=3Dthis.style.overflow}i=
f(c.isArray(a[i])){(j.specialEasing=3D=0A=
j.specialEasing||{})[i]=3Da[i][1];a[i]=3Da[i][0]}}if(j.overflow!=3Dnull)t=
his.style.overflow=3D"hidden";j.curAnim=3Dc.extend({},a);c.each(a,functio=
n(r,u){var z=3Dnew =
c.fx(k,j,r);if(Ab.test(u))z[u=3D=3D=3D"toggle"?o?"show":"hide":u](a);else=
{var C=3DBb.exec(u),B=3Dz.cur(true)||0;if(C){u=3DparseFloat(C[2]);var =
E=3DC[3]||"px";if(E!=3D=3D"px"){k.style[r]=3D(u||1)+E;B=3D(u||1)/z.cur(tr=
ue)*B;k.style[r]=3DB+E}if(C[1])u=3D(C[1]=3D=3D=3D"-=3D"?-1:1)*u+B;z.custo=
m(B,u,E)}else z.custom(B,u,"")}});return true})},stop:function(a,b){var =
d=3Dc.timers;a&&this.queue([]);=0A=
this.each(function(){for(var =
f=3Dd.length-1;f>=3D0;f--)if(d[f].elem=3D=3D=3Dthis){b&&d[f](true);d.spli=
ce(f,1)}});b||this.dequeue();return =
this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("=
toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b=
){c.fn[a]=3Dfunction(d,f){return =
this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=3Da&&typeof =
a=3D=3D=3D"object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,ea=
sing:d&&b||b&&!c.isFunction(b)&&b};f.duration=3Dc.fx.off?0:typeof =
f.duration=3D=3D=3D=0A=
"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=3D=
f.complete;f.complete=3Dfunction(){f.queue!=3D=3Dfalse&&c(this).dequeue()=
;c.isFunction(f.old)&&f.old.call(this)};return =
f},easing:{linear:function(a,b,d,f){return =
d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},t=
imers:[],fx:function(a,b,d){this.options=3Db;this.elem=3Da;this.prop=3Dd;=
if(!b.orig)b.orig=3D{}}});c.fx.prototype=3D{update:function(){this.option=
s.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.p=
rop]||=0A=
c.fx.step._default)(this);if((this.prop=3D=3D=3D"height"||this.prop=3D=3D=
=3D"width")&&this.elem.style)this.elem.style.display=3D"block"},cur:funct=
ion(a){if(this.elem[this.prop]!=3Dnull&&(!this.elem.style||this.elem.styl=
e[this.prop]=3D=3Dnull))return =
this.elem[this.prop];return(a=3DparseFloat(c.css(this.elem,this.prop,a)))=
&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:functio=
n(a,b,d){function f(j){return =
e.step(j)}this.startTime=3DJ();this.start=3Da;this.end=3Db;this.unit=3Dd|=
|this.unit||"px";this.now=3Dthis.start;=0A=
this.pos=3Dthis.state=3D0;var =
e=3Dthis;f.elem=3Dthis.elem;if(f()&&c.timers.push(f)&&!W)W=3DsetInterval(=
c.fx.tick,13)},show:function(){this.options.orig[this.prop]=3Dc.style(thi=
s.elem,this.prop);this.options.show=3Dtrue;this.custom(this.prop=3D=3D=3D=
"width"||this.prop=3D=3D=3D"height"?1:0,this.cur());c(this.elem).show()},=
hide:function(){this.options.orig[this.prop]=3Dc.style(this.elem,this.pro=
p);this.options.hide=3Dtrue;this.custom(this.cur(),0)},step:function(a){v=
ar =
b=3DJ(),d=3Dtrue;if(a||b>=3Dthis.options.duration+this.startTime){this.no=
w=3D=0A=
this.end;this.pos=3Dthis.state=3D1;this.update();this.options.curAnim[thi=
s.prop]=3Dtrue;for(var f in =
this.options.curAnim)if(this.options.curAnim[f]!=3D=3Dtrue)d=3Dfalse;if(d=
){if(this.options.display!=3Dnull){this.elem.style.overflow=3Dthis.option=
s.overflow;a=3Dc.data(this.elem,"olddisplay");this.elem.style.display=3Da=
?a:this.options.display;if(c.css(this.elem,"display")=3D=3D=3D"none")this=
.elem.style.display=3D"block"}this.options.hide&&c(this.elem).hide();if(t=
his.options.hide||this.options.show)for(var e in =
this.options.curAnim)c.style(this.elem,=0A=
e,this.options.orig[e]);this.options.complete.call(this.elem)}return =
false}else{e=3Db-this.startTime;this.state=3De/this.options.duration;a=3D=
this.options.easing||(c.easing.swing?"swing":"linear");this.pos=3Dc.easin=
g[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](t=
his.state,e,0,1,this.options.duration);this.now=3Dthis.start+(this.end-th=
is.start)*this.pos;this.update()}return =
true}};c.extend(c.fx,{tick:function(){for(var =
a=3Dc.timers,b=3D0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||=0A=
c.fx.stop()},stop:function(){clearInterval(W);W=3Dnull},speeds:{slow:600,=
fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity"=
,a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=3Dnu=
ll)a.elem.style[a.prop]=3D(a.prop=3D=3D=3D"width"||a.prop=3D=3D=3D"height=
"?Math.max(0,a.now):a.now)+a.unit;else =
a.elem[a.prop]=3Da.now}}});if(c.expr&&c.expr.filters)c.expr.filters.anima=
ted=3Dfunction(a){return c.grep(c.timers,function(b){return =
a=3D=3D=3Db.elem}).length};c.fn.offset=3D"getBoundingClientRect"in =
s.documentElement?=0A=
function(a){var b=3Dthis[0];if(a)return =
this.each(function(e){c.offset.setOffset(this,a,e)});if(!b||!b.ownerDocum=
ent)return null;if(b=3D=3D=3Db.ownerDocument.body)return =
c.offset.bodyOffset(b);var =
d=3Db.getBoundingClientRect(),f=3Db.ownerDocument;b=3Df.body;f=3Df.docume=
ntElement;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrol=
lTop||b.scrollTop)-(f.clientTop||b.clientTop||0),left:d.left+(self.pageXO=
ffset||c.support.boxModel&&f.scrollLeft||b.scrollLeft)-(f.clientLeft||b.c=
lientLeft||0)}}:function(a){var b=3D=0A=
this[0];if(a)return =
this.each(function(r){c.offset.setOffset(this,a,r)});if(!b||!b.ownerDocum=
ent)return null;if(b=3D=3D=3Db.ownerDocument.body)return =
c.offset.bodyOffset(b);c.offset.initialize();var =
d=3Db.offsetParent,f=3Db,e=3Db.ownerDocument,j,i=3De.documentElement,o=3D=
e.body;f=3D(e=3De.defaultView)?e.getComputedStyle(b,null):b.currentStyle;=
for(var =
k=3Db.offsetTop,n=3Db.offsetLeft;(b=3Db.parentNode)&&b!=3D=3Do&&b!=3D=3Di=
;){if(c.offset.supportsFixedPosition&&f.position=3D=3D=3D"fixed")break;j=3D=
e?e.getComputedStyle(b,null):b.currentStyle;=0A=
k-=3Db.scrollTop;n-=3Db.scrollLeft;if(b=3D=3D=3Dd){k+=3Db.offsetTop;n+=3D=
b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTab=
leAndCells&&/^t(able|d|h)$/i.test(b.nodeName))){k+=3DparseFloat(j.borderT=
opWidth)||0;n+=3DparseFloat(j.borderLeftWidth)||0}f=3Dd;d=3Db.offsetParen=
t}if(c.offset.subtractsBorderForOverflowNotVisible&&j.overflow!=3D=3D"vis=
ible"){k+=3DparseFloat(j.borderTopWidth)||0;n+=3DparseFloat(j.borderLeftW=
idth)||0}f=3Dj}if(f.position=3D=3D=3D"relative"||f.position=3D=3D=3D"stat=
ic"){k+=3Do.offsetTop;n+=3Do.offsetLeft}if(c.offset.supportsFixedPosition=
&&=0A=
f.position=3D=3D=3D"fixed"){k+=3DMath.max(i.scrollTop,o.scrollTop);n+=3DM=
ath.max(i.scrollLeft,o.scrollLeft)}return{top:k,left:n}};c.offset=3D{init=
ialize:function(){var =
a=3Ds.body,b=3Ds.createElement("div"),d,f,e,j=3DparseFloat(c.curCSS(a,"ma=
rginTop",true))||0;c.extend(b.style,{position:"absolute",top:0,left:0,mar=
gin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});b.innerHTML=
=3D"<div style=3D'position:absolute;top:0;left:0;margin:0;border:5px =
solid #000;padding:0;width:1px;height:1px;'><div></div></div><table =
style=3D'position:absolute;top:0;left:0;margin:0;border:5px solid =
#000;padding:0;width:1px;height:1px;' cellpadding=3D'0' =
cellspacing=3D'0'><tr><td></td></tr></table>";=0A=
a.insertBefore(b,a.firstChild);d=3Db.firstChild;f=3Dd.firstChild;e=3Dd.ne=
xtSibling.firstChild.firstChild;this.doesNotAddBorder=3Df.offsetTop!=3D=3D=
5;this.doesAddBorderForTableAndCells=3De.offsetTop=3D=3D=3D5;f.style.posi=
tion=3D"fixed";f.style.top=3D"20px";this.supportsFixedPosition=3Df.offset=
Top=3D=3D=3D20||f.offsetTop=3D=3D=3D15;f.style.position=3Df.style.top=3D"=
";d.style.overflow=3D"hidden";d.style.position=3D"relative";this.subtract=
sBorderForOverflowNotVisible=3Df.offsetTop=3D=3D=3D-5;this.doesNotInclude=
MarginInBodyOffset=3Da.offsetTop!=3D=3Dj;a.removeChild(b);=0A=
c.offset.initialize=3Dc.noop},bodyOffset:function(a){var =
b=3Da.offsetTop,d=3Da.offsetLeft;c.offset.initialize();if(c.offset.doesNo=
tIncludeMarginInBodyOffset){b+=3DparseFloat(c.curCSS(a,"marginTop",true))=
||0;d+=3DparseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d=
}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.s=
tyle.position=3D"relative";var =
f=3Dc(a),e=3Df.offset(),j=3DparseInt(c.curCSS(a,"top",true),10)||0,i=3Dpa=
rseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=3Db.call(a,=0A=
d,e);d=3D{top:b.top-e.top+j,left:b.left-e.left+i};"using"in =
b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[=
0])return null;var =
a=3Dthis[0],b=3Dthis.offsetParent(),d=3Dthis.offset(),f=3D/^body|html$/i.=
test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=3DparseFloat(c.curCS=
S(a,"marginTop",true))||0;d.left-=3DparseFloat(c.curCSS(a,"marginLeft",tr=
ue))||0;f.top+=3DparseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.le=
ft+=3DparseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.t=
op-=0A=
f.top,left:d.left-f.left}},offsetParent:function(){return =
this.map(function(){for(var =
a=3Dthis.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(=
a,"position")=3D=3D=3D"static";)a=3Da.offsetParent;return =
a})}});c.each(["Left","Top"],function(a,b){var =
d=3D"scroll"+b;c.fn[d]=3Dfunction(f){var e=3Dthis[0],j;if(!e)return =
null;if(f!=3D=3Dw)return =
this.each(function(){if(j=3Dwa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?=
f:c(j).scrollTop());else this[d]=3Df});else =
return(j=3Dwa(e))?"pageXOffset"in j?j[a?"pageYOffset":=0A=
"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.docum=
ent.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var =
d=3Db.toLowerCase();c.fn["inner"+b]=3Dfunction(){return =
this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=3Dfunction=
(f){return =
this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=3Dfuncti=
on(f){var e=3Dthis[0];if(!e)return =
f=3D=3Dnull?null:this;if(c.isFunction(f))return =
this.each(function(j){var =
i=3Dc(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in=0A=
e&&e.document?e.document.compatMode=3D=3D=3D"CSS1Compat"&&e.document.docu=
mentElement["client"+b]||e.document.body["client"+b]:e.nodeType=3D=3D=3D9=
?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElem=
ent["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f=3D=3D=
=3Dw?c.css(e,d):this.css(d,typeof =
f=3D=3D=3D"string"?f:f+"px")}});A.jQuery=3DA.$=3Dc})(window);=0A=

------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: application/octet-stream
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/scripts/jquery-ui-1.8.4.custom.min.js

/*!=0A=
 * jQuery UI 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI=0A=
 */=0A=
(function(c,j){function =
k(a){return!c(a).parents().andSelf().filter(function(){return =
c.curCSS(this,"visibility")=3D=3D=3D"hidden"||c.expr.filters.hidden(this)=
}).length}c.ui=3Dc.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.4=
",plugin:{add:function(a,b,d){a=3Dc.ui[a].prototype;for(var e in =
d){a.plugins[e]=3Da.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:fun=
ction(a,b,d){if((b=3Da.plugins[b])&&a.element[0].parentNode)for(var =
e=3D0;e<b.length;e++)a.options[b[e][0]]&&b[e][1].apply(a.element,d)}},con=
tains:function(a,=0A=
b){return =
document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!=3D=3D=
b&&a.contains(b)},hasScroll:function(a,b){if(c(a).css("overflow")=3D=3D=3D=
"hidden")return =
false;b=3Db&&b=3D=3D=3D"left"?"scrollLeft":"scrollTop";var =
d=3Dfalse;if(a[b]>0)return true;a[b]=3D1;d=3Da[b]>0;a[b]=3D0;return =
d},isOverAxis:function(a,b,d){return =
a>b&&a<b+d},isOver:function(a,b,d,e,h,i){return =
c.ui.isOverAxis(a,d,h)&&c.ui.isOverAxis(b,e,i)},keyCode:{ALT:18,BACKSPACE=
:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,=0A=
CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,=
LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPA=
D_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:=
33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});c.fn.e=
xtend({_focus:c.fn.focus,focus:function(a,b){return typeof =
a=3D=3D=3D"number"?this.each(function(){var =
d=3Dthis;setTimeout(function(){c(d).focus();b&&b.call(d)},a)}):this._focu=
s.apply(this,arguments)},enableSelection:function(){return =
this.attr("unselectable",=0A=
"off").css("MozUserSelect","")},disableSelection:function(){return =
this.attr("unselectable","on").css("MozUserSelect","none")},scrollParent:=
function(){var =
a;a=3Dc.browser.msie&&/(static|relative)/.test(this.css("position"))||/ab=
solute/.test(this.css("position"))?this.parents().filter(function(){retur=
n/(relative|absolute|fixed)/.test(c.curCSS(this,"position",1))&&/(auto|sc=
roll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.c=
urCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){retu=
rn/(auto|scroll)/.test(c.curCSS(this,=0A=
"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1)=
)}).eq(0);return/fixed/.test(this.css("position"))||!a.length?c(document)=
:a},zIndex:function(a){if(a!=3D=3Dj)return =
this.css("zIndex",a);if(this.length){a=3Dc(this[0]);for(var =
b;a.length&&a[0]!=3D=3Ddocument;){b=3Da.css("position");if(b=3D=3D=3D"abs=
olute"||b=3D=3D=3D"relative"||b=3D=3D=3D"fixed"){b=3DparseInt(a.css("zInd=
ex"));if(!isNaN(b)&&b!=3D0)return b}a=3Da.parent()}}return =
0}});c.each(["Width","Height"],function(a,b){function =
d(f,g,l,m){c.each(e,function(){g-=3D=0A=
parseFloat(c.curCSS(f,"padding"+this,true))||0;if(l)g-=3DparseFloat(c.cur=
CSS(f,"border"+this+"Width",true))||0;if(m)g-=3DparseFloat(c.curCSS(f,"ma=
rgin"+this,true))||0});return g}var =
e=3Db=3D=3D=3D"Width"?["Left","Right"]:["Top","Bottom"],h=3Db.toLowerCase=
(),i=3D{innerWidth:c.fn.innerWidth,innerHeight:c.fn.innerHeight,outerWidt=
h:c.fn.outerWidth,outerHeight:c.fn.outerHeight};c.fn["inner"+b]=3Dfunctio=
n(f){if(f=3D=3D=3Dj)return i["inner"+b].call(this);return =
this.each(function(){c.style(this,h,d(this,f)+"px")})};c.fn["outer"+=0A=
b]=3Dfunction(f,g){if(typeof f!=3D=3D"number")return =
i["outer"+b].call(this,f);return =
this.each(function(){c.style(this,h,d(this,f,true,g)+"px")})}});c.extend(=
c.expr[":"],{data:function(a,b,d){return!!c.data(a,d[3])},focusable:funct=
ion(a){var =
b=3Da.nodeName.toLowerCase(),d=3Dc.attr(a,"tabindex");if("area"=3D=3D=3Db=
){b=3Da.parentNode;d=3Db.name;if(!a.href||!d||b.nodeName.toLowerCase()!=3D=
=3D"map")return =
false;a=3Dc("img[usemap=3D#"+d+"]")[0];return!!a&&k(a)}return(/input|sele=
ct|textarea|button|object/.test(b)?!a.disabled:"a"=3D=3D=0A=
b?a.href||!isNaN(d):!isNaN(d))&&k(a)},tabbable:function(a){var =
b=3Dc.attr(a,"tabindex");return(isNaN(b)||b>=3D0)&&c(a).is(":focusable")}=
})}})(jQuery);=0A=
;/*!=0A=
 * jQuery UI Widget 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Widget=0A=
 */=0A=
(function(b,j){var k=3Db.fn.remove;b.fn.remove=3Dfunction(a,c){return =
this.each(function(){if(!c)if(!a||b.filter(a,[this]).length)b("*",this).a=
dd([this]).each(function(){b(this).triggerHandler("remove")});return =
k.call(b(this),a,c)})};b.widget=3Dfunction(a,c,d){var =
e=3Da.split(".")[0],f;a=3Da.split(".")[1];f=3De+"-"+a;if(!d){d=3Dc;c=3Db.=
Widget}b.expr[":"][f]=3Dfunction(h){return!!b.data(h,a)};b[e]=3Db[e]||{};=
b[e][a]=3Dfunction(h,g){arguments.length&&this._createWidget(h,g)};c=3Dne=
w c;c.options=3Db.extend(true,{},c.options);=0A=
b[e][a].prototype=3Db.extend(true,c,{namespace:e,widgetName:a,widgetEvent=
Prefix:b[e][a].prototype.widgetEventPrefix||a,widgetBaseClass:f},d);b.wid=
get.bridge(a,b[e][a])};b.widget.bridge=3Dfunction(a,c){b.fn[a]=3Dfunction=
(d){var e=3Dtypeof =
d=3D=3D=3D"string",f=3DArray.prototype.slice.call(arguments,1),h=3Dthis;d=
=3D!e&&f.length?b.extend.apply(null,[true,d].concat(f)):d;if(e&&d.substri=
ng(0,1)=3D=3D=3D"_")return h;e?this.each(function(){var =
g=3Db.data(this,a),i=3Dg&&b.isFunction(g[d])?g[d].apply(g,f):g;if(i!=3D=3D=
g&&i!=3D=3Dj){h=3Di;return false}}):=0A=
this.each(function(){var =
g=3Db.data(this,a);if(g){d&&g.option(d);g._init()}else b.data(this,a,new =
c(d,this))});return =
h}};b.Widget=3Dfunction(a,c){arguments.length&&this._createWidget(a,c)};b=
.Widget.prototype=3D{widgetName:"widget",widgetEventPrefix:"",options:{di=
sabled:false},_createWidget:function(a,c){b.data(c,this.widgetName,this);=
this.element=3Db(c);this.options=3Db.extend(true,{},this.options,b.metada=
ta&&b.metadata.get(c)[this.widgetName],a);var =
d=3Dthis;this.element.bind("remove."+this.widgetName,function(){d.destroy=
()});=0A=
this._create();this._init()},_create:function(){},_init:function(){},dest=
roy:function(){this.element.unbind("."+this.widgetName).removeData(this.w=
idgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-dis=
abled").removeClass(this.widgetBaseClass+"-disabled =
ui-state-disabled")},widget:function(){return =
this.element},option:function(a,c){var =
d=3Da,e=3Dthis;if(arguments.length=3D=3D=3D0)return =
b.extend({},e.options);if(typeof =
a=3D=3D=3D"string"){if(c=3D=3D=3Dj)return =
this.options[a];d=3D{};d[a]=3Dc}b.each(d,function(f,=0A=
h){e._setOption(f,h)});return =
e},_setOption:function(a,c){this.options[a]=3Dc;if(a=3D=3D=3D"disabled")t=
his.widget()[c?"addClass":"removeClass"](this.widgetBaseClass+"-disabled =
ui-state-disabled").attr("aria-disabled",c);return =
this},enable:function(){return =
this._setOption("disabled",false)},disable:function(){return =
this._setOption("disabled",true)},_trigger:function(a,c,d){var =
e=3Dthis.options[a];c=3Db.Event(c);c.type=3D(a=3D=3D=3Dthis.widgetEventPr=
efix?a:this.widgetEventPrefix+a).toLowerCase();d=3Dd||{};if(c.originalEve=
nt){a=3D=0A=
b.event.props.length;for(var =
f;a;){f=3Db.event.props[--a];c[f]=3Dc.originalEvent[f]}}this.element.trig=
ger(c,d);return!(b.isFunction(e)&&e.call(this.element[0],c,d)=3D=3D=3Dfal=
se||c.isDefaultPrevented())}}})(jQuery);=0A=
;/*!=0A=
 * jQuery UI Mouse 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Mouse=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.widget.js=0A=
 */=0A=
(function(c){c.widget("ui.mouse",{options:{cancel:":input,option",distanc=
e:1,delay:0},_mouseInit:function(){var =
a=3Dthis;this.element.bind("mousedown."+this.widgetName,function(b){retur=
n =
a._mouseDown(b)}).bind("click."+this.widgetName,function(b){if(a._prevent=
ClickEvent){a._preventClickEvent=3Dfalse;b.stopImmediatePropagation();ret=
urn =
false}});this.started=3Dfalse},_mouseDestroy:function(){this.element.unbi=
nd("."+this.widgetName)},_mouseDown:function(a){a.originalEvent=3Da.origi=
nalEvent||{};if(!a.originalEvent.mouseHandled){this._mouseStarted&&=0A=
this._mouseUp(a);this._mouseDownEvent=3Da;var =
b=3Dthis,e=3Da.which=3D=3D1,f=3Dtypeof =
this.options.cancel=3D=3D"string"?c(a.target).parents().add(a.target).fil=
ter(this.options.cancel).length:false;if(!e||f||!this._mouseCapture(a))re=
turn =
true;this.mouseDelayMet=3D!this.options.delay;if(!this.mouseDelayMet)this=
._mouseDelayTimer=3DsetTimeout(function(){b.mouseDelayMet=3Dtrue},this.op=
tions.delay);if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a)){this._=
mouseStarted=3Dthis._mouseStart(a)!=3D=3Dfalse;if(!this._mouseStarted){a.=
preventDefault();=0A=
return true}}this._mouseMoveDelegate=3Dfunction(d){return =
b._mouseMove(d)};this._mouseUpDelegate=3Dfunction(d){return =
b._mouseUp(d)};c(document).bind("mousemove."+this.widgetName,this._mouseM=
oveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);c.bro=
wser.safari||a.preventDefault();return =
a.originalEvent.mouseHandled=3Dtrue}},_mouseMove:function(a){if(c.browser=
.msie&&!a.button)return =
this._mouseUp(a);if(this._mouseStarted){this._mouseDrag(a);return =
a.preventDefault()}if(this._mouseDistanceMet(a)&&=0A=
this._mouseDelayMet(a))(this._mouseStarted=3Dthis._mouseStart(this._mouse=
DownEvent,a)!=3D=3Dfalse)?this._mouseDrag(a):this._mouseUp(a);return!this=
._mouseStarted},_mouseUp:function(a){c(document).unbind("mousemove."+this=
.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,th=
is._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=3Dfalse;th=
is._preventClickEvent=3Da.target=3D=3Dthis._mouseDownEvent.target;this._m=
ouseStop(a)}return false},_mouseDistanceMet:function(a){return =
Math.max(Math.abs(this._mouseDownEvent.pageX-=0A=
a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=3Dthis.options.di=
stance},_mouseDelayMet:function(){return =
this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mou=
seStop:function(){},_mouseCapture:function(){return true}})})(jQuery);=0A=
;/*=0A=
 * jQuery UI Position 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Position=0A=
 */=0A=
(function(c){c.ui=3Dc.ui||{};var =
m=3D/left|center|right/,n=3D/top|center|bottom/,p=3Dc.fn.position,q=3Dc.f=
n.offset;c.fn.position=3Dfunction(a){if(!a||!a.of)return =
p.apply(this,arguments);a=3Dc.extend({},a);var =
b=3Dc(a.of),d=3D(a.collision||"flip").split(" =
"),e=3Da.offset?a.offset.split(" =
"):[0,0],g,h,i;if(a.of.nodeType=3D=3D=3D9){g=3Db.width();h=3Db.height();i=
=3D{top:0,left:0}}else =
if(a.of.scrollTo&&a.of.document){g=3Db.width();h=3Db.height();i=3D{top:b.=
scrollTop(),left:b.scrollLeft()}}else =
if(a.of.preventDefault){a.at=3D"left top";g=3Dh=3D=0A=
0;i=3D{top:a.of.pageY,left:a.of.pageX}}else{g=3Db.outerWidth();h=3Db.oute=
rHeight();i=3Db.offset()}c.each(["my","at"],function(){var =
f=3D(a[this]||"").split(" =
");if(f.length=3D=3D=3D1)f=3Dm.test(f[0])?f.concat(["center"]):n.test(f[0=
])?["center"].concat(f):["center","center"];f[0]=3Dm.test(f[0])?f[0]:"cen=
ter";f[1]=3Dn.test(f[1])?f[1]:"center";a[this]=3Df});if(d.length=3D=3D=3D=
1)d[1]=3Dd[0];e[0]=3DparseInt(e[0],10)||0;if(e.length=3D=3D=3D1)e[1]=3De[=
0];e[1]=3DparseInt(e[1],10)||0;if(a.at[0]=3D=3D=3D"right")i.left+=3Dg;els=
e if(a.at[0]=3D=3D=3D"center")i.left+=3D=0A=
g/2;if(a.at[1]=3D=3D=3D"bottom")i.top+=3Dh;else =
if(a.at[1]=3D=3D=3D"center")i.top+=3Dh/2;i.left+=3De[0];i.top+=3De[1];ret=
urn this.each(function(){var =
f=3Dc(this),k=3Df.outerWidth(),l=3Df.outerHeight(),j=3Dc.extend({},i);if(=
a.my[0]=3D=3D=3D"right")j.left-=3Dk;else =
if(a.my[0]=3D=3D=3D"center")j.left-=3Dk/2;if(a.my[1]=3D=3D=3D"bottom")j.t=
op-=3Dl;else =
if(a.my[1]=3D=3D=3D"center")j.top-=3Dl/2;j.left=3DparseInt(j.left);j.top=3D=
parseInt(j.top);c.each(["left","top"],function(o,r){c.ui.position[d[o]]&&=
c.ui.position[d[o]][r](j,{targetWidth:g,targetHeight:h,elemWidth:k,=0A=
elemHeight:l,offset:e,my:a.my,at:a.at})});c.fn.bgiframe&&f.bgiframe();f.o=
ffset(c.extend(j,{using:a.using}))})};c.ui.position=3D{fit:{left:function=
(a,b){var =
d=3Dc(window);b=3Da.left+b.elemWidth-d.width()-d.scrollLeft();a.left=3Db>=
0?a.left-b:Math.max(0,a.left)},top:function(a,b){var =
d=3Dc(window);b=3Da.top+b.elemHeight-d.height()-d.scrollTop();a.top=3Db>0=
?a.top-b:Math.max(0,a.top)}},flip:{left:function(a,b){if(b.at[0]!=3D=3D"c=
enter"){var =
d=3Dc(window);d=3Da.left+b.elemWidth-d.width()-d.scrollLeft();var =
e=3Db.my[0]=3D=3D=3D"left"?=0A=
-b.elemWidth:b.my[0]=3D=3D=3D"right"?b.elemWidth:0,g=3D-2*b.offset[0];a.l=
eft+=3Da.left<0?e+b.targetWidth+g:d>0?e-b.targetWidth+g:0}},top:function(=
a,b){if(b.at[1]!=3D=3D"center"){var =
d=3Dc(window);d=3Da.top+b.elemHeight-d.height()-d.scrollTop();var =
e=3Db.my[1]=3D=3D=3D"top"?-b.elemHeight:b.my[1]=3D=3D=3D"bottom"?b.elemHe=
ight:0,g=3Db.at[1]=3D=3D=3D"top"?b.targetHeight:-b.targetHeight,h=3D-2*b.=
offset[1];a.top+=3Da.top<0?e+b.targetHeight+h:d>0?e+g+h:0}}}};if(!c.offse=
t.setOffset){c.offset.setOffset=3Dfunction(a,b){if(/static/.test(c.curCSS=
(a,"position")))a.style.position=3D=0A=
"relative";var =
d=3Dc(a),e=3Dd.offset(),g=3DparseInt(c.curCSS(a,"top",true),10)||0,h=3Dpa=
rseInt(c.curCSS(a,"left",true),10)||0;e=3D{top:b.top-e.top+g,left:b.left-=
e.left+h};"using"in =
b?b.using.call(a,e):d.css(e)};c.fn.offset=3Dfunction(a){var =
b=3Dthis[0];if(!b||!b.ownerDocument)return null;if(a)return =
this.each(function(){c.offset.setOffset(this,a)});return =
q.call(this)}}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Draggable 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Draggables=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 *	jquery.ui.mouse.js=0A=
 *	jquery.ui.widget.js=0A=
 */=0A=
(function(d){d.widget("ui.draggable",d.ui.mouse,{widgetEventPrefix:"drag"=
,options:{addClasses:true,appendTo:"parent",axis:false,connectToSortable:=
false,containment:false,cursor:"auto",cursorAt:false,grid:false,handle:fa=
lse,helper:"original",iframeFix:false,opacity:false,refreshPositions:fals=
e,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensi=
tivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stac=
k:false,zIndex:false},_create:function(){if(this.options.helper=3D=3D=0A=
"original"&&!/^(?:r|a|f)/.test(this.element.css("position")))this.element=
[0].style.position=3D"relative";this.options.addClasses&&this.element.add=
Class("ui-draggable");this.options.disabled&&this.element.addClass("ui-dr=
aggable-disabled");this._mouseInit()},destroy:function(){if(this.element.=
data("draggable")){this.element.removeData("draggable").unbind(".draggabl=
e").removeClass("ui-draggable ui-draggable-dragging =
ui-draggable-disabled");this._mouseDestroy();return =
this}},_mouseCapture:function(a){var b=3D=0A=
this.options;if(this.helper||b.disabled||d(a.target).is(".ui-resizable-ha=
ndle"))return =
false;this.handle=3Dthis._getHandle(a);if(!this.handle)return =
false;return true},_mouseStart:function(a){var =
b=3Dthis.options;this.helper=3Dthis._createHelper(a);this._cacheHelperPro=
portions();if(d.ui.ddmanager)d.ui.ddmanager.current=3Dthis;this._cacheMar=
gins();this.cssPosition=3Dthis.helper.css("position");this.scrollParent=3D=
this.helper.scrollParent();this.offset=3Dthis.positionAbs=3Dthis.element.=
offset();this.offset=3D{top:this.offset.top-=0A=
this.margins.top,left:this.offset.left-this.margins.left};d.extend(this.o=
ffset,{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},=
parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.=
originalPosition=3Dthis.position=3Dthis._generatePosition(a);this.origina=
lPageX=3Da.pageX;this.originalPageY=3Da.pageY;b.cursorAt&&this._adjustOff=
setFromHelper(b.cursorAt);b.containment&&this._setContainment();if(this._=
trigger("start",a)=3D=3D=3Dfalse){this._clear();return =
false}this._cacheHelperProportions();=0A=
d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);t=
his.helper.addClass("ui-draggable-dragging");this._mouseDrag(a,true);retu=
rn =
true},_mouseDrag:function(a,b){this.position=3Dthis._generatePosition(a);=
this.positionAbs=3Dthis._convertPositionTo("absolute");if(!b){b=3Dthis._u=
iHash();if(this._trigger("drag",a,b)=3D=3D=3Dfalse){this._mouseUp({});ret=
urn =
false}this.position=3Db.position}if(!this.options.axis||this.options.axis=
!=3D"y")this.helper[0].style.left=3Dthis.position.left+"px";if(!this.opti=
ons.axis||=0A=
this.options.axis!=3D"x")this.helper[0].style.top=3Dthis.position.top+"px=
";d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);return =
false},_mouseStop:function(a){var =
b=3Dfalse;if(d.ui.ddmanager&&!this.options.dropBehaviour)b=3Dd.ui.ddmanag=
er.drop(this,a);if(this.dropped){b=3Dthis.dropped;this.dropped=3Dfalse}if=
(!this.element[0]||!this.element[0].parentNode)return =
false;if(this.options.revert=3D=3D"invalid"&&!b||this.options.revert=3D=3D=
"valid"&&b||this.options.revert=3D=3D=3Dtrue||d.isFunction(this.options.r=
evert)&&this.options.revert.call(this.element,=0A=
b)){var =
c=3Dthis;d(this.helper).animate(this.originalPosition,parseInt(this.optio=
ns.revertDuration,10),function(){c._trigger("stop",a)!=3D=3Dfalse&&c._cle=
ar()})}else this._trigger("stop",a)!=3D=3Dfalse&&this._clear();return =
false},cancel:function(){this.helper.is(".ui-draggable-dragging")?this._m=
ouseUp({}):this._clear();return this},_getHandle:function(a){var =
b=3D!this.options.handle||!d(this.options.handle,this.element).length?tru=
e:false;d(this.options.handle,this.element).find("*").andSelf().each(func=
tion(){if(this=3D=3D=0A=
a.target)b=3Dtrue});return b},_createHelper:function(a){var =
b=3Dthis.options;a=3Dd.isFunction(b.helper)?d(b.helper.apply(this.element=
[0],[a])):b.helper=3D=3D"clone"?this.element.clone():this.element;a.paren=
ts("body").length||a.appendTo(b.appendTo=3D=3D"parent"?this.element[0].pa=
rentNode:b.appendTo);a[0]!=3Dthis.element[0]&&!/(fixed|absolute)/.test(a.=
css("position"))&&a.css("position","absolute");return =
a},_adjustOffsetFromHelper:function(a){if(typeof =
a=3D=3D"string")a=3Da.split(" =
");if(d.isArray(a))a=3D{left:+a[0],top:+a[1]||=0A=
0};if("left"in =
a)this.offset.click.left=3Da.left+this.margins.left;if("right"in =
a)this.offset.click.left=3Dthis.helperProportions.width-a.right+this.marg=
ins.left;if("top"in =
a)this.offset.click.top=3Da.top+this.margins.top;if("bottom"in =
a)this.offset.click.top=3Dthis.helperProportions.height-a.bottom+this.mar=
gins.top},_getParentOffset:function(){this.offsetParent=3Dthis.helper.off=
setParent();var =
a=3Dthis.offsetParent.offset();if(this.cssPosition=3D=3D"absolute"&&this.=
scrollParent[0]!=3Ddocument&&d.ui.contains(this.scrollParent[0],=0A=
this.offsetParent[0])){a.left+=3Dthis.scrollParent.scrollLeft();a.top+=3D=
this.scrollParent.scrollTop()}if(this.offsetParent[0]=3D=3Ddocument.body|=
|this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=
=3D=3D"html"&&d.browser.msie)a=3D{top:0,left:0};return{top:a.top+(parseIn=
t(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(t=
his.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:func=
tion(){if(this.cssPosition=3D=3D"relative"){var =
a=3Dthis.element.position();return{top:a.top-=0A=
(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),le=
ft:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scr=
ollLeft()}}else =
return{top:0,left:0}},_cacheMargins:function(){this.margins=3D{left:parse=
Int(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("=
marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperPropor=
tions=3D{width:this.helper.outerWidth(),height:this.helper.outerHeight()}=
},_setContainment:function(){var a=3Dthis.options;if(a.containment=3D=3D=0A=
"parent")a.containment=3Dthis.helper[0].parentNode;if(a.containment=3D=3D=
"document"||a.containment=3D=3D"window")this.containment=3D[0-this.offset=
.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.of=
fset.parent.top,d(a.containment=3D=3D"document"?document:window).width()-=
this.helperProportions.width-this.margins.left,(d(a.containment=3D=3D"doc=
ument"?document:window).height()||document.body.parentNode.scrollHeight)-=
this.helperProportions.height-this.margins.top];if(!/^(document|window|pa=
rent)$/.test(a.containment)&&=0A=
a.containment.constructor!=3DArray){var =
b=3Dd(a.containment)[0];if(b){a=3Dd(a.containment).offset();var =
c=3Dd(b).css("overflow")!=3D"hidden";this.containment=3D[a.left+(parseInt=
(d(b).css("borderLeftWidth"),10)||0)+(parseInt(d(b).css("paddingLeft"),10=
)||0)-this.margins.left,a.top+(parseInt(d(b).css("borderTopWidth"),10)||0=
)+(parseInt(d(b).css("paddingTop"),10)||0)-this.margins.top,a.left+(c?Mat=
h.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("bor=
derLeftWidth"),10)||0)-(parseInt(d(b).css("paddingRight"),=0A=
10)||0)-this.helperProportions.width-this.margins.left,a.top+(c?Math.max(=
b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("border=
TopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),10)||0)-this.helpe=
rProportions.height-this.margins.top]}}else =
if(a.containment.constructor=3D=3DArray)this.containment=3Da.containment}=
,_convertPositionTo:function(a,b){if(!b)b=3Dthis.position;a=3Da=3D=3D"abs=
olute"?1:-1;var =
c=3Dthis.cssPosition=3D=3D"absolute"&&!(this.scrollParent[0]!=3Ddocument&=
&d.ui.contains(this.scrollParent[0],=0A=
this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=3D/(html|bod=
y)/i.test(c[0].tagName);return{top:b.top+this.offset.relative.top*a+this.=
offset.parent.top*a-(d.browser.safari&&d.browser.version<526&&this.cssPos=
ition=3D=3D"fixed"?0:(this.cssPosition=3D=3D"fixed"?-this.scrollParent.sc=
rollTop():f?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+t=
his.offset.parent.left*a-(d.browser.safari&&d.browser.version<526&&this.c=
ssPosition=3D=3D"fixed"?0:(this.cssPosition=3D=3D"fixed"?-this.scrollPare=
nt.scrollLeft():=0A=
f?0:c.scrollLeft())*a)}},_generatePosition:function(a){var =
b=3Dthis.options,c=3Dthis.cssPosition=3D=3D"absolute"&&!(this.scrollParen=
t[0]!=3Ddocument&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]=
))?this.offsetParent:this.scrollParent,f=3D/(html|body)/i.test(c[0].tagNa=
me),e=3Da.pageX,g=3Da.pageY;if(this.originalPosition){if(this.containment=
){if(a.pageX-this.offset.click.left<this.containment[0])e=3Dthis.containm=
ent[0]+this.offset.click.left;if(a.pageY-this.offset.click.top<this.conta=
inment[1])g=3Dthis.containment[1]+=0A=
this.offset.click.top;if(a.pageX-this.offset.click.left>this.containment[=
2])e=3Dthis.containment[2]+this.offset.click.left;if(a.pageY-this.offset.=
click.top>this.containment[3])g=3Dthis.containment[3]+this.offset.click.t=
op}if(b.grid){g=3Dthis.originalPageY+Math.round((g-this.originalPageY)/b.=
grid[1])*b.grid[1];g=3Dthis.containment?!(g-this.offset.click.top<this.co=
ntainment[1]||g-this.offset.click.top>this.containment[3])?g:!(g-this.off=
set.click.top<this.containment[1])?g-b.grid[1]:g+b.grid[1]:g;e=3Dthis.ori=
ginalPageX+=0A=
Math.round((e-this.originalPageX)/b.grid[0])*b.grid[0];e=3Dthis.containme=
nt?!(e-this.offset.click.left<this.containment[0]||e-this.offset.click.le=
ft>this.containment[2])?e:!(e-this.offset.click.left<this.containment[0])=
?e-b.grid[0]:e+b.grid[0]:e}}return{top:g-this.offset.click.top-this.offse=
t.relative.top-this.offset.parent.top+(d.browser.safari&&d.browser.versio=
n<526&&this.cssPosition=3D=3D"fixed"?0:this.cssPosition=3D=3D"fixed"?-thi=
s.scrollParent.scrollTop():f?0:c.scrollTop()),left:e-this.offset.click.le=
ft-=0A=
this.offset.relative.left-this.offset.parent.left+(d.browser.safari&&d.br=
owser.version<526&&this.cssPosition=3D=3D"fixed"?0:this.cssPosition=3D=3D=
"fixed"?-this.scrollParent.scrollLeft():f?0:c.scrollLeft())}},_clear:func=
tion(){this.helper.removeClass("ui-draggable-dragging");this.helper[0]!=3D=
this.element[0]&&!this.cancelHelperRemoval&&this.helper.remove();this.hel=
per=3Dnull;this.cancelHelperRemoval=3Dfalse},_trigger:function(a,b,c){c=3D=
c||this._uiHash();d.ui.plugin.call(this,a,[b,c]);if(a=3D=3D"drag")this.po=
sitionAbs=3D=0A=
this._convertPositionTo("absolute");return =
d.Widget.prototype._trigger.call(this,a,b,c)},plugins:{},_uiHash:function=
(){return{helper:this.helper,position:this.position,originalPosition:this=
.originalPosition,offset:this.positionAbs}}});d.extend(d.ui.draggable,{ve=
rsion:"1.8.4"});d.ui.plugin.add("draggable","connectToSortable",{start:fu=
nction(a,b){var =
c=3Dd(this).data("draggable"),f=3Dc.options,e=3Dd.extend({},b,{item:c.ele=
ment});c.sortables=3D[];d(f.connectToSortable).each(function(){var =
g=3Dd.data(this,"sortable");=0A=
if(g&&!g.options.disabled){c.sortables.push({instance:g,shouldRevert:g.op=
tions.revert});g._refreshItems();g._trigger("activate",a,e)}})},stop:func=
tion(a,b){var =
c=3Dd(this).data("draggable"),f=3Dd.extend({},b,{item:c.element});d.each(=
c.sortables,function(){if(this.instance.isOver){this.instance.isOver=3D0;=
c.cancelHelperRemoval=3Dtrue;this.instance.cancelHelperRemoval=3Dfalse;if=
(this.shouldRevert)this.instance.options.revert=3Dtrue;this.instance._mou=
seStop(a);this.instance.options.helper=3Dthis.instance.options._helper;=0A=
c.options.helper=3D=3D"original"&&this.instance.currentItem.css({top:"aut=
o",left:"auto"})}else{this.instance.cancelHelperRemoval=3Dfalse;this.inst=
ance._trigger("deactivate",a,f)}})},drag:function(a,b){var =
c=3Dd(this).data("draggable"),f=3Dthis;d.each(c.sortables,function(){this=
.instance.positionAbs=3Dc.positionAbs;this.instance.helperProportions=3Dc=
.helperProportions;this.instance.offset.click=3Dc.offset.click;if(this.in=
stance._intersectsWith(this.instance.containerCache)){if(!this.instance.i=
sOver){this.instance.isOver=3D=0A=
1;this.instance.currentItem=3Dd(f).clone().appendTo(this.instance.element=
).data("sortable-item",true);this.instance.options._helper=3Dthis.instanc=
e.options.helper;this.instance.options.helper=3Dfunction(){return =
b.helper[0]};a.target=3Dthis.instance.currentItem[0];this.instance._mouse=
Capture(a,true);this.instance._mouseStart(a,true,true);this.instance.offs=
et.click.top=3Dc.offset.click.top;this.instance.offset.click.left=3Dc.off=
set.click.left;this.instance.offset.parent.left-=3Dc.offset.parent.left-t=
his.instance.offset.parent.left;=0A=
this.instance.offset.parent.top-=3Dc.offset.parent.top-this.instance.offs=
et.parent.top;c._trigger("toSortable",a);c.dropped=3Dthis.instance.elemen=
t;c.currentItem=3Dc.element;this.instance.fromOutside=3Dc}this.instance.c=
urrentItem&&this.instance._mouseDrag(a)}else =
if(this.instance.isOver){this.instance.isOver=3D0;this.instance.cancelHel=
perRemoval=3Dtrue;this.instance.options.revert=3Dfalse;this.instance._tri=
gger("out",a,this.instance._uiHash(this.instance));this.instance._mouseSt=
op(a,true);this.instance.options.helper=3D=0A=
this.instance.options._helper;this.instance.currentItem.remove();this.ins=
tance.placeholder&&this.instance.placeholder.remove();c._trigger("fromSor=
table",a);c.dropped=3Dfalse}})}});d.ui.plugin.add("draggable","cursor",{s=
tart:function(){var =
a=3Dd("body"),b=3Dd(this).data("draggable").options;if(a.css("cursor"))b.=
_cursor=3Da.css("cursor");a.css("cursor",b.cursor)},stop:function(){var =
a=3Dd(this).data("draggable").options;a._cursor&&d("body").css("cursor",a=
._cursor)}});d.ui.plugin.add("draggable","iframeFix",{start:function(){va=
r a=3D=0A=
d(this).data("draggable").options;d(a.iframeFix=3D=3D=3Dtrue?"iframe":a.i=
frameFix).each(function(){d('<div class=3D"ui-draggable-iframeFix" =
style=3D"background: =
#fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight=
+"px",position:"absolute",opacity:"0.001",zIndex:1E3}).css(d(this).offset=
()).appendTo("body")})},stop:function(){d("div.ui-draggable-iframeFix").e=
ach(function(){this.parentNode.removeChild(this)})}});d.ui.plugin.add("dr=
aggable","opacity",{start:function(a,b){a=3Dd(b.helper);b=3Dd(this).data(=
"draggable").options;=0A=
if(a.css("opacity"))b._opacity=3Da.css("opacity");a.css("opacity",b.opaci=
ty)},stop:function(a,b){a=3Dd(this).data("draggable").options;a._opacity&=
&d(b.helper).css("opacity",a._opacity)}});d.ui.plugin.add("draggable","sc=
roll",{start:function(){var =
a=3Dd(this).data("draggable");if(a.scrollParent[0]!=3Ddocument&&a.scrollP=
arent[0].tagName!=3D"HTML")a.overflowOffset=3Da.scrollParent.offset()},dr=
ag:function(a){var =
b=3Dd(this).data("draggable"),c=3Db.options,f=3Dfalse;if(b.scrollParent[0=
]!=3Ddocument&&b.scrollParent[0].tagName!=3D=0A=
"HTML"){if(!c.axis||c.axis!=3D"x")if(b.overflowOffset.top+b.scrollParent[=
0].offsetHeight-a.pageY<c.scrollSensitivity)b.scrollParent[0].scrollTop=3D=
f=3Db.scrollParent[0].scrollTop+c.scrollSpeed;else =
if(a.pageY-b.overflowOffset.top<c.scrollSensitivity)b.scrollParent[0].scr=
ollTop=3Df=3Db.scrollParent[0].scrollTop-c.scrollSpeed;if(!c.axis||c.axis=
!=3D"y")if(b.overflowOffset.left+b.scrollParent[0].offsetWidth-a.pageX<c.=
scrollSensitivity)b.scrollParent[0].scrollLeft=3Df=3Db.scrollParent[0].sc=
rollLeft+c.scrollSpeed;else if(a.pageX-=0A=
b.overflowOffset.left<c.scrollSensitivity)b.scrollParent[0].scrollLeft=3D=
f=3Db.scrollParent[0].scrollLeft-c.scrollSpeed}else{if(!c.axis||c.axis!=3D=
"x")if(a.pageY-d(document).scrollTop()<c.scrollSensitivity)f=3Dd(document=
).scrollTop(d(document).scrollTop()-c.scrollSpeed);else =
if(d(window).height()-(a.pageY-d(document).scrollTop())<c.scrollSensitivi=
ty)f=3Dd(document).scrollTop(d(document).scrollTop()+c.scrollSpeed);if(!c=
.axis||c.axis!=3D"y")if(a.pageX-d(document).scrollLeft()<c.scrollSensitiv=
ity)f=3Dd(document).scrollLeft(d(document).scrollLeft()-=0A=
c.scrollSpeed);else =
if(d(window).width()-(a.pageX-d(document).scrollLeft())<c.scrollSensitivi=
ty)f=3Dd(document).scrollLeft(d(document).scrollLeft()+c.scrollSpeed)}f!=3D=
=3Dfalse&&d.ui.ddmanager&&!c.dropBehaviour&&d.ui.ddmanager.prepareOffsets=
(b,a)}});d.ui.plugin.add("draggable","snap",{start:function(){var =
a=3Dd(this).data("draggable"),b=3Da.options;a.snapElements=3D[];d(b.snap.=
constructor!=3DString?b.snap.items||":data(draggable)":b.snap).each(funct=
ion(){var =
c=3Dd(this),f=3Dc.offset();this!=3Da.element[0]&&a.snapElements.push({ite=
m:this,=0A=
width:c.outerWidth(),height:c.outerHeight(),top:f.top,left:f.left})})},dr=
ag:function(a,b){for(var =
c=3Dd(this).data("draggable"),f=3Dc.options,e=3Df.snapTolerance,g=3Db.off=
set.left,n=3Dg+c.helperProportions.width,m=3Db.offset.top,o=3Dm+c.helperP=
roportions.height,h=3Dc.snapElements.length-1;h>=3D0;h--){var =
i=3Dc.snapElements[h].left,k=3Di+c.snapElements[h].width,j=3Dc.snapElemen=
ts[h].top,l=3Dj+c.snapElements[h].height;if(i-e<g&&g<k+e&&j-e<m&&m<l+e||i=
-e<g&&g<k+e&&j-e<o&&o<l+e||i-e<n&&n<k+e&&j-e<m&&m<l+e||i-e<n&&n<k+e&&j-e<=
o&&=0A=
o<l+e){if(f.snapMode!=3D"inner"){var =
p=3DMath.abs(j-o)<=3De,q=3DMath.abs(l-m)<=3De,r=3DMath.abs(i-n)<=3De,s=3D=
Math.abs(k-g)<=3De;if(p)b.position.top=3Dc._convertPositionTo("relative",=
{top:j-c.helperProportions.height,left:0}).top-c.margins.top;if(q)b.posit=
ion.top=3Dc._convertPositionTo("relative",{top:l,left:0}).top-c.margins.t=
op;if(r)b.position.left=3Dc._convertPositionTo("relative",{top:0,left:i-c=
.helperProportions.width}).left-c.margins.left;if(s)b.position.left=3Dc._=
convertPositionTo("relative",{top:0,left:k}).left-c.margins.left}var t=3D=0A=
p||q||r||s;if(f.snapMode!=3D"outer"){p=3DMath.abs(j-m)<=3De;q=3DMath.abs(=
l-o)<=3De;r=3DMath.abs(i-g)<=3De;s=3DMath.abs(k-n)<=3De;if(p)b.position.t=
op=3Dc._convertPositionTo("relative",{top:j,left:0}).top-c.margins.top;if=
(q)b.position.top=3Dc._convertPositionTo("relative",{top:l-c.helperPropor=
tions.height,left:0}).top-c.margins.top;if(r)b.position.left=3Dc._convert=
PositionTo("relative",{top:0,left:i}).left-c.margins.left;if(s)b.position=
.left=3Dc._convertPositionTo("relative",{top:0,left:k-c.helperProportions=
.width}).left-c.margins.left}if(!c.snapElements[h].snapping&&=0A=
(p||q||r||s||t))c.options.snap.snap&&c.options.snap.snap.call(c.element,a=
,d.extend(c._uiHash(),{snapItem:c.snapElements[h].item}));c.snapElements[=
h].snapping=3Dp||q||r||s||t}else{c.snapElements[h].snapping&&c.options.sn=
ap.release&&c.options.snap.release.call(c.element,a,d.extend(c._uiHash(),=
{snapItem:c.snapElements[h].item}));c.snapElements[h].snapping=3Dfalse}}}=
});d.ui.plugin.add("draggable","stack",{start:function(){var =
a=3Dd(this).data("draggable").options;a=3Dd.makeArray(d(a.stack)).sort(fu=
nction(c,f){return(parseInt(d(c).css("zIndex"),=0A=
10)||0)-(parseInt(d(f).css("zIndex"),10)||0)});if(a.length){var =
b=3DparseInt(a[0].style.zIndex)||0;d(a).each(function(c){this.style.zInde=
x=3Db+c});this[0].style.zIndex=3Db+a.length}}});d.ui.plugin.add("draggabl=
e","zIndex",{start:function(a,b){a=3Dd(b.helper);b=3Dd(this).data("dragga=
ble").options;if(a.css("zIndex"))b._zIndex=3Da.css("zIndex");a.css("zInde=
x",b.zIndex)},stop:function(a,b){a=3Dd(this).data("draggable").options;a.=
_zIndex&&d(b.helper).css("zIndex",a._zIndex)}})})(jQuery);=0A=
;/*=0A=
 * jQuery UI Droppable 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Droppables=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 *	jquery.ui.widget.js=0A=
 *	jquery.ui.mouse.js=0A=
 *	jquery.ui.draggable.js=0A=
 */=0A=
(function(d){d.widget("ui.droppable",{widgetEventPrefix:"drop",options:{a=
ccept:"*",activeClass:false,addClasses:true,greedy:false,hoverClass:false=
,scope:"default",tolerance:"intersect"},_create:function(){var =
a=3Dthis.options,b=3Da.accept;this.isover=3D0;this.isout=3D1;this.accept=3D=
d.isFunction(b)?b:function(c){return =
c.is(b)};this.proportions=3D{width:this.element[0].offsetWidth,height:thi=
s.element[0].offsetHeight};d.ui.ddmanager.droppables[a.scope]=3Dd.ui.ddma=
nager.droppables[a.scope]||[];d.ui.ddmanager.droppables[a.scope].push(thi=
s);=0A=
a.addClasses&&this.element.addClass("ui-droppable")},destroy:function(){f=
or(var =
a=3Dd.ui.ddmanager.droppables[this.options.scope],b=3D0;b<a.length;b++)a[=
b]=3D=3Dthis&&a.splice(b,1);this.element.removeClass("ui-droppable =
ui-droppable-disabled").removeData("droppable").unbind(".droppable");retu=
rn =
this},_setOption:function(a,b){if(a=3D=3D"accept")this.accept=3Dd.isFunct=
ion(b)?b:function(c){return =
c.is(b)};d.Widget.prototype._setOption.apply(this,arguments)},_activate:f=
unction(a){var b=3Dd.ui.ddmanager.current;this.options.activeClass&&=0A=
this.element.addClass(this.options.activeClass);b&&this._trigger("activat=
e",a,this.ui(b))},_deactivate:function(a){var =
b=3Dd.ui.ddmanager.current;this.options.activeClass&&this.element.removeC=
lass(this.options.activeClass);b&&this._trigger("deactivate",a,this.ui(b)=
)},_over:function(a){var =
b=3Dd.ui.ddmanager.current;if(!(!b||(b.currentItem||b.element)[0]=3D=3Dth=
is.element[0]))if(this.accept.call(this.element[0],b.currentItem||b.eleme=
nt)){this.options.hoverClass&&this.element.addClass(this.options.hoverCla=
ss);=0A=
this._trigger("over",a,this.ui(b))}},_out:function(a){var =
b=3Dd.ui.ddmanager.current;if(!(!b||(b.currentItem||b.element)[0]=3D=3Dth=
is.element[0]))if(this.accept.call(this.element[0],b.currentItem||b.eleme=
nt)){this.options.hoverClass&&this.element.removeClass(this.options.hover=
Class);this._trigger("out",a,this.ui(b))}},_drop:function(a,b){var =
c=3Db||d.ui.ddmanager.current;if(!c||(c.currentItem||c.element)[0]=3D=3Dt=
his.element[0])return false;var =
e=3Dfalse;this.element.find(":data(droppable)").not(".ui-draggable-draggi=
ng").each(function(){var g=3D=0A=
d.data(this,"droppable");if(g.options.greedy&&!g.options.disabled&&g.opti=
ons.scope=3D=3Dc.options.scope&&g.accept.call(g.element[0],c.currentItem|=
|c.element)&&d.ui.intersect(c,d.extend(g,{offset:g.element.offset()}),g.o=
ptions.tolerance)){e=3Dtrue;return false}});if(e)return =
false;if(this.accept.call(this.element[0],c.currentItem||c.element)){this=
.options.activeClass&&this.element.removeClass(this.options.activeClass);=
this.options.hoverClass&&this.element.removeClass(this.options.hoverClass=
);this._trigger("drop",=0A=
a,this.ui(c));return this.element}return =
false},ui:function(a){return{draggable:a.currentItem||a.element,helper:a.=
helper,position:a.position,offset:a.positionAbs}}});d.extend(d.ui.droppab=
le,{version:"1.8.4"});d.ui.intersect=3Dfunction(a,b,c){if(!b.offset)retur=
n false;var =
e=3D(a.positionAbs||a.position.absolute).left,g=3De+a.helperProportions.w=
idth,f=3D(a.positionAbs||a.position.absolute).top,h=3Df+a.helperProportio=
ns.height,i=3Db.offset.left,k=3Di+b.proportions.width,j=3Db.offset.top,l=3D=
j+b.proportions.height;=0A=
switch(c){case "fit":return i<=3De&&g<=3Dk&&j<=3Df&&h<=3Dl;case =
"intersect":return =
i<e+a.helperProportions.width/2&&g-a.helperProportions.width/2<k&&j<f+a.h=
elperProportions.height/2&&h-a.helperProportions.height/2<l;case =
"pointer":return =
d.ui.isOver((a.positionAbs||a.position.absolute).top+(a.clickOffset||a.of=
fset.click).top,(a.positionAbs||a.position.absolute).left+(a.clickOffset|=
|a.offset.click).left,j,i,b.proportions.height,b.proportions.width);case =
"touch":return(f>=3Dj&&f<=3Dl||h>=3Dj&&h<=3Dl||f<j&&h>l)&&(e>=3D=0A=
i&&e<=3Dk||g>=3Di&&g<=3Dk||e<i&&g>k);default:return =
false}};d.ui.ddmanager=3D{current:null,droppables:{"default":[]},prepareO=
ffsets:function(a,b){var =
c=3Dd.ui.ddmanager.droppables[a.options.scope]||[],e=3Db?b.type:null,g=3D=
(a.currentItem||a.element).find(":data(droppable)").andSelf(),f=3D0;a:for=
(;f<c.length;f++)if(!(c[f].options.disabled||a&&!c[f].accept.call(c[f].el=
ement[0],a.currentItem||a.element))){for(var =
h=3D0;h<g.length;h++)if(g[h]=3D=3Dc[f].element[0]){c[f].proportions.heigh=
t=3D0;continue a}c[f].visible=3Dc[f].element.css("display")!=3D=0A=
"none";if(c[f].visible){c[f].offset=3Dc[f].element.offset();c[f].proporti=
ons=3D{width:c[f].element[0].offsetWidth,height:c[f].element[0].offsetHei=
ght};e=3D=3D"mousedown"&&c[f]._activate.call(c[f],b)}}},drop:function(a,b=
){var =
c=3Dfalse;d.each(d.ui.ddmanager.droppables[a.options.scope]||[],function(=
){if(this.options){if(!this.options.disabled&&this.visible&&d.ui.intersec=
t(a,this,this.options.tolerance))c=3Dc||this._drop.call(this,b);if(!this.=
options.disabled&&this.visible&&this.accept.call(this.element[0],a.curren=
tItem||=0A=
a.element)){this.isout=3D1;this.isover=3D0;this._deactivate.call(this,b)}=
}});return =
c},drag:function(a,b){a.options.refreshPositions&&d.ui.ddmanager.prepareO=
ffsets(a,b);d.each(d.ui.ddmanager.droppables[a.options.scope]||[],functio=
n(){if(!(this.options.disabled||this.greedyChild||!this.visible)){var =
c=3Dd.ui.intersect(a,this,this.options.tolerance);if(c=3D!c&&this.isover=3D=
=3D1?"isout":c&&this.isover=3D=3D0?"isover":null){var =
e;if(this.options.greedy){var =
g=3Dthis.element.parents(":data(droppable):eq(0)");if(g.length){e=3D=0A=
d.data(g[0],"droppable");e.greedyChild=3Dc=3D=3D"isover"?1:0}}if(e&&c=3D=3D=
"isover"){e.isover=3D0;e.isout=3D1;e._out.call(e,b)}this[c]=3D1;this[c=3D=
=3D"isout"?"isover":"isout"]=3D0;this[c=3D=3D"isover"?"_over":"_out"].cal=
l(this,b);if(e&&c=3D=3D"isout"){e.isout=3D0;e.isover=3D1;e._over.call(e,b=
)}}}})}}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Resizable 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Resizables=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 *	jquery.ui.mouse.js=0A=
 *	jquery.ui.widget.js=0A=
 */=0A=
(function(e){e.widget("ui.resizable",e.ui.mouse,{widgetEventPrefix:"resiz=
e",options:{alsoResize:false,animate:false,animateDuration:"slow",animate=
Easing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:f=
alse,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:nul=
l,minHeight:10,minWidth:10,zIndex:1E3},_create:function(){var =
b=3Dthis,a=3Dthis.options;this.element.addClass("ui-resizable");e.extend(=
this,{_aspectRatio:!!a.aspectRatio,aspectRatio:a.aspectRatio,originalElem=
ent:this.element,=0A=
_proportionallyResizeElements:[],_helper:a.helper||a.ghost||a.animate?a.h=
elper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/ca=
nvas|textarea|input|select|button|img/i)){/relative/.test(this.element.cs=
s("position"))&&e.browser.opera&&this.element.css({position:"relative",to=
p:"auto",left:"auto"});this.element.wrap(e('<div class=3D"ui-wrapper" =
style=3D"overflow: =
hidden;"></div>').css({position:this.element.css("position"),width:this.e=
lement.outerWidth(),height:this.element.outerHeight(),=0A=
top:this.element.css("top"),left:this.element.css("left")}));this.element=
=3Dthis.element.parent().data("resizable",this.element.data("resizable"))=
;this.elementIsWrapper=3Dtrue;this.element.css({marginLeft:this.originalE=
lement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),=
marginRight:this.originalElement.css("marginRight"),marginBottom:this.ori=
ginalElement.css("marginBottom")});this.originalElement.css({marginLeft:0=
,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=3D=0A=
this.originalElement.css("resize");this.originalElement.css("resize","non=
e");this._proportionallyResizeElements.push(this.originalElement.css({pos=
ition:"static",zoom:1,display:"block"}));this.originalElement.css({margin=
:this.originalElement.css("margin")});this._proportionallyResize()}this.h=
andles=3Da.handles||(!e(".ui-resizable-handle",this.element).length?"e,s,=
se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-r=
esizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable=
-ne",=0A=
nw:".ui-resizable-nw"});if(this.handles.constructor=3D=3DString){if(this.=
handles=3D=3D"all")this.handles=3D"n,e,s,w,se,sw,ne,nw";var =
c=3Dthis.handles.split(",");this.handles=3D{};for(var =
d=3D0;d<c.length;d++){var f=3De.trim(c[d]),g=3De('<div =
class=3D"ui-resizable-handle =
'+("ui-resizable-"+f)+'"></div>');/sw|se|ne|nw/.test(f)&&g.css({zIndex:++=
a.zIndex});"se"=3D=3Df&&g.addClass("ui-icon =
ui-icon-gripsmall-diagonal-se");this.handles[f]=3D".ui-resizable-"+f;this=
.element.append(g)}}this._renderAxis=3Dfunction(h){h=3Dh||this.element;fo=
r(var i in this.handles){if(this.handles[i].constructor=3D=3D=0A=
String)this.handles[i]=3De(this.handles[i],this.element).show();if(this.e=
lementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|s=
elect|button/i)){var =
j=3De(this.handles[i],this.element),k=3D0;k=3D/sw|ne|nw|se|n|s/.test(i)?j=
.outerHeight():j.outerWidth();j=3D["padding",/ne|nw|n/.test(i)?"Top":/se|=
sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join("");h.css(j,k);=
this._proportionallyResize()}e(this.handles[i])}};this._renderAxis(this.e=
lement);this._handles=3De(".ui-resizable-handle",this.element).disableSel=
ection();=0A=
this._handles.mouseover(function(){if(!b.resizing){if(this.className)var =
h=3Dthis.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=3D=
h&&h[1]?h[1]:"se"}});if(a.autoHide){this._handles.hide();e(this.element).=
addClass("ui-resizable-autohide").hover(function(){e(this).removeClass("u=
i-resizable-autohide");b._handles.show()},function(){if(!b.resizing){e(th=
is).addClass("ui-resizable-autohide");b._handles.hide()}})}this._mouseIni=
t()},destroy:function(){this._mouseDestroy();var =
b=3Dfunction(c){e(c).removeClass("ui-resizable ui-resizable-disabled =
ui-resizable-resizing").removeData("resizable").unbind(".resizable").find=
(".ui-resizable-handle").remove()};=0A=
if(this.elementIsWrapper){b(this.element);var =
a=3Dthis.element;a.after(this.originalElement.css({position:a.css("positi=
on"),width:a.outerWidth(),height:a.outerHeight(),top:a.css("top"),left:a.=
css("left")})).remove()}this.originalElement.css("resize",this.originalRe=
sizeStyle);b(this.originalElement);return =
this},_mouseCapture:function(b){var a=3Dfalse;for(var c in =
this.handles)if(e(this.handles[c])[0]=3D=3Db.target)a=3Dtrue;return!this.=
options.disabled&&a},_mouseStart:function(b){var =
a=3Dthis.options,c=3Dthis.element.position(),=0A=
d=3Dthis.element;this.resizing=3Dtrue;this.documentScroll=3D{top:e(docume=
nt).scrollTop(),left:e(document).scrollLeft()};if(d.is(".ui-draggable")||=
/absolute/.test(d.css("position")))d.css({position:"absolute",top:c.top,l=
eft:c.left});e.browser.opera&&/relative/.test(d.css("position"))&&d.css({=
position:"relative",top:"auto",left:"auto"});this._renderProxy();c=3Dm(th=
is.helper.css("left"));var =
f=3Dm(this.helper.css("top"));if(a.containment){c+=3De(a.containment).scr=
ollLeft()||0;f+=3De(a.containment).scrollTop()||0}this.offset=3D=0A=
this.helper.offset();this.position=3D{left:c,top:f};this.size=3Dthis._hel=
per?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height=
:d.height()};this.originalSize=3Dthis._helper?{width:d.outerWidth(),heigh=
t:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalPosit=
ion=3D{left:c,top:f};this.sizeDiff=3D{width:d.outerWidth()-d.width(),heig=
ht:d.outerHeight()-d.height()};this.originalMousePosition=3D{left:b.pageX=
,top:b.pageY};this.aspectRatio=3Dtypeof =
a.aspectRatio=3D=3D"number"?a.aspectRatio:=0A=
this.originalSize.width/this.originalSize.height||1;a=3De(".ui-resizable-=
"+this.axis).css("cursor");e("body").css("cursor",a=3D=3D"auto"?this.axis=
+"-resize":a);d.addClass("ui-resizable-resizing");this._propagate("start"=
,b);return true},_mouseDrag:function(b){var =
a=3Dthis.helper,c=3Dthis.originalMousePosition,d=3Dthis._change[this.axis=
];if(!d)return =
false;c=3Dd.apply(this,[b,b.pageX-c.left||0,b.pageY-c.top||0]);if(this._a=
spectRatio||b.shiftKey)c=3Dthis._updateRatio(c,b);c=3Dthis._respectSize(c=
,b);this._propagate("resize",=0A=
b);a.css({top:this.position.top+"px",left:this.position.left+"px",width:t=
his.size.width+"px",height:this.size.height+"px"});!this._helper&&this._p=
roportionallyResizeElements.length&&this._proportionallyResize();this._up=
dateCache(c);this._trigger("resize",b,this.ui());return =
false},_mouseStop:function(b){this.resizing=3Dfalse;var =
a=3Dthis.options,c=3Dthis;if(this._helper){var =
d=3Dthis._proportionallyResizeElements,f=3Dd.length&&/textarea/i.test(d[0=
].nodeName);d=3Df&&e.ui.hasScroll(d[0],"left")?0:c.sizeDiff.height;=0A=
f=3D{width:c.size.width-(f?0:c.sizeDiff.width),height:c.size.height-d};d=3D=
parseInt(c.element.css("left"),10)+(c.position.left-c.originalPosition.le=
ft)||null;var =
g=3DparseInt(c.element.css("top"),10)+(c.position.top-c.originalPosition.=
top)||null;a.animate||this.element.css(e.extend(f,{top:g,left:d}));c.help=
er.height(c.size.height);c.helper.width(c.size.width);this._helper&&!a.an=
imate&&this._proportionallyResize()}e("body").css("cursor","auto");this.e=
lement.removeClass("ui-resizable-resizing");this._propagate("stop",=0A=
b);this._helper&&this.helper.remove();return =
false},_updateCache:function(b){this.offset=3Dthis.helper.offset();if(l(b=
.left))this.position.left=3Db.left;if(l(b.top))this.position.top=3Db.top;=
if(l(b.height))this.size.height=3Db.height;if(l(b.width))this.size.width=3D=
b.width},_updateRatio:function(b){var =
a=3Dthis.position,c=3Dthis.size,d=3Dthis.axis;if(b.height)b.width=3Dc.hei=
ght*this.aspectRatio;else =
if(b.width)b.height=3Dc.width/this.aspectRatio;if(d=3D=3D"sw"){b.left=3Da=
.left+(c.width-b.width);b.top=3Dnull}if(d=3D=3D"nw"){b.top=3D=0A=
a.top+(c.height-b.height);b.left=3Da.left+(c.width-b.width)}return =
b},_respectSize:function(b){var =
a=3Dthis.options,c=3Dthis.axis,d=3Dl(b.width)&&a.maxWidth&&a.maxWidth<b.w=
idth,f=3Dl(b.height)&&a.maxHeight&&a.maxHeight<b.height,g=3Dl(b.width)&&a=
.minWidth&&a.minWidth>b.width,h=3Dl(b.height)&&a.minHeight&&a.minHeight>b=
.height;if(g)b.width=3Da.minWidth;if(h)b.height=3Da.minHeight;if(d)b.widt=
h=3Da.maxWidth;if(f)b.height=3Da.maxHeight;var =
i=3Dthis.originalPosition.left+this.originalSize.width,j=3Dthis.position.=
top+this.size.height,=0A=
k=3D/sw|nw|w/.test(c);c=3D/nw|ne|n/.test(c);if(g&&k)b.left=3Di-a.minWidth=
;if(d&&k)b.left=3Di-a.maxWidth;if(h&&c)b.top=3Dj-a.minHeight;if(f&&c)b.to=
p=3Dj-a.maxHeight;if((a=3D!b.width&&!b.height)&&!b.left&&b.top)b.top=3Dnu=
ll;else if(a&&!b.top&&b.left)b.left=3Dnull;return =
b},_proportionallyResize:function(){if(this._proportionallyResizeElements=
.length)for(var =
b=3Dthis.helper||this.element,a=3D0;a<this._proportionallyResizeElements.=
length;a++){var =
c=3Dthis._proportionallyResizeElements[a];if(!this.borderDif){var =
d=3D[c.css("borderTopWidth"),=0A=
c.css("borderRightWidth"),c.css("borderBottomWidth"),c.css("borderLeftWid=
th")],f=3D[c.css("paddingTop"),c.css("paddingRight"),c.css("paddingBottom=
"),c.css("paddingLeft")];this.borderDif=3De.map(d,function(g,h){g=3Dparse=
Int(g,10)||0;h=3DparseInt(f[h],10)||0;return =
g+h})}e.browser.msie&&(e(b).is(":hidden")||e(b).parents(":hidden").length=
)||c.css({height:b.height()-this.borderDif[0]-this.borderDif[2]||0,width:=
b.width()-this.borderDif[1]-this.borderDif[3]||0})}},_renderProxy:functio=
n(){var b=3Dthis.options;this.elementOffset=3D=0A=
this.element.offset();if(this._helper){this.helper=3Dthis.helper||e('<div=
 style=3D"overflow:hidden;"></div>');var =
a=3De.browser.msie&&e.browser.version<7,c=3Da?1:0;a=3Da?2:-1;this.helper.=
addClass(this._helper).css({width:this.element.outerWidth()+a,height:this=
.element.outerHeight()+a,position:"absolute",left:this.elementOffset.left=
-c+"px",top:this.elementOffset.top-c+"px",zIndex:++b.zIndex});this.helper=
.appendTo("body").disableSelection()}else =
this.helper=3Dthis.element},_change:{e:function(b,a){return{width:this.or=
iginalSize.width+=0A=
a}},w:function(b,a){return{left:this.originalPosition.left+a,width:this.o=
riginalSize.width-a}},n:function(b,a,c){return{top:this.originalPosition.=
top+c,height:this.originalSize.height-c}},s:function(b,a,c){return{height=
:this.originalSize.height+c}},se:function(b,a,c){return =
e.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[=
b,a,c]))},sw:function(b,a,c){return =
e.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[=
b,a,c]))},ne:function(b,a,c){return e.extend(this._change.n.apply(this,=0A=
arguments),this._change.e.apply(this,[b,a,c]))},nw:function(b,a,c){return=
 =
e.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[=
b,a,c]))}},_propagate:function(b,a){e.ui.plugin.call(this,b,[a,this.ui()]=
);b!=3D"resize"&&this._trigger(b,a,this.ui())},plugins:{},ui:function(){r=
eturn{originalElement:this.originalElement,element:this.element,helper:th=
is.helper,position:this.position,size:this.size,originalSize:this.origina=
lSize,originalPosition:this.originalPosition}}});e.extend(e.ui.resizable,=0A=
{version:"1.8.4"});e.ui.plugin.add("resizable","alsoResize",{start:functi=
on(){var =
b=3De(this).data("resizable").options,a=3Dfunction(c){e(c).each(function(=
){var =
d=3De(this);d.data("resizable-alsoresize",{width:parseInt(d.width(),10),h=
eight:parseInt(d.height(),10),left:parseInt(d.css("left"),10),top:parseIn=
t(d.css("top"),10),position:d.css("position")})})};if(typeof =
b.alsoResize=3D=3D"object"&&!b.alsoResize.parentNode)if(b.alsoResize.leng=
th){b.alsoResize=3Db.alsoResize[0];a(b.alsoResize)}else =
e.each(b.alsoResize,=0A=
function(c){a(c)});else a(b.alsoResize)},resize:function(b,a){var =
c=3De(this).data("resizable");b=3Dc.options;var =
d=3Dc.originalSize,f=3Dc.originalPosition,g=3D{height:c.size.height-d.hei=
ght||0,width:c.size.width-d.width||0,top:c.position.top-f.top||0,left:c.p=
osition.left-f.left||0},h=3Dfunction(i,j){e(i).each(function(){var =
k=3De(this),q=3De(this).data("resizable-alsoresize"),p=3D{},r=3Dj&&j.leng=
th?j:k.parents(a.originalElement[0]).length?["width","height"]:["width","=
height","top","left"];e.each(r,function(n,o){if((n=3D=0A=
(q[o]||0)+(g[o]||0))&&n>=3D0)p[o]=3Dn||null});if(e.browser.opera&&/relati=
ve/.test(k.css("position"))){c._revertToRelativePosition=3Dtrue;k.css({po=
sition:"absolute",top:"auto",left:"auto"})}k.css(p)})};typeof =
b.alsoResize=3D=3D"object"&&!b.alsoResize.nodeType?e.each(b.alsoResize,fu=
nction(i,j){h(i,j)}):h(b.alsoResize)},stop:function(){var =
b=3De(this).data("resizable"),a=3Db.options,c=3Dfunction(d){e(d).each(fun=
ction(){var =
f=3De(this);f.css({position:f.data("resizable-alsoresize").position})})};=
if(b._revertToRelativePosition){b._revertToRelativePosition=3D=0A=
false;typeof =
a.alsoResize=3D=3D"object"&&!a.alsoResize.nodeType?e.each(a.alsoResize,fu=
nction(d){c(d)}):c(a.alsoResize)}e(this).removeData("resizable-alsoresize=
")}});e.ui.plugin.add("resizable","animate",{stop:function(b){var =
a=3De(this).data("resizable"),c=3Da.options,d=3Da._proportionallyResizeEl=
ements,f=3Dd.length&&/textarea/i.test(d[0].nodeName),g=3Df&&e.ui.hasScrol=
l(d[0],"left")?0:a.sizeDiff.height;f=3D{width:a.size.width-(f?0:a.sizeDif=
f.width),height:a.size.height-g};g=3DparseInt(a.element.css("left"),10)+(=
a.position.left-=0A=
a.originalPosition.left)||null;var =
h=3DparseInt(a.element.css("top"),10)+(a.position.top-a.originalPosition.=
top)||null;a.element.animate(e.extend(f,h&&g?{top:h,left:g}:{}),{duration=
:c.animateDuration,easing:c.animateEasing,step:function(){var =
i=3D{width:parseInt(a.element.css("width"),10),height:parseInt(a.element.=
css("height"),10),top:parseInt(a.element.css("top"),10),left:parseInt(a.e=
lement.css("left"),10)};d&&d.length&&e(d[0]).css({width:i.width,height:i.=
height});a._updateCache(i);a._propagate("resize",=0A=
b)}})}});e.ui.plugin.add("resizable","containment",{start:function(){var =
b=3De(this).data("resizable"),a=3Db.element,c=3Db.options.containment;if(=
a=3Dc instanceof =
e?c.get(0):/parent/.test(c)?a.parent().get(0):c){b.containerElement=3De(a=
);if(/document/.test(c)||c=3D=3Ddocument){b.containerOffset=3D{left:0,top=
:0};b.containerPosition=3D{left:0,top:0};b.parentData=3D{element:e(docume=
nt),left:0,top:0,width:e(document).width(),height:e(document).height()||d=
ocument.body.parentNode.scrollHeight}}else{var d=3De(a),f=3D[];e(["Top",=0A=
"Right","Left","Bottom"]).each(function(i,j){f[i]=3Dm(d.css("padding"+j))=
});b.containerOffset=3Dd.offset();b.containerPosition=3Dd.position();b.co=
ntainerSize=3D{height:d.innerHeight()-f[3],width:d.innerWidth()-f[1]};c=3D=
b.containerOffset;var =
g=3Db.containerSize.height,h=3Db.containerSize.width;h=3De.ui.hasScroll(a=
,"left")?a.scrollWidth:h;g=3De.ui.hasScroll(a)?a.scrollHeight:g;b.parentD=
ata=3D{element:a,left:c.left,top:c.top,width:h,height:g}}}},resize:functi=
on(b){var =
a=3De(this).data("resizable"),c=3Da.options,d=3Da.containerOffset,=0A=
f=3Da.position;b=3Da._aspectRatio||b.shiftKey;var =
g=3D{top:0,left:0},h=3Da.containerElement;if(h[0]!=3Ddocument&&/static/.t=
est(h.css("position")))g=3Dd;if(f.left<(a._helper?d.left:0)){a.size.width=
+=3Da._helper?a.position.left-d.left:a.position.left-g.left;if(b)a.size.h=
eight=3Da.size.width/c.aspectRatio;a.position.left=3Dc.helper?d.left:0}if=
(f.top<(a._helper?d.top:0)){a.size.height+=3Da._helper?a.position.top-d.t=
op:a.position.top;if(b)a.size.width=3Da.size.height*c.aspectRatio;a.posit=
ion.top=3Da._helper?d.top:0}a.offset.left=3D=0A=
a.parentData.left+a.position.left;a.offset.top=3Da.parentData.top+a.posit=
ion.top;c=3DMath.abs((a._helper?a.offset.left-g.left:a.offset.left-g.left=
)+a.sizeDiff.width);d=3DMath.abs((a._helper?a.offset.top-g.top:a.offset.t=
op-d.top)+a.sizeDiff.height);f=3Da.containerElement.get(0)=3D=3Da.element=
.parent().get(0);g=3D/relative|absolute/.test(a.containerElement.css("pos=
ition"));if(f&&g)c-=3Da.parentData.left;if(c+a.size.width>=3Da.parentData=
.width){a.size.width=3Da.parentData.width-c;if(b)a.size.height=3Da.size.w=
idth/a.aspectRatio}if(d+=0A=
a.size.height>=3Da.parentData.height){a.size.height=3Da.parentData.height=
-d;if(b)a.size.width=3Da.size.height*a.aspectRatio}},stop:function(){var =
b=3De(this).data("resizable"),a=3Db.options,c=3Db.containerOffset,d=3Db.c=
ontainerPosition,f=3Db.containerElement,g=3De(b.helper),h=3Dg.offset(),i=3D=
g.outerWidth()-b.sizeDiff.width;g=3Dg.outerHeight()-b.sizeDiff.height;b._=
helper&&!a.animate&&/relative/.test(f.css("position"))&&e(this).css({left=
:h.left-d.left-c.left,width:i,height:g});b._helper&&!a.animate&&/static/.=
test(f.css("position"))&&=0A=
e(this).css({left:h.left-d.left-c.left,width:i,height:g})}});e.ui.plugin.=
add("resizable","ghost",{start:function(){var =
b=3De(this).data("resizable"),a=3Db.options,c=3Db.size;b.ghost=3Db.origin=
alElement.clone();b.ghost.css({opacity:0.25,display:"block",position:"rel=
ative",height:c.height,width:c.width,margin:0,left:0,top:0}).addClass("ui=
-resizable-ghost").addClass(typeof =
a.ghost=3D=3D"string"?a.ghost:"");b.ghost.appendTo(b.helper)},resize:func=
tion(){var =
b=3De(this).data("resizable");b.ghost&&b.ghost.css({position:"relative",=0A=
height:b.size.height,width:b.size.width})},stop:function(){var =
b=3De(this).data("resizable");b.ghost&&b.helper&&b.helper.get(0).removeCh=
ild(b.ghost.get(0))}});e.ui.plugin.add("resizable","grid",{resize:functio=
n(){var =
b=3De(this).data("resizable"),a=3Db.options,c=3Db.size,d=3Db.originalSize=
,f=3Db.originalPosition,g=3Db.axis;a.grid=3Dtypeof =
a.grid=3D=3D"number"?[a.grid,a.grid]:a.grid;var =
h=3DMath.round((c.width-d.width)/(a.grid[0]||1))*(a.grid[0]||1);a=3DMath.=
round((c.height-d.height)/(a.grid[1]||1))*(a.grid[1]||1);if(/^(se|s|e)$/.=
test(g)){b.size.width=3D=0A=
d.width+h;b.size.height=3Dd.height+a}else =
if(/^(ne)$/.test(g)){b.size.width=3Dd.width+h;b.size.height=3Dd.height+a;=
b.position.top=3Df.top-a}else{if(/^(sw)$/.test(g)){b.size.width=3Dd.width=
+h;b.size.height=3Dd.height+a}else{b.size.width=3Dd.width+h;b.size.height=
=3Dd.height+a;b.position.top=3Df.top-a}b.position.left=3Df.left-h}}});var=
 m=3Dfunction(b){return =
parseInt(b,10)||0},l=3Dfunction(b){return!isNaN(parseInt(b,10))}})(jQuery=
);=0A=
;/*=0A=
 * jQuery UI Selectable 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Selectables=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 *	jquery.ui.mouse.js=0A=
 *	jquery.ui.widget.js=0A=
 */=0A=
(function(e){e.widget("ui.selectable",e.ui.mouse,{options:{appendTo:"body=
",autoRefresh:true,distance:0,filter:"*",tolerance:"touch"},_create:funct=
ion(){var =
c=3Dthis;this.element.addClass("ui-selectable");this.dragged=3Dfalse;var =
f;this.refresh=3Dfunction(){f=3De(c.options.filter,c.element[0]);f.each(f=
unction(){var =
d=3De(this),b=3Dd.offset();e.data(this,"selectable-item",{element:this,$e=
lement:d,left:b.left,top:b.top,right:b.left+d.outerWidth(),bottom:b.top+d=
.outerHeight(),startselected:false,selected:d.hasClass("ui-selected"),=0A=
selecting:d.hasClass("ui-selecting"),unselecting:d.hasClass("ui-unselecti=
ng")})})};this.refresh();this.selectees=3Df.addClass("ui-selectee");this.=
_mouseInit();this.helper=3De("<div =
class=3D'ui-selectable-helper'></div>")},destroy:function(){this.selectee=
s.removeClass("ui-selectee").removeData("selectable-item");this.element.r=
emoveClass("ui-selectable =
ui-selectable-disabled").removeData("selectable").unbind(".selectable");t=
his._mouseDestroy();return this},_mouseStart:function(c){var =
f=3Dthis;this.opos=3D[c.pageX,=0A=
c.pageY];if(!this.options.disabled){var =
d=3Dthis.options;this.selectees=3De(d.filter,this.element[0]);this._trigg=
er("start",c);e(d.appendTo).append(this.helper);this.helper.css({left:c.c=
lientX,top:c.clientY,width:0,height:0});d.autoRefresh&&this.refresh();thi=
s.selectees.filter(".ui-selected").each(function(){var =
b=3De.data(this,"selectable-item");b.startselected=3Dtrue;if(!c.metaKey){=
b.$element.removeClass("ui-selected");b.selected=3Dfalse;b.$element.addCl=
ass("ui-unselecting");b.unselecting=3Dtrue;f._trigger("unselecting",=0A=
c,{unselecting:b.element})}});e(c.target).parents().andSelf().each(functi=
on(){var b=3De.data(this,"selectable-item");if(b){var =
g=3D!c.metaKey||!b.$element.hasClass("ui-selected");b.$element.removeClas=
s(g?"ui-unselecting":"ui-selected").addClass(g?"ui-selecting":"ui-unselec=
ting");b.unselecting=3D!g;b.selecting=3Dg;(b.selected=3Dg)?f._trigger("se=
lecting",c,{selecting:b.element}):f._trigger("unselecting",c,{unselecting=
:b.element});return false}})}},_mouseDrag:function(c){var =
f=3Dthis;this.dragged=3Dtrue;if(!this.options.disabled){var d=3D=0A=
this.options,b=3Dthis.opos[0],g=3Dthis.opos[1],h=3Dc.pageX,i=3Dc.pageY;if=
(b>h){var =
j=3Dh;h=3Db;b=3Dj}if(g>i){j=3Di;i=3Dg;g=3Dj}this.helper.css({left:b,top:g=
,width:h-b,height:i-g});this.selectees.each(function(){var =
a=3De.data(this,"selectable-item");if(!(!a||a.element=3D=3Df.element[0]))=
{var =
k=3Dfalse;if(d.tolerance=3D=3D"touch")k=3D!(a.left>h||a.right<b||a.top>i|=
|a.bottom<g);else =
if(d.tolerance=3D=3D"fit")k=3Da.left>b&&a.right<h&&a.top>g&&a.bottom<i;if=
(k){if(a.selected){a.$element.removeClass("ui-selected");a.selected=3Dfal=
se}if(a.unselecting){a.$element.removeClass("ui-unselecting");=0A=
a.unselecting=3Dfalse}if(!a.selecting){a.$element.addClass("ui-selecting"=
);a.selecting=3Dtrue;f._trigger("selecting",c,{selecting:a.element})}}els=
e{if(a.selecting)if(c.metaKey&&a.startselected){a.$element.removeClass("u=
i-selecting");a.selecting=3Dfalse;a.$element.addClass("ui-selected");a.se=
lected=3Dtrue}else{a.$element.removeClass("ui-selecting");a.selecting=3Df=
alse;if(a.startselected){a.$element.addClass("ui-unselecting");a.unselect=
ing=3Dtrue}f._trigger("unselecting",c,{unselecting:a.element})}if(a.selec=
ted)if(!c.metaKey&&=0A=
!a.startselected){a.$element.removeClass("ui-selected");a.selected=3Dfals=
e;a.$element.addClass("ui-unselecting");a.unselecting=3Dtrue;f._trigger("=
unselecting",c,{unselecting:a.element})}}}});return =
false}},_mouseStop:function(c){var =
f=3Dthis;this.dragged=3Dfalse;e(".ui-unselecting",this.element[0]).each(f=
unction(){var =
d=3De.data(this,"selectable-item");d.$element.removeClass("ui-unselecting=
");d.unselecting=3Dfalse;d.startselected=3Dfalse;f._trigger("unselected",=
c,{unselected:d.element})});e(".ui-selecting",this.element[0]).each(funct=
ion(){var d=3D=0A=
e.data(this,"selectable-item");d.$element.removeClass("ui-selecting").add=
Class("ui-selected");d.selecting=3Dfalse;d.selected=3Dtrue;d.startselecte=
d=3Dtrue;f._trigger("selected",c,{selected:d.element})});this._trigger("s=
top",c);this.helper.remove();return =
false}});e.extend(e.ui.selectable,{version:"1.8.4"})})(jQuery);=0A=
;/*=0A=
 * jQuery UI Sortable 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Sortables=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 *	jquery.ui.mouse.js=0A=
 *	jquery.ui.widget.js=0A=
 */=0A=
(function(d){d.widget("ui.sortable",d.ui.mouse,{widgetEventPrefix:"sort",=
options:{appendTo:"parent",axis:false,connectWith:false,containment:false=
,cursor:"auto",cursorAt:false,dropOnEmpty:true,forcePlaceholderSize:false=
,forceHelperSize:false,grid:false,handle:false,helper:"original",items:">=
 =
*",opacity:false,placeholder:false,revert:false,scroll:true,scrollSensiti=
vity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1E3},=
_create:function(){this.containerCache=3D{};this.element.addClass("ui-sor=
table");=0A=
this.refresh();this.floating=3Dthis.items.length?/left|right/.test(this.i=
tems[0].item.css("float")):false;this.offset=3Dthis.element.offset();this=
._mouseInit()},destroy:function(){this.element.removeClass("ui-sortable =
ui-sortable-disabled").removeData("sortable").unbind(".sortable");this._m=
ouseDestroy();for(var =
a=3Dthis.items.length-1;a>=3D0;a--)this.items[a].item.removeData("sortabl=
e-item");return =
this},_setOption:function(a,b){if(a=3D=3D=3D"disabled"){this.options[a]=3D=
b;this.widget()[b?"addClass":"removeClass"]("ui-sortable-disabled")}else =
d.Widget.prototype._setOption.apply(this,=0A=
arguments)},_mouseCapture:function(a,b){if(this.reverting)return =
false;if(this.options.disabled||this.options.type=3D=3D"static")return =
false;this._refreshItems(a);var =
c=3Dnull,e=3Dthis;d(a.target).parents().each(function(){if(d.data(this,"s=
ortable-item")=3D=3De){c=3Dd(this);return =
false}});if(d.data(a.target,"sortable-item")=3D=3De)c=3Dd(a.target);if(!c=
)return false;if(this.options.handle&&!b){var =
f=3Dfalse;d(this.options.handle,c).find("*").andSelf().each(function(){if=
(this=3D=3Da.target)f=3Dtrue});if(!f)return false}this.currentItem=3D=0A=
c;this._removeCurrentsFromItems();return =
true},_mouseStart:function(a,b,c){b=3Dthis.options;var =
e=3Dthis;this.currentContainer=3Dthis;this.refreshPositions();this.helper=
=3Dthis._createHelper(a);this._cacheHelperProportions();this._cacheMargin=
s();this.scrollParent=3Dthis.helper.scrollParent();this.offset=3Dthis.cur=
rentItem.offset();this.offset=3D{top:this.offset.top-this.margins.top,lef=
t:this.offset.left-this.margins.left};this.helper.css("position","absolut=
e");this.cssPosition=3Dthis.helper.css("position");d.extend(this.offset,=0A=
{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent=
:this._getParentOffset(),relative:this._getRelativeOffset()});this.origin=
alPosition=3Dthis._generatePosition(a);this.originalPageX=3Da.pageX;this.=
originalPageY=3Da.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursor=
At);this.domPosition=3D{prev:this.currentItem.prev()[0],parent:this.curre=
ntItem.parent()[0]};this.helper[0]!=3Dthis.currentItem[0]&&this.currentIt=
em.hide();this._createPlaceholder();b.containment&&this._setContainment()=
;=0A=
if(b.cursor){if(d("body").css("cursor"))this._storedCursor=3Dd("body").cs=
s("cursor");d("body").css("cursor",b.cursor)}if(b.opacity){if(this.helper=
.css("opacity"))this._storedOpacity=3Dthis.helper.css("opacity");this.hel=
per.css("opacity",b.opacity)}if(b.zIndex){if(this.helper.css("zIndex"))th=
is._storedZIndex=3Dthis.helper.css("zIndex");this.helper.css("zIndex",b.z=
Index)}if(this.scrollParent[0]!=3Ddocument&&this.scrollParent[0].tagName!=
=3D"HTML")this.overflowOffset=3Dthis.scrollParent.offset();this._trigger(=
"start",=0A=
a,this._uiHash());this._preserveHelperProportions||this._cacheHelperPropo=
rtions();if(!c)for(c=3Dthis.containers.length-1;c>=3D0;c--)this.container=
s[c]._trigger("activate",a,e._uiHash(this));if(d.ui.ddmanager)d.ui.ddmana=
ger.current=3Dthis;d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepa=
reOffsets(this,a);this.dragging=3Dtrue;this.helper.addClass("ui-sortable-=
helper");this._mouseDrag(a);return =
true},_mouseDrag:function(a){this.position=3Dthis._generatePosition(a);th=
is.positionAbs=3Dthis._convertPositionTo("absolute");=0A=
if(!this.lastPositionAbs)this.lastPositionAbs=3Dthis.positionAbs;if(this.=
options.scroll){var =
b=3Dthis.options,c=3Dfalse;if(this.scrollParent[0]!=3Ddocument&&this.scro=
llParent[0].tagName!=3D"HTML"){if(this.overflowOffset.top+this.scrollPare=
nt[0].offsetHeight-a.pageY<b.scrollSensitivity)this.scrollParent[0].scrol=
lTop=3Dc=3Dthis.scrollParent[0].scrollTop+b.scrollSpeed;else =
if(a.pageY-this.overflowOffset.top<b.scrollSensitivity)this.scrollParent[=
0].scrollTop=3Dc=3Dthis.scrollParent[0].scrollTop-b.scrollSpeed;if(this.o=
verflowOffset.left+=0A=
this.scrollParent[0].offsetWidth-a.pageX<b.scrollSensitivity)this.scrollP=
arent[0].scrollLeft=3Dc=3Dthis.scrollParent[0].scrollLeft+b.scrollSpeed;e=
lse =
if(a.pageX-this.overflowOffset.left<b.scrollSensitivity)this.scrollParent=
[0].scrollLeft=3Dc=3Dthis.scrollParent[0].scrollLeft-b.scrollSpeed}else{i=
f(a.pageY-d(document).scrollTop()<b.scrollSensitivity)c=3Dd(document).scr=
ollTop(d(document).scrollTop()-b.scrollSpeed);else =
if(d(window).height()-(a.pageY-d(document).scrollTop())<b.scrollSensitivi=
ty)c=3Dd(document).scrollTop(d(document).scrollTop()+=0A=
b.scrollSpeed);if(a.pageX-d(document).scrollLeft()<b.scrollSensitivity)c=3D=
d(document).scrollLeft(d(document).scrollLeft()-b.scrollSpeed);else =
if(d(window).width()-(a.pageX-d(document).scrollLeft())<b.scrollSensitivi=
ty)c=3Dd(document).scrollLeft(d(document).scrollLeft()+b.scrollSpeed)}c!=3D=
=3Dfalse&&d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets=
(this,a)}this.positionAbs=3Dthis._convertPositionTo("absolute");if(!this.=
options.axis||this.options.axis!=3D"y")this.helper[0].style.left=3Dthis.p=
osition.left+=0A=
"px";if(!this.options.axis||this.options.axis!=3D"x")this.helper[0].style=
.top=3Dthis.position.top+"px";for(b=3Dthis.items.length-1;b>=3D0;b--){c=3D=
this.items[b];var =
e=3Dc.item[0],f=3Dthis._intersectsWithPointer(c);if(f)if(e!=3Dthis.curren=
tItem[0]&&this.placeholder[f=3D=3D1?"next":"prev"]()[0]!=3De&&!d.ui.conta=
ins(this.placeholder[0],e)&&(this.options.type=3D=3D"semi-dynamic"?!d.ui.=
contains(this.element[0],e):true)){this.direction=3Df=3D=3D1?"down":"up";=
if(this.options.tolerance=3D=3D"pointer"||this._intersectsWithSides(c))th=
is._rearrange(a,=0A=
c);else =
break;this._trigger("change",a,this._uiHash());break}}this._contactContai=
ners(a);d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);this._trigger("sort",=
a,this._uiHash());this.lastPositionAbs=3Dthis.positionAbs;return =
false},_mouseStop:function(a,b){if(a){d.ui.ddmanager&&!this.options.dropB=
ehaviour&&d.ui.ddmanager.drop(this,a);if(this.options.revert){var =
c=3Dthis;b=3Dc.placeholder.offset();c.reverting=3Dtrue;d(this.helper).ani=
mate({left:b.left-this.offset.parent.left-c.margins.left+(this.offsetPare=
nt[0]=3D=3D=0A=
document.body?0:this.offsetParent[0].scrollLeft),top:b.top-this.offset.pa=
rent.top-c.margins.top+(this.offsetParent[0]=3D=3Ddocument.body?0:this.of=
fsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(=
){c._clear(a)})}else this._clear(a,b);return =
false}},cancel:function(){var =
a=3Dthis;if(this.dragging){this._mouseUp();this.options.helper=3D=3D"orig=
inal"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-help=
er"):this.currentItem.show();for(var =
b=3Dthis.containers.length-1;b>=3D0;b--){this.containers[b]._trigger("dea=
ctivate",=0A=
null,a._uiHash(this));if(this.containers[b].containerCache.over){this.con=
tainers[b]._trigger("out",null,a._uiHash(this));this.containers[b].contai=
nerCache.over=3D0}}}this.placeholder[0].parentNode&&this.placeholder[0].p=
arentNode.removeChild(this.placeholder[0]);this.options.helper!=3D"origin=
al"&&this.helper&&this.helper[0].parentNode&&this.helper.remove();d.exten=
d(this,{helper:null,dragging:false,reverting:false,_noFinalSort:null});th=
is.domPosition.prev?d(this.domPosition.prev).after(this.currentItem):=0A=
d(this.domPosition.parent).prepend(this.currentItem);return =
this},serialize:function(a){var =
b=3Dthis._getItemsAsjQuery(a&&a.connected),c=3D[];a=3Da||{};d(b).each(fun=
ction(){var =
e=3D(d(a.item||this).attr(a.attribute||"id")||"").match(a.expression||/(.=
+)[-=3D_](.+)/);if(e)c.push((a.key||e[1]+"[]")+"=3D"+(a.key&&a.expression=
?e[1]:e[2]))});!c.length&&a.key&&c.push(a.key+"=3D");return =
c.join("&")},toArray:function(a){var =
b=3Dthis._getItemsAsjQuery(a&&a.connected),c=3D[];a=3Da||{};b.each(functi=
on(){c.push(d(a.item||this).attr(a.attribute||=0A=
"id")||"")});return c},_intersectsWith:function(a){var =
b=3Dthis.positionAbs.left,c=3Db+this.helperProportions.width,e=3Dthis.pos=
itionAbs.top,f=3De+this.helperProportions.height,g=3Da.left,h=3Dg+a.width=
,i=3Da.top,k=3Di+a.height,j=3Dthis.offset.click.top,l=3Dthis.offset.click=
.left;j=3De+j>i&&e+j<k&&b+l>g&&b+l<h;return =
this.options.tolerance=3D=3D"pointer"||this.options.forcePointerForContai=
ners||this.options.tolerance!=3D"pointer"&&this.helperProportions[this.fl=
oating?"width":"height"]>a[this.floating?"width":"height"]?j:g<b+=0A=
this.helperProportions.width/2&&c-this.helperProportions.width/2<h&&i<e+t=
his.helperProportions.height/2&&f-this.helperProportions.height/2<k},_int=
ersectsWithPointer:function(a){var =
b=3Dd.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,a.top,a.he=
ight);a=3Dd.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,a.=
left,a.width);b=3Db&&a;a=3Dthis._getDragVerticalDirection();var =
c=3Dthis._getDragHorizontalDirection();if(!b)return false;return =
this.floating?c&&c=3D=3D"right"||a=3D=3D"down"?2:1:a&&(a=3D=3D"down"?=0A=
2:1)},_intersectsWithSides:function(a){var =
b=3Dd.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,a.top+a.he=
ight/2,a.height);a=3Dd.ui.isOverAxis(this.positionAbs.left+this.offset.cl=
ick.left,a.left+a.width/2,a.width);var =
c=3Dthis._getDragVerticalDirection(),e=3Dthis._getDragHorizontalDirection=
();return =
this.floating&&e?e=3D=3D"right"&&a||e=3D=3D"left"&&!a:c&&(c=3D=3D"down"&&=
b||c=3D=3D"up"&&!b)},_getDragVerticalDirection:function(){var =
a=3Dthis.positionAbs.top-this.lastPositionAbs.top;return =
a!=3D0&&(a>0?"down":"up")},=0A=
_getDragHorizontalDirection:function(){var =
a=3Dthis.positionAbs.left-this.lastPositionAbs.left;return =
a!=3D0&&(a>0?"right":"left")},refresh:function(a){this._refreshItems(a);t=
his.refreshPositions();return this},_connectWith:function(){var =
a=3Dthis.options;return =
a.connectWith.constructor=3D=3DString?[a.connectWith]:a.connectWith},_get=
ItemsAsjQuery:function(a){var =
b=3D[],c=3D[],e=3Dthis._connectWith();if(e&&a)for(a=3De.length-1;a>=3D0;a=
--)for(var f=3Dd(e[a]),g=3Df.length-1;g>=3D0;g--){var =
h=3Dd.data(f[g],"sortable");if(h&&h!=3D=0A=
this&&!h.options.disabled)c.push([d.isFunction(h.options.items)?h.options=
.items.call(h.element):d(h.options.items,h.element).not(".ui-sortable-hel=
per").not(".ui-sortable-placeholder"),h])}c.push([d.isFunction(this.optio=
ns.items)?this.options.items.call(this.element,null,{options:this.options=
,item:this.currentItem}):d(this.options.items,this.element).not(".ui-sort=
able-helper").not(".ui-sortable-placeholder"),this]);for(a=3Dc.length-1;a=
>=3D0;a--)c[a][0].each(function(){b.push(this)});return =
d(b)},_removeCurrentsFromItems:function(){for(var a=3D=0A=
this.currentItem.find(":data(sortable-item)"),b=3D0;b<this.items.length;b=
++)for(var =
c=3D0;c<a.length;c++)a[c]=3D=3Dthis.items[b].item[0]&&this.items.splice(b=
,1)},_refreshItems:function(a){this.items=3D[];this.containers=3D[this];v=
ar =
b=3Dthis.items,c=3D[[d.isFunction(this.options.items)?this.options.items.=
call(this.element[0],a,{item:this.currentItem}):d(this.options.items,this=
.element),this]],e=3Dthis._connectWith();if(e)for(var =
f=3De.length-1;f>=3D0;f--)for(var =
g=3Dd(e[f]),h=3Dg.length-1;h>=3D0;h--){var i=3Dd.data(g[h],"sortable");=0A=
if(i&&i!=3Dthis&&!i.options.disabled){c.push([d.isFunction(i.options.item=
s)?i.options.items.call(i.element[0],a,{item:this.currentItem}):d(i.optio=
ns.items,i.element),i]);this.containers.push(i)}}for(f=3Dc.length-1;f>=3D=
0;f--){a=3Dc[f][1];e=3Dc[f][0];h=3D0;for(g=3De.length;h<g;h++){i=3Dd(e[h]=
);i.data("sortable-item",a);b.push({item:i,instance:a,width:0,height:0,le=
ft:0,top:0})}}},refreshPositions:function(a){if(this.offsetParent&&this.h=
elper)this.offset.parent=3Dthis._getParentOffset();for(var =
b=3Dthis.items.length-1;b>=3D=0A=
0;b--){var =
c=3Dthis.items[b],e=3Dthis.options.toleranceElement?d(this.options.tolera=
nceElement,c.item):c.item;if(!a){c.width=3De.outerWidth();c.height=3De.ou=
terHeight()}e=3De.offset();c.left=3De.left;c.top=3De.top}if(this.options.=
custom&&this.options.custom.refreshContainers)this.options.custom.refresh=
Containers.call(this);else =
for(b=3Dthis.containers.length-1;b>=3D0;b--){e=3Dthis.containers[b].eleme=
nt.offset();this.containers[b].containerCache.left=3De.left;this.containe=
rs[b].containerCache.top=3De.top;this.containers[b].containerCache.width=3D=0A=
this.containers[b].element.outerWidth();this.containers[b].containerCache=
.height=3Dthis.containers[b].element.outerHeight()}return =
this},_createPlaceholder:function(a){var =
b=3Da||this,c=3Db.options;if(!c.placeholder||c.placeholder.constructor=3D=
=3DString){var e=3Dc.placeholder;c.placeholder=3D{element:function(){var =
f=3Dd(document.createElement(b.currentItem[0].nodeName)).addClass(e||b.cu=
rrentItem[0].className+" =
ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];if(!e)f.st=
yle.visibility=3D"hidden";return f},=0A=
update:function(f,g){if(!(e&&!c.forcePlaceholderSize)){g.height()||g.heig=
ht(b.currentItem.innerHeight()-parseInt(b.currentItem.css("paddingTop")||=
0,10)-parseInt(b.currentItem.css("paddingBottom")||0,10));g.width()||g.wi=
dth(b.currentItem.innerWidth()-parseInt(b.currentItem.css("paddingLeft")|=
|0,10)-parseInt(b.currentItem.css("paddingRight")||0,10))}}}}b.placeholde=
r=3Dd(c.placeholder.element.call(b.element,b.currentItem));b.currentItem.=
after(b.placeholder);c.placeholder.update(b,b.placeholder)},_contactConta=
iners:function(a){for(var b=3D=0A=
null,c=3Dnull,e=3Dthis.containers.length-1;e>=3D0;e--)if(!d.ui.contains(t=
his.currentItem[0],this.containers[e].element[0]))if(this._intersectsWith=
(this.containers[e].containerCache)){if(!(b&&d.ui.contains(this.container=
s[e].element[0],b.element[0]))){b=3Dthis.containers[e];c=3De}}else =
if(this.containers[e].containerCache.over){this.containers[e]._trigger("o=
ut",a,this._uiHash(this));this.containers[e].containerCache.over=3D0}if(b=
)if(this.containers.length=3D=3D=3D1){this.containers[c]._trigger("over",=
a,this._uiHash(this));=0A=
this.containers[c].containerCache.over=3D1}else =
if(this.currentContainer!=3Dthis.containers[c]){b=3D1E4;e=3Dnull;for(var =
f=3Dthis.positionAbs[this.containers[c].floating?"left":"top"],g=3Dthis.i=
tems.length-1;g>=3D0;g--)if(d.ui.contains(this.containers[c].element[0],t=
his.items[g].item[0])){var =
h=3Dthis.items[g][this.containers[c].floating?"left":"top"];if(Math.abs(h=
-f)<b){b=3DMath.abs(h-f);e=3Dthis.items[g]}}if(e||this.options.dropOnEmpt=
y){this.currentContainer=3Dthis.containers[c];e?this._rearrange(a,e,null,=
true):this._rearrange(a,=0A=
null,this.containers[c].element,true);this._trigger("change",a,this._uiHa=
sh());this.containers[c]._trigger("change",a,this._uiHash(this));this.opt=
ions.placeholder.update(this.currentContainer,this.placeholder);this.cont=
ainers[c]._trigger("over",a,this._uiHash(this));this.containers[c].contai=
nerCache.over=3D1}}},_createHelper:function(a){var =
b=3Dthis.options;a=3Dd.isFunction(b.helper)?d(b.helper.apply(this.element=
[0],[a,this.currentItem])):b.helper=3D=3D"clone"?this.currentItem.clone()=
:this.currentItem;a.parents("body").length||=0A=
d(b.appendTo!=3D"parent"?b.appendTo:this.currentItem[0].parentNode)[0].ap=
pendChild(a[0]);if(a[0]=3D=3Dthis.currentItem[0])this._storedCSS=3D{width=
:this.currentItem[0].style.width,height:this.currentItem[0].style.height,=
position:this.currentItem.css("position"),top:this.currentItem.css("top")=
,left:this.currentItem.css("left")};if(a[0].style.width=3D=3D""||b.forceH=
elperSize)a.width(this.currentItem.width());if(a[0].style.height=3D=3D""|=
|b.forceHelperSize)a.height(this.currentItem.height());return =
a},_adjustOffsetFromHelper:function(a){if(typeof a=3D=3D=0A=
"string")a=3Da.split(" =
");if(d.isArray(a))a=3D{left:+a[0],top:+a[1]||0};if("left"in =
a)this.offset.click.left=3Da.left+this.margins.left;if("right"in =
a)this.offset.click.left=3Dthis.helperProportions.width-a.right+this.marg=
ins.left;if("top"in =
a)this.offset.click.top=3Da.top+this.margins.top;if("bottom"in =
a)this.offset.click.top=3Dthis.helperProportions.height-a.bottom+this.mar=
gins.top},_getParentOffset:function(){this.offsetParent=3Dthis.helper.off=
setParent();var a=3Dthis.offsetParent.offset();if(this.cssPosition=3D=3D=0A=
"absolute"&&this.scrollParent[0]!=3Ddocument&&d.ui.contains(this.scrollPa=
rent[0],this.offsetParent[0])){a.left+=3Dthis.scrollParent.scrollLeft();a=
.top+=3Dthis.scrollParent.scrollTop()}if(this.offsetParent[0]=3D=3Ddocume=
nt.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLow=
erCase()=3D=3D"html"&&d.browser.msie)a=3D{top:0,left:0};return{top:a.top+=
(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(pa=
rseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOff=
set:function(){if(this.cssPosition=3D=3D=0A=
"relative"){var =
a=3Dthis.currentItem.position();return{top:a.top-(parseInt(this.helper.cs=
s("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this=
.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else =
return{top:0,left:0}},_cacheMargins:function(){this.margins=3D{left:parse=
Int(this.currentItem.css("marginLeft"),10)||0,top:parseInt(this.currentIt=
em.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.help=
erProportions=3D{width:this.helper.outerWidth(),height:this.helper.outerH=
eight()}},=0A=
_setContainment:function(){var =
a=3Dthis.options;if(a.containment=3D=3D"parent")a.containment=3Dthis.help=
er[0].parentNode;if(a.containment=3D=3D"document"||a.containment=3D=3D"wi=
ndow")this.containment=3D[0-this.offset.relative.left-this.offset.parent.=
left,0-this.offset.relative.top-this.offset.parent.top,d(a.containment=3D=
=3D"document"?document:window).width()-this.helperProportions.width-this.=
margins.left,(d(a.containment=3D=3D"document"?document:window).height()||=
document.body.parentNode.scrollHeight)-this.helperProportions.height-=0A=
this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)){v=
ar b=3Dd(a.containment)[0];a=3Dd(a.containment).offset();var =
c=3Dd(b).css("overflow")!=3D"hidden";this.containment=3D[a.left+(parseInt=
(d(b).css("borderLeftWidth"),10)||0)+(parseInt(d(b).css("paddingLeft"),10=
)||0)-this.margins.left,a.top+(parseInt(d(b).css("borderTopWidth"),10)||0=
)+(parseInt(d(b).css("paddingTop"),10)||0)-this.margins.top,a.left+(c?Mat=
h.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("bor=
derLeftWidth"),=0A=
10)||0)-(parseInt(d(b).css("paddingRight"),10)||0)-this.helperProportions=
.width-this.margins.left,a.top+(c?Math.max(b.scrollHeight,b.offsetHeight)=
:b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d=
(b).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margi=
ns.top]}},_convertPositionTo:function(a,b){if(!b)b=3Dthis.position;a=3Da=3D=
=3D"absolute"?1:-1;var =
c=3Dthis.cssPosition=3D=3D"absolute"&&!(this.scrollParent[0]!=3Ddocument&=
&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?=0A=
this.offsetParent:this.scrollParent,e=3D/(html|body)/i.test(c[0].tagName)=
;return{top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.=
browser.safari&&this.cssPosition=3D=3D"fixed"?0:(this.cssPosition=3D=3D"f=
ixed"?-this.scrollParent.scrollTop():e?0:c.scrollTop())*a),left:b.left+th=
is.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&th=
is.cssPosition=3D=3D"fixed"?0:(this.cssPosition=3D=3D"fixed"?-this.scroll=
Parent.scrollLeft():e?0:c.scrollLeft())*a)}},_generatePosition:function(a=
){var b=3D=0A=
this.options,c=3Dthis.cssPosition=3D=3D"absolute"&&!(this.scrollParent[0]=
!=3Ddocument&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?t=
his.offsetParent:this.scrollParent,e=3D/(html|body)/i.test(c[0].tagName);=
if(this.cssPosition=3D=3D"relative"&&!(this.scrollParent[0]!=3Ddocument&&=
this.scrollParent[0]!=3Dthis.offsetParent[0]))this.offset.relative=3Dthis=
._getRelativeOffset();var =
f=3Da.pageX,g=3Da.pageY;if(this.originalPosition){if(this.containment){if=
(a.pageX-this.offset.click.left<this.containment[0])f=3Dthis.containment[=
0]+=0A=
this.offset.click.left;if(a.pageY-this.offset.click.top<this.containment[=
1])g=3Dthis.containment[1]+this.offset.click.top;if(a.pageX-this.offset.c=
lick.left>this.containment[2])f=3Dthis.containment[2]+this.offset.click.l=
eft;if(a.pageY-this.offset.click.top>this.containment[3])g=3Dthis.contain=
ment[3]+this.offset.click.top}if(b.grid){g=3Dthis.originalPageY+Math.roun=
d((g-this.originalPageY)/b.grid[1])*b.grid[1];g=3Dthis.containment?!(g-th=
is.offset.click.top<this.containment[1]||g-this.offset.click.top>this.con=
tainment[3])?=0A=
g:!(g-this.offset.click.top<this.containment[1])?g-b.grid[1]:g+b.grid[1]:=
g;f=3Dthis.originalPageX+Math.round((f-this.originalPageX)/b.grid[0])*b.g=
rid[0];f=3Dthis.containment?!(f-this.offset.click.left<this.containment[0=
]||f-this.offset.click.left>this.containment[2])?f:!(f-this.offset.click.=
left<this.containment[0])?f-b.grid[0]:f+b.grid[0]:f}}return{top:g-this.of=
fset.click.top-this.offset.relative.top-this.offset.parent.top+(d.browser=
.safari&&this.cssPosition=3D=3D"fixed"?0:this.cssPosition=3D=3D"fixed"?-t=
his.scrollParent.scrollTop():=0A=
e?0:c.scrollTop()),left:f-this.offset.click.left-this.offset.relative.lef=
t-this.offset.parent.left+(d.browser.safari&&this.cssPosition=3D=3D"fixed=
"?0:this.cssPosition=3D=3D"fixed"?-this.scrollParent.scrollLeft():e?0:c.s=
crollLeft())}},_rearrange:function(a,b,c,e){c?c[0].appendChild(this.place=
holder[0]):b.item[0].parentNode.insertBefore(this.placeholder[0],this.dir=
ection=3D=3D"down"?b.item[0]:b.item[0].nextSibling);this.counter=3Dthis.c=
ounter?++this.counter:1;var =
f=3Dthis,g=3Dthis.counter;window.setTimeout(function(){g=3D=3D=0A=
f.counter&&f.refreshPositions(!e)},0)},_clear:function(a,b){this.revertin=
g=3Dfalse;var =
c=3D[];!this._noFinalSort&&this.currentItem[0].parentNode&&this.placehold=
er.before(this.currentItem);this._noFinalSort=3Dnull;if(this.helper[0]=3D=
=3Dthis.currentItem[0]){for(var e in =
this._storedCSS)if(this._storedCSS[e]=3D=3D"auto"||this._storedCSS[e]=3D=3D=
"static")this._storedCSS[e]=3D"";this.currentItem.css(this._storedCSS).re=
moveClass("ui-sortable-helper")}else =
this.currentItem.show();this.fromOutside&&!b&&c.push(function(f){this._tr=
igger("receive",=0A=
f,this._uiHash(this.fromOutside))});if((this.fromOutside||this.domPositio=
n.prev!=3Dthis.currentItem.prev().not(".ui-sortable-helper")[0]||this.dom=
Position.parent!=3Dthis.currentItem.parent()[0])&&!b)c.push(function(f){t=
his._trigger("update",f,this._uiHash())});if(!d.ui.contains(this.element[=
0],this.currentItem[0])){b||c.push(function(f){this._trigger("remove",f,t=
his._uiHash())});for(e=3Dthis.containers.length-1;e>=3D0;e--)if(d.ui.cont=
ains(this.containers[e].element[0],this.currentItem[0])&&!b){c.push(funct=
ion(f){return function(g){f._trigger("receive",=0A=
g,this._uiHash(this))}}.call(this,this.containers[e]));c.push(function(f)=
{return =
function(g){f._trigger("update",g,this._uiHash(this))}}.call(this,this.co=
ntainers[e]))}}for(e=3Dthis.containers.length-1;e>=3D0;e--){b||c.push(fun=
ction(f){return =
function(g){f._trigger("deactivate",g,this._uiHash(this))}}.call(this,thi=
s.containers[e]));if(this.containers[e].containerCache.over){c.push(funct=
ion(f){return =
function(g){f._trigger("out",g,this._uiHash(this))}}.call(this,this.conta=
iners[e]));this.containers[e].containerCache.over=3D=0A=
0}}this._storedCursor&&d("body").css("cursor",this._storedCursor);this._s=
toredOpacity&&this.helper.css("opacity",this._storedOpacity);if(this._sto=
redZIndex)this.helper.css("zIndex",this._storedZIndex=3D=3D"auto"?"":this=
._storedZIndex);this.dragging=3Dfalse;if(this.cancelHelperRemoval){if(!b)=
{this._trigger("beforeStop",a,this._uiHash());for(e=3D0;e<c.length;e++)c[=
e].call(this,a);this._trigger("stop",a,this._uiHash())}return =
false}b||this._trigger("beforeStop",a,this._uiHash());this.placeholder[0]=
.parentNode.removeChild(this.placeholder[0]);=0A=
this.helper[0]!=3Dthis.currentItem[0]&&this.helper.remove();this.helper=3D=
null;if(!b){for(e=3D0;e<c.length;e++)c[e].call(this,a);this._trigger("sto=
p",a,this._uiHash())}this.fromOutside=3Dfalse;return =
true},_trigger:function(){d.Widget.prototype._trigger.apply(this,argument=
s)=3D=3D=3Dfalse&&this.cancel()},_uiHash:function(a){var =
b=3Da||this;return{helper:b.helper,placeholder:b.placeholder||d([]),posit=
ion:b.position,originalPosition:b.originalPosition,offset:b.positionAbs,i=
tem:b.currentItem,sender:a?a.element:null}}});=0A=
d.extend(d.ui.sortable,{version:"1.8.4"})})(jQuery);=0A=
;/*=0A=
 * jQuery UI Accordion 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Accordion=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 *	jquery.ui.widget.js=0A=
 */=0A=
(function(c){c.widget("ui.accordion",{options:{active:0,animated:"slide",=
autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpac=
e:false,header:"> li > :first-child,> =
:not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-ic=
on-triangle-1-s"},navigation:false,navigationFilter:function(){return =
this.href.toLowerCase()=3D=3D=3Dlocation.href.toLowerCase()}},_create:fun=
ction(){var =
a=3Dthis,b=3Da.options;a.running=3D0;a.element.addClass("ui-accordion =
ui-widget =
ui-helper-reset").children("li").addClass("ui-accordion-li-fix");=0A=
a.headers=3Da.element.find(b.header).addClass("ui-accordion-header =
ui-helper-reset ui-state-default =
ui-corner-all").bind("mouseenter.accordion",function(){b.disabled||c(this=
).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){b.d=
isabled||c(this).removeClass("ui-state-hover")}).bind("focus.accordion",f=
unction(){b.disabled||c(this).addClass("ui-state-focus")}).bind("blur.acc=
ordion",function(){b.disabled||c(this).removeClass("ui-state-focus")});a.=
headers.next().addClass("ui-accordion-content ui-helper-reset =
ui-widget-content ui-corner-bottom");=0A=
if(b.navigation){var =
d=3Da.element.find("a").filter(b.navigationFilter).eq(0);if(d.length){var=
 =
f=3Dd.closest(".ui-accordion-header");a.active=3Df.length?f:d.closest(".u=
i-accordion-content").prev()}}a.active=3Da._findActive(a.active||b.active=
).addClass("ui-state-default =
ui-state-active").toggleClass("ui-corner-all =
ui-corner-top");a.active.next().addClass("ui-accordion-content-active");a=
._createIcons();a.resize();a.element.attr("role","tablist");a.headers.att=
r("role","tab").bind("keydown.accordion",function(g){return =
a._keydown(g)}).next().attr("role",=0A=
"tabpanel");a.headers.not(a.active||"").attr({"aria-expanded":"false",tab=
Index:-1}).next().hide();a.active.length?a.active.attr({"aria-expanded":"=
true",tabIndex:0}):a.headers.eq(0).attr("tabIndex",0);c.browser.safari||a=
.headers.find("a").attr("tabIndex",-1);b.event&&a.headers.bind(b.event.sp=
lit(" ").join(".accordion =
")+".accordion",function(g){a._clickHandler.call(a,g,this);g.preventDefau=
lt()})},_createIcons:function(){var =
a=3Dthis.options;if(a.icons){c("<span></span>").addClass("ui-icon =
"+a.icons.header).prependTo(this.headers);=0A=
this.active.children(".ui-icon").toggleClass(a.icons.header).toggleClass(=
a.icons.headerSelected);this.element.addClass("ui-accordion-icons")}},_de=
stroyIcons:function(){this.headers.children(".ui-icon").remove();this.ele=
ment.removeClass("ui-accordion-icons")},destroy:function(){var =
a=3Dthis.options;this.element.removeClass("ui-accordion ui-widget =
ui-helper-reset").removeAttr("role");this.headers.unbind(".accordion").re=
moveClass("ui-accordion-header ui-accordion-disabled ui-helper-reset =
ui-state-default ui-corner-all ui-state-active ui-state-disabled =
ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr=
("tabIndex");=0A=
this.headers.find("a").removeAttr("tabIndex");this._destroyIcons();var =
b=3Dthis.headers.next().css("display","").removeAttr("role").removeClass(=
"ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content =
ui-accordion-content-active ui-accordion-disabled =
ui-state-disabled");if(a.autoHeight||a.fillHeight)b.css("height","");retu=
rn =
c.Widget.prototype.destroy.call(this)},_setOption:function(a,b){c.Widget.=
prototype._setOption.apply(this,arguments);a=3D=3D"active"&&this.activate=
(b);if(a=3D=3D"icons"){this._destroyIcons();=0A=
b&&this._createIcons()}if(a=3D=3D"disabled")this.headers.add(this.headers=
.next())[b?"addClass":"removeClass"]("ui-accordion-disabled =
ui-state-disabled")},_keydown:function(a){if(!(this.options.disabled||a.a=
ltKey||a.ctrlKey)){var =
b=3Dc.ui.keyCode,d=3Dthis.headers.length,f=3Dthis.headers.index(a.target)=
,g=3Dfalse;switch(a.keyCode){case b.RIGHT:case =
b.DOWN:g=3Dthis.headers[(f+1)%d];break;case b.LEFT:case =
b.UP:g=3Dthis.headers[(f-1+d)%d];break;case b.SPACE:case =
b.ENTER:this._clickHandler({target:a.target},a.target);=0A=
a.preventDefault()}if(g){c(a.target).attr("tabIndex",-1);c(g).attr("tabIn=
dex",0);g.focus();return false}return true}},resize:function(){var =
a=3Dthis.options,b;if(a.fillSpace){if(c.browser.msie){var =
d=3Dthis.element.parent().css("overflow");this.element.parent().css("over=
flow","hidden")}b=3Dthis.element.parent().height();c.browser.msie&&this.e=
lement.parent().css("overflow",d);this.headers.each(function(){b-=3Dc(thi=
s).outerHeight(true)});this.headers.next().each(function(){c(this).height=
(Math.max(0,b-c(this).innerHeight()+=0A=
c(this).height()))}).css("overflow","auto")}else =
if(a.autoHeight){b=3D0;this.headers.next().each(function(){b=3DMath.max(b=
,c(this).height("").height())}).height(b)}return =
this},activate:function(a){this.options.active=3Da;a=3Dthis._findActive(a=
)[0];this._clickHandler({target:a},a);return =
this},_findActive:function(a){return a?typeof =
a=3D=3D=3D"number"?this.headers.filter(":eq("+a+")"):this.headers.not(thi=
s.headers.not(a)):a=3D=3D=3Dfalse?c([]):this.headers.filter(":eq(0)")},_c=
lickHandler:function(a,b){var d=3Dthis.options;=0A=
if(!d.disabled)if(a.target){a=3Dc(a.currentTarget||b);b=3Da[0]=3D=3D=3Dth=
is.active[0];d.active=3Dd.collapsible&&b?false:this.headers.index(a);if(!=
(this.running||!d.collapsible&&b)){this.active.removeClass("ui-state-acti=
ve ui-corner-top").addClass("ui-state-default =
ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).=
addClass(d.icons.header);if(!b){a.removeClass("ui-state-default =
ui-corner-all").addClass("ui-state-active =
ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass=
(d.icons.headerSelected);=0A=
a.next().addClass("ui-accordion-content-active")}h=3Da.next();f=3Dthis.ac=
tive.next();g=3D{options:d,newHeader:b&&d.collapsible?c([]):a,oldHeader:t=
his.active,newContent:b&&d.collapsible?c([]):h,oldContent:f};d=3Dthis.hea=
ders.index(this.active[0])>this.headers.index(a[0]);this.active=3Db?c([])=
:a;this._toggle(h,f,g,b,d)}}else =
if(d.collapsible){this.active.removeClass("ui-state-active =
ui-corner-top").addClass("ui-state-default =
ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).=
addClass(d.icons.header);=0A=
this.active.next().addClass("ui-accordion-content-active");var =
f=3Dthis.active.next(),g=3D{options:d,newHeader:c([]),oldHeader:d.active,=
newContent:c([]),oldContent:f},h=3Dthis.active=3Dc([]);this._toggle(h,f,g=
)}},_toggle:function(a,b,d,f,g){var =
h=3Dthis,e=3Dh.options;h.toShow=3Da;h.toHide=3Db;h.data=3Dd;var =
j=3Dfunction(){if(h)return =
h._completed.apply(h,arguments)};h._trigger("changestart",null,h.data);h.=
running=3Db.size()=3D=3D=3D0?a.size():b.size();if(e.animated){d=3D{};d=3D=
e.collapsible&&f?{toShow:c([]),toHide:b,complete:j,=0A=
down:g,autoHeight:e.autoHeight||e.fillSpace}:{toShow:a,toHide:b,complete:=
j,down:g,autoHeight:e.autoHeight||e.fillSpace};if(!e.proxied)e.proxied=3D=
e.animated;if(!e.proxiedDuration)e.proxiedDuration=3De.duration;e.animate=
d=3Dc.isFunction(e.proxied)?e.proxied(d):e.proxied;e.duration=3Dc.isFunct=
ion(e.proxiedDuration)?e.proxiedDuration(d):e.proxiedDuration;f=3Dc.ui.ac=
cordion.animations;var =
i=3De.duration,k=3De.animated;if(k&&!f[k]&&!c.easing[k])k=3D"slide";f[k]|=
|(f[k]=3Dfunction(l){this.slide(l,{easing:k,duration:i||700})});=0A=
f[k](d)}else{if(e.collapsible&&f)a.toggle();else{b.hide();a.show()}j(true=
)}b.prev().attr({"aria-expanded":"false",tabIndex:-1}).blur();a.prev().at=
tr({"aria-expanded":"true",tabIndex:0}).focus()},_completed:function(a){t=
his.running=3Da?0:--this.running;if(!this.running){this.options.clearStyl=
e&&this.toShow.add(this.toHide).css({height:"",overflow:""});this.toHide.=
removeClass("ui-accordion-content-active");this._trigger("change",null,th=
is.data)}}});c.extend(c.ui.accordion,{version:"1.8.4",animations:{slide:f=
unction(a,=0A=
b){a=3Dc.extend({easing:"swing",duration:300},a,b);if(a.toHide.size())if(=
a.toShow.size()){var =
d=3Da.toShow.css("overflow"),f=3D0,g=3D{},h=3D{},e;b=3Da.toShow;e=3Db[0].=
style.width;b.width(parseInt(b.parent().width(),10)-parseInt(b.css("paddi=
ngLeft"),10)-parseInt(b.css("paddingRight"),10)-(parseInt(b.css("borderLe=
ftWidth"),10)||0)-(parseInt(b.css("borderRightWidth"),10)||0));c.each(["h=
eight","paddingTop","paddingBottom"],function(j,i){h[i]=3D"hide";j=3D(""+=
c.css(a.toShow[0],i)).match(/^([\d+-.]+)(.*)$/);g[i]=3D{value:j[1],=0A=
unit:j[2]||"px"}});a.toShow.css({height:0,overflow:"hidden"}).show();a.to=
Hide.filter(":hidden").each(a.complete).end().filter(":visible").animate(=
h,{step:function(j,i){if(i.prop=3D=3D"height")f=3Di.end-i.start=3D=3D=3D0=
?0:(i.now-i.start)/(i.end-i.start);a.toShow[0].style[i.prop]=3Df*g[i.prop=
].value+g[i.prop].unit},duration:a.duration,easing:a.easing,complete:func=
tion(){a.autoHeight||a.toShow.css("height","");a.toShow.css({width:e,over=
flow:d});a.complete()}})}else =
a.toHide.animate({height:"hide",paddingTop:"hide",=0A=
paddingBottom:"hide"},a);else =
a.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},a=
)},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"s=
wing",duration:a.down?1E3:200})}}})})(jQuery);=0A=
;/*=0A=
 * jQuery UI Autocomplete 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Autocomplete=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 *	jquery.ui.widget.js=0A=
 *	jquery.ui.position.js=0A=
 */=0A=
(function(e){e.widget("ui.autocomplete",{options:{appendTo:"body",delay:3=
00,minLength:1,position:{my:"left top",at:"left =
bottom",collision:"none"},source:null},_create:function(){var =
a=3Dthis,b=3Dthis.element[0].ownerDocument;this.element.addClass("ui-auto=
complete-input").attr("autocomplete","off").attr({role:"textbox","aria-au=
tocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",f=
unction(c){if(!a.options.disabled){var =
d=3De.ui.keyCode;switch(c.keyCode){case d.PAGE_UP:a._move("previousPage",=0A=
c);break;case d.PAGE_DOWN:a._move("nextPage",c);break;case =
d.UP:a._move("previous",c);c.preventDefault();break;case =
d.DOWN:a._move("next",c);c.preventDefault();break;case d.ENTER:case =
d.NUMPAD_ENTER:a.menu.element.is(":visible")&&c.preventDefault();case =
d.TAB:if(!a.menu.active)return;a.menu.select(c);break;case =
d.ESCAPE:a.element.val(a.term);a.close(c);break;default:clearTimeout(a.se=
arching);a.searching=3DsetTimeout(function(){if(a.term!=3Da.element.val()=
){a.selectedItem=3Dnull;a.search(null,c)}},a.options.delay);=0A=
break}}}).bind("focus.autocomplete",function(){if(!a.options.disabled){a.=
selectedItem=3Dnull;a.previous=3Da.element.val()}}).bind("blur.autocomple=
te",function(c){if(!a.options.disabled){clearTimeout(a.searching);a.closi=
ng=3DsetTimeout(function(){a.close(c);a._change(c)},150)}});this._initSou=
rce();this.response=3Dfunction(){return =
a._response.apply(a,arguments)};this.menu=3De("<ul></ul>").addClass("ui-a=
utocomplete").appendTo(e(this.options.appendTo||"body",b)[0]).mousedown(f=
unction(c){var d=3Da.menu.element[0];=0A=
c.target=3D=3D=3Dd&&setTimeout(function(){e(document).one("mousedown",fun=
ction(f){f.target!=3D=3Da.element[0]&&f.target!=3D=3Dd&&!e.ui.contains(d,=
f.target)&&a.close()})},1);setTimeout(function(){clearTimeout(a.closing)}=
,13)}).menu({focus:function(c,d){d=3Dd.item.data("item.autocomplete");fal=
se!=3D=3Da._trigger("focus",null,{item:d})&&/^key/.test(c.originalEvent.t=
ype)&&a.element.val(d.value)},selected:function(c,d){d=3Dd.item.data("ite=
m.autocomplete");var =
f=3Da.previous;if(a.element[0]!=3D=3Db.activeElement){a.element.focus();=0A=
a.previous=3Df}false!=3D=3Da._trigger("select",c,{item:d})&&a.element.val=
(d.value);a.close(c);a.selectedItem=3Dd},blur:function(){a.menu.element.i=
s(":visible")&&a.element.val()!=3D=3Da.term&&a.element.val(a.term)}}).zIn=
dex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu");e.fn=
.bgiframe&&this.menu.element.bgiframe()},destroy:function(){this.element.=
removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAtt=
r("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup");thi=
s.menu.element.remove();=0A=
e.Widget.prototype.destroy.call(this)},_setOption:function(a,b){e.Widget.=
prototype._setOption.apply(this,arguments);a=3D=3D=3D"source"&&this._init=
Source();if(a=3D=3D=3D"appendTo")this.menu.element.appendTo(e(b||"body",t=
his.element[0].ownerDocument)[0])},_initSource:function(){var =
a,b;if(e.isArray(this.options.source)){a=3Dthis.options.source;this.sourc=
e=3Dfunction(c,d){d(e.ui.autocomplete.filter(a,c.term))}}else if(typeof =
this.options.source=3D=3D=3D"string"){b=3Dthis.options.source;this.source=
=3Dfunction(c,d){e.getJSON(b,=0A=
c,d)}}else =
this.source=3Dthis.options.source},search:function(a,b){a=3Da!=3Dnull?a:t=
his.element.val();if(a.length<this.options.minLength)return =
this.close(b);clearTimeout(this.closing);if(this._trigger("search")!=3D=3D=
false)return =
this._search(a)},_search:function(a){this.term=3Dthis.element.addClass("u=
i-autocomplete-loading").val();this.source({term:a},this.response)},_resp=
onse:function(a){if(a.length){a=3Dthis._normalize(a);this._suggest(a);thi=
s._trigger("open")}else =
this.close();this.element.removeClass("ui-autocomplete-loading")},=0A=
close:function(a){clearTimeout(this.closing);if(this.menu.element.is(":vi=
sible")){this._trigger("close",a);this.menu.element.hide();this.menu.deac=
tivate()}},_change:function(a){this.previous!=3D=3Dthis.element.val()&&th=
is._trigger("change",a,{item:this.selectedItem})},_normalize:function(a){=
if(a.length&&a[0].label&&a[0].value)return a;return =
e.map(a,function(b){if(typeof =
b=3D=3D=3D"string")return{label:b,value:b};return =
e.extend({label:b.label||b.value,value:b.value||b.label},b)})},_suggest:f=
unction(a){var b=3D=0A=
this.menu.element.empty().zIndex(this.element.zIndex()+1),c;this._renderM=
enu(b,a);this.menu.deactivate();this.menu.refresh();this.menu.element.sho=
w().position(e.extend({of:this.element},this.options.position));a=3Db.wid=
th("").outerWidth();c=3Dthis.element.outerWidth();b.outerWidth(Math.max(a=
,c))},_renderMenu:function(a,b){var =
c=3Dthis;e.each(b,function(d,f){c._renderItem(a,f)})},_renderItem:functio=
n(a,b){return =
e("<li></li>").data("item.autocomplete",b).append(e("<a></a>").text(b.lab=
el)).appendTo(a)},_move:function(a,=0A=
b){if(this.menu.element.is(":visible"))if(this.menu.first()&&/^previous/.=
test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term);t=
his.menu.deactivate()}else this.menu[a](b);else =
this.search(null,b)},widget:function(){return =
this.menu.element}});e.extend(e.ui.autocomplete,{escapeRegex:function(a){=
return =
a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},filter:function(a,b){var =
c=3Dnew RegExp(e.ui.autocomplete.escapeRegex(b),"i");return =
e.grep(a,function(d){return c.test(d.label||d.value||=0A=
d)})}})})(jQuery);=0A=
(function(e){e.widget("ui.menu",{_create:function(){var =
a=3Dthis;this.element.addClass("ui-menu ui-widget ui-widget-content =
ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-m=
enuitem"}).click(function(b){if(e(b.target).closest(".ui-menu-item =
a").length){b.preventDefault();a.select(b)}});this.refresh()},refresh:fun=
ction(){var =
a=3Dthis;this.element.children("li:not(.ui-menu-item):has(a)").addClass("=
ui-menu-item").attr("role","menuitem").children("a").addClass("ui-corner-=
all").attr("tabindex",-1).mouseenter(function(b){a.activate(b,=0A=
e(this).parent())}).mouseleave(function(){a.deactivate()})},activate:func=
tion(a,b){this.deactivate();if(this.hasScroll()){var =
c=3Db.offset().top-this.element.offset().top,d=3Dthis.element.attr("scrol=
lTop"),f=3Dthis.element.height();if(c<0)this.element.attr("scrollTop",d+c=
);else =
c>f&&this.element.attr("scrollTop",d+c-f+b.height())}this.active=3Db.eq(0=
).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem"=
).end();this._trigger("focus",a,{item:b})},deactivate:function(){if(this.=
active){this.active.children("a").removeClass("ui-state-hover").removeAtt=
r("id");=0A=
this._trigger("blur");this.active=3Dnull}},next:function(a){this.move("ne=
xt",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-=
menu-item:last",a)},first:function(){return =
this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(=
){return =
this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(=
a,b,c){if(this.active){a=3Dthis.active[a+"All"](".ui-menu-item").eq(0);a.=
length?this.activate(c,a):this.activate(c,this.element.children(b))}else =
this.activate(c,=0A=
this.element.children(b))},nextPage:function(a){if(this.hasScroll())if(!t=
his.active||this.last())this.activate(a,this.element.children(":first"));=
else{var =
b=3Dthis.active.offset().top,c=3Dthis.element.height(),d=3Dthis.element.c=
hildren("li").filter(function(){var =
f=3De(this).offset().top-b-c+e(this).height();return =
f<10&&f>-10});d.length||(d=3Dthis.element.children(":last"));this.activat=
e(a,d)}else =
this.activate(a,this.element.children(!this.active||this.last()?":first":=
":last"))},previousPage:function(a){if(this.hasScroll())if(!this.active||=0A=
this.first())this.activate(a,this.element.children(":last"));else{var =
b=3Dthis.active.offset().top,c=3Dthis.element.height();result=3Dthis.elem=
ent.children("li").filter(function(){var =
d=3De(this).offset().top-b+c-e(this).height();return =
d<10&&d>-10});result.length||(result=3Dthis.element.children(":first"));t=
his.activate(a,result)}else =
this.activate(a,this.element.children(!this.active||this.first()?":last":=
":first"))},hasScroll:function(){return =
this.element.height()<this.element.attr("scrollHeight")},select:function(=
a){this._trigger("selected",=0A=
a,{item:this.active})}})})(jQuery);=0A=
;/*=0A=
 * jQuery UI Button 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Button=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 *	jquery.ui.widget.js=0A=
 */=0A=
(function(a){var =
g,i=3Dfunction(b){a(":ui-button",b.target.form).each(function(){var =
c=3Da(this).data("button");setTimeout(function(){c.refresh()},1)})},h=3Df=
unction(b){var =
c=3Db.name,d=3Db.form,e=3Da([]);if(c)e=3Dd?a(d).find("[name=3D'"+c+"']"):=
a("[name=3D'"+c+"']",b.ownerDocument).filter(function(){return!this.form}=
);return =
e};a.widget("ui.button",{options:{text:true,label:null,icons:{primary:nul=
l,secondary:null}},_create:function(){this.element.closest("form").unbind=
("reset.button").bind("reset.button",i);this._determineButtonType();=0A=
this.hasTitle=3D!!this.buttonElement.attr("title");var =
b=3Dthis,c=3Dthis.options,d=3Dthis.type=3D=3D=3D"checkbox"||this.type=3D=3D=
=3D"radio",e=3D"ui-state-hover"+(!d?" =
ui-state-active":"");if(c.label=3D=3D=3Dnull)c.label=3Dthis.buttonElement=
.html();if(this.element.is(":disabled"))c.disabled=3Dtrue;this.buttonElem=
ent.addClass("ui-button ui-widget ui-state-default =
ui-corner-all").attr("role","button").bind("mouseenter.button",function()=
{if(!c.disabled){a(this).addClass("ui-state-hover");this=3D=3D=3Dg&&a(thi=
s).addClass("ui-state-active")}}).bind("mouseleave.button",=0A=
function(){c.disabled||a(this).removeClass(e)}).bind("focus.button",funct=
ion(){a(this).addClass("ui-state-focus")}).bind("blur.button",function(){=
a(this).removeClass("ui-state-focus")});d&&this.element.bind("change.butt=
on",function(){b.refresh()});if(this.type=3D=3D=3D"checkbox")this.buttonE=
lement.bind("click.button",function(){if(c.disabled)return =
false;a(this).toggleClass("ui-state-active");b.buttonElement.attr("aria-p=
ressed",b.element[0].checked)});else =
if(this.type=3D=3D=3D"radio")this.buttonElement.bind("click.button",=0A=
function(){if(c.disabled)return =
false;a(this).addClass("ui-state-active");b.buttonElement.attr("aria-pres=
sed",true);var f=3Db.element[0];h(f).not(f).map(function(){return =
a(this).button("widget")[0]}).removeClass("ui-state-active").attr("aria-p=
ressed",false)});else{this.buttonElement.bind("mousedown.button",function=
(){if(c.disabled)return =
false;a(this).addClass("ui-state-active");g=3Dthis;a(document).one("mouse=
up",function(){g=3Dnull})}).bind("mouseup.button",function(){if(c.disable=
d)return =
false;a(this).removeClass("ui-state-active")}).bind("keydown.button",=0A=
function(f){if(c.disabled)return =
false;if(f.keyCode=3D=3Da.ui.keyCode.SPACE||f.keyCode=3D=3Da.ui.keyCode.E=
NTER)a(this).addClass("ui-state-active")}).bind("keyup.button",function()=
{a(this).removeClass("ui-state-active")});this.buttonElement.is("a")&&thi=
s.buttonElement.keyup(function(f){f.keyCode=3D=3D=3Da.ui.keyCode.SPACE&&a=
(this).click()})}this._setOption("disabled",c.disabled)},_determineButton=
Type:function(){this.type=3Dthis.element.is(":checkbox")?"checkbox":this.=
element.is(":radio")?"radio":this.element.is("input")?=0A=
"input":"button";if(this.type=3D=3D=3D"checkbox"||this.type=3D=3D=3D"radi=
o"){this.buttonElement=3Dthis.element.parents().last().find("label[for=3D=
"+this.element.attr("id")+"]");this.element.addClass("ui-helper-hidden-ac=
cessible");var =
b=3Dthis.element.is(":checked");b&&this.buttonElement.addClass("ui-state-=
active");this.buttonElement.attr("aria-pressed",b)}else =
this.buttonElement=3Dthis.element},widget:function(){return =
this.buttonElement},destroy:function(){this.element.removeClass("ui-helpe=
r-hidden-accessible");this.buttonElement.removeClass("ui-button =
ui-widget ui-state-default ui-corner-all ui-state-hover ui-state-active  =
ui-button-icons-only ui-button-icon-only ui-button-text-icons =
ui-button-text-icon-primary ui-button-text-icon-secondary =
ui-button-text-only").removeAttr("role").removeAttr("aria-pressed").html(=
this.buttonElement.find(".ui-button-text").html());=0A=
this.hasTitle||this.buttonElement.removeAttr("title");a.Widget.prototype.=
destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOptio=
n.apply(this,arguments);if(b=3D=3D=3D"disabled")c?this.element.attr("disa=
bled",true):this.element.removeAttr("disabled");this._resetButton()},refr=
esh:function(){var =
b=3Dthis.element.is(":disabled");b!=3D=3Dthis.options.disabled&&this._set=
Option("disabled",b);if(this.type=3D=3D=3D"radio")h(this.element[0]).each=
(function(){a(this).is(":checked")?a(this).button("widget").addClass("ui-=
state-active").attr("aria-pressed",=0A=
true):a(this).button("widget").removeClass("ui-state-active").attr("aria-=
pressed",false)});else =
if(this.type=3D=3D=3D"checkbox")this.element.is(":checked")?this.buttonEl=
ement.addClass("ui-state-active").attr("aria-pressed",true):this.buttonEl=
ement.removeClass("ui-state-active").attr("aria-pressed",false)},_resetBu=
tton:function(){if(this.type=3D=3D=3D"input")this.options.label&&this.ele=
ment.val(this.options.label);else{var =
b=3Dthis.buttonElement.removeClass("ui-button-icons-only =
ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary =
ui-button-text-icon-secondary ui-button-text-only"),=0A=
c=3Da("<span></span>").addClass("ui-button-text").html(this.options.label=
).appendTo(b.empty()).text(),d=3Dthis.options.icons,e=3Dd.primary&&d.seco=
ndary;if(d.primary||d.secondary){b.addClass("ui-button-text-icon"+(e?"s":=
d.primary?"-primary":"-secondary"));d.primary&&b.prepend("<span =
class=3D'ui-button-icon-primary ui-icon =
"+d.primary+"'></span>");d.secondary&&b.append("<span =
class=3D'ui-button-icon-secondary ui-icon =
"+d.secondary+"'></span>");if(!this.options.text){b.addClass(e?"ui-button=
-icons-only":"ui-button-icon-only").removeClass("ui-button-text-icons =
ui-button-text-icon-primary ui-button-text-icon-secondary");=0A=
this.hasTitle||b.attr("title",c)}}else =
b.addClass("ui-button-text-only")}}});a.widget("ui.buttonset",{_create:fu=
nction(){this.element.addClass("ui-buttonset");this._init()},_init:functi=
on(){this.refresh()},_setOption:function(b,c){b=3D=3D=3D"disabled"&&this.=
buttons.button("option",b,c);a.Widget.prototype._setOption.apply(this,arg=
uments)},refresh:function(){this.buttons=3Dthis.element.find(":button, =
:submit, :reset, :checkbox, :radio, a, =
:data(button)").filter(":ui-button").button("refresh").end().not(":ui-but=
ton").button().end().map(function(){return =
a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left =
ui-corner-right").filter(":first").addClass("ui-corner-left").end().filte=
r(":last").addClass("ui-corner-right").end().end()},=0A=
destroy:function(){this.element.removeClass("ui-buttonset");this.buttons.=
map(function(){return =
a(this).button("widget")[0]}).removeClass("ui-corner-left =
ui-corner-right").end().button("destroy");a.Widget.prototype.destroy.call=
(this)}})})(jQuery);=0A=
;/*=0A=
 * jQuery UI Dialog 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Dialog=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 *	jquery.ui.widget.js=0A=
 *  jquery.ui.button.js=0A=
 *	jquery.ui.draggable.js=0A=
 *	jquery.ui.mouse.js=0A=
 *	jquery.ui.position.js=0A=
 *	jquery.ui.resizable.js=0A=
 */=0A=
(function(c,j){c.widget("ui.dialog",{options:{autoOpen:true,buttons:{},cl=
oseOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:nul=
l,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150=
,modal:false,position:{my:"center",at:"center",of:window,collision:"fit",=
using:function(a){var =
b=3Dc(this).css(a).offset().top;b<0&&c(this).css("top",a.top-b)}},resizab=
le:true,show:null,stack:true,title:"",width:300,zIndex:1E3},_create:funct=
ion(){this.originalTitle=3Dthis.element.attr("title");=0A=
if(typeof this.originalTitle!=3D=3D"string")this.originalTitle=3D"";var =
a=3Dthis,b=3Da.options,d=3Db.title||a.originalTitle||"&#160;",f=3Dc.ui.di=
alog.getTitleId(a.element),g=3D(a.uiDialog=3Dc("<div></div>")).appendTo(d=
ocument.body).hide().addClass("ui-dialog ui-widget ui-widget-content =
ui-corner-all =
"+b.dialogClass).css({zIndex:b.zIndex}).attr("tabIndex",-1).css("outline"=
,0).keydown(function(i){if(b.closeOnEscape&&i.keyCode&&i.keyCode=3D=3D=3D=
c.ui.keyCode.ESCAPE){a.close(i);i.preventDefault()}}).attr({role:"dialog"=
,"aria-labelledby":f}).mousedown(function(i){a.moveToTop(false,=0A=
i)});a.element.show().removeAttr("title").addClass("ui-dialog-content =
ui-widget-content").appendTo(g);var =
e=3D(a.uiDialogTitlebar=3Dc("<div></div>")).addClass("ui-dialog-titlebar =
ui-widget-header ui-corner-all =
ui-helper-clearfix").prependTo(g),h=3Dc('<a =
href=3D"#"></a>').addClass("ui-dialog-titlebar-close =
ui-corner-all").attr("role","button").hover(function(){h.addClass("ui-sta=
te-hover")},function(){h.removeClass("ui-state-hover")}).focus(function()=
{h.addClass("ui-state-focus")}).blur(function(){h.removeClass("ui-state-f=
ocus")}).click(function(i){a.close(i);=0A=
return =
false}).appendTo(e);(a.uiDialogTitlebarCloseText=3Dc("<span></span>")).ad=
dClass("ui-icon =
ui-icon-closethick").text(b.closeText).appendTo(h);c("<span></span>").add=
Class("ui-dialog-title").attr("id",f).html(d).prependTo(e);if(c.isFunctio=
n(b.beforeclose)&&!c.isFunction(b.beforeClose))b.beforeClose=3Db.beforecl=
ose;e.find("*").add(e).disableSelection();b.draggable&&c.fn.draggable&&a.=
_makeDraggable();b.resizable&&c.fn.resizable&&a._makeResizable();a._creat=
eButtons(b.buttons);a._isOpen=3Dfalse;c.fn.bgiframe&&=0A=
g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destro=
y:function(){var =
a=3Dthis;a.overlay&&a.overlay.destroy();a.uiDialog.hide();a.element.unbin=
d(".dialog").removeData("dialog").removeClass("ui-dialog-content =
ui-widget-content").hide().appendTo("body");a.uiDialog.remove();a.origina=
lTitle&&a.element.attr("title",a.originalTitle);return =
a},widget:function(){return this.uiDialog},close:function(a){var =
b=3Dthis,d;if(false!=3D=3Db._trigger("beforeClose",a)){b.overlay&&b.overl=
ay.destroy();b.uiDialog.unbind("keypress.ui-dialog");=0A=
b._isOpen=3Dfalse;if(b.options.hide)b.uiDialog.hide(b.options.hide,functi=
on(){b._trigger("close",a)});else{b.uiDialog.hide();b._trigger("close",a)=
}c.ui.dialog.overlay.resize();if(b.options.modal){d=3D0;c(".ui-dialog").e=
ach(function(){if(this!=3D=3Db.uiDialog[0])d=3DMath.max(d,c(this).css("z-=
index"))});c.ui.dialog.maxZ=3Dd}return b}},isOpen:function(){return =
this._isOpen},moveToTop:function(a,b){var =
d=3Dthis,f=3Dd.options;if(f.modal&&!a||!f.stack&&!f.modal)return =
d._trigger("focus",b);if(f.zIndex>c.ui.dialog.maxZ)c.ui.dialog.maxZ=3D=0A=
f.zIndex;if(d.overlay){c.ui.dialog.maxZ+=3D1;d.overlay.$el.css("z-index",=
c.ui.dialog.overlay.maxZ=3Dc.ui.dialog.maxZ)}a=3D{scrollTop:d.element.att=
r("scrollTop"),scrollLeft:d.element.attr("scrollLeft")};c.ui.dialog.maxZ+=
=3D1;d.uiDialog.css("z-index",c.ui.dialog.maxZ);d.element.attr(a);d._trig=
ger("focus",b);return d},open:function(){if(!this._isOpen){var =
a=3Dthis,b=3Da.options,d=3Da.uiDialog;a.overlay=3Db.modal?new =
c.ui.dialog.overlay(a):null;d.next().length&&d.appendTo("body");a._size()=
;a._position(b.position);d.show(b.show);=0A=
a.moveToTop(true);b.modal&&d.bind("keypress.ui-dialog",function(f){if(f.k=
eyCode=3D=3D=3Dc.ui.keyCode.TAB){var =
g=3Dc(":tabbable",this),e=3Dg.filter(":first");g=3Dg.filter(":last");if(f=
.target=3D=3D=3Dg[0]&&!f.shiftKey){e.focus(1);return false}else =
if(f.target=3D=3D=3De[0]&&f.shiftKey){g.focus(1);return =
false}}});c(a.element.find(":tabbable").get().concat(d.find(".ui-dialog-b=
uttonpane =
:tabbable").get().concat(d.get()))).eq(0).focus();a._trigger("open");a._i=
sOpen=3Dtrue;return a}},_createButtons:function(a){var =
b=3Dthis,d=3Dfalse,=0A=
f=3Dc("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content =
ui-helper-clearfix"),g=3Dc("<div></div>").addClass("ui-dialog-buttonset")=
.appendTo(f);b.uiDialog.find(".ui-dialog-buttonpane").remove();typeof =
a=3D=3D=3D"object"&&a!=3D=3Dnull&&c.each(a,function(){return!(d=3Dtrue)})=
;if(d){c.each(a,function(e,h){e=3Dc('<button =
type=3D"button"></button>').text(e).click(function(){h.apply(b.element[0]=
,arguments)}).appendTo(g);c.fn.button&&e.button()});f.appendTo(b.uiDialog=
)}},_makeDraggable:function(){function a(e){return{position:e.position,=0A=
offset:e.offset}}var =
b=3Dthis,d=3Db.options,f=3Dc(document),g;b.uiDialog.draggable({cancel:".u=
i-dialog-content, =
.ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"docu=
ment",start:function(e,h){g=3Dd.height=3D=3D=3D"auto"?"auto":c(this).heig=
ht();c(this).height(c(this).height()).addClass("ui-dialog-dragging");b._t=
rigger("dragStart",e,a(h))},drag:function(e,h){b._trigger("drag",e,a(h))}=
,stop:function(e,h){d.position=3D[h.position.left-f.scrollLeft(),h.positi=
on.top-f.scrollTop()];c(this).removeClass("ui-dialog-dragging").height(g)=
;=0A=
b._trigger("dragStop",e,a(h));c.ui.dialog.overlay.resize()}})},_makeResiz=
able:function(a){function =
b(e){return{originalPosition:e.originalPosition,originalSize:e.originalSi=
ze,position:e.position,size:e.size}}a=3Da=3D=3D=3Dj?this.options.resizabl=
e:a;var d=3Dthis,f=3Dd.options,g=3Dd.uiDialog.css("position");a=3Dtypeof =
a=3D=3D=3D"string"?a:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:"=
.ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:=
f.maxWidth,maxHeight:f.maxHeight,minWidth:f.minWidth,minHeight:d._minHeig=
ht(),=0A=
handles:a,start:function(e,h){c(this).addClass("ui-dialog-resizing");d._t=
rigger("resizeStart",e,b(h))},resize:function(e,h){d._trigger("resize",e,=
b(h))},stop:function(e,h){c(this).removeClass("ui-dialog-resizing");f.hei=
ght=3Dc(this).height();f.width=3Dc(this).width();d._trigger("resizeStop",=
e,b(h));c.ui.dialog.overlay.resize()}}).css("position",g).find(".ui-resiz=
able-se").addClass("ui-icon =
ui-icon-grip-diagonal-se")},_minHeight:function(){var =
a=3Dthis.options;return =
a.height=3D=3D=3D"auto"?a.minHeight:Math.min(a.minHeight,=0A=
a.height)},_position:function(a){var b=3D[],d=3D[0,0],f;if(a){if(typeof =
a=3D=3D=3D"string"||typeof a=3D=3D=3D"object"&&"0"in =
a){b=3Da.split?a.split(" =
"):[a[0],a[1]];if(b.length=3D=3D=3D1)b[1]=3Db[0];c.each(["left","top"],fu=
nction(g,e){if(+b[g]=3D=3D=3Db[g]){d[g]=3Db[g];b[g]=3De}});a=3D{my:b.join=
(" "),at:b.join(" "),offset:d.join(" =
")}}a=3Dc.extend({},c.ui.dialog.prototype.options.position,a)}else =
a=3Dc.ui.dialog.prototype.options.position;(f=3Dthis.uiDialog.is(":visibl=
e"))||this.uiDialog.show();this.uiDialog.css({top:0,left:0}).position(a);=0A=
f||this.uiDialog.hide()},_setOption:function(a,b){var =
d=3Dthis,f=3Dd.uiDialog,g=3Df.is(":data(resizable)"),e=3Dfalse;switch(a){=
case "beforeclose":a=3D"beforeClose";break;case =
"buttons":d._createButtons(b);e=3Dtrue;break;case =
"closeText":d.uiDialogTitlebarCloseText.text(""+b);break;case =
"dialogClass":f.removeClass(d.options.dialogClass).addClass("ui-dialog =
ui-widget ui-widget-content ui-corner-all "+b);break;case =
"disabled":b?f.addClass("ui-dialog-disabled"):f.removeClass("ui-dialog-di=
sabled");break;case "draggable":b?=0A=
d._makeDraggable():f.draggable("destroy");break;case =
"height":e=3Dtrue;break;case =
"maxHeight":g&&f.resizable("option","maxHeight",b);e=3Dtrue;break;case =
"maxWidth":g&&f.resizable("option","maxWidth",b);e=3Dtrue;break;case =
"minHeight":g&&f.resizable("option","minHeight",b);e=3Dtrue;break;case =
"minWidth":g&&f.resizable("option","minWidth",b);e=3Dtrue;break;case =
"position":d._position(b);break;case =
"resizable":g&&!b&&f.resizable("destroy");g&&typeof =
b=3D=3D=3D"string"&&f.resizable("option","handles",b);!g&&b!=3D=3Dfalse&&=0A=
d._makeResizable(b);break;case =
"title":c(".ui-dialog-title",d.uiDialogTitlebar).html(""+(b||"&#160;"));b=
reak;case =
"width":e=3Dtrue;break}c.Widget.prototype._setOption.apply(d,arguments);e=
&&d._size()},_size:function(){var =
a=3Dthis.options,b;this.element.css({width:"auto",minHeight:0,height:0});=
if(a.minWidth>a.width)a.width=3Da.minWidth;b=3Dthis.uiDialog.css({height:=
"auto",width:a.width}).height();this.element.css(a.height=3D=3D=3D"auto"?=
{minHeight:Math.max(a.minHeight-b,0),height:"auto"}:{minHeight:0,height:M=
ath.max(a.height-=0A=
b,0)}).show();this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizab=
le("option","minHeight",this._minHeight())}});c.extend(c.ui.dialog,{versi=
on:"1.8.4",uuid:0,maxZ:0,getTitleId:function(a){a=3Da.attr("id");if(!a){t=
his.uuid+=3D1;a=3Dthis.uuid}return"ui-dialog-title-"+a},overlay:function(=
a){this.$el=3Dc.ui.dialog.overlay.create(a)}});c.extend(c.ui.dialog.overl=
ay,{instances:[],oldInstances:[],maxZ:0,events:c.map("focus,mousedown,mou=
seup,keydown,keypress,click".split(","),function(a){return =
a+".dialog-overlay"}).join(" "),=0A=
create:function(a){if(this.instances.length=3D=3D=3D0){setTimeout(functio=
n(){c.ui.dialog.overlay.instances.length&&c(document).bind(c.ui.dialog.ov=
erlay.events,function(d){return =
c(d.target).zIndex()>=3Dc.ui.dialog.overlay.maxZ})},1);c(document).bind("=
keydown.dialog-overlay",function(d){if(a.options.closeOnEscape&&d.keyCode=
&&d.keyCode=3D=3D=3Dc.ui.keyCode.ESCAPE){a.close(d);d.preventDefault()}})=
;c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var =
b=3D(this.oldInstances.pop()||c("<div></div>").addClass("ui-widget-overla=
y")).appendTo(document.body).css({width:this.width(),=0A=
height:this.height()});c.fn.bgiframe&&b.bgiframe();this.instances.push(b)=
;return =
b},destroy:function(a){this.oldInstances.push(this.instances.splice(c.inA=
rray(a,this.instances),1)[0]);this.instances.length=3D=3D=3D0&&c([documen=
t,window]).unbind(".dialog-overlay");a.remove();var =
b=3D0;c.each(this.instances,function(){b=3DMath.max(b,this.css("z-index")=
)});this.maxZ=3Db},height:function(){var =
a,b;if(c.browser.msie&&c.browser.version<7){a=3DMath.max(document.documen=
tElement.scrollHeight,document.body.scrollHeight);=0A=
b=3DMath.max(document.documentElement.offsetHeight,document.body.offsetHe=
ight);return a<b?c(window).height()+"px":a+"px"}else return =
c(document).height()+"px"},width:function(){var =
a,b;if(c.browser.msie&&c.browser.version<7){a=3DMath.max(document.documen=
tElement.scrollWidth,document.body.scrollWidth);b=3DMath.max(document.doc=
umentElement.offsetWidth,document.body.offsetWidth);return =
a<b?c(window).width()+"px":a+"px"}else return =
c(document).width()+"px"},resize:function(){var =
a=3Dc([]);c.each(c.ui.dialog.overlay.instances,=0A=
function(){a=3Da.add(this)});a.css({width:0,height:0}).css({width:c.ui.di=
alog.overlay.width(),height:c.ui.dialog.overlay.height()})}});c.extend(c.=
ui.dialog.overlay.prototype,{destroy:function(){c.ui.dialog.overlay.destr=
oy(this.$el)}})})(jQuery);=0A=
;/*=0A=
 * jQuery UI Slider 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Slider=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 *	jquery.ui.mouse.js=0A=
 *	jquery.ui.widget.js=0A=
 */=0A=
(function(d){d.widget("ui.slider",d.ui.mouse,{widgetEventPrefix:"slide",o=
ptions:{animate:false,distance:0,max:100,min:0,orientation:"horizontal",r=
ange:false,step:1,value:0,values:null},_create:function(){var =
a=3Dthis,b=3Dthis.options;this._mouseSliding=3Dthis._keySliding=3Dfalse;t=
his._animateOff=3Dtrue;this._handleIndex=3Dnull;this._detectOrientation()=
;this._mouseInit();this.element.addClass("ui-slider =
ui-slider-"+this.orientation+" ui-widget ui-widget-content =
ui-corner-all");b.disabled&&this.element.addClass("ui-slider-disabled =
ui-disabled");=0A=
this.range=3Dd([]);if(b.range){if(b.range=3D=3D=3Dtrue){this.range=3Dd("<=
div></div>");if(!b.values)b.values=3D[this._valueMin(),this._valueMin()];=
if(b.values.length&&b.values.length!=3D=3D2)b.values=3D[b.values[0],b.val=
ues[0]]}else =
this.range=3Dd("<div></div>");this.range.appendTo(this.element).addClass(=
"ui-slider-range");if(b.range=3D=3D=3D"min"||b.range=3D=3D=3D"max")this.r=
ange.addClass("ui-slider-range-"+b.range);this.range.addClass("ui-widget-=
header")}d(".ui-slider-handle",this.element).length=3D=3D=3D0&&d("<a =
href=3D'#'></a>").appendTo(this.element).addClass("ui-slider-handle");=0A=
if(b.values&&b.values.length)for(;d(".ui-slider-handle",this.element).len=
gth<b.values.length;)d("<a =
href=3D'#'></a>").appendTo(this.element).addClass("ui-slider-handle");thi=
s.handles=3Dd(".ui-slider-handle",this.element).addClass("ui-state-defaul=
t =
ui-corner-all");this.handle=3Dthis.handles.eq(0);this.handles.add(this.ra=
nge).filter("a").click(function(c){c.preventDefault()}).hover(function(){=
b.disabled||d(this).addClass("ui-state-hover")},function(){d(this).remove=
Class("ui-state-hover")}).focus(function(){if(b.disabled)d(this).blur();=0A=
else{d(".ui-slider =
.ui-state-focus").removeClass("ui-state-focus");d(this).addClass("ui-stat=
e-focus")}}).blur(function(){d(this).removeClass("ui-state-focus")});this=
.handles.each(function(c){d(this).data("index.ui-slider-handle",c)});this=
.handles.keydown(function(c){var =
e=3Dtrue,f=3Dd(this).data("index.ui-slider-handle"),h,g,i;if(!a.options.d=
isabled){switch(c.keyCode){case d.ui.keyCode.HOME:case =
d.ui.keyCode.END:case d.ui.keyCode.PAGE_UP:case =
d.ui.keyCode.PAGE_DOWN:case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:case =
d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:e=3D=0A=
false;if(!a._keySliding){a._keySliding=3Dtrue;d(this).addClass("ui-state-=
active");h=3Da._start(c,f);if(h=3D=3D=3Dfalse)return}break}i=3Da.options.=
step;h=3Da.options.values&&a.options.values.length?(g=3Da.values(f)):(g=3D=
a.value());switch(c.keyCode){case =
d.ui.keyCode.HOME:g=3Da._valueMin();break;case =
d.ui.keyCode.END:g=3Da._valueMax();break;case =
d.ui.keyCode.PAGE_UP:g=3Da._trimAlignValue(h+(a._valueMax()-a._valueMin()=
)/5);break;case =
d.ui.keyCode.PAGE_DOWN:g=3Da._trimAlignValue(h-(a._valueMax()-a._valueMin=
())/5);break;case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:if(h=3D=3D=3D=0A=
a._valueMax())return;g=3Da._trimAlignValue(h+i);break;case =
d.ui.keyCode.DOWN:case =
d.ui.keyCode.LEFT:if(h=3D=3D=3Da._valueMin())return;g=3Da._trimAlignValue=
(h-i);break}a._slide(c,f,g);return e}}).keyup(function(c){var =
e=3Dd(this).data("index.ui-slider-handle");if(a._keySliding){a._keySlidin=
g=3Dfalse;a._stop(c,e);a._change(c,e);d(this).removeClass("ui-state-activ=
e")}});this._refreshValue();this._animateOff=3Dfalse},destroy:function(){=
this.handles.remove();this.range.remove();this.element.removeClass("ui-sl=
ider ui-slider-horizontal ui-slider-vertical ui-slider-disabled =
ui-widget ui-widget-content =
ui-corner-all").removeData("slider").unbind(".slider");=0A=
this._mouseDestroy();return this},_mouseCapture:function(a){var =
b=3Dthis.options,c,e,f,h,g;if(b.disabled)return =
false;this.elementSize=3D{width:this.element.outerWidth(),height:this.ele=
ment.outerHeight()};this.elementOffset=3Dthis.element.offset();c=3Dthis._=
normValueFromMouse({x:a.pageX,y:a.pageY});e=3Dthis._valueMax()-this._valu=
eMin()+1;h=3Dthis;this.handles.each(function(i){var =
j=3DMath.abs(c-h.values(i));if(e>j){e=3Dj;f=3Dd(this);g=3Di}});if(b.range=
=3D=3D=3Dtrue&&this.values(1)=3D=3D=3Db.min){g+=3D1;f=3Dd(this.handles[g]=
)}if(this._start(a,=0A=
g)=3D=3D=3Dfalse)return =
false;this._mouseSliding=3Dtrue;h._handleIndex=3Dg;f.addClass("ui-state-a=
ctive").focus();b=3Df.offset();this._clickOffset=3D!d(a.target).parents()=
.andSelf().is(".ui-slider-handle")?{left:0,top:0}:{left:a.pageX-b.left-f.=
width()/2,top:a.pageY-b.top-f.height()/2-(parseInt(f.css("borderTopWidth"=
),10)||0)-(parseInt(f.css("borderBottomWidth"),10)||0)+(parseInt(f.css("m=
arginTop"),10)||0)};this._slide(a,g,c);return =
this._animateOff=3Dtrue},_mouseStart:function(){return =
true},_mouseDrag:function(a){var b=3D=0A=
this._normValueFromMouse({x:a.pageX,y:a.pageY});this._slide(a,this._handl=
eIndex,b);return =
false},_mouseStop:function(a){this.handles.removeClass("ui-state-active")=
;this._mouseSliding=3Dfalse;this._stop(a,this._handleIndex);this._change(=
a,this._handleIndex);this._clickOffset=3Dthis._handleIndex=3Dnull;return =
this._animateOff=3Dfalse},_detectOrientation:function(){this.orientation=3D=
this.options.orientation=3D=3D=3D"vertical"?"vertical":"horizontal"},_nor=
mValueFromMouse:function(a){var =
b;if(this.orientation=3D=3D=3D"horizontal"){b=3D=0A=
this.elementSize.width;a=3Da.x-this.elementOffset.left-(this._clickOffset=
?this._clickOffset.left:0)}else{b=3Dthis.elementSize.height;a=3Da.y-this.=
elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}b=3Da/b;if(=
b>1)b=3D1;if(b<0)b=3D0;if(this.orientation=3D=3D=3D"vertical")b=3D1-b;a=3D=
this._valueMax()-this._valueMin();return =
this._trimAlignValue(this._valueMin()+b*a)},_start:function(a,b){var =
c=3D{handle:this.handles[b],value:this.value()};if(this.options.values&&t=
his.options.values.length){c.value=3Dthis.values(b);=0A=
c.values=3Dthis.values()}return =
this._trigger("start",a,c)},_slide:function(a,b,c){var =
e;if(this.options.values&&this.options.values.length){e=3Dthis.values(b?0=
:1);if(this.options.values.length=3D=3D=3D2&&this.options.range=3D=3D=3Dt=
rue&&(b=3D=3D=3D0&&c>e||b=3D=3D=3D1&&c<e))c=3De;if(c!=3D=3Dthis.values(b)=
){e=3Dthis.values();e[b]=3Dc;a=3Dthis._trigger("slide",a,{handle:this.han=
dles[b],value:c,values:e});this.values(b?0:1);a!=3D=3Dfalse&&this.values(=
b,c,true)}}else =
if(c!=3D=3Dthis.value()){a=3Dthis._trigger("slide",a,{handle:this.handles=
[b],value:c});=0A=
a!=3D=3Dfalse&&this.value(c)}},_stop:function(a,b){var =
c=3D{handle:this.handles[b],value:this.value()};if(this.options.values&&t=
his.options.values.length){c.value=3Dthis.values(b);c.values=3Dthis.value=
s()}this._trigger("stop",a,c)},_change:function(a,b){if(!this._keySliding=
&&!this._mouseSliding){var =
c=3D{handle:this.handles[b],value:this.value()};if(this.options.values&&t=
his.options.values.length){c.value=3Dthis.values(b);c.values=3Dthis.value=
s()}this._trigger("change",a,c)}},value:function(a){if(arguments.length){=
this.options.value=3D=0A=
this._trimAlignValue(a);this._refreshValue();this._change(null,0)}return =
this._value()},values:function(a,b){var =
c,e,f;if(arguments.length>1){this.options.values[a]=3Dthis._trimAlignValu=
e(b);this._refreshValue();this._change(null,a)}if(arguments.length)if(d.i=
sArray(arguments[0])){c=3Dthis.options.values;e=3Darguments[0];for(f=3D0;=
f<c.length;f+=3D1){c[f]=3Dthis._trimAlignValue(e[f]);this._change(null,f)=
}this._refreshValue()}else return =
this.options.values&&this.options.values.length?this._values(a):this.valu=
e();=0A=
else return this._values()},_setOption:function(a,b){var =
c,e=3D0;if(d.isArray(this.options.values))e=3Dthis.options.values.length;=
d.Widget.prototype._setOption.apply(this,arguments);switch(a){case =
"disabled":if(b){this.handles.filter(".ui-state-focus").blur();this.handl=
es.removeClass("ui-state-hover");this.handles.attr("disabled","disabled")=
;this.element.addClass("ui-disabled")}else{this.handles.removeAttr("disab=
led");this.element.removeClass("ui-disabled")}break;case =
"orientation":this._detectOrientation();=0A=
this.element.removeClass("ui-slider-horizontal =
ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refres=
hValue();break;case =
"value":this._animateOff=3Dtrue;this._refreshValue();this._change(null,0)=
;this._animateOff=3Dfalse;break;case =
"values":this._animateOff=3Dtrue;this._refreshValue();for(c=3D0;c<e;c+=3D=
1)this._change(null,c);this._animateOff=3Dfalse;break}},_value:function()=
{var a=3Dthis.options.value;return =
a=3Dthis._trimAlignValue(a)},_values:function(a){var =
b,c;if(arguments.length){b=3Dthis.options.values[a];=0A=
return =
b=3Dthis._trimAlignValue(b)}else{b=3Dthis.options.values.slice();for(c=3D=
0;c<b.length;c+=3D1)b[c]=3Dthis._trimAlignValue(b[c]);return =
b}},_trimAlignValue:function(a){if(a<this._valueMin())return =
this._valueMin();if(a>this._valueMax())return this._valueMax();var =
b=3Dthis.options.step>0?this.options.step:1,c=3Da%b;a=3Da-c;if(Math.abs(c=
)*2>=3Db)a+=3Dc>0?b:-b;return =
parseFloat(a.toFixed(5))},_valueMin:function(){return =
this.options.min},_valueMax:function(){return =
this.options.max},_refreshValue:function(){var a=3D=0A=
this.options.range,b=3Dthis.options,c=3Dthis,e=3D!this._animateOff?b.anim=
ate:false,f,h=3D{},g,i,j,l;if(this.options.values&&this.options.values.le=
ngth)this.handles.each(function(k){f=3D(c.values(k)-c._valueMin())/(c._va=
lueMax()-c._valueMin())*100;h[c.orientation=3D=3D=3D"horizontal"?"left":"=
bottom"]=3Df+"%";d(this).stop(1,1)[e?"animate":"css"](h,b.animate);if(c.o=
ptions.range=3D=3D=3Dtrue)if(c.orientation=3D=3D=3D"horizontal"){if(k=3D=3D=
=3D0)c.range.stop(1,1)[e?"animate":"css"]({left:f+"%"},b.animate);if(k=3D=
=3D=3D1)c.range[e?"animate":"css"]({width:f-=0A=
g+"%"},{queue:false,duration:b.animate})}else{if(k=3D=3D=3D0)c.range.stop=
(1,1)[e?"animate":"css"]({bottom:f+"%"},b.animate);if(k=3D=3D=3D1)c.range=
[e?"animate":"css"]({height:f-g+"%"},{queue:false,duration:b.animate})}g=3D=
f});else{i=3Dthis.value();j=3Dthis._valueMin();l=3Dthis._valueMax();f=3Dl=
!=3D=3Dj?(i-j)/(l-j)*100:0;h[c.orientation=3D=3D=3D"horizontal"?"left":"b=
ottom"]=3Df+"%";this.handle.stop(1,1)[e?"animate":"css"](h,b.animate);if(=
a=3D=3D=3D"min"&&this.orientation=3D=3D=3D"horizontal")this.range.stop(1,=
1)[e?"animate":"css"]({width:f+"%"},=0A=
b.animate);if(a=3D=3D=3D"max"&&this.orientation=3D=3D=3D"horizontal")this=
.range[e?"animate":"css"]({width:100-f+"%"},{queue:false,duration:b.anima=
te});if(a=3D=3D=3D"min"&&this.orientation=3D=3D=3D"vertical")this.range.s=
top(1,1)[e?"animate":"css"]({height:f+"%"},b.animate);if(a=3D=3D=3D"max"&=
&this.orientation=3D=3D=3D"vertical")this.range[e?"animate":"css"]({heigh=
t:100-f+"%"},{queue:false,duration:b.animate})}}});d.extend(d.ui.slider,{=
version:"1.8.4"})})(jQuery);=0A=
;/*=0A=
 * jQuery UI Tabs 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Tabs=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 *	jquery.ui.widget.js=0A=
 */=0A=
(function(d,p){function u(){return++v}function w(){return++x}var =
v=3D0,x=3D0;d.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:=
false,cookie:null,collapsible:false,disable:null,disabled:[],enable:null,=
event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"<div><=
/div>",remove:null,select:null,show:null,spinner:"<em>Loading&#8230;</em>=
",tabTemplate:"<li><a =
href=3D'#{href}'><span>#{label}</span></a></li>"},_create:function(){this=
._tabify(true)},_setOption:function(a,e){if(a=3D=3D"selected")this.option=
s.collapsible&&=0A=
e=3D=3Dthis.options.selected||this.select(e);else{this.options[a]=3De;thi=
s._tabify()}},_tabId:function(a){return =
a.title&&a.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||th=
is.options.idPrefix+u()},_sanitizeSelector:function(a){return =
a.replace(/:/g,"\\:")},_cookie:function(){var =
a=3Dthis.cookie||(this.cookie=3Dthis.options.cookie.name||"ui-tabs-"+w())=
;return =
d.cookie.apply(null,[a].concat(d.makeArray(arguments)))},_ui:function(a,e=
){return{tab:a,panel:e,index:this.anchors.index(a)}},_cleanup:function(){=
this.lis.filter(".ui-state-processing").removeClass("ui-state-processing"=
).find("span:data(label.tabs)").each(function(){var a=3D=0A=
d(this);a.html(a.data("label.tabs")).removeData("label.tabs")})},_tabify:=
function(a){function =
e(g,f){g.css("display","");!d.support.opacity&&f.opacity&&g[0].style.remo=
veAttribute("filter")}var =
b=3Dthis,c=3Dthis.options,h=3D/^#.+/;this.list=3Dthis.element.find("ol,ul=
").eq(0);this.lis=3Dd("li:has(a[href])",this.list);this.anchors=3Dthis.li=
s.map(function(){return =
d("a",this)[0]});this.panels=3Dd([]);this.anchors.each(function(g,f){var =
j=3Dd(f).attr("href"),l=3Dj.split("#")[0],q;if(l&&(l=3D=3D=3Dlocation.toS=
tring().split("#")[0]||=0A=
(q=3Dd("base")[0])&&l=3D=3D=3Dq.href)){j=3Df.hash;f.href=3Dj}if(h.test(j)=
)b.panels=3Db.panels.add(b._sanitizeSelector(j));else =
if(j!=3D=3D"#"){d.data(f,"href.tabs",j);d.data(f,"load.tabs",j.replace(/#=
.*$/,""));j=3Db._tabId(f);f.href=3D"#"+j;f=3Dd("#"+j);if(!f.length){f=3Dd=
(c.panelTemplate).attr("id",j).addClass("ui-tabs-panel ui-widget-content =
ui-corner-bottom").insertAfter(b.panels[g-1]||b.list);f.data("destroy.tab=
s",true)}b.panels=3Db.panels.add(f)}else =
c.disabled.push(g)});if(a){this.element.addClass("ui-tabs ui-widget =
ui-widget-content ui-corner-all");=0A=
this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix =
ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default =
ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content =
ui-corner-bottom");if(c.selected=3D=3D=3Dp){location.hash&&this.anchors.e=
ach(function(g,f){if(f.hash=3D=3Dlocation.hash){c.selected=3Dg;return =
false}});if(typeof =
c.selected!=3D=3D"number"&&c.cookie)c.selected=3DparseInt(b._cookie(),10)=
;if(typeof =
c.selected!=3D=3D"number"&&this.lis.filter(".ui-tabs-selected").length)c.=
selected=3D=0A=
this.lis.index(this.lis.filter(".ui-tabs-selected"));c.selected=3Dc.selec=
ted||(this.lis.length?0:-1)}else =
if(c.selected=3D=3D=3Dnull)c.selected=3D-1;c.selected=3Dc.selected>=3D0&&=
this.anchors[c.selected]||c.selected<0?c.selected:0;c.disabled=3Dd.unique=
(c.disabled.concat(d.map(this.lis.filter(".ui-state-disabled"),function(g=
){return =
b.lis.index(g)}))).sort();d.inArray(c.selected,c.disabled)!=3D-1&&c.disab=
led.splice(d.inArray(c.selected,c.disabled),1);this.panels.addClass("ui-t=
abs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");=0A=
if(c.selected>=3D0&&this.anchors.length){this.panels.eq(c.selected).remov=
eClass("ui-tabs-hide");this.lis.eq(c.selected).addClass("ui-tabs-selected=
 =
ui-state-active");b.element.queue("tabs",function(){b._trigger("show",nul=
l,b._ui(b.anchors[c.selected],b.panels[c.selected]))});this.load(c.select=
ed)}d(window).bind("unload",function(){b.lis.add(b.anchors).unbind(".tabs=
");b.lis=3Db.anchors=3Db.panels=3Dnull})}else =
c.selected=3Dthis.lis.index(this.lis.filter(".ui-tabs-selected"));this.el=
ement[c.collapsible?"addClass":=0A=
"removeClass"]("ui-tabs-collapsible");c.cookie&&this._cookie(c.selected,c=
.cookie);a=3D0;for(var =
i;i=3Dthis.lis[a];a++)d(i)[d.inArray(a,c.disabled)!=3D-1&&!d(i).hasClass(=
"ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");c.cach=
e=3D=3D=3Dfalse&&this.anchors.removeData("cache.tabs");this.lis.add(this.=
anchors).unbind(".tabs");if(c.event!=3D=3D"mouseover"){var =
k=3Dfunction(g,f){f.is(":not(.ui-state-disabled)")&&f.addClass("ui-state-=
"+g)},n=3Dfunction(g,f){f.removeClass("ui-state-"+g)};this.lis.bind("mous=
eover.tabs",=0A=
function(){k("hover",d(this))});this.lis.bind("mouseout.tabs",function(){=
n("hover",d(this))});this.anchors.bind("focus.tabs",function(){k("focus",=
d(this).closest("li"))});this.anchors.bind("blur.tabs",function(){n("focu=
s",d(this).closest("li"))})}var =
m,o;if(c.fx)if(d.isArray(c.fx)){m=3Dc.fx[0];o=3Dc.fx[1]}else =
m=3Do=3Dc.fx;var =
r=3Do?function(g,f){d(g).closest("li").addClass("ui-tabs-selected =
ui-state-active");f.hide().removeClass("ui-tabs-hide").animate(o,o.durati=
on||"normal",function(){e(f,o);b._trigger("show",=0A=
null,b._ui(g,f[0]))})}:function(g,f){d(g).closest("li").addClass("ui-tabs=
-selected =
ui-state-active");f.removeClass("ui-tabs-hide");b._trigger("show",null,b.=
_ui(g,f[0]))},s=3Dm?function(g,f){f.animate(m,m.duration||"normal",functi=
on(){b.lis.removeClass("ui-tabs-selected =
ui-state-active");f.addClass("ui-tabs-hide");e(f,m);b.element.dequeue("ta=
bs")})}:function(g,f){b.lis.removeClass("ui-tabs-selected =
ui-state-active");f.addClass("ui-tabs-hide");b.element.dequeue("tabs")};t=
his.anchors.bind(c.event+".tabs",=0A=
function(){var =
g=3Dthis,f=3Dd(g).closest("li"),j=3Db.panels.filter(":not(.ui-tabs-hide)"=
),l=3Dd(b._sanitizeSelector(g.hash));if(f.hasClass("ui-tabs-selected")&&!=
c.collapsible||f.hasClass("ui-state-disabled")||f.hasClass("ui-state-proc=
essing")||b._trigger("select",null,b._ui(this,l[0]))=3D=3D=3Dfalse){this.=
blur();return =
false}c.selected=3Db.anchors.index(this);b.abort();if(c.collapsible)if(f.=
hasClass("ui-tabs-selected")){c.selected=3D-1;c.cookie&&b._cookie(c.selec=
ted,c.cookie);b.element.queue("tabs",function(){s(g,=0A=
j)}).dequeue("tabs");this.blur();return false}else =
if(!j.length){c.cookie&&b._cookie(c.selected,c.cookie);b.element.queue("t=
abs",function(){r(g,l)});b.load(b.anchors.index(this));this.blur();return=
 =
false}c.cookie&&b._cookie(c.selected,c.cookie);if(l.length){j.length&&b.e=
lement.queue("tabs",function(){s(g,j)});b.element.queue("tabs",function()=
{r(g,l)});b.load(b.anchors.index(this))}else throw"jQuery UI Tabs: =
Mismatching fragment =
identifier.";d.browser.msie&&this.blur()});this.anchors.bind("click.tabs"=
,=0A=
function(){return false})},_getIndex:function(a){if(typeof =
a=3D=3D"string")a=3Dthis.anchors.index(this.anchors.filter("[href$=3D"+a+=
"]"));return a},destroy:function(){var =
a=3Dthis.options;this.abort();this.element.unbind(".tabs").removeClass("u=
i-tabs ui-widget ui-widget-content ui-corner-all =
ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-n=
av ui-helper-reset ui-helper-clearfix ui-widget-header =
ui-corner-all");this.anchors.each(function(){var =
e=3Dd.data(this,"href.tabs");if(e)this.href=3D=0A=
e;var =
b=3Dd(this).unbind(".tabs");d.each(["href","load","cache"],function(c,h){=
b.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).eac=
h(function(){d.data(this,"destroy.tabs")?d(this).remove():d(this).removeC=
lass("ui-state-default ui-corner-top ui-tabs-selected ui-state-active =
ui-state-hover ui-state-focus ui-state-disabled ui-tabs-panel =
ui-widget-content ui-corner-bottom =
ui-tabs-hide")});a.cookie&&this._cookie(null,a.cookie);return =
this},add:function(a,e,b){if(b=3D=3D=3Dp)b=3Dthis.anchors.length;=0A=
var =
c=3Dthis,h=3Dthis.options;e=3Dd(h.tabTemplate.replace(/#\{href\}/g,a).rep=
lace(/#\{label\}/g,e));a=3D!a.indexOf("#")?a.replace("#",""):this._tabId(=
d("a",e)[0]);e.addClass("ui-state-default =
ui-corner-top").data("destroy.tabs",true);var =
i=3Dd("#"+a);i.length||(i=3Dd(h.panelTemplate).attr("id",a).data("destroy=
.tabs",true));i.addClass("ui-tabs-panel ui-widget-content =
ui-corner-bottom =
ui-tabs-hide");if(b>=3Dthis.lis.length){e.appendTo(this.list);i.appendTo(=
this.list[0].parentNode)}else{e.insertBefore(this.lis[b]);=0A=
i.insertBefore(this.panels[b])}h.disabled=3Dd.map(h.disabled,function(k){=
return =
k>=3Db?++k:k});this._tabify();if(this.anchors.length=3D=3D1){h.selected=3D=
0;e.addClass("ui-tabs-selected =
ui-state-active");i.removeClass("ui-tabs-hide");this.element.queue("tabs"=
,function(){c._trigger("show",null,c._ui(c.anchors[0],c.panels[0]))});thi=
s.load(0)}this._trigger("add",null,this._ui(this.anchors[b],this.panels[b=
]));return this},remove:function(a){a=3Dthis._getIndex(a);var =
e=3Dthis.options,b=3Dthis.lis.eq(a).remove(),c=3Dthis.panels.eq(a).remove=
();=0A=
if(b.hasClass("ui-tabs-selected")&&this.anchors.length>1)this.select(a+(a=
+1<this.anchors.length?1:-1));e.disabled=3Dd.map(d.grep(e.disabled,functi=
on(h){return h!=3Da}),function(h){return =
h>=3Da?--h:h});this._tabify();this._trigger("remove",null,this._ui(b.find=
("a")[0],c[0]));return =
this},enable:function(a){a=3Dthis._getIndex(a);var =
e=3Dthis.options;if(d.inArray(a,e.disabled)!=3D-1){this.lis.eq(a).removeC=
lass("ui-state-disabled");e.disabled=3Dd.grep(e.disabled,function(b){retu=
rn b!=3Da});this._trigger("enable",null,=0A=
this._ui(this.anchors[a],this.panels[a]));return =
this}},disable:function(a){a=3Dthis._getIndex(a);var =
e=3Dthis.options;if(a!=3De.selected){this.lis.eq(a).addClass("ui-state-di=
sabled");e.disabled.push(a);e.disabled.sort();this._trigger("disable",nul=
l,this._ui(this.anchors[a],this.panels[a]))}return =
this},select:function(a){a=3Dthis._getIndex(a);if(a=3D=3D-1)if(this.optio=
ns.collapsible&&this.options.selected!=3D-1)a=3Dthis.options.selected;els=
e return =
this;this.anchors.eq(a).trigger(this.options.event+".tabs");return this},=0A=
load:function(a){a=3Dthis._getIndex(a);var =
e=3Dthis,b=3Dthis.options,c=3Dthis.anchors.eq(a)[0],h=3Dd.data(c,"load.ta=
bs");this.abort();if(!h||this.element.queue("tabs").length!=3D=3D0&&d.dat=
a(c,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(a).addCla=
ss("ui-state-processing");if(b.spinner){var =
i=3Dd("span",c);i.data("label.tabs",i.html()).html(b.spinner)}this.xhr=3D=
d.ajax(d.extend({},b.ajaxOptions,{url:h,success:function(k,n){d(e._saniti=
zeSelector(c.hash)).html(k);e._cleanup();b.cache&&d.data(c,"cache.tabs",=0A=
true);e._trigger("load",null,e._ui(e.anchors[a],e.panels[a]));try{b.ajaxO=
ptions.success(k,n)}catch(m){}},error:function(k,n){e._cleanup();e._trigg=
er("load",null,e._ui(e.anchors[a],e.panels[a]));try{b.ajaxOptions.error(k=
,n,a,c)}catch(m){}}}));e.element.dequeue("tabs");return =
this}},abort:function(){this.element.queue([]);this.panels.stop(false,tru=
e);this.element.queue("tabs",this.element.queue("tabs").splice(-2,2));if(=
this.xhr){this.xhr.abort();delete this.xhr}this._cleanup();return =
this},url:function(a,=0A=
e){this.anchors.eq(a).removeData("cache.tabs").data("load.tabs",e);return=
 this},length:function(){return =
this.anchors.length}});d.extend(d.ui.tabs,{version:"1.8.4"});d.extend(d.u=
i.tabs.prototype,{rotation:null,rotate:function(a,e){var =
b=3Dthis,c=3Dthis.options,h=3Db._rotate||(b._rotate=3Dfunction(i){clearTi=
meout(b.rotation);b.rotation=3DsetTimeout(function(){var =
k=3Dc.selected;b.select(++k<b.anchors.length?k:0)},a);i&&i.stopPropagatio=
n()});e=3Db._unrotate||(b._unrotate=3D!e?function(i){i.clientX&&b.rotate(=
null)}:=0A=
function(){t=3Dc.selected;h()});if(a){this.element.bind("tabsshow",h);thi=
s.anchors.bind(c.event+".tabs",e);h()}else{clearTimeout(b.rotation);this.=
element.unbind("tabsshow",h);this.anchors.unbind(c.event+".tabs",e);delet=
e this._rotate;delete this._unrotate}return this}})})(jQuery);=0A=
;/*=0A=
 * jQuery UI Datepicker 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Datepicker=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.ui.core.js=0A=
 */=0A=
(function(d,G){function =
L(){this.debug=3Dfalse;this._curInst=3Dnull;this._keyEvent=3Dfalse;this._=
disabledInputs=3D[];this._inDialog=3Dthis._datepickerShowing=3Dfalse;this=
._mainDivId=3D"ui-datepicker-div";this._inlineClass=3D"ui-datepicker-inli=
ne";this._appendClass=3D"ui-datepicker-append";this._triggerClass=3D"ui-d=
atepicker-trigger";this._dialogClass=3D"ui-datepicker-dialog";this._disab=
leClass=3D"ui-datepicker-disabled";this._unselectableClass=3D"ui-datepick=
er-unselectable";this._currentClass=3D"ui-datepicker-current-day";this._d=
ayOverClass=3D=0A=
"ui-datepicker-days-cell-over";this.regional=3D[];this.regional[""]=3D{cl=
oseText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthN=
ames:["January","February","March","April","May","June","July","August","=
September","October","November","December"],monthNamesShort:["Jan","Feb",=
"Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["S=
unday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],day=
NamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su",=0A=
"Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firs=
tDay:0,isRTL:false,showMonthAfterYear:false,yearSuffix:""};this._defaults=
=3D{showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appe=
ndText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoP=
revNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:=
false,changeYear:false,yearRange:"c-10:c+10",showOtherMonths:false,select=
OtherMonths:false,showWeek:false,calculateWeek:this.iso8601Week,shortYear=
Cutoff:"+10",=0A=
minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:n=
ull,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,sh=
owCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",c=
onstrainInput:true,showButtonPanel:false,autoSize:false};d.extend(this._d=
efaults,this.regional[""]);this.dpDiv=3Dd('<div =
id=3D"'+this._mainDivId+'" class=3D"ui-datepicker ui-widget =
ui-widget-content ui-helper-clearfix ui-corner-all =
ui-helper-hidden-accessible"></div>')}function E(a,b){d.extend(a,=0A=
b);for(var c in b)if(b[c]=3D=3Dnull||b[c]=3D=3DG)a[c]=3Db[c];return =
a}d.extend(d.ui,{datepicker:{version:"1.8.4"}});var y=3D(new =
Date).getTime();d.extend(L.prototype,{markerClassName:"hasDatepicker",log=
:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicke=
r:function(){return =
this.dpDiv},setDefaults:function(a){E(this._defaults,a||{});return =
this},_attachDatepicker:function(a,b){var c=3Dnull;for(var e in =
this._defaults){var =
f=3Da.getAttribute("date:"+e);if(f){c=3Dc||{};try{c[e]=3Deval(f)}catch(h)=
{c[e]=3D=0A=
f}}}e=3Da.nodeName.toLowerCase();f=3De=3D=3D"div"||e=3D=3D"span";if(!a.id=
){this.uuid+=3D1;a.id=3D"dp"+this.uuid}var =
i=3Dthis._newInst(d(a),f);i.settings=3Dd.extend({},b||{},c||{});if(e=3D=3D=
"input")this._connectDatepicker(a,i);else =
f&&this._inlineDatepicker(a,i)},_newInst:function(a,b){return{id:a[0].id.=
replace(/([^A-Za-z0-9_])/g,"\\\\$1"),input:a,selectedDay:0,selectedMonth:=
0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:!b?this.dpDiv:d('<=
div class=3D"'+this._inlineClass+' ui-datepicker ui-widget =
ui-widget-content ui-helper-clearfix ui-corner-all"></div>')}},=0A=
_connectDatepicker:function(a,b){var =
c=3Dd(a);b.append=3Dd([]);b.trigger=3Dd([]);if(!c.hasClass(this.markerCla=
ssName)){this._attachments(c,b);c.addClass(this.markerClassName).keydown(=
this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("se=
tData.datepicker",function(e,f,h){b.settings[f]=3Dh}).bind("getData.datep=
icker",function(e,f){return =
this._get(b,f)});this._autoSize(b);d.data(a,"datepicker",b)}},_attachment=
s:function(a,b){var =
c=3Dthis._get(b,"appendText"),e=3Dthis._get(b,"isRTL");b.append&&=0A=
b.append.remove();if(c){b.append=3Dd('<span =
class=3D"'+this._appendClass+'">'+c+"</span>");a[e?"before":"after"](b.ap=
pend)}a.unbind("focus",this._showDatepicker);b.trigger&&b.trigger.remove(=
);c=3Dthis._get(b,"showOn");if(c=3D=3D"focus"||c=3D=3D"both")a.focus(this=
._showDatepicker);if(c=3D=3D"button"||c=3D=3D"both"){c=3Dthis._get(b,"but=
tonText");var =
f=3Dthis._get(b,"buttonImage");b.trigger=3Dd(this._get(b,"buttonImageOnly=
")?d("<img/>").addClass(this._triggerClass).attr({src:f,alt:c,title:c}):d=
('<button =
type=3D"button"></button>').addClass(this._triggerClass).html(f=3D=3D=0A=
""?c:d("<img/>").attr({src:f,alt:c,title:c})));a[e?"before":"after"](b.tr=
igger);b.trigger.click(function(){d.datepicker._datepickerShowing&&d.date=
picker._lastInput=3D=3Da[0]?d.datepicker._hideDatepicker():d.datepicker._=
showDatepicker(a[0]);return =
false})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){va=
r b=3Dnew =
Date(2009,11,20),c=3Dthis._get(a,"dateFormat");if(c.match(/[DM]/)){var =
e=3Dfunction(f){for(var =
h=3D0,i=3D0,g=3D0;g<f.length;g++)if(f[g].length>h){h=3Df[g].length;i=3Dg}=
return i};b.setMonth(e(this._get(a,=0A=
c.match(/MM/)?"monthNames":"monthNamesShort")));b.setDate(e(this._get(a,c=
.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("si=
ze",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var =
c=3Dd(a);if(!c.hasClass(this.markerClassName)){c.addClass(this.markerClas=
sName).append(b.dpDiv).bind("setData.datepicker",function(e,f,h){b.settin=
gs[f]=3Dh}).bind("getData.datepicker",function(e,f){return =
this._get(b,f)});d.data(a,"datepicker",b);this._setDate(b,this._getDefaul=
tDate(b),=0A=
true);this._updateDatepicker(b);this._updateAlternate(b)}},_dialogDatepic=
ker:function(a,b,c,e,f){a=3Dthis._dialogInst;if(!a){this.uuid+=3D1;this._=
dialogInput=3Dd('<input type=3D"text" id=3D"'+("dp"+this.uuid)+'" =
style=3D"position: absolute; top: -100px; width: 0px; z-index: =
-10;"/>');this._dialogInput.keydown(this._doKeyDown);d("body").append(thi=
s._dialogInput);a=3Dthis._dialogInst=3Dthis._newInst(this._dialogInput,fa=
lse);a.settings=3D{};d.data(this._dialogInput[0],"datepicker",a)}E(a.sett=
ings,e||{});b=3Db&&b.constructor=3D=3D=0A=
Date?this._formatDate(a,b):b;this._dialogInput.val(b);this._pos=3Df?f.len=
gth?f:[f.pageX,f.pageY]:null;if(!this._pos)this._pos=3D[document.document=
Element.clientWidth/2-100+(document.documentElement.scrollLeft||document.=
body.scrollLeft),document.documentElement.clientHeight/2-150+(document.do=
cumentElement.scrollTop||document.body.scrollTop)];this._dialogInput.css(=
"left",this._pos[0]+20+"px").css("top",this._pos[1]+"px");a.settings.onSe=
lect=3Dc;this._inDialog=3Dtrue;this.dpDiv.addClass(this._dialogClass);thi=
s._showDatepicker(this._dialogInput[0]);=0A=
d.blockUI&&d.blockUI(this.dpDiv);d.data(this._dialogInput[0],"datepicker"=
,a);return this},_destroyDatepicker:function(a){var =
b=3Dd(a),c=3Dd.data(a,"datepicker");if(b.hasClass(this.markerClassName)){=
var =
e=3Da.nodeName.toLowerCase();d.removeData(a,"datepicker");if(e=3D=3D"inpu=
t"){c.append.remove();c.trigger.remove();b.removeClass(this.markerClassNa=
me).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown=
).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)}else =
if(e=3D=3D"div"||e=3D=3D"span")b.removeClass(this.markerClassName).empty(=
)}},=0A=
_enableDatepicker:function(a){var =
b=3Dd(a),c=3Dd.data(a,"datepicker");if(b.hasClass(this.markerClassName)){=
var =
e=3Da.nodeName.toLowerCase();if(e=3D=3D"input"){a.disabled=3Dfalse;c.trig=
ger.filter("button").each(function(){this.disabled=3Dfalse}).end().filter=
("img").css({opacity:"1.0",cursor:""})}else =
if(e=3D=3D"div"||e=3D=3D"span")b.children("."+this._inlineClass).children=
().removeClass("ui-state-disabled");this._disabledInputs=3Dd.map(this._di=
sabledInputs,function(f){return =
f=3D=3Da?null:f})}},_disableDatepicker:function(a){var b=3D=0A=
d(a),c=3Dd.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var =
e=3Da.nodeName.toLowerCase();if(e=3D=3D"input"){a.disabled=3Dtrue;c.trigg=
er.filter("button").each(function(){this.disabled=3Dtrue}).end().filter("=
img").css({opacity:"0.5",cursor:"default"})}else =
if(e=3D=3D"div"||e=3D=3D"span")b.children("."+this._inlineClass).children=
().addClass("ui-state-disabled");this._disabledInputs=3Dd.map(this._disab=
ledInputs,function(f){return =
f=3D=3Da?null:f});this._disabledInputs[this._disabledInputs.length]=3Da}}=
,_isDisabledDatepicker:function(a){if(!a)return false;=0A=
for(var =
b=3D0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]=3D=3Da=
)return true;return false},_getInst:function(a){try{return =
d.data(a,"datepicker")}catch(b){throw"Missing instance data for this =
datepicker";}},_optionDatepicker:function(a,b,c){var =
e=3Dthis._getInst(a);if(arguments.length=3D=3D2&&typeof =
b=3D=3D"string")return =
b=3D=3D"defaults"?d.extend({},d.datepicker._defaults):e?b=3D=3D"all"?d.ex=
tend({},e.settings):this._get(e,b):null;var f=3Db||{};if(typeof =
b=3D=3D"string"){f=3D{};f[b]=3Dc}if(e){this._curInst=3D=3De&&=0A=
this._hideDatepicker();var =
h=3Dthis._getDateDatepicker(a,true);E(e.settings,f);this._attachments(d(a=
),e);this._autoSize(e);this._setDateDatepicker(a,h);this._updateDatepicke=
r(e)}},_changeDatepicker:function(a,b,c){this._optionDatepicker(a,b,c)},_=
refreshDatepicker:function(a){(a=3Dthis._getInst(a))&&this._updateDatepic=
ker(a)},_setDateDatepicker:function(a,b){if(a=3Dthis._getInst(a)){this._s=
etDate(a,b);this._updateDatepicker(a);this._updateAlternate(a)}},_getDate=
Datepicker:function(a,b){(a=3Dthis._getInst(a))&&=0A=
!a.inline&&this._setDateFromField(a,b);return =
a?this._getDate(a):null},_doKeyDown:function(a){var =
b=3Dd.datepicker._getInst(a.target),c=3Dtrue,e=3Db.dpDiv.is(".ui-datepick=
er-rtl");b._keyEvent=3Dtrue;if(d.datepicker._datepickerShowing)switch(a.k=
eyCode){case 9:d.datepicker._hideDatepicker();c=3Dfalse;break;case =
13:c=3Dd("td."+d.datepicker._dayOverClass,b.dpDiv).add(d("td."+d.datepick=
er._currentClass,b.dpDiv));c[0]?d.datepicker._selectDay(a.target,b.select=
edMonth,b.selectedYear,c[0]):d.datepicker._hideDatepicker();=0A=
return false;case 27:d.datepicker._hideDatepicker();break;case =
33:d.datepicker._adjustDate(a.target,a.ctrlKey?-d.datepicker._get(b,"step=
BigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case =
34:d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"step=
BigMonths"):+d.datepicker._get(b,"stepMonths"),"M");break;case =
35:if(a.ctrlKey||a.metaKey)d.datepicker._clearDate(a.target);c=3Da.ctrlKe=
y||a.metaKey;break;case =
36:if(a.ctrlKey||a.metaKey)d.datepicker._gotoToday(a.target);c=3Da.ctrlKe=
y||=0A=
a.metaKey;break;case =
37:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?+1:-1,"D")=
;c=3Da.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustD=
ate(a.target,a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicke=
r._get(b,"stepMonths"),"M");break;case =
38:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,-7,"D");c=3D=
a.ctrlKey||a.metaKey;break;case =
39:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?-1:+1,"D")=
;c=3Da.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustD=
ate(a.target,=0A=
a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,"ste=
pMonths"),"M");break;case =
40:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,+7,"D");c=3D=
a.ctrlKey||a.metaKey;break;default:c=3Dfalse}else =
if(a.keyCode=3D=3D36&&a.ctrlKey)d.datepicker._showDatepicker(this);else =
c=3Dfalse;if(c){a.preventDefault();a.stopPropagation()}},_doKeyPress:func=
tion(a){var =
b=3Dd.datepicker._getInst(a.target);if(d.datepicker._get(b,"constrainInpu=
t")){b=3Dd.datepicker._possibleChars(d.datepicker._get(b,"dateFormat"));=0A=
var =
c=3DString.fromCharCode(a.charCode=3D=3DG?a.keyCode:a.charCode);return =
a.ctrlKey||c<" =
"||!b||b.indexOf(c)>-1}},_doKeyUp:function(a){a=3Dd.datepicker._getInst(a=
.target);if(a.input.val()!=3Da.lastVal)try{if(d.datepicker.parseDate(d.da=
tepicker._get(a,"dateFormat"),a.input?a.input.val():null,d.datepicker._ge=
tFormatConfig(a))){d.datepicker._setDateFromField(a);d.datepicker._update=
Alternate(a);d.datepicker._updateDatepicker(a)}}catch(b){d.datepicker.log=
(b)}return true},_showDatepicker:function(a){a=3Da.target||=0A=
a;if(a.nodeName.toLowerCase()!=3D"input")a=3Dd("input",a.parentNode)[0];i=
f(!(d.datepicker._isDisabledDatepicker(a)||d.datepicker._lastInput=3D=3Da=
)){var =
b=3Dd.datepicker._getInst(a);d.datepicker._curInst&&d.datepicker._curInst=
!=3Db&&d.datepicker._curInst.dpDiv.stop(true,true);var =
c=3Dd.datepicker._get(b,"beforeShow");E(b.settings,c?c.apply(a,[a,b]):{})=
;b.lastVal=3Dnull;d.datepicker._lastInput=3Da;d.datepicker._setDateFromFi=
eld(b);if(d.datepicker._inDialog)a.value=3D"";if(!d.datepicker._pos){d.da=
tepicker._pos=3Dd.datepicker._findPos(a);=0A=
d.datepicker._pos[1]+=3Da.offsetHeight}var =
e=3Dfalse;d(a).parents().each(function(){e|=3Dd(this).css("position")=3D=3D=
"fixed";return!e});if(e&&d.browser.opera){d.datepicker._pos[0]-=3Ddocumen=
t.documentElement.scrollLeft;d.datepicker._pos[1]-=3Ddocument.documentEle=
ment.scrollTop}c=3D{left:d.datepicker._pos[0],top:d.datepicker._pos[1]};d=
.datepicker._pos=3Dnull;b.dpDiv.css({position:"absolute",display:"block",=
top:"-1000px"});d.datepicker._updateDatepicker(b);c=3Dd.datepicker._check=
Offset(b,c,e);b.dpDiv.css({position:d.datepicker._inDialog&&=0A=
d.blockUI?"static":e?"fixed":"absolute",display:"none",left:c.left+"px",t=
op:c.top+"px"});if(!b.inline){c=3Dd.datepicker._get(b,"showAnim");var =
f=3Dd.datepicker._get(b,"duration"),h=3Dfunction(){d.datepicker._datepick=
erShowing=3Dtrue;var =
i=3Dd.datepicker._getBorders(b.dpDiv);b.dpDiv.find("iframe.ui-datepicker-=
cover").css({left:-i[0],top:-i[1],width:b.dpDiv.outerWidth(),height:b.dpD=
iv.outerHeight()})};b.dpDiv.zIndex(d(a).zIndex()+1);d.effects&&d.effects[=
c]?b.dpDiv.show(c,d.datepicker._get(b,"showOptions"),f,=0A=
h):b.dpDiv[c||"show"](c?f:null,h);if(!c||!f)h();b.input.is(":visible")&&!=
b.input.is(":disabled")&&b.input.focus();d.datepicker._curInst=3Db}}},_up=
dateDatepicker:function(a){var =
b=3Dthis,c=3Dd.datepicker._getBorders(a.dpDiv);a.dpDiv.empty().append(thi=
s._generateHTML(a)).find("iframe.ui-datepicker-cover").css({left:-c[0],to=
p:-c[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()}).end().f=
ind("button, .ui-datepicker-prev, .ui-datepicker-next, =
.ui-datepicker-calendar td =
a").bind("mouseout",function(){d(this).removeClass("ui-state-hover");=0A=
this.className.indexOf("ui-datepicker-prev")!=3D-1&&d(this).removeClass("=
ui-datepicker-prev-hover");this.className.indexOf("ui-datepicker-next")!=3D=
-1&&d(this).removeClass("ui-datepicker-next-hover")}).bind("mouseover",fu=
nction(){if(!b._isDisabledDatepicker(a.inline?a.dpDiv.parent()[0]:a.input=
[0])){d(this).parents(".ui-datepicker-calendar").find("a").removeClass("u=
i-state-hover");d(this).addClass("ui-state-hover");this.className.indexOf=
("ui-datepicker-prev")!=3D-1&&d(this).addClass("ui-datepicker-prev-hover"=
);=0A=
this.className.indexOf("ui-datepicker-next")!=3D-1&&d(this).addClass("ui-=
datepicker-next-hover")}}).end().find("."+this._dayOverClass+" =
a").trigger("mouseover").end();c=3Dthis._getNumberOfMonths(a);var =
e=3Dc[1];e>1?a.dpDiv.addClass("ui-datepicker-multi-"+e).css("width",17*e+=
"em"):a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 =
ui-datepicker-multi-4").width("");a.dpDiv[(c[0]!=3D1||c[1]!=3D1?"add":"re=
move")+"Class"]("ui-datepicker-multi");a.dpDiv[(this._get(a,"isRTL")?"add=
":"remove")+"Class"]("ui-datepicker-rtl");=0A=
a=3D=3Dd.datepicker._curInst&&d.datepicker._datepickerShowing&&a.input&&a=
.input.is(":visible")&&!a.input.is(":disabled")&&a.input.focus()},_getBor=
ders:function(a){var =
b=3Dfunction(c){return{thin:1,medium:2,thick:3}[c]||c};return[parseFloat(=
b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]}=
,_checkOffset:function(a,b,c){var =
e=3Da.dpDiv.outerWidth(),f=3Da.dpDiv.outerHeight(),h=3Da.input?a.input.ou=
terWidth():0,i=3Da.input?a.input.outerHeight():0,g=3Ddocument.documentEle=
ment.clientWidth+d(document).scrollLeft(),=0A=
k=3Ddocument.documentElement.clientHeight+d(document).scrollTop();b.left-=
=3Dthis._get(a,"isRTL")?e-h:0;b.left-=3Dc&&b.left=3D=3Da.input.offset().l=
eft?d(document).scrollLeft():0;b.top-=3Dc&&b.top=3D=3Da.input.offset().to=
p+i?d(document).scrollTop():0;b.left-=3DMath.min(b.left,b.left+e>g&&g>e?M=
ath.abs(b.left+e-g):0);b.top-=3DMath.min(b.top,b.top+f>k&&k>f?Math.abs(f+=
i):0);return b},_findPos:function(a){for(var =
b=3Dthis._get(this._getInst(a),"isRTL");a&&(a.type=3D=3D"hidden"||a.nodeT=
ype!=3D1);)a=3Da[b?"previousSibling":"nextSibling"];=0A=
a=3Dd(a).offset();return[a.left,a.top]},_hideDatepicker:function(a){var =
b=3Dthis._curInst;if(!(!b||a&&b!=3Dd.data(a,"datepicker")))if(this._datep=
ickerShowing){a=3Dthis._get(b,"showAnim");var =
c=3Dthis._get(b,"duration"),e=3Dfunction(){d.datepicker._tidyDialog(b);th=
is._curInst=3Dnull};d.effects&&d.effects[a]?b.dpDiv.hide(a,d.datepicker._=
get(b,"showOptions"),c,e):b.dpDiv[a=3D=3D"slideDown"?"slideUp":a=3D=3D"fa=
deIn"?"fadeOut":"hide"](a?c:null,e);a||e();if(a=3Dthis._get(b,"onClose"))=
a.apply(b.input?b.input[0]:null,[b.input?b.input.val():=0A=
"",b]);this._datepickerShowing=3Dfalse;this._lastInput=3Dnull;if(this._in=
Dialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}=
);if(d.blockUI){d.unblockUI();d("body").append(this.dpDiv)}}this._inDialo=
g=3Dfalse}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass=
).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(a){if(d=
.datepicker._curInst){a=3Dd(a.target);a[0].id!=3Dd.datepicker._mainDivId&=
&a.parents("#"+d.datepicker._mainDivId).length=3D=3D0&&!a.hasClass(d.date=
picker.markerClassName)&&=0A=
!a.hasClass(d.datepicker._triggerClass)&&d.datepicker._datepickerShowing&=
&!(d.datepicker._inDialog&&d.blockUI)&&d.datepicker._hideDatepicker()}},_=
adjustDate:function(a,b,c){a=3Dd(a);var =
e=3Dthis._getInst(a[0]);if(!this._isDisabledDatepicker(a[0])){this._adjus=
tInstDate(e,b+(c=3D=3D"M"?this._get(e,"showCurrentAtPos"):0),c);this._upd=
ateDatepicker(e)}},_gotoToday:function(a){a=3Dd(a);var =
b=3Dthis._getInst(a[0]);if(this._get(b,"gotoCurrent")&&b.currentDay){b.se=
lectedDay=3Db.currentDay;b.drawMonth=3Db.selectedMonth=3Db.currentMonth;=0A=
b.drawYear=3Db.selectedYear=3Db.currentYear}else{var c=3Dnew =
Date;b.selectedDay=3Dc.getDate();b.drawMonth=3Db.selectedMonth=3Dc.getMon=
th();b.drawYear=3Db.selectedYear=3Dc.getFullYear()}this._notifyChange(b);=
this._adjustDate(a)},_selectMonthYear:function(a,b,c){a=3Dd(a);var =
e=3Dthis._getInst(a[0]);e._selectingMonthYear=3Dfalse;e["selected"+(c=3D=3D=
"M"?"Month":"Year")]=3De["draw"+(c=3D=3D"M"?"Month":"Year")]=3DparseInt(b=
.options[b.selectedIndex].value,10);this._notifyChange(e);this._adjustDat=
e(a)},_clickMonthYear:function(a){var b=3D=0A=
this._getInst(d(a)[0]);b.input&&b._selectingMonthYear&&setTimeout(functio=
n(){b.input.focus()},0);b._selectingMonthYear=3D!b._selectingMonthYear},_=
selectDay:function(a,b,c,e){var =
f=3Dd(a);if(!(d(e).hasClass(this._unselectableClass)||this._isDisabledDat=
epicker(f[0]))){f=3Dthis._getInst(f[0]);f.selectedDay=3Df.currentDay=3Dd(=
"a",e).html();f.selectedMonth=3Df.currentMonth=3Db;f.selectedYear=3Df.cur=
rentYear=3Dc;this._selectDate(a,this._formatDate(f,f.currentDay,f.current=
Month,f.currentYear))}},_clearDate:function(a){a=3D=0A=
d(a);this._getInst(a[0]);this._selectDate(a,"")},_selectDate:function(a,b=
){a=3Dthis._getInst(d(a)[0]);b=3Db!=3Dnull?b:this._formatDate(a);a.input&=
&a.input.val(b);this._updateAlternate(a);var =
c=3Dthis._get(a,"onSelect");if(c)c.apply(a.input?a.input[0]:null,[b,a]);e=
lse =
a.input&&a.input.trigger("change");if(a.inline)this._updateDatepicker(a);=
else{this._hideDatepicker();this._lastInput=3Da.input[0];typeof =
a.input[0]!=3D"object"&&a.input.focus();this._lastInput=3Dnull}},_updateA=
lternate:function(a){var b=3Dthis._get(a,=0A=
"altField");if(b){var =
c=3Dthis._get(a,"altFormat")||this._get(a,"dateFormat"),e=3Dthis._getDate=
(a),f=3Dthis.formatDate(c,e,this._getFormatConfig(a));d(b).each(function(=
){d(this).val(f)})}},noWeekends:function(a){a=3Da.getDay();return[a>0&&a<=
6,""]},iso8601Week:function(a){a=3Dnew =
Date(a.getTime());a.setDate(a.getDate()+4-(a.getDay()||7));var =
b=3Da.getTime();a.setMonth(0);a.setDate(1);return =
Math.floor(Math.round((b-a)/864E5)/7)+1},parseDate:function(a,b,c){if(a=3D=
=3Dnull||b=3D=3Dnull)throw"Invalid arguments";b=3Dtypeof b=3D=3D=0A=
"object"?b.toString():b+"";if(b=3D=3D"")return null;for(var =
e=3D(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff,f=3D(c?c.d=
ayNamesShort:null)||this._defaults.dayNamesShort,h=3D(c?c.dayNames:null)|=
|this._defaults.dayNames,i=3D(c?c.monthNamesShort:null)||this._defaults.m=
onthNamesShort,g=3D(c?c.monthNames:null)||this._defaults.monthNames,k=3Dc=
=3D-1,l=3D-1,u=3D-1,j=3Dfalse,o=3Dfunction(p){(p=3Dz+1<a.length&&a.charAt=
(z+1)=3D=3Dp)&&z++;return p},m=3Dfunction(p){o(p);p=3Dnew =
RegExp("^\\d{1,"+(p=3D=3D"@"?14:p=3D=3D"!"?20:p=3D=3D"y"?4:p=3D=3D"o"?=0A=
3:2)+"}");p=3Db.substring(s).match(p);if(!p)throw"Missing number at =
position "+s;s+=3Dp[0].length;return =
parseInt(p[0],10)},n=3Dfunction(p,w,H){p=3Do(p)?H:w;for(w=3D0;w<p.length;=
w++)if(b.substr(s,p[w].length)=3D=3Dp[w]){s+=3Dp[w].length;return =
w+1}throw"Unknown name at position =
"+s;},r=3Dfunction(){if(b.charAt(s)!=3Da.charAt(z))throw"Unexpected =
literal at position =
"+s;s++},s=3D0,z=3D0;z<a.length;z++)if(j)if(a.charAt(z)=3D=3D"'"&&!o("'")=
)j=3Dfalse;else r();else switch(a.charAt(z)){case =
"d":l=3Dm("d");break;case "D":n("D",f,h);break;=0A=
case "o":u=3Dm("o");break;case "m":k=3Dm("m");break;case =
"M":k=3Dn("M",i,g);break;case "y":c=3Dm("y");break;case "@":var v=3Dnew =
Date(m("@"));c=3Dv.getFullYear();k=3Dv.getMonth()+1;l=3Dv.getDate();break=
;case "!":v=3Dnew =
Date((m("!")-this._ticksTo1970)/1E4);c=3Dv.getFullYear();k=3Dv.getMonth()=
+1;l=3Dv.getDate();break;case "'":if(o("'"))r();else =
j=3Dtrue;break;default:r()}if(c=3D=3D-1)c=3D(new =
Date).getFullYear();else if(c<100)c+=3D(new Date).getFullYear()-(new =
Date).getFullYear()%100+(c<=3De?0:-100);if(u>-1){k=3D1;l=3Du;do{e=3Dthis.=
_getDaysInMonth(c,=0A=
k-1);if(l<=3De)break;k++;l-=3De}while(1)}v=3Dthis._daylightSavingAdjust(n=
ew =
Date(c,k-1,l));if(v.getFullYear()!=3Dc||v.getMonth()+1!=3Dk||v.getDate()!=
=3Dl)throw"Invalid date";return v},ATOM:"yy-mm-dd",COOKIE:"D, dd M =
yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, =
dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M =
yy",RSS:"D, d M =
y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor=
(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1E7,formatDate:funct=
ion(a,b,c){if(!b)return"";=0A=
var =
e=3D(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=3D(c?c.dayNa=
mes:null)||this._defaults.dayNames,h=3D(c?c.monthNamesShort:null)||this._=
defaults.monthNamesShort;c=3D(c?c.monthNames:null)||this._defaults.monthN=
ames;var =
i=3Dfunction(o){(o=3Dj+1<a.length&&a.charAt(j+1)=3D=3Do)&&j++;return =
o},g=3Dfunction(o,m,n){m=3D""+m;if(i(o))for(;m.length<n;)m=3D"0"+m;return=
 m},k=3Dfunction(o,m,n,r){return =
i(o)?r[m]:n[m]},l=3D"",u=3Dfalse;if(b)for(var =
j=3D0;j<a.length;j++)if(u)if(a.charAt(j)=3D=3D"'"&&!i("'"))u=3Dfalse;else=
 l+=3Da.charAt(j);=0A=
else switch(a.charAt(j)){case "d":l+=3Dg("d",b.getDate(),2);break;case =
"D":l+=3Dk("D",b.getDay(),e,f);break;case =
"o":l+=3Dg("o",(b.getTime()-(new =
Date(b.getFullYear(),0,0)).getTime())/864E5,3);break;case =
"m":l+=3Dg("m",b.getMonth()+1,2);break;case =
"M":l+=3Dk("M",b.getMonth(),h,c);break;case =
"y":l+=3Di("y")?b.getFullYear():(b.getYear()%100<10?"0":"")+b.getYear()%1=
00;break;case "@":l+=3Db.getTime();break;case =
"!":l+=3Db.getTime()*1E4+this._ticksTo1970;break;case =
"'":if(i("'"))l+=3D"'";else =
u=3Dtrue;break;default:l+=3Da.charAt(j)}return l},=0A=
_possibleChars:function(a){for(var =
b=3D"",c=3Dfalse,e=3Dfunction(h){(h=3Df+1<a.length&&a.charAt(f+1)=3D=3Dh)=
&&f++;return =
h},f=3D0;f<a.length;f++)if(c)if(a.charAt(f)=3D=3D"'"&&!e("'"))c=3Dfalse;e=
lse b+=3Da.charAt(f);else switch(a.charAt(f)){case "d":case "m":case =
"y":case "@":b+=3D"0123456789";break;case "D":case "M":return null;case =
"'":if(e("'"))b+=3D"'";else =
c=3Dtrue;break;default:b+=3Da.charAt(f)}return =
b},_get:function(a,b){return =
a.settings[b]!=3D=3DG?a.settings[b]:this._defaults[b]},_setDateFromField:=
function(a,b){if(a.input.val()!=3D=0A=
a.lastVal){var =
c=3Dthis._get(a,"dateFormat"),e=3Da.lastVal=3Da.input?a.input.val():null,=
f,h;f=3Dh=3Dthis._getDefaultDate(a);var =
i=3Dthis._getFormatConfig(a);try{f=3Dthis.parseDate(c,e,i)||h}catch(g){th=
is.log(g);e=3Db?"":e}a.selectedDay=3Df.getDate();a.drawMonth=3Da.selected=
Month=3Df.getMonth();a.drawYear=3Da.selectedYear=3Df.getFullYear();a.curr=
entDay=3De?f.getDate():0;a.currentMonth=3De?f.getMonth():0;a.currentYear=3D=
e?f.getFullYear():0;this._adjustInstDate(a)}},_getDefaultDate:function(a)=
{return this._restrictMinMax(a,this._determineDate(a,=0A=
this._get(a,"defaultDate"),new =
Date))},_determineDate:function(a,b,c){var e=3Dfunction(h){var i=3Dnew =
Date;i.setDate(i.getDate()+h);return i},f=3Dfunction(h){try{return =
d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),h,d.datepicker._=
getFormatConfig(a))}catch(i){}var =
g=3D(h.toLowerCase().match(/^c/)?d.datepicker._getDate(a):null)||new =
Date,k=3Dg.getFullYear(),l=3Dg.getMonth();g=3Dg.getDate();for(var =
u=3D/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,j=3Du.exec(h);j;){switch(j[2]||=
"d"){case "d":case "D":g+=3DparseInt(j[1],=0A=
10);break;case "w":case "W":g+=3DparseInt(j[1],10)*7;break;case "m":case =
"M":l+=3DparseInt(j[1],10);g=3DMath.min(g,d.datepicker._getDaysInMonth(k,=
l));break;case "y":case =
"Y":k+=3DparseInt(j[1],10);g=3DMath.min(g,d.datepicker._getDaysInMonth(k,=
l));break}j=3Du.exec(h)}return new =
Date(k,l,g)};if(b=3D(b=3Db=3D=3Dnull?c:typeof =
b=3D=3D"string"?f(b):typeof =
b=3D=3D"number"?isNaN(b)?c:e(b):b)&&b.toString()=3D=3D"Invalid =
Date"?c:b){b.setHours(0);b.setMinutes(0);b.setSeconds(0);b.setMillisecond=
s(0)}return =
this._daylightSavingAdjust(b)},_daylightSavingAdjust:function(a){if(!a)re=
turn null;=0A=
a.setHours(a.getHours()>12?a.getHours()+2:0);return =
a},_setDate:function(a,b,c){var =
e=3D!b,f=3Da.selectedMonth,h=3Da.selectedYear;b=3Dthis._restrictMinMax(a,=
this._determineDate(a,b,new =
Date));a.selectedDay=3Da.currentDay=3Db.getDate();a.drawMonth=3Da.selecte=
dMonth=3Da.currentMonth=3Db.getMonth();a.drawYear=3Da.selectedYear=3Da.cu=
rrentYear=3Db.getFullYear();if((f!=3Da.selectedMonth||h!=3Da.selectedYear=
)&&!c)this._notifyChange(a);this._adjustInstDate(a);if(a.input)a.input.va=
l(e?"":this._formatDate(a))},_getDate:function(a){return!a.currentYear||=0A=
a.input&&a.input.val()=3D=3D""?null:this._daylightSavingAdjust(new =
Date(a.currentYear,a.currentMonth,a.currentDay))},_generateHTML:function(=
a){var b=3Dnew Date;b=3Dthis._daylightSavingAdjust(new =
Date(b.getFullYear(),b.getMonth(),b.getDate()));var =
c=3Dthis._get(a,"isRTL"),e=3Dthis._get(a,"showButtonPanel"),f=3Dthis._get=
(a,"hideIfNoPrevNext"),h=3Dthis._get(a,"navigationAsDateFormat"),i=3Dthis=
._getNumberOfMonths(a),g=3Dthis._get(a,"showCurrentAtPos"),k=3Dthis._get(=
a,"stepMonths"),l=3Di[0]!=3D1||i[1]!=3D1,u=3Dthis._daylightSavingAdjust(!=
a.currentDay?=0A=
new Date(9999,9,9):new =
Date(a.currentYear,a.currentMonth,a.currentDay)),j=3Dthis._getMinMaxDate(=
a,"min"),o=3Dthis._getMinMaxDate(a,"max");g=3Da.drawMonth-g;var =
m=3Da.drawYear;if(g<0){g+=3D12;m--}if(o){var =
n=3Dthis._daylightSavingAdjust(new =
Date(o.getFullYear(),o.getMonth()-i[0]*i[1]+1,o.getDate()));for(n=3Dj&&n<=
j?j:n;this._daylightSavingAdjust(new =
Date(m,g,1))>n;){g--;if(g<0){g=3D11;m--}}}a.drawMonth=3Dg;a.drawYear=3Dm;=
n=3Dthis._get(a,"prevText");n=3D!h?n:this.formatDate(n,this._daylightSavi=
ngAdjust(new Date(m,g-k,1)),this._getFormatConfig(a));=0A=
n=3Dthis._canAdjustMonth(a,-1,m,g)?'<a class=3D"ui-datepicker-prev =
ui-corner-all" =
onclick=3D"DP_jQuery_'+y+".datepicker._adjustDate('#"+a.id+"', -"+k+", =
'M');\" title=3D\""+n+'"><span class=3D"ui-icon =
ui-icon-circle-triangle-'+(c?"e":"w")+'">'+n+"</span></a>":f?"":'<a =
class=3D"ui-datepicker-prev ui-corner-all ui-state-disabled" =
title=3D"'+n+'"><span class=3D"ui-icon =
ui-icon-circle-triangle-'+(c?"e":"w")+'">'+n+"</span></a>";var =
r=3Dthis._get(a,"nextText");r=3D!h?r:this.formatDate(r,this._daylightSavi=
ngAdjust(new Date(m,=0A=
g+k,1)),this._getFormatConfig(a));f=3Dthis._canAdjustMonth(a,+1,m,g)?'<a =
class=3D"ui-datepicker-next ui-corner-all" =
onclick=3D"DP_jQuery_'+y+".datepicker._adjustDate('#"+a.id+"', +"+k+", =
'M');\" title=3D\""+r+'"><span class=3D"ui-icon =
ui-icon-circle-triangle-'+(c?"w":"e")+'">'+r+"</span></a>":f?"":'<a =
class=3D"ui-datepicker-next ui-corner-all ui-state-disabled" =
title=3D"'+r+'"><span class=3D"ui-icon =
ui-icon-circle-triangle-'+(c?"w":"e")+'">'+r+"</span></a>";k=3Dthis._get(=
a,"currentText");r=3Dthis._get(a,"gotoCurrent")&&=0A=
a.currentDay?u:b;k=3D!h?k:this.formatDate(k,r,this._getFormatConfig(a));h=
=3D!a.inline?'<button type=3D"button" class=3D"ui-datepicker-close =
ui-state-default ui-priority-primary ui-corner-all" =
onclick=3D"DP_jQuery_'+y+'.datepicker._hideDatepicker();">'+this._get(a,"=
closeText")+"</button>":"";e=3De?'<div class=3D"ui-datepicker-buttonpane =
ui-widget-content">'+(c?h:"")+(this._isInRange(a,r)?'<button =
type=3D"button" class=3D"ui-datepicker-current ui-state-default =
ui-priority-secondary ui-corner-all" onclick=3D"DP_jQuery_'+=0A=
y+".datepicker._gotoToday('#"+a.id+"');\">"+k+"</button>":"")+(c?"":h)+"<=
/div>":"";h=3DparseInt(this._get(a,"firstDay"),10);h=3DisNaN(h)?0:h;k=3Dt=
his._get(a,"showWeek");r=3Dthis._get(a,"dayNames");this._get(a,"dayNamesS=
hort");var =
s=3Dthis._get(a,"dayNamesMin"),z=3Dthis._get(a,"monthNames"),v=3Dthis._ge=
t(a,"monthNamesShort"),p=3Dthis._get(a,"beforeShowDay"),w=3Dthis._get(a,"=
showOtherMonths"),H=3Dthis._get(a,"selectOtherMonths");this._get(a,"calcu=
lateWeek");for(var =
M=3Dthis._getDefaultDate(a),I=3D"",C=3D0;C<i[0];C++){for(var N=3D=0A=
"",D=3D0;D<i[1];D++){var J=3Dthis._daylightSavingAdjust(new =
Date(m,g,a.selectedDay)),t=3D" ui-corner-all",x=3D"";if(l){x+=3D'<div =
class=3D"ui-datepicker-group';if(i[1]>1)switch(D){case 0:x+=3D" =
ui-datepicker-group-first";t=3D" =
ui-corner-"+(c?"right":"left");break;case i[1]-1:x+=3D" =
ui-datepicker-group-last";t=3D" =
ui-corner-"+(c?"left":"right");break;default:x+=3D" =
ui-datepicker-group-middle";t=3D"";break}x+=3D'">'}x+=3D'<div =
class=3D"ui-datepicker-header ui-widget-header =
ui-helper-clearfix'+t+'">'+(/all|left/.test(t)&&C=3D=3D0?c?=0A=
f:n:"")+(/all|right/.test(t)&&C=3D=3D0?c?n:f:"")+this._generateMonthYearH=
eader(a,g,m,j,o,C>0||D>0,z,v)+'</div><table =
class=3D"ui-datepicker-calendar"><thead><tr>';var A=3Dk?'<th =
class=3D"ui-datepicker-week-col">'+this._get(a,"weekHeader")+"</th>":"";f=
or(t=3D0;t<7;t++){var q=3D(t+h)%7;A+=3D"<th"+((t+h+6)%7>=3D5?' =
class=3D"ui-datepicker-week-end"':"")+'><span =
title=3D"'+r[q]+'">'+s[q]+"</span></th>"}x+=3DA+"</tr></thead><tbody>";A=3D=
this._getDaysInMonth(m,g);if(m=3D=3Da.selectedYear&&g=3D=3Da.selectedMont=
h)a.selectedDay=3DMath.min(a.selectedDay,=0A=
A);t=3D(this._getFirstDayOfMonth(m,g)-h+7)%7;A=3Dl?6:Math.ceil((t+A)/7);q=
=3Dthis._daylightSavingAdjust(new Date(m,g,1-t));for(var =
O=3D0;O<A;O++){x+=3D"<tr>";var P=3D!k?"":'<td =
class=3D"ui-datepicker-week-col">'+this._get(a,"calculateWeek")(q)+"</td>=
";for(t=3D0;t<7;t++){var =
F=3Dp?p.apply(a.input?a.input[0]:null,[q]):[true,""],B=3Dq.getMonth()!=3D=
g,K=3DB&&!H||!F[0]||j&&q<j||o&&q>o;P+=3D'<td =
class=3D"'+((t+h+6)%7>=3D5?" ui-datepicker-week-end":"")+(B?" =
ui-datepicker-other-month":"")+(q.getTime()=3D=3DJ.getTime()&&g=3D=3Da.se=
lectedMonth&&=0A=
a._keyEvent||M.getTime()=3D=3Dq.getTime()&&M.getTime()=3D=3DJ.getTime()?"=
 "+this._dayOverClass:"")+(K?" "+this._unselectableClass+" =
ui-state-disabled":"")+(B&&!w?"":" =
"+F[1]+(q.getTime()=3D=3Du.getTime()?" =
"+this._currentClass:"")+(q.getTime()=3D=3Db.getTime()?" =
ui-datepicker-today":""))+'"'+((!B||w)&&F[2]?' =
title=3D"'+F[2]+'"':"")+(K?"":' =
onclick=3D"DP_jQuery_'+y+".datepicker._selectDay('#"+a.id+"',"+q.getMonth=
()+","+q.getFullYear()+', this);return =
false;"')+">"+(B&&!w?"&#xa0;":K?'<span =
class=3D"ui-state-default">'+q.getDate()+=0A=
"</span>":'<a class=3D"ui-state-default'+(q.getTime()=3D=3Db.getTime()?" =
ui-state-highlight":"")+(q.getTime()=3D=3DJ.getTime()?" =
ui-state-active":"")+(B?" ui-priority-secondary":"")+'" =
href=3D"#">'+q.getDate()+"</a>")+"</td>";q.setDate(q.getDate()+1);q=3Dthi=
s._daylightSavingAdjust(q)}x+=3DP+"</tr>"}g++;if(g>11){g=3D0;m++}x+=3D"</=
tbody></table>"+(l?"</div>"+(i[0]>0&&D=3D=3Di[1]-1?'<div =
class=3D"ui-datepicker-row-break"></div>':""):"");N+=3Dx}I+=3DN}I+=3De+(d=
.browser.msie&&parseInt(d.browser.version,10)<7&&!a.inline?'<iframe =
src=3D"javascript:false;" class=3D"ui-datepicker-cover" =
frameborder=3D"0"></iframe>':=0A=
"");a._keyEvent=3Dfalse;return =
I},_generateMonthYearHeader:function(a,b,c,e,f,h,i,g){var =
k=3Dthis._get(a,"changeMonth"),l=3Dthis._get(a,"changeYear"),u=3Dthis._ge=
t(a,"showMonthAfterYear"),j=3D'<div =
class=3D"ui-datepicker-title">',o=3D"";if(h||!k)o+=3D'<span =
class=3D"ui-datepicker-month">'+i[b]+"</span>";else{i=3De&&e.getFullYear(=
)=3D=3Dc;var m=3Df&&f.getFullYear()=3D=3Dc;o+=3D'<select =
class=3D"ui-datepicker-month" =
onchange=3D"DP_jQuery_'+y+".datepicker._selectMonthYear('#"+a.id+"', =
this, 'M');\" onclick=3D\"DP_jQuery_"+y+".datepicker._clickMonthYear('#"+=0A=
a.id+"');\">";for(var =
n=3D0;n<12;n++)if((!i||n>=3De.getMonth())&&(!m||n<=3Df.getMonth()))o+=3D'=
<option value=3D"'+n+'"'+(n=3D=3Db?' =
selected=3D"selected"':"")+">"+g[n]+"</option>";o+=3D"</select>"}u||(j+=3D=
o+(h||!(k&&l)?"&#xa0;":""));if(h||!l)j+=3D'<span =
class=3D"ui-datepicker-year">'+c+"</span>";else{g=3Dthis._get(a,"yearRang=
e").split(":");var r=3D(new =
Date).getFullYear();i=3Dfunction(s){s=3Ds.match(/c[+-].*/)?c+parseInt(s.s=
ubstring(1),10):s.match(/[+-].*/)?r+parseInt(s,10):parseInt(s,10);return =
isNaN(s)?r:s};b=3Di(g[0]);g=3DMath.max(b,=0A=
i(g[1]||""));b=3De?Math.max(b,e.getFullYear()):b;g=3Df?Math.min(g,f.getFu=
llYear()):g;for(j+=3D'<select class=3D"ui-datepicker-year" =
onchange=3D"DP_jQuery_'+y+".datepicker._selectMonthYear('#"+a.id+"', =
this, 'Y');\" =
onclick=3D\"DP_jQuery_"+y+".datepicker._clickMonthYear('#"+a.id+"');\">";=
b<=3Dg;b++)j+=3D'<option value=3D"'+b+'"'+(b=3D=3Dc?' =
selected=3D"selected"':"")+">"+b+"</option>";j+=3D"</select>"}j+=3Dthis._=
get(a,"yearSuffix");if(u)j+=3D(h||!(k&&l)?"&#xa0;":"")+o;j+=3D"</div>";re=
turn j},_adjustInstDate:function(a,b,c){var e=3D=0A=
a.drawYear+(c=3D=3D"Y"?b:0),f=3Da.drawMonth+(c=3D=3D"M"?b:0);b=3DMath.min=
(a.selectedDay,this._getDaysInMonth(e,f))+(c=3D=3D"D"?b:0);e=3Dthis._rest=
rictMinMax(a,this._daylightSavingAdjust(new =
Date(e,f,b)));a.selectedDay=3De.getDate();a.drawMonth=3Da.selectedMonth=3D=
e.getMonth();a.drawYear=3Da.selectedYear=3De.getFullYear();if(c=3D=3D"M"|=
|c=3D=3D"Y")this._notifyChange(a)},_restrictMinMax:function(a,b){var =
c=3Dthis._getMinMaxDate(a,"min");a=3Dthis._getMinMaxDate(a,"max");b=3Dc&&=
b<c?c:b;return b=3Da&&b>a?a:b},_notifyChange:function(a){var =
b=3Dthis._get(a,=0A=
"onChangeMonthYear");if(b)b.apply(a.input?a.input[0]:null,[a.selectedYear=
,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){a=3Dthis._get(a,"n=
umberOfMonths");return a=3D=3Dnull?[1,1]:typeof =
a=3D=3D"number"?[1,a]:a},_getMinMaxDate:function(a,b){return =
this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:functi=
on(a,b){return 32-(new =
Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new =
Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,e){var =
f=3Dthis._getNumberOfMonths(a);=0A=
c=3Dthis._daylightSavingAdjust(new =
Date(c,e+(b<0?b:f[0]*f[1]),1));b<0&&c.setDate(this._getDaysInMonth(c.getF=
ullYear(),c.getMonth()));return =
this._isInRange(a,c)},_isInRange:function(a,b){var =
c=3Dthis._getMinMaxDate(a,"min");a=3Dthis._getMinMaxDate(a,"max");return(=
!c||b.getTime()>=3Dc.getTime())&&(!a||b.getTime()<=3Da.getTime())},_getFo=
rmatConfig:function(a){var b=3Dthis._get(a,"shortYearCutoff");b=3Dtypeof =
b!=3D"string"?b:(new =
Date).getFullYear()%100+parseInt(b,10);return{shortYearCutoff:b,dayNamesS=
hort:this._get(a,=0A=
"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._g=
et(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDat=
e:function(a,b,c,e){if(!b){a.currentDay=3Da.selectedDay;a.currentMonth=3D=
a.selectedMonth;a.currentYear=3Da.selectedYear}b=3Db?typeof =
b=3D=3D"object"?b:this._daylightSavingAdjust(new =
Date(e,c,b)):this._daylightSavingAdjust(new =
Date(a.currentYear,a.currentMonth,a.currentDay));return =
this.formatDate(this._get(a,"dateFormat"),b,this._getFormatConfig(a))}});=
d.fn.datepicker=3D=0A=
function(a){if(!d.datepicker.initialized){d(document).mousedown(d.datepic=
ker._checkExternalClick).find("body").append(d.datepicker.dpDiv);d.datepi=
cker.initialized=3Dtrue}var =
b=3DArray.prototype.slice.call(arguments,1);if(typeof =
a=3D=3D"string"&&(a=3D=3D"isDisabled"||a=3D=3D"getDate"||a=3D=3D"widget")=
)return =
d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));=
if(a=3D=3D"option"&&arguments.length=3D=3D2&&typeof =
arguments[1]=3D=3D"string")return =
d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));=0A=
return this.each(function(){typeof =
a=3D=3D"string"?d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this=
].concat(b)):d.datepicker._attachDatepicker(this,a)})};d.datepicker=3Dnew=
 L;d.datepicker.initialized=3Dfalse;d.datepicker.uuid=3D(new =
Date).getTime();d.datepicker.version=3D"1.8.4";window["DP_jQuery_"+y]=3Dd=
})(jQuery);=0A=
;/*=0A=
 * jQuery UI Progressbar 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Progressbar=0A=
 *=0A=
 * Depends:=0A=
 *   jquery.ui.core.js=0A=
 *   jquery.ui.widget.js=0A=
 */=0A=
(function(b,c){b.widget("ui.progressbar",{options:{value:0},min:0,max:100=
,_create:function(){this.element.addClass("ui-progressbar ui-widget =
ui-widget-content =
ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-v=
aluemax":this.max,"aria-valuenow":this._value()});this.valueDiv=3Db("<div=
 class=3D'ui-progressbar-value ui-widget-header =
ui-corner-left'></div>").appendTo(this.element);this._refreshValue()},des=
troy:function(){this.element.removeClass("ui-progressbar ui-widget =
ui-widget-content =
ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr=
("aria-valuemax").removeAttr("aria-valuenow");=0A=
this.valueDiv.remove();b.Widget.prototype.destroy.apply(this,arguments)},=
value:function(a){if(a=3D=3D=3Dc)return =
this._value();this._setOption("value",a);return =
this},_setOption:function(a,d){if(a=3D=3D=3D"value"){this.options.value=3D=
d;this._refreshValue();this._trigger("change")}b.Widget.prototype._setOpt=
ion.apply(this,arguments)},_value:function(){var =
a=3Dthis.options.value;if(typeof a!=3D=3D"number")a=3D0;return =
Math.min(this.max,Math.max(this.min,a))},_refreshValue:function(){var =
a=3Dthis.value();this.valueDiv.toggleClass("ui-corner-right",=0A=
a=3D=3D=3Dthis.max).width(a+"%");this.element.attr("aria-valuenow",a)}});=
b.extend(b.ui.progressbar,{version:"1.8.4"})})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/=0A=
 */=0A=
jQuery.effects||function(f,j){function l(c){var =
a;if(c&&c.constructor=3D=3DArray&&c.length=3D=3D3)return =
c;if(a=3D/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)=
/.exec(c))return[parseInt(a[1],10),parseInt(a[2],10),parseInt(a[3],10)];i=
f(a=3D/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\=
s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c))return[parseFloat(a[1])*2.55,pars=
eFloat(a[2])*2.55,parseFloat(a[3])*2.55];if(a=3D/#([a-fA-F0-9]{2})([a-fA-=
F0-9]{2})([a-fA-F0-9]{2})/.exec(c))return[parseInt(a[1],=0A=
16),parseInt(a[2],16),parseInt(a[3],16)];if(a=3D/#([a-fA-F0-9])([a-fA-F0-=
9])([a-fA-F0-9])/.exec(c))return[parseInt(a[1]+a[1],16),parseInt(a[2]+a[2=
],16),parseInt(a[3]+a[3],16)];if(/rgba\(0, 0, 0, 0\)/.exec(c))return =
m.transparent;return m[f.trim(c).toLowerCase()]}function r(c,a){var =
b;do{b=3Df.curCSS(c,a);if(b!=3D""&&b!=3D"transparent"||f.nodeName(c,"body=
"))break;a=3D"backgroundColor"}while(c=3Dc.parentNode);return =
l(b)}function n(){var =
c=3Ddocument.defaultView?document.defaultView.getComputedStyle(this,null)=
:this.currentStyle,=0A=
a=3D{},b,d;if(c&&c.length&&c[0]&&c[c[0]])for(var =
e=3Dc.length;e--;){b=3Dc[e];if(typeof =
c[b]=3D=3D"string"){d=3Db.replace(/\-(\w)/g,function(g,h){return =
h.toUpperCase()});a[d]=3Dc[b]}}else for(b in c)if(typeof =
c[b]=3D=3D=3D"string")a[b]=3Dc[b];return a}function o(c){var a,b;for(a =
in c){b=3Dc[a];if(b=3D=3Dnull||f.isFunction(b)||a in =
s||/scrollbar/.test(a)||!/color/i.test(a)&&isNaN(parseFloat(b)))delete =
c[a]}return c}function t(c,a){var b=3D{_:0},d;for(d in =
a)if(c[d]!=3Da[d])b[d]=3Da[d];return b}function k(c,a,b,d){if(typeof =
c=3D=3D"object"){d=3D=0A=
a;b=3Dnull;a=3Dc;c=3Da.effect}if(f.isFunction(a)){d=3Da;b=3Dnull;a=3D{}}i=
f(typeof =
a=3D=3D"number"||f.fx.speeds[a]){d=3Db;b=3Da;a=3D{}}if(f.isFunction(b)){d=
=3Db;b=3Dnull}a=3Da||{};b=3Db||a.duration;b=3Df.fx.off?0:typeof =
b=3D=3D"number"?b:f.fx.speeds[b]||f.fx.speeds._default;d=3Dd||a.complete;=
return[c,a,b,d]}f.effects=3D{};f.each(["backgroundColor","borderBottomCol=
or","borderLeftColor","borderRightColor","borderTopColor","color","outlin=
eColor"],function(c,a){f.fx.step[a]=3Dfunction(b){if(!b.colorInit){b.star=
t=3Dr(b.elem,a);b.end=3Dl(b.end);b.colorInit=3D=0A=
true}b.elem.style[a]=3D"rgb("+Math.max(Math.min(parseInt(b.pos*(b.end[0]-=
b.start[0])+b.start[0],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(=
b.end[1]-b.start[1])+b.start[1],10),255),0)+","+Math.max(Math.min(parseIn=
t(b.pos*(b.end[2]-b.start[2])+b.start[2],10),255),0)+")"}});var =
m=3D{aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,=
0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],d=
arkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:=
[189,=0A=
183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[2=
55,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,1=
22],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,=
128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],ligh=
tcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],ligh=
tpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255=
,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,=0A=
165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,=
0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transpar=
ent:[255,255,255]},p=3D["add","remove","toggle"],s=3D{border:1,borderBott=
om:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,m=
argin:1,padding:1};f.effects.animateClass=3Dfunction(c,a,b,d){if(f.isFunc=
tion(b)){d=3Db;b=3Dnull}return this.each(function(){var =
e=3Df(this),g=3De.attr("style")||" =
",h=3Do(n.call(this)),q,u=3De.attr("className");f.each(p,function(v,=0A=
i){c[i]&&e[i+"Class"](c[i])});q=3Do(n.call(this));e.attr("className",u);e=
.animate(t(h,q),a,b,function(){f.each(p,function(v,i){c[i]&&e[i+"Class"](=
c[i])});if(typeof =
e.attr("style")=3D=3D"object"){e.attr("style").cssText=3D"";e.attr("style=
").cssText=3Dg}else =
e.attr("style",g);d&&d.apply(this,arguments)})})};f.fn.extend({_addClass:=
f.fn.addClass,addClass:function(c,a,b,d){return =
a?f.effects.animateClass.apply(this,[{add:c},a,b,d]):this._addClass(c)},_=
removeClass:f.fn.removeClass,removeClass:function(c,a,b,d){return a?=0A=
f.effects.animateClass.apply(this,[{remove:c},a,b,d]):this._removeClass(c=
)},_toggleClass:f.fn.toggleClass,toggleClass:function(c,a,b,d,e){return =
typeof =
a=3D=3D"boolean"||a=3D=3D=3Dj?b?f.effects.animateClass.apply(this,[a?{add=
:c}:{remove:c},b,d,e]):this._toggleClass(c,a):f.effects.animateClass.appl=
y(this,[{toggle:c},a,b,d])},switchClass:function(c,a,b,d,e){return =
f.effects.animateClass.apply(this,[{add:a,remove:c},b,d,e])}});f.extend(f=
.effects,{version:"1.8.4",save:function(c,a){for(var =
b=3D0;b<a.length;b++)a[b]!=3D=3D=0A=
null&&c.data("ec.storage."+a[b],c[0].style[a[b]])},restore:function(c,a){=
for(var =
b=3D0;b<a.length;b++)a[b]!=3D=3Dnull&&c.css(a[b],c.data("ec.storage."+a[b=
]))},setMode:function(c,a){if(a=3D=3D"toggle")a=3Dc.is(":hidden")?"show":=
"hide";return a},getBaseline:function(c,a){var b;switch(c[0]){case =
"top":b=3D0;break;case "middle":b=3D0.5;break;case =
"bottom":b=3D1;break;default:b=3Dc[0]/a.height}switch(c[1]){case =
"left":c=3D0;break;case "center":c=3D0.5;break;case =
"right":c=3D1;break;default:c=3Dc[1]/a.width}return{x:c,y:b}},createWrapp=
er:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent();=0A=
var =
a=3D{width:c.outerWidth(true),height:c.outerHeight(true),"float":c.css("f=
loat")},b=3Df("<div></div>").addClass("ui-effects-wrapper").css({fontSize=
:"100%",background:"transparent",border:"none",margin:0,padding:0});c.wra=
p(b);b=3Dc.parent();if(c.css("position")=3D=3D"static"){b.css({position:"=
relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css(=
"position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","righ=
t"],function(d,e){a[e]=3Dc.css(e);if(isNaN(parseInt(a[e],10)))a[e]=3D"aut=
o"});=0A=
c.css({position:"relative",top:0,left:0})}return =
b.css(a).show()},removeWrapper:function(c){if(c.parent().is(".ui-effects-=
wrapper"))return c.parent().replaceWith(c);return =
c},setTransition:function(c,a,b,d){d=3Dd||{};f.each(a,function(e,g){unit=3D=
c.cssUnit(g);if(unit[0]>0)d[g]=3Dunit[0]*b+unit[1]});return =
d}});f.fn.extend({effect:function(c){var =
a=3Dk.apply(this,arguments);a=3D{options:a[1],duration:a[2],callback:a[3]=
};var b=3Df.effects[c];return =
b&&!f.fx.off?b.call(this,a):this},_show:f.fn.show,show:function(c){if(!c|=
|=0A=
typeof c=3D=3D"number"||f.fx.speeds[c])return =
this._show.apply(this,arguments);else{var =
a=3Dk.apply(this,arguments);a[1].mode=3D"show";return =
this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(!c||typeo=
f c=3D=3D"number"||f.fx.speeds[c])return =
this._hide.apply(this,arguments);else{var =
a=3Dk.apply(this,arguments);a[1].mode=3D"hide";return =
this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(!c=
||typeof c=3D=3D"number"||f.fx.speeds[c]||typeof =
c=3D=3D"boolean"||f.isFunction(c))return this.__toggle.apply(this,=0A=
arguments);else{var =
a=3Dk.apply(this,arguments);a[1].mode=3D"toggle";return =
this.effect.apply(this,a)}},cssUnit:function(c){var =
a=3Dthis.css(c),b=3D[];f.each(["em","px","%","pt"],function(d,e){if(a.ind=
exOf(e)>0)b=3D[parseFloat(a),e]});return =
b}});f.easing.jswing=3Df.easing.swing;f.extend(f.easing,{def:"easeOutQuad=
",swing:function(c,a,b,d,e){return =
f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return =
d*(a/=3De)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=3De)*(a-2)+b=
},easeInOutQuad:function(c,=0A=
a,b,d,e){if((a/=3De/2)<1)return =
d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){ret=
urn d*(a/=3De)*a*a+b},easeOutCubic:function(c,a,b,d,e){return =
d*((a=3Da/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=3De/2)=
<1)return d/2*a*a*a+b;return =
d/2*((a-=3D2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return =
d*(a/=3De)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=3Da/e-1=
)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=3De/2)<1)return =
d/2*a*a*a*a+b;return-d/2*((a-=3D2)*a*a*a-2)+=0A=
b},easeInQuint:function(c,a,b,d,e){return =
d*(a/=3De)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return =
d*((a=3Da/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){if((a/=3D=
e/2)<1)return d/2*a*a*a*a*a+b;return =
d/2*((a-=3D2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.=
cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return =
d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d=
/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return =
a=3D=3D0?b:d*Math.pow(2,=0A=
10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){return =
a=3D=3De?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d=
,e){if(a=3D=3D0)return b;if(a=3D=3De)return b+d;if((a/=3De/2)<1)return =
d/2*Math.pow(2,10*(a-1))+b;return =
d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(=
Math.sqrt(1-(a/=3De)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return =
d*Math.sqrt(1-(a=3Da/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=3D=
e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return =
d/2*(Math.sqrt(1-(a-=3D2)*=0A=
a)+1)+b},easeInElastic:function(c,a,b,d,e){c=3D1.70158;var =
g=3D0,h=3Dd;if(a=3D=3D0)return b;if((a/=3De)=3D=3D1)return =
b+d;g||(g=3De*0.3);if(h<Math.abs(d)){h=3Dd;c=3Dg/4}else =
c=3Dg/(2*Math.PI)*Math.asin(d/h);return-(h*Math.pow(2,10*(a-=3D1))*Math.s=
in((a*e-c)*2*Math.PI/g))+b},easeOutElastic:function(c,a,b,d,e){c=3D1.7015=
8;var g=3D0,h=3Dd;if(a=3D=3D0)return b;if((a/=3De)=3D=3D1)return =
b+d;g||(g=3De*0.3);if(h<Math.abs(d)){h=3Dd;c=3Dg/4}else =
c=3Dg/(2*Math.PI)*Math.asin(d/h);return =
h*Math.pow(2,-10*a)*Math.sin((a*e-c)*2*Math.PI/g)+d+b},easeInOutElastic:f=
unction(c,=0A=
a,b,d,e){c=3D1.70158;var g=3D0,h=3Dd;if(a=3D=3D0)return =
b;if((a/=3De/2)=3D=3D2)return =
b+d;g||(g=3De*0.3*1.5);if(h<Math.abs(d)){h=3Dd;c=3Dg/4}else =
c=3Dg/(2*Math.PI)*Math.asin(d/h);if(a<1)return-0.5*h*Math.pow(2,10*(a-=3D=
1))*Math.sin((a*e-c)*2*Math.PI/g)+b;return =
h*Math.pow(2,-10*(a-=3D1))*Math.sin((a*e-c)*2*Math.PI/g)*0.5+d+b},easeInB=
ack:function(c,a,b,d,e,g){if(g=3D=3Dj)g=3D1.70158;return =
d*(a/=3De)*a*((g+1)*a-g)+b},easeOutBack:function(c,a,b,d,e,g){if(g=3D=3Dj=
)g=3D1.70158;return =
d*((a=3Da/e-1)*a*((g+1)*a+g)+1)+b},easeInOutBack:function(c,=0A=
a,b,d,e,g){if(g=3D=3Dj)g=3D1.70158;if((a/=3De/2)<1)return =
d/2*a*a*(((g*=3D1.525)+1)*a-g)+b;return =
d/2*((a-=3D2)*a*(((g*=3D1.525)+1)*a+g)+2)+b},easeInBounce:function(c,a,b,=
d,e){return =
d-f.easing.easeOutBounce(c,e-a,0,d,e)+b},easeOutBounce:function(c,a,b,d,e=
){return(a/=3De)<1/2.75?d*7.5625*a*a+b:a<2/2.75?d*(7.5625*(a-=3D1.5/2.75)=
*a+0.75)+b:a<2.5/2.75?d*(7.5625*(a-=3D2.25/2.75)*a+0.9375)+b:d*(7.5625*(a=
-=3D2.625/2.75)*a+0.984375)+b},easeInOutBounce:function(c,a,b,d,e){if(a<e=
/2)return f.easing.easeInBounce(c,a*2,0,d,e)*0.5+=0A=
b;return f.easing.easeOutBounce(c,a*2-e,0,d,e)*0.5+d*0.5+b}})}(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Blind 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Blind=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(b){b.effects.blind=3Dfunction(c){return =
this.queue(function(){var =
a=3Db(this),g=3D["position","top","left"],f=3Db.effects.setMode(a,c.optio=
ns.mode||"hide"),d=3Dc.options.direction||"vertical";b.effects.save(a,g);=
a.show();var =
e=3Db.effects.createWrapper(a).css({overflow:"hidden"}),h=3Dd=3D=3D"verti=
cal"?"height":"width";d=3Dd=3D=3D"vertical"?e.height():e.width();f=3D=3D"=
show"&&e.css(h,0);var =
i=3D{};i[h]=3Df=3D=3D"show"?d:0;e.animate(i,c.duration,c.options.easing,f=
unction(){f=3D=3D"hide"&&a.hide();b.effects.restore(a,g);b.effects.remove=
Wrapper(a);=0A=
c.callback&&c.callback.apply(a[0],arguments);a.dequeue()})})}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Bounce 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Bounce=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(e){e.effects.bounce=3Dfunction(b){return =
this.queue(function(){var =
a=3De(this),l=3D["position","top","left"],h=3De.effects.setMode(a,b.optio=
ns.mode||"effect"),d=3Db.options.direction||"up",c=3Db.options.distance||=
20,m=3Db.options.times||5,i=3Db.duration||250;/show|hide/.test(h)&&l.push=
("opacity");e.effects.save(a,l);a.show();e.effects.createWrapper(a);var =
f=3Dd=3D=3D"up"||d=3D=3D"down"?"top":"left";d=3Dd=3D=3D"up"||d=3D=3D"left=
"?"pos":"neg";c=3Db.options.distance||(f=3D=3D"top"?a.outerHeight({margin=
:true})/3:a.outerWidth({margin:true})/=0A=
3);if(h=3D=3D"show")a.css("opacity",0).css(f,d=3D=3D"pos"?-c:c);if(h=3D=3D=
"hide")c/=3Dm*2;h!=3D"hide"&&m--;if(h=3D=3D"show"){var =
g=3D{opacity:1};g[f]=3D(d=3D=3D"pos"?"+=3D":"-=3D")+c;a.animate(g,i/2,b.o=
ptions.easing);c/=3D2;m--}for(g=3D0;g<m;g++){var =
j=3D{},k=3D{};j[f]=3D(d=3D=3D"pos"?"-=3D":"+=3D")+c;k[f]=3D(d=3D=3D"pos"?=
"+=3D":"-=3D")+c;a.animate(j,i/2,b.options.easing).animate(k,i/2,b.option=
s.easing);c=3Dh=3D=3D"hide"?c*2:c/2}if(h=3D=3D"hide"){g=3D{opacity:0};g[f=
]=3D(d=3D=3D"pos"?"-=3D":"+=3D")+c;a.animate(g,i/2,b.options.easing,funct=
ion(){a.hide();e.effects.restore(a,l);e.effects.removeWrapper(a);=0A=
b.callback&&b.callback.apply(this,arguments)})}else{j=3D{};k=3D{};j[f]=3D=
(d=3D=3D"pos"?"-=3D":"+=3D")+c;k[f]=3D(d=3D=3D"pos"?"+=3D":"-=3D")+c;a.an=
imate(j,i/2,b.options.easing).animate(k,i/2,b.options.easing,function(){e=
.effects.restore(a,l);e.effects.removeWrapper(a);b.callback&&b.callback.a=
pply(this,arguments)})}a.queue("fx",function(){a.dequeue()});a.dequeue()}=
)}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Clip 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Clip=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(b){b.effects.clip=3Dfunction(e){return =
this.queue(function(){var =
a=3Db(this),i=3D["position","top","left","height","width"],f=3Db.effects.=
setMode(a,e.options.mode||"hide"),c=3De.options.direction||"vertical";b.e=
ffects.save(a,i);a.show();var =
d=3Db.effects.createWrapper(a).css({overflow:"hidden"});d=3Da[0].tagName=3D=
=3D"IMG"?d:a;var =
g=3D{size:c=3D=3D"vertical"?"height":"width",position:c=3D=3D"vertical"?"=
top":"left"};c=3Dc=3D=3D"vertical"?d.height():d.width();if(f=3D=3D"show")=
{d.css(g.size,0);d.css(g.position,c/2)}var h=3D{};h[g.size]=3D=0A=
f=3D=3D"show"?c:0;h[g.position]=3Df=3D=3D"show"?0:c/2;d.animate(h,{queue:=
false,duration:e.duration,easing:e.options.easing,complete:function(){f=3D=
=3D"hide"&&a.hide();b.effects.restore(a,i);b.effects.removeWrapper(a);e.c=
allback&&e.callback.apply(a[0],arguments);a.dequeue()}})})}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Drop 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Drop=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(c){c.effects.drop=3Dfunction(d){return =
this.queue(function(){var =
a=3Dc(this),h=3D["position","top","left","opacity"],e=3Dc.effects.setMode=
(a,d.options.mode||"hide"),b=3Dd.options.direction||"left";c.effects.save=
(a,h);a.show();c.effects.createWrapper(a);var =
f=3Db=3D=3D"up"||b=3D=3D"down"?"top":"left";b=3Db=3D=3D"up"||b=3D=3D"left=
"?"pos":"neg";var =
g=3Dd.options.distance||(f=3D=3D"top"?a.outerHeight({margin:true})/2:a.ou=
terWidth({margin:true})/2);if(e=3D=3D"show")a.css("opacity",0).css(f,b=3D=
=3D"pos"?-g:g);var i=3D{opacity:e=3D=3D"show"?1:=0A=
0};i[f]=3D(e=3D=3D"show"?b=3D=3D"pos"?"+=3D":"-=3D":b=3D=3D"pos"?"-=3D":"=
+=3D")+g;a.animate(i,{queue:false,duration:d.duration,easing:d.options.ea=
sing,complete:function(){e=3D=3D"hide"&&a.hide();c.effects.restore(a,h);c=
.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.=
dequeue()}})})}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Explode 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Explode=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(j){j.effects.explode=3Dfunction(a){return =
this.queue(function(){var =
c=3Da.options.pieces?Math.round(Math.sqrt(a.options.pieces)):3,d=3Da.opti=
ons.pieces?Math.round(Math.sqrt(a.options.pieces)):3;a.options.mode=3Da.o=
ptions.mode=3D=3D"toggle"?j(this).is(":visible")?"hide":"show":a.options.=
mode;var =
b=3Dj(this).show().css("visibility","hidden"),g=3Db.offset();g.top-=3Dpar=
seInt(b.css("marginTop"),10)||0;g.left-=3DparseInt(b.css("marginLeft"),10=
)||0;for(var =
h=3Db.outerWidth(true),i=3Db.outerHeight(true),e=3D0;e<c;e++)for(var f=3D=0A=
0;f<d;f++)b.clone().appendTo("body").wrap("<div></div>").css({position:"a=
bsolute",visibility:"visible",left:-f*(h/d),top:-e*(i/c)}).parent().addCl=
ass("ui-effects-explode").css({position:"absolute",overflow:"hidden",widt=
h:h/d,height:i/c,left:g.left+f*(h/d)+(a.options.mode=3D=3D"show"?(f-Math.=
floor(d/2))*(h/d):0),top:g.top+e*(i/c)+(a.options.mode=3D=3D"show"?(e-Mat=
h.floor(c/2))*(i/c):0),opacity:a.options.mode=3D=3D"show"?0:1}).animate({=
left:g.left+f*(h/d)+(a.options.mode=3D=3D"show"?0:(f-Math.floor(d/2))*(h/=
d)),top:g.top+=0A=
e*(i/c)+(a.options.mode=3D=3D"show"?0:(e-Math.floor(c/2))*(i/c)),opacity:=
a.options.mode=3D=3D"show"?1:0},a.duration||500);setTimeout(function(){a.=
options.mode=3D=3D"show"?b.css({visibility:"visible"}):b.css({visibility:=
"visible"}).hide();a.callback&&a.callback.apply(b[0]);b.dequeue();j("div.=
ui-effects-explode").remove()},a.duration||500)})}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Fold 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Fold=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(c){c.effects.fold=3Dfunction(a){return =
this.queue(function(){var =
b=3Dc(this),j=3D["position","top","left"],d=3Dc.effects.setMode(b,a.optio=
ns.mode||"hide"),g=3Da.options.size||15,h=3D!!a.options.horizFirst,k=3Da.=
duration?a.duration/2:c.fx.speeds._default/2;c.effects.save(b,j);b.show()=
;var =
e=3Dc.effects.createWrapper(b).css({overflow:"hidden"}),f=3Dd=3D=3D"show"=
!=3Dh,l=3Df?["width","height"]:["height","width"];f=3Df?[e.width(),e.heig=
ht()]:[e.height(),e.width()];var =
i=3D/([0-9]+)%/.exec(g);if(i)g=3DparseInt(i[1],10)/100*=0A=
f[d=3D=3D"hide"?0:1];if(d=3D=3D"show")e.css(h?{height:0,width:g}:{height:=
g,width:0});h=3D{};i=3D{};h[l[0]]=3Dd=3D=3D"show"?f[0]:g;i[l[1]]=3Dd=3D=3D=
"show"?f[1]:0;e.animate(h,k,a.options.easing).animate(i,k,a.options.easin=
g,function(){d=3D=3D"hide"&&b.hide();c.effects.restore(b,j);c.effects.rem=
oveWrapper(b);a.callback&&a.callback.apply(b[0],arguments);b.dequeue()})}=
)}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Highlight 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Highlight=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(b){b.effects.highlight=3Dfunction(c){return =
this.queue(function(){var =
a=3Db(this),e=3D["backgroundImage","backgroundColor","opacity"],d=3Db.eff=
ects.setMode(a,c.options.mode||"show"),f=3D{backgroundColor:a.css("backgr=
oundColor")};if(d=3D=3D"hide")f.opacity=3D0;b.effects.save(a,e);a.show().=
css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).=
animate(f,{queue:false,duration:c.duration,easing:c.options.easing,comple=
te:function(){d=3D=3D"hide"&&a.hide();b.effects.restore(a,e);d=3D=3D"show=
"&&!b.support.opacity&&=0A=
this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,ar=
guments);a.dequeue()}})})}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Pulsate 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Pulsate=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(d){d.effects.pulsate=3Dfunction(a){return =
this.queue(function(){var =
b=3Dd(this),c=3Dd.effects.setMode(b,a.options.mode||"show");times=3D(a.op=
tions.times||5)*2-1;duration=3Da.duration?a.duration/2:d.fx.speeds._defau=
lt/2;isVisible=3Db.is(":visible");animateTo=3D0;if(!isVisible){b.css("opa=
city",0).show();animateTo=3D1}if(c=3D=3D"hide"&&isVisible||c=3D=3D"show"&=
&!isVisible)times--;for(c=3D0;c<times;c++){b.animate({opacity:animateTo},=
duration,a.options.easing);animateTo=3D(animateTo+1)%2}b.animate({opacity=
:animateTo},duration,=0A=
a.options.easing,function(){animateTo=3D=3D0&&b.hide();a.callback&&a.call=
back.apply(this,arguments)});b.queue("fx",function(){b.dequeue()}).dequeu=
e()})}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Scale 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Scale=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(c){c.effects.puff=3Dfunction(b){return =
this.queue(function(){var =
a=3Dc(this),e=3Dc.effects.setMode(a,b.options.mode||"hide"),g=3DparseInt(=
b.options.percent,10)||150,h=3Dg/100,i=3D{height:a.height(),width:a.width=
()};c.extend(b.options,{fade:true,mode:e,percent:e=3D=3D"hide"?g:100,from=
:e=3D=3D"hide"?i:{height:i.height*h,width:i.width*h}});a.effect("scale",b=
.options,b.duration,b.callback);a.dequeue()})};c.effects.scale=3Dfunction=
(b){return this.queue(function(){var =
a=3Dc(this),e=3Dc.extend(true,{},b.options),g=3Dc.effects.setMode(a,=0A=
b.options.mode||"effect"),h=3DparseInt(b.options.percent,10)||(parseInt(b=
.options.percent,10)=3D=3D0?0:g=3D=3D"hide"?0:100),i=3Db.options.directio=
n||"both",f=3Db.options.origin;if(g!=3D"effect"){e.origin=3Df||["middle",=
"center"];e.restore=3Dtrue}f=3D{height:a.height(),width:a.width()};a.from=
=3Db.options.from||(g=3D=3D"show"?{height:0,width:0}:f);h=3D{y:i!=3D"hori=
zontal"?h/100:1,x:i!=3D"vertical"?h/100:1};a.to=3D{height:f.height*h.y,wi=
dth:f.width*h.x};if(b.options.fade){if(g=3D=3D"show"){a.from.opacity=3D0;=
a.to.opacity=3D1}if(g=3D=3D"hide"){a.from.opacity=3D=0A=
1;a.to.opacity=3D0}}e.from=3Da.from;e.to=3Da.to;e.mode=3Dg;a.effect("size=
",e,b.duration,b.callback);a.dequeue()})};c.effects.size=3Dfunction(b){re=
turn this.queue(function(){var =
a=3Dc(this),e=3D["position","top","left","width","height","overflow","opa=
city"],g=3D["position","top","left","overflow","opacity"],h=3D["width","h=
eight","overflow"],i=3D["fontSize"],f=3D["borderTopWidth","borderBottomWi=
dth","paddingTop","paddingBottom"],k=3D["borderLeftWidth","borderRightWid=
th","paddingLeft","paddingRight"],p=3Dc.effects.setMode(a,=0A=
b.options.mode||"effect"),n=3Db.options.restore||false,m=3Db.options.scal=
e||"both",l=3Db.options.origin,j=3D{height:a.height(),width:a.width()};a.=
from=3Db.options.from||j;a.to=3Db.options.to||j;if(l){l=3Dc.effects.getBa=
seline(l,j);a.from.top=3D(j.height-a.from.height)*l.y;a.from.left=3D(j.wi=
dth-a.from.width)*l.x;a.to.top=3D(j.height-a.to.height)*l.y;a.to.left=3D(=
j.width-a.to.width)*l.x}var =
d=3D{from:{y:a.from.height/j.height,x:a.from.width/j.width},to:{y:a.to.he=
ight/j.height,x:a.to.width/j.width}};if(m=3D=3D"box"||m=3D=3D"both"){if(d=
.from.y!=3D=0A=
d.to.y){e=3De.concat(f);a.from=3Dc.effects.setTransition(a,f,d.from.y,a.f=
rom);a.to=3Dc.effects.setTransition(a,f,d.to.y,a.to)}if(d.from.x!=3Dd.to.=
x){e=3De.concat(k);a.from=3Dc.effects.setTransition(a,k,d.from.x,a.from);=
a.to=3Dc.effects.setTransition(a,k,d.to.x,a.to)}}if(m=3D=3D"content"||m=3D=
=3D"both")if(d.from.y!=3Dd.to.y){e=3De.concat(i);a.from=3Dc.effects.setTr=
ansition(a,i,d.from.y,a.from);a.to=3Dc.effects.setTransition(a,i,d.to.y,a=
.to)}c.effects.save(a,n?e:g);a.show();c.effects.createWrapper(a);a.css("o=
verflow","hidden").css(a.from);=0A=
if(m=3D=3D"content"||m=3D=3D"both"){f=3Df.concat(["marginTop","marginBott=
om"]).concat(i);k=3Dk.concat(["marginLeft","marginRight"]);h=3De.concat(f=
).concat(k);a.find("*[width]").each(function(){child=3Dc(this);n&&c.effec=
ts.save(child,h);var =
o=3D{height:child.height(),width:child.width()};child.from=3D{height:o.he=
ight*d.from.y,width:o.width*d.from.x};child.to=3D{height:o.height*d.to.y,=
width:o.width*d.to.x};if(d.from.y!=3Dd.to.y){child.from=3Dc.effects.setTr=
ansition(child,f,d.from.y,child.from);child.to=3Dc.effects.setTransition(=
child,=0A=
f,d.to.y,child.to)}if(d.from.x!=3Dd.to.x){child.from=3Dc.effects.setTrans=
ition(child,k,d.from.x,child.from);child.to=3Dc.effects.setTransition(chi=
ld,k,d.to.x,child.to)}child.css(child.from);child.animate(child.to,b.dura=
tion,b.options.easing,function(){n&&c.effects.restore(child,h)})})}a.anim=
ate(a.to,{queue:false,duration:b.duration,easing:b.options.easing,complet=
e:function(){a.to.opacity=3D=3D=3D0&&a.css("opacity",a.from.opacity);p=3D=
=3D"hide"&&a.hide();c.effects.restore(a,n?e:g);c.effects.removeWrapper(a)=
;b.callback&&=0A=
b.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Shake 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Shake=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(d){d.effects.shake=3Dfunction(a){return =
this.queue(function(){var =
b=3Dd(this),j=3D["position","top","left"];d.effects.setMode(b,a.options.m=
ode||"effect");var =
c=3Da.options.direction||"left",e=3Da.options.distance||20,l=3Da.options.=
times||3,f=3Da.duration||a.options.duration||140;d.effects.save(b,j);b.sh=
ow();d.effects.createWrapper(b);var =
g=3Dc=3D=3D"up"||c=3D=3D"down"?"top":"left",h=3Dc=3D=3D"up"||c=3D=3D"left=
"?"pos":"neg";c=3D{};var =
i=3D{},k=3D{};c[g]=3D(h=3D=3D"pos"?"-=3D":"+=3D")+e;i[g]=3D(h=3D=3D"pos"?=
"+=3D":"-=3D")+e*2;k[g]=3D(h=3D=3D"pos"?"-=3D":"+=3D")+=0A=
e*2;b.animate(c,f,a.options.easing);for(e=3D1;e<l;e++)b.animate(i,f,a.opt=
ions.easing).animate(k,f,a.options.easing);b.animate(i,f,a.options.easing=
).animate(c,f/2,a.options.easing,function(){d.effects.restore(b,j);d.effe=
cts.removeWrapper(b);a.callback&&a.callback.apply(this,arguments)});b.que=
ue("fx",function(){b.dequeue()});b.dequeue()})}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Slide 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Slide=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(c){c.effects.slide=3Dfunction(d){return =
this.queue(function(){var =
a=3Dc(this),h=3D["position","top","left"],e=3Dc.effects.setMode(a,d.optio=
ns.mode||"show"),b=3Dd.options.direction||"left";c.effects.save(a,h);a.sh=
ow();c.effects.createWrapper(a).css({overflow:"hidden"});var =
f=3Db=3D=3D"up"||b=3D=3D"down"?"top":"left";b=3Db=3D=3D"up"||b=3D=3D"left=
"?"pos":"neg";var =
g=3Dd.options.distance||(f=3D=3D"top"?a.outerHeight({margin:true}):a.oute=
rWidth({margin:true}));if(e=3D=3D"show")a.css(f,b=3D=3D"pos"?-g:g);var =
i=3D{};i[f]=3D(e=3D=3D"show"?b=3D=3D"pos"?=0A=
"+=3D":"-=3D":b=3D=3D"pos"?"-=3D":"+=3D")+g;a.animate(i,{queue:false,dura=
tion:d.duration,easing:d.options.easing,complete:function(){e=3D=3D"hide"=
&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&=
d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);=0A=
;/*=0A=
 * jQuery UI Effects Transfer 1.8.4=0A=
 *=0A=
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)=0A=
 * Dual licensed under the MIT or GPL Version 2 licenses.=0A=
 * http://jquery.org/license=0A=
 *=0A=
 * http://docs.jquery.com/UI/Effects/Transfer=0A=
 *=0A=
 * Depends:=0A=
 *	jquery.effects.core.js=0A=
 */=0A=
(function(e){e.effects.transfer=3Dfunction(a){return =
this.queue(function(){var =
b=3De(this),c=3De(a.options.to),d=3Dc.offset();c=3D{top:d.top,left:d.left=
,height:c.innerHeight(),width:c.innerWidth()};d=3Db.offset();var =
f=3De('<div =
class=3D"ui-effects-transfer"></div>').appendTo(document.body).addClass(a=
.options.className).css({top:d.top,left:d.left,height:b.innerHeight(),wid=
th:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.ea=
sing,function(){f.remove();a.callback&&a.callback.apply(b[0],arguments);=0A=
b.dequeue()})})}})(jQuery);=0A=
;
------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: application/octet-stream
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/scripts/tree_generic.js

/*-----------------------------------------------------------------------=
---------------=0A=
   This file regroups all the generic functions required to manage =
dynamic trees.=0A=
   It is required with others scripts like:=0A=
   - tree_classic.js (to manage classic trees, like 'View whole =
questionnaire');=0A=
   - tree_spec_check.js (to manage trees with select boxes, like =
'Configure content view');=0A=
   - tree_spec_search.js (to manage all other dynamic structures with =
input fields like=0A=
         'Perform search' or 'Encode a case')=0A=
  --------------------------------------------------=0A=
  =0A=
  To run properly, the HTML structure of a tree must respect the =
following architecture:=0A=
  =0A=
   <DIV id=3D"brc_0_" style=3D'display:block;' class=3D"idt_0_0_0_O_">=0A=
   <A name=3D"brc_0_"></A>=0A=
   <DIV id=3D"leav_0_" style=3D'display:block; =
position:relative;left:2%;width:98%'>=0A=
=0A=
      <DIV id=3D"brc_11_" style=3D'display:block;position:relative;' =
class=3D"idt_1_0_11_O_">=0A=
      <A name=3D"brc_11_"></A>=0A=
      ...=0A=
      ... onclick=3D"manageTree(11);"=0A=
      ...=0A=
      <DIV id=3D"leav_11_" style=3D'display:block;position:relative;'>=0A=
	=0A=
		   <DIV id=3D"brc_110_" style=3D'display:block;position:relative;' =
class=3D"idt_2_11_110_A_">=0A=
		   <A name=3D"brc_110_"></A>=0A=
         ...=0A=
         ... onclick=3D"manageTree(110);"=0A=
         ...=0A=
   		</DIV>=0A=
	=0A=
		   <DIV id=3D"brc_111_" style=3D'display:block;position:relative;' =
class=3D"idt_2_11_111_A_">=0A=
		   <A name=3D"brc_111_"></A>=0A=
         ...=0A=
         ... onclick=3D"manageTree(111);"=0A=
         ...=0A=
   		</DIV>=0A=
   		...=0A=
	=0A=
      </DIV>=0A=
      </DIV>=0A=
		...=0A=
		=0A=
   </DIV>=0A=
   </DIV>=0A=
	=0A=
	Some basic rules:=0A=
	- A branch is defined thanks to <DIV id=3D"brc_..._" style=3D"..." =
class=3D"..."></DIV> tags;=0A=
	- A <DIV> tag is considered as a branch by the java script if its ID =
attribute is set=0A=
	   with a value 'brc_xxx_' where xxx is a unique identifier for the =
branch;=0A=
=0A=
	- The children branches are included in a container <DIV =
id=3D"leav_..._" style=3D"..."></DIV>;=0A=
	- A <DIV> tag is considered as a 'leaves container' by the java script =
if its ID attribute =0A=
	   is set with a value 'leav_xxx_' where xxx is the unique identifier =
of the branch;=0A=
	- A 'leaves container' can be empty;=0A=
	- A branch does not require a 'leaves container';=0A=
	=0A=
	- To hide a branch and its whole content, the STYLE attribute of the =
branch <DIV> tag must =0A=
	   include display:none; (else display:block;)=0A=
	- To only hide the content of the branch, the STYLE attribute of the =
'leaves container' <DIV>=0A=
	   must include display:none; (else display:block;)=0A=
	   	=0A=
	- The root of the tree always starts with ID=3D0 (brc_0_);=0A=
	- An ID can be a numeric or alpha-numeric value;=0A=
	=0A=
	- A branch must include a CLASS attribute in which must appear =
following information:=0A=
	   idt_L_px_x_B_O_=0A=
	   L: the level of the branch. By default the root has the level 0, =
then 1, 2...etc;=0A=
	   px: ID of the parent branch;=0A=
	   x: ID of the current branch;=0A=
	   B: Block parameter. Values are:=0A=
	      - C to avoid expanding the branch (the 'leaves container' stays =
hidden)=0A=
	      - A (by default) automatic behaviour=0A=
	      - O to force the branch to be expanded (the 'leaves container' =
stays visible)=0A=
	   O: other information (optional). This field is used for example with =
tree including=0A=
	      input fields like free textes, check boxes... (see =
tree_spec_search.js for details)=0A=
	=0A=
	- A tree can also include dependencies. We must consider the calling =
dependency (which is=0A=
	   a specific branch dedicated to call a dependency) and the called =
dependency (which is =0A=
	   another branch of the tree, hidden if not triggered by the =
dependency);=0A=
	- A <DIV> tag is considered as a calling dependency by the java script =
if its ID attribute=0A=
	   is set with a value 'dep_xxx_' where xxx is a unique identifier of =
the called branch;=0A=
	- For technical reasons, all elements of a dependency should have the =
same visibility, that=0A=
	   means: =0A=
	   if a dependency is not triggered: the 'leaves container' which =
contains the calling=0A=
	   dependency, the calling dependency as well as the called dependency =
are hidden;=0A=
	   if a dependency is triggered: the 'leaves container' which contains =
the calling=0A=
	   dependency, the calling dependency as well as the called dependency =
are visible;=0A=
  =0A=
  =
-------------------------------------------------------------------------=
-------------=0A=
*/=0A=
=0A=
=0A=
//Default browsercheck, added to all scripts!=0A=
function checkBrowser(){=0A=
	this.ver=3Dnavigator.appVersion=0A=
	this.dom=3Ddocument.getElementById?1:0=0A=
	this.iex=3D(this.ver.indexOf("MSIE")>-1 &&  this.dom)?1:0;=0A=
	this.ie5=3D(this.ver.indexOf("MSIE 5")>-1 &&  this.dom)?1:0;=0A=
	this.ie4=3D(document.all && !this.dom)?1:0;=0A=
	this.ns5=3D(this.dom && parseInt(this.ver) >=3D 5) ?1:0;=0A=
	this.ns4=3D(document.layers &&  !this.dom)?1:0;=0A=
	this.bw=3D(this.ie5 || this.ie4 || this.ns4 || this.ns5)=0A=
	=0A=
	return this=0A=
}=0A=
				=0A=
bw=3Dnew checkBrowser()=0A=
=0A=
var gOpenIcon;=0A=
var gFileIcon;=0A=
var gFolderIcon;=0A=
var gRoot;=0A=
=0A=
=0A=
function decodeIdt(sIdt) {=0A=
   //Codification: =
"Level_ParentID_BrcID_BrcMode(O:open/A:auto/C:closed)_other"=0A=
	var sIdt_dcd=3D "0_0_0_O_";=0A=
	if (sIdt.toLowerCase().indexOf("idt_") =3D=3D 0) sIdt_dcd=3D =
sIdt.substr(4);=0A=
   var nIdt=3D sIdt_dcd.split("_");=0A=
   nIdt[0] =3D parseFloat(nIdt[0]);=0A=
   =0A=
	return nIdt;=0A=
	=0A=
}=0A=
=0A=
/* This function stores in an Array information about the branch: =0A=
   level_ parent Id_ Id_ Block_ Other=0A=
*/=0A=
function decodeBranch(oDoc,oBranch) {=0A=
   =0A=
   var sIdt=3D oBranch.className;=0A=
   =0A=
	return decodeIdt(sIdt);=0A=
	=0A=
}=0A=
=0A=
/* This function stores in an Array information about the branch (like =
decodeBranch) and=0A=
   aggregates the 'Block' parameter of the parent branches.=0A=
   iDec represents the number of parent nodes to go back up the tree. =
This function is=0A=
   very useful to know if a specific branch can be expanded or not.=0A=
   =0A=
   Codification: Level_ ParentID_ ID_ Block(O:open/A:auto/C:closed)_ =
Aggregate Block_ other"=0A=
   =0A=
   Note: For aggregation, we consider the following state priority: 'C', =
'A' and 'O'. =0A=
   That means that if one 'C' is found in a parent branch, it overrides =
the aggregate value. =0A=
   In a opposite way, the aggregate value can only be 'O' if all Block =
parameters of the =0A=
   parent branches are 'O'.=0A=
*/=0A=
function decodeParentBranches(oDoc, oBranch, iDec){=0A=
	var nIdt=3D decodeIdt(oBranch.className); //decodeBranch(oDoc,oBranch);=0A=
	var nParentIdt=3D new =
Array(nIdt[0],nIdt[1],nIdt[2],nIdt[3],nIdt[3],nIdt[4]);=0A=
	var iLevel=3D (nIdt[0] <=3D iDec)?0:(nIdt[0] - iDec);=0A=
	=0A=
	while (nIdt[0] > iLevel){=0A=
		var oParent=3D oDoc.getElementById("brc_" + nIdt[1] + "_");=0A=
		nIdt=3D decodeIdt(oParent.className); // decodeBranch(oDoc,oParent);=0A=
		if (nIdt[3] =3D=3D "C") {nParentIdt[4]=3D "C";}=0A=
		else if (nParentIdt[4] =3D=3D "O") { nParentIdt[4]=3D nIdt[3];}=0A=
	}=0A=
	=0A=
	return nParentIdt;=0A=
}=0A=
=0A=
=0A=
/* This function checks if the branch can be expanded or not=0A=
   Typically a branch cannot be expanded if the parameter 'Block' is set =
to Closed=0A=
   somewhere in the parent branch=0A=
*/=0A=
function canBranchEllapse(oDoc,oBranch) {=0A=
   var nIdtroot=3D decodeParentBranches(oDoc,oBranch,1000);=0A=
	var bcanOpen=3D (nIdtroot[4] !=3D "C");=0A=
	var nIdt=3D decodeIdt(oBranch.className);=0A=
	=0A=
	while ((nIdt[0] > 0) && bcanOpen) {	   =0A=
	   // check if the element is a dependency=0A=
      //alert(oBranch.className);=0A=
	   var oBrc_dep=3D oDoc.getElementById("dep_" + nIdt[2] + "_");=0A=
	   if (oBrc_dep !=3D null) {=0A=
	      //alert("dep: "+ oBrc_dep.className);=0A=
	      var nIdtdep=3D decodeIdt(oBrc_dep.className);=0A=
	      oBranch=3D oDoc.getElementById("brc_" + nIdtdep[1] + "_");=0A=
	      bcanOpen=3D canBranchEllapse(oDoc,oBranch);=0A=
      }=0A=
      =0A=
      oBranch=3D oDoc.getElementById("brc_" + nIdt[1] + "_");=0A=
      nIdt=3D decodeIdt(oBranch.className);=0A=
	}=0A=
	=0A=
	return bcanOpen;=0A=
}=0A=
=0A=
=0A=
/* Try to put the focus on the branch with iID (brc_iID_)=0A=
   If the tree is not expanded, try to expand the relevant=0A=
   branch of the tree that includes the item to call.=0A=
   =0A=
   Caution: this function should not be used with trees including input =
fields=0A=
   like checkboxes, radio-buttons, list boxes...which impact dynamic =
behaviour=0A=
*/=0A=
function callBranch(iID) {=0A=
	var oBranch=3D document.getElementById("brc_" + iID + "_");=0A=
=0A=
   if (oBranch !=3D null) {=0A=
	   if (canBranchEllapse(document,oBranch)) {=0A=
		   ellapseBackBranch(document,oBranch,true);=0A=
         =0A=
   		window.open("#brc_" + iID + "_","_self");=0A=
	   }=0A=
	}=0A=
}=0A=
=0A=
=0A=
/* Expand a branch of the tree, starting from the root=0A=
   in order to show the specified item oBranch.=0A=
   bOpen: if set to true, expand also the branch starting=0A=
          from the item oBranch=0A=
*/=0A=
function ellapseBackBranch(oDoc,oBranch,bOpen) {=0A=
   var nIdt=3D decodeIdt(oBranch.className);=0A=
	=0A=
	// Open the parent branches=0A=
	while (nIdt[0] > 0) {=0A=
	   if (bOpen) ellapseBranch(oDoc,oBranch);=0A=
	   bOpen=3D true;=0A=
	         =0A=
	   // check if the element is a dependency=0A=
	   var oBrc_dep=3D oDoc.getElementById("dep_" + nIdt[2] + "_");=0A=
	   if (oBrc_dep !=3D null) {=0A=
	      var nIdtdep=3D decodeIdt(oBrc_dep.className);=0A=
	      oBranch=3D oDoc.getElementById("brc_" + nIdtdep[1] + "_");=0A=
	      ellapseBackBranch(oDoc,oBranch,true);=0A=
	   }=0A=
	      =0A=
	   oBranch=3D oDoc.getElementById("brc_" + nIdt[1] + "_");=0A=
      nIdt=3D decodeIdt(oBranch.className);=0A=
	}=0A=
}=0A=
=0A=
=0A=
/* This function is called to manage dynamic behavior of a tree=0A=
   Each item of the tree triggers this function on the "onclick" event=0A=
   Depending on the value of the bitmap img_iID_ expand or collapse=0A=
   the branch=0A=
*/=0A=
function manageTree(iID) {=0A=
	var oImg=3D document.images["img_" + iID + "_"];=0A=
	var oBranch=3D document.getElementById("brc_" + iID + "_");=0A=
=0A=
=0A=
	if (oImg !=3D null) {=0A=
		//folder ferme: on ouvre=0A=
		if (oImg.src.toLowerCase().indexOf(gFolderIcon) >=3D 0) {=0A=
			ellapseBranch(document,oBranch);=0A=
		}=0A=
		//folder Ouvert: on ferme=0A=
		else if (oImg.src.toLowerCase().indexOf(gOpenIcon) >=3D 0) {=0A=
			collapseBranch(document,oBranch);=0A=
		}=0A=
		// Frame=0A=
	   else if (oImg.src.toLowerCase().indexOf("formframe") >=3D 0) {=0A=
	      collapseBranch(document,oBranch);=0A=
	   }=0A=
		=0A=
		handleAllTriggers();=0A=
	}=0A=
}=0A=
=0A=
=0A=
/* This function is a variation of manageTree. It does the same=0A=
   thing but with limitations due to the flag bOpen=0A=
   If bOpen is set to true: can only expand the branch brc_iID_=0A=
   If set to false: can only collapse the branch.=0A=
*/=0A=
function manageTree2(iID, bOpen) {=0A=
	var oImg=3D document.images["img_" + iID + "_"];=0A=
	var oBranch=3D document.getElementById("brc_" + iID + "_");=0A=
=0A=
=0A=
	if (oImg !=3D null) {=0A=
		//folder ferme: on ouvre=0A=
		if ((oImg.src.toLowerCase().indexOf(gFolderIcon) >=3D 0) && (bOpen)) {=0A=
			ellapseBranch(document,oBranch);=0A=
		}=0A=
		//folder Ouvert: on ferme=0A=
		else if ((oImg.src.toLowerCase().indexOf(gOpenIcon) >=3D 0) && =
(!bOpen)) {=0A=
			collapseBranch(document,oBranch);=0A=
		}=0A=
	}=0A=
}=0A=
=0A=
function handleAllTriggers()=0A=
{=0A=
	try {=0A=
	=0A=
		if (triggerMap =3D=3D null)	{=0A=
			return;=0A=
		}=0A=
		=0A=
		for(key in triggerMap)=0A=
		{=0A=
	    	var answer =3D triggerMap[key];=0A=
	    	if (answer =3D=3D null) {=0A=
	    		continue;=0A=
	    	}=0A=
			var oBranch =3D document.getElementById("brc_" + key + "_");=0A=
	    	if (oBranch =3D=3D null) {=0A=
	    		continue;=0A=
			}=0A=
	    	=0A=
	    	if (answer.src.toLowerCase().indexOf(gOpenIcon) >=3D 0) {=0A=
	    		ellapseBranch(document,oBranch);=0A=
	    	}	=0A=
		}=0A=
	=0A=
	} catch(e)=0A=
	{=0A=
		return;=0A=
	}=0A=
}=0A=
=0A=
function getTriggerMap()=0A=
{=0A=
	var mapping =3D new Object();=0A=
 	var allTriggers =3D getAllTriggeringAnswers();=0A=
    for (j =3D 0; j < allTriggers.length; j++) {     	=0A=
		var answers =3D $('img[data-answerId=3D' + allTriggers[j] + ']');=0A=
		if (answers[0] =3D=3D null)=0A=
		{=0A=
    		continue;=0A=
		}=0A=
		mapping[allTriggers[j]] =3D answers[0];=0A=
	}=0A=
    =0A=
    return mapping;=0A=
}=0A=
=0A=

------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: application/octet-stream
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/scripts/tree_classic.js

/*-----------------------------------------------------------------------=
---------------=0A=
   This file regroups all the standard functions required to manage =
dynamic trees.=0A=
   Caution: these functions only apply to tree without input fields like =
checkboxes,=0A=
   entry fields, radio-buttons...etc.=0A=
   Please refer to tree_spec_search.js or tree_spec_check.js for =
specific applications=0A=
   of dynamic behaviours.=0A=
   --------------------------------------------------=0A=
   This file requires the other file tree_generic.js which includes =
generic functions.=0A=
  =0A=
  =
-------------------------------------------------------------------------=
-------------=0A=
*/=0A=
=0A=
=0A=
/* This function collapses the whole tree. It is optimized and should =
replace with=0A=
   large benefits the call to collapseBranch(0)=0A=
*/=0A=
function collapseAll(oDoc) {=0A=
	var oRoot=3D oDoc.getElementById("leav_0_");=0A=
	var nDiv=3D oRoot.getElementsByTagName("div");=0A=
	var nJ=3D (nDiv !=3D null)?nDiv.length:0;=0A=
	var j=3D 0;=0A=
=0A=
=0A=
	//Scan all DIV tags of the tree=0A=
	for(j=3D0; j < nJ; j++) {=0A=
		var sType=3D (nDiv[j].id !=3D =
null)?nDiv[j].id.toLowerCase().substr(0,4):"";=0A=
=0A=
		if (sType =3D=3D "dep_") {=0A=
			//Convention: une branche DEP ne peut etre forcee ouverte que si =
toute la branche en amont l'est.=0A=
			var nParam=3D decodeParentBranches(oDoc, nDiv[j],1000);=0A=
			=0A=
			if (nParam[4] !=3D "O") {=0A=
				//Hide the calling dependency=0A=
				nDiv[j].style.display=3D 'none';=0A=
				=0A=
				//Hide the called dependency=0A=
				var oBrc_Dep=3D oDoc.getElementById("brc_" + nDiv[j].id.substr(4) );=0A=
				if (oBrc_Dep !=3D null) oBrc_Dep.style.display=3D 'none';=0A=
			}=0A=
		}=0A=
		else if (sType =3D=3D "brc_") {=0A=
			//Collapse the branch if parameter 'Block' allows it!=0A=
			var nParam=3D decodeIdt(nDiv[j].className); // =
decodeBranch(oDoc,nDiv[j]);=0A=
			if (nParam[3] =3D=3D "A") {=0A=
				var oLeav=3D oDoc.getElementById("leav_" + nDiv[j].id.substr(4) );=0A=
				if (oLeav !=3D null) oLeav.style.display=3D 'none';=0A=
				=0A=
				var oImg=3D oDoc.images["img_" + nDiv[j].id.substr(4)];=0A=
				if (oImg !=3D null) { =0A=
					if (oImg.src.toLowerCase().indexOf(gOpenIcon) >=3D 0) {oImg.src=3D =
gRoot + gFolderIcon;}=0A=
				}=0A=
			}=0A=
		}=0A=
	}=0A=
	=0A=
}=0A=
=0A=
/* This function expands the whole tree. It is optimized and should =
replace with=0A=
   large benefits the call to ellapseBranch(0)=0A=
*/=0A=
function ellapseAll(oDoc) {=0A=
	var oRoot=3D oDoc.getElementById("leav_0_");=0A=
	var nDiv=3D oRoot.getElementsByTagName("div");=0A=
	var nJ=3D (nDiv !=3D null)?nDiv.length:0;=0A=
	var j=3D 0;=0A=
=0A=
=0A=
	// Scan all DIV tags of the tree=0A=
	for(j=3D0; j < nJ; j++) {=0A=
		var sType=3D (nDiv[j].id !=3D =
null)?nDiv[j].id.toLowerCase().substr(0,4):"";=0A=
=0A=
		if (sType =3D=3D "dep_") {=0A=
			//Expand all called dependencies, if their parameter 'Block' allows it=0A=
			var nParam=3D decodeParentBranches(oDoc,nDiv[j],1000);=0A=
	//alert("level=3D" + nParam[0] + ",Parent=3D" + nParam[1] + ",ID=3D" + =
nParam[2] + ",Block=3D" + nParam[3] + ",Root Block=3D" + nParam[4]);=0A=
=0A=
			if (nParam[4] !=3D "C") {=0A=
				var oBrc_Dep=3D oDoc.getElementById("brc_" + nDiv[j].id.substr(4) );=0A=
				if (oBrc_Dep !=3D null) {=0A=
					nParam=3D decodeParentBranches(oDoc,oBrc_Dep,1000);=0A=
	//alert("level=3D" + nParam[0] + ",Parent=3D" + nParam[1] + ",ID=3D" + =
nParam[2] + ",Block=3D" + nParam[3] + ",Root Block=3D" + nParam[4]);=0A=
					=0A=
					//Calling and called dependencies must be visible=0A=
					if (nParam[4] !=3D "C") {=0A=
						nDiv[j].style.display=3D 'block';=0A=
						=0A=
						oBrc_Dep.style.display=3D 'block';=0A=
					}=0A=
				}=0A=
			}=0A=
		}=0A=
		else if (sType =3D=3D "brc_") {=0A=
			//Expand the branch if parameter 'Block' allows it=0A=
			var nParam=3D decodeParentBranches(oDoc,nDiv[j],1000);=0A=
			if ((nParam[4] !=3D "C") && (nParam[3] =3D=3D "A")) {=0A=
				var oLeav=3D oDoc.getElementById("leav_" + nDiv[j].id.substr(4) );=0A=
				if (oLeav !=3D null) oLeav.style.display=3D 'block';=0A=
				=0A=
				var oImg=3D oDoc.images["img_" + nDiv[j].id.substr(4)];=0A=
				if (oImg !=3D null) {=0A=
					if (oImg.src.toLowerCase().indexOf(gFolderIcon) >=3D 0) =
{oImg.src=3D gRoot + gOpenIcon;}=0A=
				}=0A=
			}=0A=
		}=0A=
=0A=
	}=0A=
=0A=
}=0A=
=0A=
=0A=
/* This function collapses the specified branch=0A=
   If dependencies exist, they are closed as well=0A=
*/=0A=
function collapseBranch(oDoc,oBranch) {=0A=
	var nIdt=3D decodeIdt(oBranch.className); // decodeBranch(oDoc,oBranch);=0A=
	var oLeav=3D oDoc.getElementById("leav_" + nIdt[2] + "_");=0A=
	var j=3D 0;=0A=
	var nJ=3D 0;=0A=
	=0A=
		=0A=
	// If branch is not frozen to Closed or Open: close the branch=0A=
	if (nIdt[3] =3D=3D "A") {=0A=
		if (oLeav !=3D null) oLeav.style.display=3D 'none';=0A=
		=0A=
		var oImg=3D oDoc.images["img_" + nIdt[2] + "_"];=0A=
		if (oImg !=3D null) {=0A=
			if (oImg.src.toLowerCase().indexOf(gOpenIcon) >=3D 0) { oImg.src=3D =
gRoot + gFolderIcon;}=0A=
		}=0A=
=0A=
	}=0A=
	=0A=
	// If branch is not frozen to Closed: collapse children=0A=
	if (nIdt[3] !=3D "C") {=0A=
      	      =0A=
   	if (oLeav !=3D null) {=0A=
	   	var nDiv=3D oLeav.getElementsByTagName("div");=0A=
		   nJ=3D (nDiv !=3D null)?nDiv.length:0;=0A=
   	}=0A=
      =0A=
   	//Scan all DIV tags of the branch=0A=
	   for(j=3D0; j < nJ; j++) {=0A=
		   var sType=3D (nDiv[j].id !=3D =
null)?nDiv[j].id.toLowerCase().substr(0,4):"";=0A=
         =0A=
   		if (sType =3D=3D "dep_") {=0A=
	   		//Convention: une branche DEP ne peut etre forcee ouverte que si =
toute la branche en amont l'est.=0A=
		   	var nParentIdt=3D decodeParentBranches(oDoc, nDiv[j],1000);=0A=
			   =0A=
   			if (nParentIdt[4] !=3D "O") {=0A=
	   			//Calling dependency is collapsed=0A=
		   		nDiv[j].style.display=3D 'none';=0A=
				   =0A=
   				//Called dependency is collapsed as well. Recursive call to =
collapse the dependent branch=0A=
	   			var oBrc_Dep=3D oDoc.getElementById("brc_" + nDiv[j].id.substr(4) =
);=0A=
		   		if (oBrc_Dep !=3D null) {=0A=
					               		=0A=
			   		oBrc_Dep.style.display=3D 'none';=0A=
=0A=
   					collapseBranch(oDoc,oBrc_Dep);=0A=
	   			}=0A=
		   	}=0A=
   		}=0A=
         else if (sType =3D=3D "brc_") {=0A=
   			//Collapse the branch if parameter 'Block' allows it=0A=
	   		var nChildIdt=3D decodeIdt(nDiv[j].className); // =
decodeBranch(oDoc,nDiv[j]);=0A=
		   	if (nChildIdt[3] =3D=3D "A") {=0A=
			   	var oLeav=3D oDoc.getElementById("leav_" + nDiv[j].id.substr(4) );=0A=
   				if (oLeav !=3D null) oLeav.style.display=3D 'none';=0A=
				=0A=
   				var oImg=3D oDoc.images["img_" + nDiv[j].id.substr(4)];=0A=
   				if (oImg !=3D null) {=0A=
   				   if (oImg.src.toLowerCase().indexOf(gOpenIcon) >=3D 0) { =
oImg.src=3D gRoot + gFolderIcon; }=0A=
			   	}=0A=
   			}=0A=
	   	}=0A=
	   }=0A=
	}=0A=
	=0A=
}=0A=
=0A=
=0A=
/* This function expands the specified branch and show the dependencies. =0A=
   The children of the branch are not expanded.=0A=
*/=0A=
function ellapseBranch(oDoc,oBranch) {=0A=
	var nIdt=3D decodeIdt(oBranch.className); // decodeBranch(oDoc,oBranch);=0A=
	var oLeav=3D oDoc.getElementById("leav_" + nIdt[2] + "_");=0A=
	=0A=
	// If branch is not frozen to Closed or Open: open the branch=0A=
	if (nIdt[3] =3D=3D "A") {=0A=
		if (oLeav !=3D null) oLeav.style.display=3D 'block';=0A=
		=0A=
		var oImg=3D oDoc.images["img_" + nIdt[2] + "_"];=0A=
		if (oImg !=3D null) {=0A=
			if (oImg.src.toLowerCase().indexOf(gFolderIcon) >=3D 0) { oImg.src=3D =
gRoot + gOpenIcon;}=0A=
		}	=0A=
	}=0A=
	=0A=
	// If branch is not frozen to Closed: expand dependencies=0A=
	if (nIdt[3] !=3D "C") {=0A=
		var j=3D 0;=0A=
	   var nJ=3D 0;=0A=
	   =0A=
      if (oLeav !=3D null) {=0A=
		   var nDiv=3D oLeav.getElementsByTagName("div");=0A=
		   nJ=3D (nDiv !=3D null)?nDiv.length:0;=0A=
		}=0A=
=0A=
		for(j=3D0; j < nJ; j++) {=0A=
			var sType=3D (nDiv[j].id !=3D =
null)?nDiv[j].id.toLowerCase().substr(0,4):"";=0A=
			=0A=
			if (sType =3D=3D "dep_") {=0A=
				var nA=3D decodeIdt(nDiv[j].className); // =
decodeBranch(oDoc,nDiv[j]);=0A=
				// Only children with level n+1 are processed=0A=
				if (nA[0] =3D=3D nIdt[0]+1) {=0A=
					//All triggered dependencies are displayed except those with =
parameter 'Block' to Closed=0A=
							=0A=
					var oBrc_Dep=3D oDoc.getElementById("brc_" + nDiv[j].id.substr(4) );=0A=
					if (oBrc_Dep !=3D null) {=0A=
						var nAdep=3D decodeParentBranches(oDoc,oBrc_Dep,1000);=0A=
												=0A=
						//Calling and called dependencies must be visible=0A=
						if (nAdep[4] !=3D "C") {=0A=
							nDiv[j].style.display=3D 'block';=0A=
							=0A=
							oBrc_Dep.style.display=3D 'block';=0A=
						}=0A=
					}=0A=
				}=0A=
			}=0A=
				=0A=
		}=0A=
	}=0A=
}=0A=

------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: application/octet-stream
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/scripts/helpbox.js

=EF=BB=BF=0A=
// This function displays an Help box=0A=
// sID: refers to a DIV.id block which must respect the grammar: id=3D =
sID=0A=
// The DIV block must contain the text to display in the helpbox. It can =
include HTML tags.=0A=
function showHelp(sID) {=0A=
	showPopUpWithSize("help"+sID,"Help - Aide - =
Hilfe","height=3D200,width=3D400");=0A=
	=0A=
}=0A=
=0A=
function showPopUp(sID,sTitle) {=0A=
	showPopUpWithSize(sID,sTitle,"height=3D200,width=3D400");=0A=
	=0A=
}=0A=
=0A=
function showPopUpWithSize(sID,sTitle,sSize) {=0A=
	var oDiv=3D document.getElementById(sID);=0A=
	var nCss=3Ddocument.getElementsByTagName("Link");=0A=
	var j=3D0;=0A=
	var bLink=3D 0;=0A=
		=0A=
	if (oDiv !=3D null) {=0A=
	   var sParam=3D (sSize !=3D =
"")?(sSize+",top=3D100,left=3D100,location=3Dno,scrollbars=3Dyes"):"heigh=
t=3D200,width=3D400,top=3D100,left=3D100,location=3Dno,scrollbars=3Dyes";=0A=
		var oHdl=3D window.open("","_blank",sParam);=0A=
			=0A=
		var sHTML=3D "<html><head><META http-equiv=3D'content-type' =
content=3D'text/html; charset=3Dutf-8'><title>"+ sTitle + "</title>";=0A=
		=0A=
		while ((j < nCss.length)) {=0A=
			bLink=3D (nCss[j].href !=3D =
null)?(nCss[j].href.toLowerCase().indexOf(".css") > 0):0;=0A=
			if (bLink) { sHTML=3D sHTML + "<link rel=3D'stylesheet' =
type=3D'text/css' href=3D'" + nCss[j].href + "' />"; }=0A=
			j++;=0A=
		}=0A=
			=0A=
		=0A=
		sHTML=3D sHTML + "</head><body class=3D'answer'><br/>" + =
oDiv.innerHTML + "</body></html>";=0A=
			=0A=
		oHdl.document.write(sHTML);=0A=
		oHdl.document.close();=0A=
	}	=0A=
	   =0A=
}=0A=
=0A=
	=0A=
	function checkNoHtml(element)=0A=
	{=0A=
		if (element =3D=3D null) return true;=0A=
		if (element.value =3D=3D null) return true;=0A=
	=0A=
		var arr =3D element.value.split(/\n/g);=0A=
		=0A=
		for (i=3D0;i<arr.length;i++)=0A=
		{=0A=
			var str =3D arr[i];=0A=
			if (str.match(/([\<])([^\>]{1,})*([\>])/i) !=3D null)=0A=
			{=0A=
				return false;=0A=
			}=0A=
		}=0A=
		=0A=
		return true;=0A=
		=0A=
	}
------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: application/octet-stream
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/scripts/print_v2.js

//Hauteur de page en px: empirique !=0A=
var giPgSize =3D 900;=0A=
=0A=
//Dimension de la largeur de papier (empirique!)=0A=
var giPgWidth =3D 600;=0A=
=0A=
=0A=
var gbPrepare =3D 0;=0A=
=0A=
=0A=
function preparePrintTree() {=0A=
	// Swap the current stylesheet (ipm.css) with the stylesheet dedicated =
to printing (ipm_print.css)=0A=
	// Hide the header and footer blocks: "expl_top" and "expl_end".=0A=
	// This function should be called before printing.=0A=
	// The global variable gbPrepare is set to true (1).=0A=
	=0A=
	var nCss=3Ddocument.getElementsByTagName("Link");=0A=
	var j=3D0;=0A=
	var bLink=3D 0;=0A=
		=0A=
	while ((j < nCss.length) && (!bLink)) {=0A=
		bLink=3D (nCss[j].href !=3D =
null)?(nCss[j].href.toLowerCase().indexOf("ipm.css") > 0):0;=0A=
		j++;=0A=
	}=0A=
	if (bLink) {=0A=
		var i=3D nCss[j - 1].href.toLowerCase().indexOf(".css");=0A=
		nCss[j - 1].href =3D nCss[j - 1].href.substr(0,i) + "print" + nCss[j - =
1].href.substr(i);=0A=
	}	=0A=
	=0A=
	=0A=
	var oDivTop=3D document.getElementById("expl_top");=0A=
	if (oDivTop !=3D null) oDivTop.style.display=3D "none";=0A=
	=0A=
	var oDivEnd=3D document.getElementById("expl_end");=0A=
	if (oDivEnd !=3D null) oDivEnd.style.display=3D "none";=0A=
	=0A=
	var oRootLeav=3D document.getElementById("leav_0_");=0A=
	if (oRootLeav !=3D null) {=0A=
	   oRootLeav.style.width=3D giPgWidth + "px";=0A=
	}=0A=
	=0A=
	gbPrepare=3D 1;=0A=
}=0A=
=0A=
function managePrintTree() {=0A=
   // Add Page break before the relevant DIV depending their offset =
position=0A=
   // This function calls first preparePrintTree()=0A=
   	=0A=
	var oRoot=3D document.getElementById("leav_0_");=0A=
	var nDiv =3D oRoot.getElementsByTagName("div");=0A=
	var aoffset=3D new Array();=0A=
	var iabsPrev=3D 0;=0A=
   var iPgJmp=3D -1;=0A=
	var j =3D 0;=0A=
	var iPg=3D 0;=0A=
	=0A=
	// Prepare the layout if necessary	=0A=
	if (!gbPrepare) preparePrintTree();=0A=
=0A=
   //root:=0A=
	aoffset[0]=3D oRoot.offsetTop;=0A=
	   =0A=
=0A=
	for(j=3D0; j < nDiv.length; j++) {=0A=
		var iBrch =3D (nDiv[j].id !=3D =
null)?nDiv[j].id.toLowerCase().indexOf("brc_"):-1 ;=0A=
			=0A=
		if (iBrch >=3D 0) {=0A=
			var nIdt=3D (nDiv[j].className.toLowerCase().indexOf("idt_") =3D=3D =
0)?(nDiv[j].className.split("_")):(new Array("x",-1));            =0A=
         nIdt[1] =3D parseFloat(nIdt[1]);=0A=
            =0A=
         // Only process relevant and visible branches=0A=
         if ((nIdt[1] > 0) && (nDiv[j].offsetTop >=3D 0)) {=0A=
            aoffset[nIdt[1]]=3D aoffset[(nIdt[1]-1)] + nDiv[j].offsetTop;=0A=
               =0A=
            if (nIdt[1]=3D=3D 1) {=0A=
               // New page: always page break except first one=0A=
               if (iPg > 0) {=0A=
                  //alert(nDiv[j].className + ", Rel offset=3D" + =
nDiv[j].offsetTop + ", Abs. offset=3D " + aoffset[nIdt[1]] );=0A=
                  nDiv[j].style.pageBreakBefore=3D"always";=0A=
   				   iPgJmp =3D aoffset[nIdt[1]];=0A=
   				}=0A=
   				iPg++;=0A=
            }=0A=
            else {=0A=
               if ((aoffset[nIdt[1]] > iabsPrev) && (aoffset[nIdt[1]] + =
nDiv[j].offsetHeight - iPgJmp >=3D giPgSize)) {=0A=
                  var aRest=3D nDiv[j].offsetHeight - =
((nDiv[j].offsetHeight % giPgSize)*giPgSize);=0A=
                     =0A=
                  if (((nDiv[j].offsetHeight >=3D giPgSize) && =
(aoffset[nIdt[1]]+ aRest - iPgJmp > giPgSize)) || (nDiv[j].offsetHeight =
< giPgSize)) {=0A=
                     //alert(nDiv[j].className + ", Rel offset=3D" + =
nDiv[j].offsetTop + ", Abs. offset=3D " + aoffset[nIdt[1]] );=0A=
                     nDiv[j].style.pageBreakBefore=3D"always";=0A=
   	   			   iPgJmp =3D aoffset[nIdt[1]];=0A=
   		   		}=0A=
	   	      }=0A=
	   	   }=0A=
				iabsPrev =3D aoffset[nIdt[1]];				   				   =0A=
		   }	=0A=
		}=0A=
   }=0A=
}
------=_NextPart_000_0000_01CF3206.19C88D00
Content-Type: application/octet-stream
Content-Transfer-Encoding: quoted-printable
Content-Location: http://ec.europa.eu/yourvoice/ipm/forms/scripts/progressBar.js

function progressbar_stop() {=0A=
	var p =3D parent;=0A=
	if (p !=3D null) {=0A=
		var ban =3D parent.banner;=0A=
		// if the method does not exits it means the banner is not yet loaded=0A=
		=0A=
		if (ban !=3D null ) {=0A=
			var oDiv=3D ban.document.getElementById("waitbar");=0A=
			if (oDiv !=3D null) {=0A=
						oDiv.style.display=3D 'none';=0A=
						oDiv.style.visibility=3D 'hidden';				=0A=
			} else {=0A=
			setTimeout('progressbar_retrystop()',500);=0A=
			}	=0A=
		}=0A=
		else {=0A=
			setTimeout('progressbar_retrystop()',500);=0A=
		}=0A=
	} else {=0A=
			setTimeout('progressbar_retrystop()',500);=0A=
		}=0A=
}=0A=
=0A=
function progressbar_retrystop() {=0A=
	var p =3D parent;=0A=
	if (p !=3D null) {=0A=
		var ban =3D parent.banner;=0A=
		// if the method does not exits it means the banner is not yet loaded=0A=
		if (ban !=3D null ) {=0A=
		var oDiv=3D ban.document.getElementById("waitbar");=0A=
			if (oDiv !=3D null) {=0A=
						oDiv.style.display=3D 'none';=0A=
						oDiv.style.visibility=3D 'hidden';	=0A=
			} else {=0A=
			setTimeout('progressbar_stop()',500);=0A=
			}=0A=
		} =0A=
		else {=0A=
			setTimeout('progressbar_stop()',500);=0A=
		}=0A=
	} else {=0A=
			setTimeout('progressbar_stop()',500);=0A=
		}=0A=
}=0A=
=0A=
function progressbar_start() {=0A=
	var p =3D parent;=0A=
	if (p !=3D null) {=0A=
		var ban =3D parent.banner;=0A=
		=0A=
		if (ban !=3D null) {=0A=
			//ban.progress_start();		=0A=
		} =0A=
	}=0A=
}=0A=
=0A=
// use <script src=3D"scripts/progressBar.js"/>=0A=
// and before </body> use <script =
language=3D"javascript">progressbar_stop();</script>
------=_NextPart_000_0000_01CF3206.19C88D00--
