block by gka 1386389

NUTS-2 Map of the European Union

Full Screen

404: Not Found

index.html

<!DOCTYPE html>
<html>
<head>
<title>svgmap</title>
<script src="//svgmap.github.com/lib/jquery.min.js"></script>
<script src="jquery.qtip.min.js"></script>
<script src="//svgmap.github.com/lib/raphael-min.js"></script>
<script src="svgmap.min.js"></script>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="jquery.qtip.css" />
<script>
	$.extend({
		getUrlVars: function() {
			var vars = {},
			parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) { vars[key] = value; });
			return vars;
		}
	});
</script>
<script>

	$(function() {
		
		window.map = new svgmap.SVGMap('#map');
		
		var proj = $.getUrlVars()['proj'];
		if (proj == null) proj = 'lcc';
		
		$('#proj li.'+proj).addClass('selected');
		
		map.loadMap('eu-nuts-'+proj+'.svg', function() {

			map.addLayer('countries','bg');
			map.addLayer('graticule');
			map.addLayer('layer','nuts');
			
			// load income data
			$.ajax({
				url: 'nuts-regions.json',
				success: function(nutsRegionNames) {
				
					$.ajax({
						url: 'eu-disposable-incomes.csv',
						success: function(csv) {
							var rows = csv.split('\n'), // split csv into rows
								head = rows[0].split('\t'); // store header
							rows = rows.slice(1); // and remove it from rows
							var data = [], regionsByNuts = {}, i,j;
							
							for (j in head) {
								if (j>0) {
									$('ul#years').append('<li class="'+head[j].trim()+'">'+head[j].trim().substr(2)+'</li>');
								}
							}
							
							$('ul#years li').click(function(evt) {
								setYear(evt.target.className);
							});
							
							for (i in rows) {
								var row = rows[i].split('\t');
								var region = {};
								region['nuts-id'] = row[0];
								for (j in head) {
									if (j>0 && row[j]) 
										region[head[j].trim()] = Number(row[j].trim());
								}
								data.push(region);
								regionsByNuts[row[0]] = region;
							}
							
							var Color = svgmap.color.Color, // '#d73027','#ffffff','#1E6189'
								colorscale = new svgmap.color.Diverging(new Color(30,1,.6,'hsl'), '#ffffff', new Color(220,1,.6,'hsl'),'mean');
							
							
							window.setYear = function(yr) {
								map.choropleth('nuts', data, 'nuts-id', yr, colorscale);
								
								$('#map .polygon.nuts').each(function(i,el) {
									var nutsid = el.path.data['nuts-id'], income;
									if (regionsByNuts[nutsid] && !isNaN(regionsByNuts[nutsid][yr])) {
										income = Math.round(regionsByNuts[nutsid][yr])+' &euro;';
											
									} else {
										income = 'no data';
									}
									var tipContent = '<b>'+nutsRegionNames[nutsid]+'</b><br />'+income+'';
									$(this).qtip({ content: { text: tipContent }, show: { delay: 20 } });
								});
								
								$('ul#years li').removeClass('selected');
								$('ul#years li.'+yr).addClass('selected');
							};
							
							map.addLayerEvent('nuts', 'click', function(evt) {
								var nutsid = evt.target.path.data['nuts-id'];
								var income = regionsByNuts[nutsid]['2007'];
							});
							
							setYear('2007','median');

						}
					});
				}
			});
		});
	});
</script>
</head>
<body>
	<div id="about">
		<h1>Private Incomes across European Regions</h1>
		<p>This map shows the disposable incomes of private households of European NUTS-2 regions. The data is taken from <a href="//epp.eurostat.ec.europa.eu/tgm/table.do?tab=table&init=1&plugin=1&language=en&pcode=tgs00026">Eurostat</a>. It's intended as a showcase for svgmap framework.</p>
		
		<h2>Select year:</h2>
		<ul id="years"></ul>
		
		<h2>Change map projection:</h2>
		<ul id="proj">
			<li class="lcc"><a href="?proj=lcc">Lambert Conformal Conic</a><br />the gold standard for EU maps</li>
			<li class="laea"><a href="?proj=laea">Lambert Azimuthal Equal Area</a><br />almost the same as above</li>
			<li class="mollweide"><a href="?proj=mollweide">Mollweide</a><br />another beautiful equal area projection</li>
			<li class="loximuthal"><a href="?proj=loximuthal">Loximuthal, centered on Brussels</a><br />if you want to compare distances to Brussels</li>
			<li class="satellite"><a href="?proj=satellite">Satellite view from 3000km above Tunesia</a><br />reminds us that the Earth's not flat</li>
			<li class="cea"><a href="?proj=cea">Cylindrical Equal Area</a><br />if you really need a rectangular projection</li>
			<li class="mercator"><a href="?proj=mercator">Mercator</a><br />if you're not really into maps<a href="//xkcd.com/977/">*</a></li>
		</ul>
	</div>
	
	<div id="map">
		
	</div>
</body>
</html>

eu-life-exp.csv

geo	F	M	T	F/M	F-M
AT11	84.2	77.5	80.9	1.0864516129	6.7
AT12	82.7	77.4	80.1	1.0684754522	5.3
AT13	82.1	76.5	79.5	1.0732026144	5.6
AT21	83.8	77.8	80.8	1.0771208226	6
AT22	83.5	77.7	80.6	1.0746460746	5.8
AT31	83.5	77.9	80.8	1.0718870347	5.6
AT32	83.9	78.8	81.4	1.0647208122	5.1
AT33	84.4	78.6	81.6	1.0737913486	5.8
AT34	84.4	78.8	81.7	1.0710659898	5.6
BE10	82.6	77	80	1.0727272727	5.6
BE21	82.9	78.6	80.8	1.0547073791	4.3
BE22	83.5	78.8	81.2	1.0596446701	4.7
BE23	83.3	77.5	80.4	1.0748387097	5.8
BE24	84.1	78.8	81.5	1.0672588832	5.3
BE25	83.6	78.2	80.9	1.0690537084	5.4
BE31	83.1	78.5	80.9	1.0585987261	4.6
BE32	80.9	74.5	77.8	1.0859060403	6.4
BE33	81.6	76	78.8	1.0736842105	5.6
BE34	81.7	75.9	78.8	1.0764163373	5.8
BE35	82	75.4	78.7	1.0875331565	6.6
BG31	76.6	69.7	73.1	1.0989956958	6.9
BG32	77.4	69.6	73.4	1.1120689655	7.8
BG33	77	69.7	73.2	1.1047345768	7.3
BG34	76.6	69.6	73	1.1005747126	7
BG41	78.1	70.5	74.3	1.1078014184	7.6
BG42	77.9	70.8	74.3	1.1002824859	7.1
CH01	85	79.6	82.4	1.067839196	5.4
CH02	84.6	79.4	82.1	1.0654911839	5.2
CH03	84.2	80	82.2	1.0525	4.2
CH04	84.7	80.4	82.6	1.0534825871	4.3
CH05	84.2	79.9	82.2	1.0538172716	4.3
CH06	84.2	80.1	82.2	1.0511860175	4.1
CH07	86.3	80.7	83.7	1.0693928129	5.6
CY00	83.6	78.6	81.1	1.0636132316	5
CZ01	81.4	76.5	79.1	1.0640522876	4.9
CZ02	80.2	74.1	77.2	1.0823211876	6.1
CZ03	80.4	74.8	77.6	1.0748663102	5.6
CZ04	79.1	72.2	75.6	1.095567867	6.9
CZ05	80.9	74.7	77.9	1.0829986613	6.2
CZ06	81.3	74.8	78.1	1.0868983957	6.5
CZ07	80.7	73.8	77.2	1.093495935	6.9
CZ08	79.7	72.7	76.2	1.0962861073	7
DE11	84.1	79.5	81.8	1.0578616352	4.6
DE12	83.4	78.8	81.1	1.0583756345	4.6
DE13	83.8	79.6	81.7	1.0527638191	4.2
DE14	84	79.5	81.8	1.0566037736	4.5
DE21	83.7	79.2	81.5	1.0568181818	4.5
DE22	82.9	77.3	80.1	1.0724450194	5.6
DE23	82.8	77.3	80	1.0711513583	5.5
DE24	82.4	77	79.7	1.0701298701	5.4
DE25	83	77.7	80.4	1.0682110682	5.3
DE26	83.3	78.7	81	1.0584498094	4.6
DE27	83.1	78.6	80.9	1.0572519084	4.5
DE30	82.7	77.9	80.3	1.0616174583	4.8
DE50	81.9	76.8	79.4	1.06640625	5.1
DE60	82.6	78.3	80.5	1.054916986	4.3
DE71	83.3	79	81.2	1.0544303797	4.3
DE72	82.9	78	80.5	1.0628205128	4.9
DE73	82.8	77.7	80.2	1.0656370656	5.1
DE80	82.5	75.7	79.1	1.0898282695	6.8
DE91	82.7	77.4	80.1	1.0684754522	5.3
DE92	82.7	77.7	80.2	1.0643500644	5
DE93	82.4	77.3	79.9	1.0659767141	5.1
DE94	82.5	77.3	79.9	1.0672703752	5.2
DEA1	82.1	77.1	79.6	1.0648508431	5
DEA2	82.6	78.2	80.4	1.0562659847	4.4
DEA3	82.3	77.3	79.9	1.064683053	5
DEA4	83	77.9	80.5	1.0654685494	5.1
DEA5	82.2	77	79.6	1.0675324675	5.2
DEB1	82.3	77.6	79.9	1.0605670103	4.7
DEB2	82.6	77.9	80.3	1.0603337612	4.7
DEB3	82.6	78.1	80.4	1.0576184379	4.5
DEC0	81.8	76.8	79.3	1.0651041667	5
DED1	83.2	76.7	80	1.0847457627	6.5
DED2	83.8	77.5	80.6	1.0812903226	6.3
DED3	83.3	77.3	80.4	1.0776196636	6
DEE0	82	75.6	78.8	1.0846560847	6.4
DEF0	82.4	77.7	80.1	1.0604890605	4.7
DEG0	82.4	76.6	79.5	1.0757180157	5.8
DK01	80.9	76.6	78.9	1.0561357702	4.3
DK02	80.5	76.2	78.3	1.0564304462	4.3
DK03	81.1	76.8	79	1.0559895833	4.3
DK04	82	77.5	79.7	1.0580645161	4.5
DK05	80.6	77.2	78.9	1.0440414508	3.4
EE00	80.2	69.8	75.2	1.1489971347	10.4
ES11	84.9	78.1	81.5	1.0870678617	6.8
ES12	84.3	77.6	81	1.0863402062	6.7
ES13	85.7	78.6	82.1	1.0903307888	7.1
ES21	85.7	78.7	82.2	1.0889453621	7
ES22	86.6	80	83.3	1.0825	6.6
ES23	86.1	79.9	82.9	1.0775969962	6.2
ES24	85.5	79.1	82.3	1.0809102402	6.4
ES30	86.1	80.1	83.3	1.074906367	6
ES41	86.1	79.8	82.9	1.0789473684	6.3
ES42	85.3	79.8	82.5	1.0689223058	5.5
ES43	84.7	77.9	81.2	1.0872913992	6.8
ES51	85.1	79.1	82.1	1.0758533502	6
ES52	84.4	78.4	81.4	1.0765306122	6
ES53	84.2	78.5	81.3	1.072611465	5.7
ES61	83.6	77.4	80.5	1.0801033592	6.2
ES62	84	78.3	81.1	1.0727969349	5.7
ES63	81.5	75.8	78.6	1.0751978892	5.7
ES64	82.6	77.9	80.3	1.0603337612	4.7
ES70	84.3	78.7	81.5	1.0711562897	5.6
FI13	83.4	75.2	79.2	1.1090425532	8.2
FI18	83.3	76.8	80.1	1.0846354167	6.5
FI19	83.7	77	80.4	1.087012987	6.7
FI1A	83.6	76.6	80	1.091383812	7
FI20	84.5	79.5	82	1.0628930818	5
FR10	85.7	79.5	82.8	1.0779874214	6.2
FR21	84	76.2	80.1	1.1023622047	7.8
FR22	82.8	75.8	79.3	1.092348285	7
FR23	84	76.5	80.3	1.0980392157	7.5
FR24	84.9	77.6	81.3	1.0940721649	7.3
FR25	84.9	77.4	81.2	1.0968992248	7.5
FR26	84.4	77.4	80.9	1.0904392765	7
FR30	82.6	74.5	78.7	1.1087248322	8.1
FR41	83.8	77	80.5	1.0883116883	6.8
FR42	84.6	78.6	81.7	1.0763358779	6
FR43	84.9	77.9	81.4	1.0898587933	7
FR51	85.6	78.1	81.9	1.0960307298	7.5
FR52	84.6	76.8	80.8	1.1015625	7.8
FR53	85.5	78	81.7	1.0961538462	7.5
FR61	85.4	78.5	82	1.0878980892	6.9
FR62	85.4	79.2	82.4	1.0782828283	6.2
FR63	84.9	77.5	81.2	1.095483871	7.4
FR71	85.6	79	82.4	1.0835443038	6.6
FR72	84.5	77.2	80.9	1.0945595855	7.3
FR81	85.2	77.9	81.6	1.0937098845	7.3
FR82	85.3	78.5	82	1.0866242038	6.8
FR83	85.3	78.9	82.1	1.0811153359	6.4
FR91	85.3	77.8	81.7	1.0964010283	7.5
FR92	84.5	77.8	81.3	1.0861182519	6.7
FR93	81.4	75.2	78.2	1.0824468085	6.2
FR94	82.7	74.9	78.9	1.1041388518	7.8
GR11	81.3	76.1	78.7	1.0683311432	5.2
GR12	82.4	77.8	80.1	1.059125964	4.6
GR13	82.4	78.1	80.2	1.0550576184	4.3
GR14	82.2	77.4	79.8	1.0620155039	4.8
GR21	85.3	79.2	82.2	1.077020202	6.1
GR22	83.4	79.3	81.3	1.051702396	4.1
GR23	83.1	78	80.5	1.0653846154	5.1
GR24	83.1	78.4	80.6	1.0599489796	4.7
GR25	82.8	77.8	80.2	1.0642673522	5
GR30	82.6	77.7	80.1	1.0630630631	4.9
GR41	83.2	77.6	80.4	1.0721649485	5.6
GR42	82.8	78.9	80.8	1.0494296578	3.9
GR43	83.5	78.5	81	1.0636942675	5
HR01	79.7	72.7	76.3	1.0962861073	7
HR02	78.2	71.3	74.8	1.0967741935	6.9
HR03	81.2	74.8	78	1.0855614973	6.4
HU10	79.3	72.2	75.9	1.0983379501	7.1
HU21	78.2	69.9	74	1.1187410587	8.3
HU22	79.1	70.8	75	1.1172316384	8.3
HU23	78.2	69.8	74	1.1203438395	8.4
HU31	77.2	68.5	72.9	1.1270072993	8.7
HU32	78.1	69.5	73.8	1.1237410072	8.6
HU33	78.2	70	74.1	1.1171428571	8.2
IE01	82.6	77.8	80.1	1.0616966581	4.8
IE02	82.2	77.4	79.9	1.0620155039	4.8
IS00	83.8	79.8	81.8	1.0501253133	4
ITC1	84.1	79	81.6	1.064556962	5.1
ITC2	84.2	78.8	81.6	1.0685279188	5.4
ITC3	84.2	79.2	81.9	1.0631313131	5
ITC4	84.8	79.4	82.2	1.0680100756	5.4
ITD1	85.7	79.7	82.8	1.0752823087	6
ITD2	85.6	79.6	82.7	1.0753768844	6
ITD3	85.2	79.4	82.4	1.0730478589	5.8
ITD4	84.7	78.9	81.9	1.0735107731	5.8
ITD5	84.9	79.7	82.4	1.0652446675	5.2
ITE1	84.8	79.7	82.3	1.0639899624	5.1
ITE2	84.9	79.7	82.4	1.0652446675	5.2
ITE3	85.5	80.2	82.9	1.066084788	5.3
ITE4	84.4	79.2	82	1.0656565657	5.2
ITF1	85.1	79.2	82.2	1.0744949495	5.9
ITF2	85.3	78.4	81.8	1.0880102041	6.9
ITF3	83.1	77.7	80.5	1.0694980695	5.4
ITF4	84.6	79.5	82.1	1.0641509434	5.1
ITF5	84.7	79.3	82	1.0680958386	5.4
ITF6	84.3	79.1	81.7	1.0657395702	5.2
ITG1	83.4	78.5	81.1	1.0624203822	4.9
ITG2	84.8	79	81.9	1.0734177215	5.8
LI00	83.6	79.5	81.7	1.051572327	4.1
LT00	78.7	67.5	73.2	1.1659259259	11.2
LU00	83.3	78.1	80.8	1.066581306	5.2
LV00	78	68.1	73.3	1.1453744493	9.9
MK00	76.7	72.3	74.4	1.060857538	4.4
MT00	82.7	77.9	80.3	1.0616174583	4.8
NL11	82	78.2	80.1	1.0485933504	3.8
NL12	83.1	78.4	80.8	1.0599489796	4.7
NL13	83	78.5	80.8	1.0573248408	4.5
NL21	82.8	78	80.5	1.0615384615	4.8
NL22	82.8	78.5	80.8	1.0547770701	4.3
NL23	83.3	78.7	81	1.0584498094	4.6
NL31	83.3	79.3	81.5	1.0504413619	4
NL32	83	78.9	81	1.051964512	4.1
NL33	82.7	78.8	80.9	1.0494923858	3.9
NL34	84	79.4	81.8	1.0579345088	4.6
NL41	83	78.6	80.8	1.0559796438	4.4
NL42	82.6	78.4	80.6	1.0535714286	4.2
NO01	83.1	79.3	81.3	1.0479192938	3.8
NO02	82.5	77.6	80.1	1.0631443299	4.9
NO03	82.6	77.9	80.3	1.0603337612	4.7
NO04	83.6	78.8	81.2	1.0609137056	4.8
NO05	84.6	79.3	82	1.0668348045	5.3
NO06	83.2	79.3	81.3	1.0491803279	3.9
NO07	82.9	78.4	80.7	1.0573979592	4.5
PL11	78.9	69.3	74.1	1.1385281385	9.6
PL12	80.5	71.9	76.2	1.1196105702	8.6
PL21	81.3	73.2	77.2	1.1106557377	8.1
PL22	79.3	71.1	75.2	1.1153305204	8.2
PL31	80.5	70.8	75.6	1.1370056497	9.7
PL32	81.3	73.2	77.2	1.1106557377	8.1
PL33	81.1	71.7	76.3	1.1311018131	9.4
PL34	81.5	71.8	76.6	1.135097493	9.7
PL41	79.9	72	76	1.1097222222	7.9
PL42	79.9	71	75.4	1.1253521127	8.9
PL43	79.5	70.7	75.2	1.1244695898	8.8
PL51	79.5	70.9	75.3	1.1212976023	8.6
PL52	81	72.8	76.9	1.1126373626	8.2
PL61	79.5	71.3	75.4	1.1150070126	8.2
PL62	80	70.7	75.3	1.1315417256	9.3
PL63	80.4	72.5	76.5	1.1089655172	7.9
PT11	82.9	77.1	80.1	1.075226978	5.8
PT15	82.2	76.2	79.1	1.0787401575	6
PT16	83.1	77.2	80.2	1.0764248705	5.9
PT17	82.5	76.4	79.6	1.0798429319	6.1
PT18	81.9	75.5	78.7	1.0847682119	6.4
PT20	79.5	71.6	75.4	1.1103351955	7.9
PT30	78.9	71.1	75.2	1.1097046414	7.8
RO11	76.6	69.4	73	1.1037463977	7.2
RO12	77.5	70.1	73.7	1.1055634807	7.4
RO21	77.4	69.7	73.4	1.1104734577	7.7
RO22	77.4	69.1	73.1	1.1201157742	8.3
RO31	77.1	69.2	73.1	1.1141618497	7.9
RO32	78.5	71.4	75.1	1.0994397759	7.1
RO41	76.8	69.6	73.1	1.1034482759	7.2
RO42	76.5	69.6	73.1	1.099137931	6.9
SE11	84.2	79.9	82.1	1.0538172716	4.3
SE12	83.2	79.2	81.2	1.0505050505	4
SE21	83.9	79.8	81.8	1.0513784461	4.1
SE22	83.5	79.7	81.7	1.0476787955	3.8
SE23	83.7	79.6	81.7	1.0515075377	4.1
SE31	82.6	78.6	80.6	1.0508905852	4
SE32	82.8	78.4	80.6	1.056122449	4.4
SE33	83.2	79	81.1	1.053164557	4.2
SI01	82	74.7	78.4	1.0977242303	7.3
SI02	83.5	77.3	80.5	1.0802069858	6.2
SK01	80.2	73.7	77.1	1.0881953867	6.5
SK02	79.2	71.5	75.4	1.1076923077	7.7
SK03	79	70.6	74.8	1.11898017	8.4
SK04	78.8	71.1	75	1.1082981716	7.7
UKC1	80.6	76.5	78.6	1.0535947712	4.1
UKC2	80.8	76.6	78.7	1.0548302872	4.2
UKD1	81.6	77.8	79.8	1.0488431877	3.8
UKD2	81.6	78.3	80	1.0421455939	3.3
UKD3	80.4	76	78.2	1.0578947368	4.4
UKD4	80.8	76.4	78.6	1.057591623	4.4
UKD5	80	76	78.1	1.0526315789	4
UKE1	81.7	76.8	79.3	1.0638020833	4.9
UKE2	83.1	79.5	81.3	1.0452830189	3.6
UKE3	80.9	76.9	79	1.0520156047	4
UKE4	81.1	76.7	78.9	1.0573663625	4.4
UKF1	81.6	77.8	79.7	1.0488431877	3.8
UKF2	82.3	78.3	80.3	1.0510855683	4
UKF3	81.8	78.2	80	1.0460358056	3.6
UKG1	82.8	78.7	80.8	1.0520965693	4.1
UKG2	81.6	77.7	79.7	1.0501930502	3.9
UKG3	81.2	76.5	78.9	1.0614379085	4.7
UKH1	83.1	79.3	81.2	1.0479192938	3.8
UKH2	82.4	79	80.8	1.0430379747	3.4
UKH3	82.7	79	81	1.046835443	3.7
UKI1	82.6	77.5	80.1	1.0658064516	5.1
UKI2	83.1	79.1	81.2	1.0505689001	4
UKJ1	83.4	79.5	81.5	1.0490566038	3.9
UKJ2	83.5	79.8	81.7	1.0463659148	3.7
UKJ3	83.2	79.6	81.5	1.0452261307	3.6
UKJ4	82.5	78.8	80.7	1.0469543147	3.7
UKK1	83	79	81.1	1.0506329114	4
UKK2	83.5	79.3	81.4	1.05296343	4.2
UKK3	82.8	78.9	80.9	1.0494296578	3.9
UKK4	83.1	79.3	81.3	1.0479192938	3.8
UKL1	81.1	76.9	79	1.0546163849	4.2
UKL2	82.3	77.9	80.2	1.0564826701	4.4
UKM2	80.7	76.4	78.6	1.0562827225	4.3
UKM3	79.1	74	76.6	1.0689189189	5.1
UKM5	79.3	75.1	77.2	1.0559254328	4.2
UKM6	82.9	78	80.5	1.0628205128	4.9
UKN0	81.3	76.7	79	1.0599739244	4.6

jquery.qtip.css

/*
* qTip2 - Pretty powerful tooltips
* http://craigsworks.com/projects/qtip2/
*
* Version: nightly
* Copyright 2009-2010 Craig Michael Thompson - http://craigsworks.com
*
* Dual licensed under MIT or GPLv2 licenses
*   http://en.wikipedia.org/wiki/MIT_License
*   http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Mon Nov 21 13:18:18.0000000000 2011
*/

/* Core qTip styles */
.ui-tooltip, .qtip{
	position: absolute;
	left: -28000px;
	top: -28000px;
	display: none;

	max-width: 280px;
	min-width: 50px;
	
	font-size: 12px;
	line-height: 15px;

	z-index: 15000;
}

	/* Fluid class for determining actual width in IE */
	.ui-tooltip-fluid{
		display: block;
		visibility: hidden;
		position: static !important;
		float: left !important;
	}

	.ui-tooltip-content{
		position: relative;
		padding: 5px 9px;
		overflow: hidden;
		
		border-width: 1px;
		border-style: solid;
		
		text-align: left;
		word-wrap: break-word;
		overflow: hidden;
	}

	.ui-tooltip-titlebar{
		position: relative;
		min-height: 14px;
		padding: 5px 35px 5px 10px;
		overflow: hidden;
		
		border-width: 1px 1px 0;
		border-style: solid;

		font-weight: bold;
	}

	.ui-tooltip-titlebar + .ui-tooltip-content{ border-top-width: 0px !important; }

		/*! Default close button class */
		.ui-tooltip-titlebar .ui-state-default{
			position: absolute;
			right: 4px;
			top: 50%;
			margin-top: -9px;

			cursor: pointer;
			outline: medium none;

			border-width: 1px;
			border-style: solid;
		}
		
		* html .ui-tooltip-titlebar .ui-state-default{ top: 16px; } /* IE fix */

		.ui-tooltip-titlebar .ui-icon,
		.ui-tooltip-icon .ui-icon{
			display: block;
			text-indent: -1000em;
		}

		.ui-tooltip-icon, .ui-tooltip-icon .ui-icon{
			-moz-border-radius: 3px;
			-webkit-border-radius: 3px;
			border-radius: 3px;
		}

			.ui-tooltip-icon .ui-icon{
				width: 18px;
				height: 14px;

				text-align: center;
				text-indent: 0;
				font: normal bold 10px/13px Tahoma,sans-serif;

				color: inherit;
				background: transparent none no-repeat -100em -100em;
			}


/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
.ui-tooltip-focus{

}

/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
.ui-tooltip-hover{
	
}


/*! Default tooltip style */
.ui-tooltip-default .ui-tooltip-titlebar,
.ui-tooltip-default .ui-tooltip-content{
	border-color: #777;
	background-color: #fff;
	color: #000;
}

	.ui-tooltip-default .ui-tooltip-titlebar{
		background-color: #FFEF93;
	}

	.ui-tooltip-default .ui-tooltip-icon{
		border-color: #CCC;
		background: #F1F1F1;
		color: #777;
	}
	
	.ui-tooltip-default .ui-tooltip-titlebar .ui-state-hover{
		border-color: #AAA;
		color: #111;
	}

nuts-regions.json

{"SK04": "V\u00fdchodn\u00e9 Slovensko", "NO02": "Hedmark og Oppland", "SK02": "Z\u00e1padn\u00e9 Slovensko", "HR02": "Sredisnja i Istocna Hrvatska", "SK01": "Bratislavsk\u00fd kraj", "ITE4": "Lazio", "UKE1": "East Yorkshire and Northern Lincolnshire", "IS00": "\u00cdsland", "ITE1": "Toscana", "ITE2": "Umbria", "ITE3": "Marche", "AT21": "K\u00e4rnten", "AT22": "Steiermark", "GR43": "Kriti", "GR42": "Notio Aigaio", "GR41": "Voreio Aigaio", "ES13": "Cantabria", "ES12": "Principado de Asturias", "ES11": "Galicia", "NO06": "Tr\u00f8ndelag", "TR21": "Tekirdag", "TR22": "Balikesir", "SK03": "Stredn\u00e9 Slovensko", "FR22": "Picardie", "FR23": "Haute-Normandie", "FR21": "Champagne-Ardenne", "FR26": "Bourgogne", "FI1A": "Pohjois-Suomi", "FR24": "Centre (FR)", "FR25": "Basse-Normandie", "TR33": "Manisa", "PL42": "Zachodniopomorskie", "PT20": "Regi\u00e3o Aut\u00f3noma dos A\u00e7ores (PT)", "TR32": "Aydin", "PL43": "Lubuskie", "DE60": "Hamburg", "TR31": "Izmir", "HU10": "K\u00f6z\u00e9p-Magyarorsz\u00e1g", "DEB3": "Rheinhessen-Pfalz", "DEB2": "Trier", "DEB1": "Koblenz", "HR01": "Sjeverozapadna Hrvatska", "ES24": "Arag\u00f3n", "ES22": "Comunidad Foral de Navarra", "ES23": "La Rioja", "LV00": "Latvija", "ES21": "Pa\u00eds Vasco", "ITD5": "Emilia-Romagna", "ITD4": "Friuli-Venezia Giulia", "ITD3": "Veneto", "ITD2": "Provincia Autonoma Trento", "ITD1": "Provincia Autonoma Bolzano/Bozen", "FI13": "It\u00e4-Suomi", "DK03": "Syddanmark", "DK02": "Sj\u00e6lland", "DK01": "Hovedstaden", "FI18": "Etel\u00e4-Suomi", "FI19": "L\u00e4nsi-Suomi", "DK05": "Nordjylland", "DK04": "Midtjylland", "UKN0": "Northern Ireland (UK)", "BG41": "Yugozapaden", "UKC2": "Northumberland and Tyne and Wear", "LI00": "Liechtenstein", "RO41": "Sud-Vest Oltenia", "PT30": "Regi\u00e3o Aut\u00f3noma da Madeira (PT)", "RO42": "Vest", "FR30": "Nord - Pas-de-Calais", "TRB2": "Van", "UKJ4": "Kent", "BG42": "Yuzhen tsentralen", "UKJ2": "Surrey, East and West Sussex", "NL21": "Overijssel", "NL22": "Gelderland", "CH04": "Z\u00fcrich", "DEA2": "K\u00f6ln", "DEA3": "M\u00fcnster", "PL11": "L\u00f3dzkie", "DEA1": "D\u00fcsseldorf", "CH07": "Ticino", "DEA4": "Detmold", "DEA5": "Arnsberg", "ES30": "Comunidad de Madrid", "AT13": "Wien", "ES51": "Catalu\u00f1a", "UKL2": "East Wales", "ITG2": "Sardegna", "ITG1": "Sicilia", "DE30": "Berlin", "TRB1": "Malatya", "CH03": "Nordwestschweiz", "UKM3": "South Western Scotland", "HR03": "Jadranska Hrvatska", "UKM2": "Eastern Scotland", "TR82": "Kastamonu", "TR83": "Samsun", "TR81": "Zonguldak", "Date of extraction": "", "UKJ1": "Berkshire, Buckinghamshire and Oxfordshire", "PL21": "Malopolskie", "UKC1": "Tees Valley and Durham", "FR41": "Lorraine", "FR42": "Alsace", "FR43": "Franche-Comt\u00e9", "TRC3": "Mardin", "FR72": "Auvergne", "TRC1": "Gaziantep", "UKK1": "Gloucestershire, Wiltshire and Bristol/Bath area", "TR51": "Ankara", "TR90": "Trabzon", "NL34": "Zeeland", "NL33": "Zuid-Holland", "NL32": "Noord-Holland", "NL31": "Utrecht", "DE41": "Brandenburg - Nordost", "DE42": "Brandenburg - S\u00fcdwest", "RO31": "Sud - Muntenia", "RO32": "Bucuresti - Ilfov", "UKJ3": "Hampshire and Isle of Wight", "UKM6": "Highlands and Islands", "UKM5": "North Eastern Scotland", "TR52": "Konya", "SI01": "Vzhodna Slovenija", "TR10": "Istanbul", "DE27": "Schwaben", "DE26": "Unterfranken", "DE25": "Mittelfranken", "DE24": "Oberfranken", "DE23": "Oberpfalz", "DE22": "Niederbayern", "DE21": "Oberbayern", "TRC2": "Sanliurfa", "PL12": "Mazowieckie", "ITC2": "Valle d'Aosta/Vall\u00e9e d'Aoste", "ES41": "Castilla y Le\u00f3n", "ES42": "Castilla-la Mancha", "ES43": "Extremadura", "GR11": "Anatoliki Makedonia, Thraki", "GR12": "Kentriki Makedonia", "GR13": "Dytiki Makedonia", "BE10": "R\u00e9g. Bruxelles / Brussels Gewest", "LU00": "Luxembourg", "DEG0": "Th\u00fcringen", "PL33": "Swietokrzyskie", "PL32": "Podkarpackie", "PL34": "Podlaskie", "FR53": "Poitou-Charentes", "FR52": "Bretagne", "FR51": "Pays de la Loire", "UKH1": "East Anglia", "PT17": "Lisboa", "NO01": "Oslo og Akershus", "DE50": "Bremen", "UKE3": "South Yorkshire", "UKD4": "Lancashire", "UKD5": "Merseyside", "RO22": "Sud-Est", "RO21": "Nord-Est", "UKD3": "Greater Manchester", "GR21": "Ipeiros", "TR62": "Adana", "TR63": "Hatay", "TRA1": "Erzurum", "DE12": "Karlsruhe", "DE13": "Freiburg", "DE11": "Stuttgart", "DE14": "T\u00fcbingen", "MT00": "Malta", "DE92": "Hannover", "DE93": "L\u00fcneburg", "DE91": "Braunschweig", "ES53": "Illes Balears", "ES52": "Comunidad Valenciana", "DE94": "Weser-Ems", "FR61": "Aquitaine", "GR25": "Peloponnisos", "FI20": "\u00c5land", "UKL1": "West Wales and The Valleys", "Last update": "", "DEF0": "Schleswig-Holstein", "UKK4": "Devon", "GR14": "Thessalia", "SE23": "V\u00e4stsverige", "NO03": "S\u00f8r-\u00d8stlandet", "ITF5": "Basilicata", "ITF4": "Puglia", "ITF6": "Calabria", "ITF1": "Abruzzo", "PL41": "Wielkopolskie", "FR62": "Midi-Pyr\u00e9n\u00e9es", "ITF2": "Molise", "RO12": "Centru", "SE12": "\u00d6stra Mellansverige", "SE11": "Stockholm", "RO11": "Nord-Vest", "NL11": "Groningen", "UKE2": "North Yorkshire", "NL13": "Drenthe", "NL12": "Friesland (NL)", "PL31": "Lubelskie", "TR71": "Kirikkale", "ITF3": "Campania", "GR30": "Attiki", "NL41": "Noord-Brabant", "HU31": "\u00c9szak-Magyarorsz\u00e1g", "HU32": "\u00c9szak-Alf\u00f6ld", "HU33": "D\u00e9l-Alf\u00f6ld", "TR72": "Kayseri", "ES62": "Regi\u00f3n de Murcia", "ES63": "Ciudad Aut\u00f3noma de Ceuta (ES)", "ES61": "Andaluc\u00eda", "FR63": "Limousin", "ES64": "Ciudad Aut\u00f3noma de Melilla (ES)", "BE32": "Prov. Hainaut", "BE33": "Prov. Li\u00e8ge", "TRA2": "Agri", "BE31": "Prov. Brabant Wallon", "DE80": "Mecklenburg-Vorpommern", "BE34": "Prov. Luxembourg (BE)", "BE35": "Prov. Namur", "BG34": "Yugoiztochen", "UKK3": "Cornwall and Isles of Scilly", "UKE4": "West Yorkshire", "SE22": "Sydsverige", "BG31": "Severozapaden", "BG32": "Severen tsentralen", "BG33": "Severoiztochen", "CH05": "Ostschweiz", "AT11": "Burgenland (AT)", "AT12": "Nieder\u00f6sterreich", "CH06": "Zentralschweiz", "CH01": "R\u00e9gion l\u00e9manique", "EE00": "Eesti", "DEE0": "Sachsen-Anhalt", "CH02": "Espace Mittelland", "MK00": "Poranesna jugoslovenska Republika Makedonija", "CY00": "Kypros", "PL52": "Opolskie", "PL51": "Dolnoslaskie", "UKF2": "Leicestershire, Rutland and Northamptonshire", "UKF3": "Lincolnshire", "UKF1": "Derbyshire and Nottinghamshire", "SI02": "Zahodna Slovenija", "BE25": "Prov. West-Vlaanderen", "BE24": "Prov. Vlaams-Brabant", "GR23": "Dytiki Ellada", "GR22": "Ionia Nisia", "BE21": "Prov. Antwerpen", "GR24": "Sterea Ellada", "BE23": "Prov. Oost-Vlaanderen", "BE22": "Prov. Limburg (BE)", "HU23": "D\u00e9l-Dun\u00e1nt\u00fal", "HU22": "Nyugat-Dun\u00e1nt\u00fal", "HU21": "K\u00f6z\u00e9p-Dun\u00e1nt\u00fal", "UKH3": "Essex", "TR42": "Kocaeli", "TR41": "Bursa", "FR10": "\u00cele de France", "ES70": "Canarias (ES)", "FR82": "Provence-Alpes-C\u00f4te d'Azur", "FR83": "Corse", "SE31": "Norra Mellansverige", "SE33": "\u00d6vre Norrland", "SE32": "Mellersta Norrland", "UKG1": "Herefordshire, Worcestershire and Warwickshire", "UKG3": "West Midlands", "UKG2": "Shropshire and Staffordshire", "DED1": "Chemnitz", "DED3": "Leipzig", "DED2": "Dresden", "NO05": "Vestlandet", "NO04": "Agder og Rogaland", "NO07": "Nord-Norge", "FR81": "Languedoc-Roussillon", "PL62": "Warminsko-Mazurskie", "PL63": "Pomorskie", "PL61": "Kujawsko-Pomorskie", "NL23": "Flevoland", "TR61": "Antalya", "UKH2": "Bedfordshire and Hertfordshire", "PT18": "Alentejo", "SE21": "Sm\u00e5land med \u00f6arna", "IE02": "Southern and Eastern", "UKI2": "Outer London", "UKI1": "Inner London", "IE01": "Border, Midland and Western", "AT34": "Vorarlberg", "AT32": "Salzburg", "AT33": "Tirol", "AT31": "Ober\u00f6sterreich", "PL22": "Slaskie", "FR94": "R\u00e9union (FR)", "FR93": "Guyane (FR)", "FR92": "Martinique (FR)", "FR91": "Guadeloupe (FR)", "FR71": "Rh\u00f4ne-Alpes", "PT11": "Norte", "NL42": "Limburg (NL)", "PT16": "Centro (PT)", "PT15": "Algarve", "CZ08": "Moravskoslezsko", "CZ07": "Stredn\u00ed Morava", "CZ06": "Jihov\u00fdchod", "CZ05": "Severov\u00fdchod", "CZ04": "Severoz\u00e1pad", "CZ03": "Jihoz\u00e1pad", "CZ02": "Stredn\u00ed Cechy", "CZ01": "Praha", "UKD1": "Cumbria", "DE71": "Darmstadt", "DE72": "Gie\u00dfen", "DE73": "Kassel", "UKD2": "Cheshire", "UKK2": "Dorset and Somerset", "LT00": "Lietuva", "ITC4": "Lombardia", "DEC0": "Saarland", "ITC3": "Liguria", "ITC1": "Piemonte"}

style.css

body,html { background: #fff; height:100%; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; padding: 0; margin: 0;}
a { color: #903; }
#map {
	background: #fff;
	width: 75%;
	margin-left: 25%;
	height: 99%;
}
svg path { stroke-linejoin: round }

svg .polygon.bg {
	fill: #ddd;
	stroke: none;
}
svg .polygon.nuts {
	stroke: #000;
	stroke-width:.5px;
	fill: #fff
}
svg .polygon.nuts:hover {
	stroke-width:2px;
}
svg .dotMarker {
	stroke: #330;
	stroke-opacity: .8;
	fill: #ff7;
	fill-opacity: .2;
}
svg .dotMarker:hover {
	stroke: #000;
	fill: #ff3;
	fill-opacity: .7;
}	
svg .graticule {
	stroke: #000;
	fill: none;
	stroke-opacity: .1;
}

#about {
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 20px;
	z-index: 300;
	width: 25%;
	background: #fff
}
#about h1 { font-size:24px; margin-top:0 }	
#about h2 { font-size:14px; margin:25px 0 10px; color: #888; }	
#about p { font-size: 12px; line-height: 17px; }
ul {
	margin: 0;
	padding: 0;
}
ul li { font-size: 12px; list-style: none; padding: 0 0 5px; }
ul#years li {
	cursor: pointer;
	
	padding: 5px 10px 5px 0;
	color: #903;
	text-decoration: underline;
	display: inline;
}
ul#years li.selected {
	color: #000;
	font-weight: bold;
}
ul#proj li.selected a {
	color: #000;
	text-decoration: none;
	font-weight: bold;
}