html {
	height: 100%;
	min-width:400px;
	min-height:200px;
}

body {
	padding: 0;
	margin:0;
	background: #fff;
    color: #000;
    font-family: "Helvetica Neue", Helvetica, "Arial Unicode MS", Arial, sans-serif;
    min-height: 100%;
    height: 100%;
    font-size:14px;
    overflow: hidden;
}

em {
	font-weight: bold;
	font-style: normal;
}
.interface {
	display: none;
}

a {
	color:#666;
	text-decoration: none;
	border-bottom: 1px dotted #666;
}
/* home */

#title {
	position: absolute;
	top:200px;
	left: 20px;
	font-size: 2em;
	z-index: 200;
}

#title small {
	font-size: .5em;
}

#introduction {
	width:300px;
	position: absolute;
	top:422px;
	left:20px;
}

#legend {
	position: absolute;
	top:420px;
	left:420px;
}

#legend td {
	padding-bottom: 1em;
}

#legend p {
	margin:.2em;
}

#legend .graphic {
	border-radius: 100px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	width:50px;
	height: 50px;
	opacity: .5;
	filter: alpha(opacity=50);
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	float:right;
	margin-right: 4px;
}

#legend .graphic.small {
	margin-top:12.5px;
	width:25px;
	height: 25px;
}


.small {
	font-size:.8em;
}

/* interface */

#header {
	position: absolute;
	top:0;
	left: 0;
	width:100%;
	/* background: -webkit-gradient(linear,left top, left bottom, from(#fff), to(#ddd));*/
	z-index: 110;
}

#header h1 {
	margin: .2em;
	font-size: 1em;
}

#header h1 a {
	font-weight: normal;
}

#header select {
	position: absolute;
	top:.2em;
	right: 1em;
}

#holder {
    width: 1000px;
    height: 400px;
 	margin:auto;
    padding-top:24px;
}

#info {
	position: absolute;
	top:200px;
	left:20px;
}

#info h3 {
	margin:0;
	font-size:1em;
	font-weight:normal;
}

#info h2 {
	margin: 0;
	font-size: 2.5em;
	font-weight: normal;
	width:6em;
}

#info p {
	margin-top:3px;
	margin-bottom:0;
}
#info #cost {
	margin-top: 10px;
	margin-bottom: 0;
	font-size:4.6em;
	font-weight: bold;
}

#info .data {
	width:14em;
}

#diagram {
	position: absolute;
	top:450px;
	left:20px;
	margin-top:40px;
}

.graphs {
	height:200px;
	width:320px;
}

.graphs .middleLine {
	background: #ccc;
	height: 1px;
	position: absolute;
	top:50%;
	left:0;
	width:100%;
}

.graphs .water,.graphs .population {
	position: relative;
	margin-left:10px;
	width:40px;
	float: left;
	z-index:-100;
}

.graphs .water.legend,.graphs .population.legend {
	z-index:100;
}

.graphs .water {
	background: rgb(131,151,189);
}

.graphs .population {
	background: rgb(189,173,131);
}

.graphs #trend {
	position: absolute;
	right: 30px;
	background: white;
}


.graphs #trend h4 {
	margin:0;
	font-weight: normal;
}

.graphs #trend .legend {
	position: relative;
	top:.2em;
	width:1em;
	height:1em;
	margin-right: 5px;
	margin-left:0;
}

#cost .unit {
	font-size:.4em;
}

#newsItems {
	position: relative;
	top:-10px;
	margin-left:350px;
	padding:0;
	font-family: "Times New Roman","Times",serif;
	overflow-x: hidden;
	overflow-y: auto;
	height: 25em;
}

#newsItems li {
	list-style:none;
	width:180px;
	float: left;
	margin-left:1.5em;
	min-height: 25em;
}

#newsItems h2 {
	margin:0;
}


.city {
	display: block;
}

.city .graphic {
	position: relative;
	top:-2px;
	left: -2px;
	width: 4px;
	height: 4px;
	background: black;
	opacity: .5;
	filter: alpha(opacity=50);
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	-webkit-border-radius:100px;
	-moz-border-radius:100px;
	-webkit-transition: opacity .2s linear;
	-moz-transition: opacity .2s linear;
	
}

.graphic.positive {
	background: green;
}

.graphic.negative {
	background: red;
}
.graphic.neutral {
	background: black;
}
.city .name {
	display: none;
}

.city:hover .name,.city.active .name {
	position: absolute;
	display: block;
	top:-50%;
	text-indent:80%;
	width:10em;
	z-index: 100;
}

.city:hover .graphic,.city.active .graphic {
	opacity: 1;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
}

.city.active .graphic.positive {
    -webkit-animation-name: pulsateGreen;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes pulsateGreen {
    0%   {  -webkit-box-shadow: 0px 0px 0px green;}
    30% {  -webkit-box-shadow: 0px 0px 10px green;}
    70% {  -webkit-box-shadow: 0px 0px 10px green;}
    100%   {  -webkit-box-shadow: 0px 0px 0px green;}
}

.city.active .graphic.negative {
    -webkit-animation-name: pulsateRed;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes pulsateRed {
    0%   {  -webkit-box-shadow: 0px 0px 0px red;}
    30% {  -webkit-box-shadow: 0px 0px 10px red;}
    70% {  -webkit-box-shadow: 0px 0px 10px red;}
    100%   {  -webkit-box-shadow: 0px 0px 0px red;}
}

.right {
	float: right;
}

.bold {
	font-weight: bold;
}

.shadows {
	width:20px;
	position: absolute;
	top:0;
	height: 100%;
	right:-20px;
	background: url('../img/shadow.gif') repeat-y;
}

.shadows .bottom {
	width:20px;
	height:62px;
	position: absolute;
	bottom:0;
	left: 0;
	background:url('../img/shadowBottom.gif') no-repeat;
}
.shadows .top {
	width:20px;
	height:62px;
	position: absolute;
	top:0;
	left: 0;
	background:url('../img/shadowTop.gif') no-repeat;
}
