body, html
{
	background-color: gray;
	height: 100%;
}

.popup-container
{
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 20;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: opacity 0.6s;
}

.popup-container.visible
{
	opacity: 1;
}

.popup-container.removed
{
	display: none;
}

.popup-window
{
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -320px;
	margin-top: -240px;
	font: 14px/16px Arial, Helvetica, sans-serif;
	background: white;
	background: rgba(255,255,255,0.8);
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	border-radius: 5px;
	color: #444444;
	width: 640px;
	height: 480px;
}

.popup-title
{
	position: absolute;
	left: 0px;
	top: 18px;
	width: 100%;
	text-align: center;
	font-weight: bold;
	color: #555555;
}

.popup-content
{
	position: absolute;
	left: 12px;
	top: 46px;
	right: 12px;
	bottom: 80px;
	overflow: auto;
	padding: 8px 16px;
	font-size: 12px;
	border: solid 1px #bbbbbb;
}

.popup-content a:link
{
	color: #228ddf;
	text-decoration: none;
}

.popup-content a:visited
{
	color: #228ddf;
	text-decoration: none;
}

.popup-content a:active
{
	color: #228ddf;
}

.popup-content a:hover
{
	color: #228ddf;
	text-decoration: underline;
}

.popup-content p
{
	margin-top: 8px;
	margin-bottom: 8px;
}

.popup-button
{
	position: absolute;
	left: 50%;
	margin-left: -75px;
	bottom: 24px;
	width: 150px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background-color: #2048aa;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	border-radius: 3px;
	color: white;
	cursor: pointer;
}

.popup-button:hover
{
	background-color: #3c66cf;
}

#map
{
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 10;
/*	width: 800px; */
/*	height: 500px; */
	width: 100%;
	height: 100%;
}

.info 
{
	padding: 6px 8px;
	font: 14px/16px Arial, Helvetica, sans-serif;
	background-color: rgba(255,255,255,0.8);
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	border-radius: 5px;
	max-width: 260px;
	color: #444444;
}

h4 
{
	margin: 0 0 5px;
	color: #777;
}

.date-text
{
	font-size: 12px;
	font-style: italic;
}

.light-text
{
	color: #888888;
}

.lighter-text
{
	color: #aaaaaa;
}

.bold-text
{
	font-weight: bold;
}

.row-centered
{
	text-align: center;
	margin-top: 6px;
}

.total-container
{
	display: inline-block;
	vertical-align: middle;
	margin-left: 6px;
	margin-right: 6px;
}

.total-value
{
	width: 60px;
	height: 22px;
	line-height: 22px;
	font-size: 14px;
	font-weight: bold;
	border: solid 1px #999999;
	color: #444444;
	text-align: center;
	border-radius: 3px;
	box-shadow: 1px 1px;
}

.total-label
{
	width: 60px;
	font-size: 11px;
	font-weight: bold;
	color: #444444;
	text-align: center;
}

.total-container.red > .total-value
{
	border-color: #c22f2f;
	color: #b51717;
}

.total-container.red > .total-label
{
	color: #b51717;
}

.legend 
{
	line-height: 18px;
	color: #555;
}

.legend i 
{
	width: 18px;
	height: 18px;
	float: left;
	margin-right: 8px;
	opacity: 0.7;
}

.totals-container 
{
}

.totals 
{
	margin-bottom: 35px;
	color: #555;
}

.details-container 
{
	width: 275px;
}

.details-title
{
	font-size: 14px;
	font-weight: bold;
	padding-bottom: 4px;
	color: #555555;
}

.details-top
{
	line-height: 18px;
}

.details-label
{
	color: #888888;
}

.details-value
{
	color: #666666;
	font-weight: bold;
}

.details-middle
{
	margin-top: 8px; 
	padding-top: 8px; 
	border-top: solid 1px #cccccc;
}

.details-subtitle
{
	font-weight: bold;
	font-size: 12px;
	color: #666666;
	margin-bottom: 4px;
}

.details-list
{
	font-size: 11px;
	color: #555555;
}

.details-bottom
{
	padding-bottom: 4px;
	margin-top: 8px;
	border-top: solid 1px #cccccc;
}

.details-legend
{
	padding-top: 4px;
	color: #666666;
	font-size: 10px;
	line-height: 13px;
}

.details-list-item
{
	line-height: 13px;
	margin-top: 6px;
}

.subcity-name
{
	font-weight: bold;
	color: #777777;
}

.index-button
{
	width: 22px;
	height: 25px;
}

.info.index-button
{
	background-color: rgba(255,255,255,1);
	text-align: center;
}

.info.index-button img
{
	margin-top: 2px;
	width: 22px;
	height: auto;
}

@media only screen and (max-width: 676px)
{
	.popup-window
	{
		width: auto;
		left: 18px;
		right: 18px;
		margin-left: 0px;
	}
}

@media only screen and (max-height: 512px)
{
	.popup-window
	{
		height: auto;
		top: 16px;
		bottom: 16px;
		margin-top: 0px;
	}
}

@media only screen and (max-width: 600px)
{
	.totals 
	{
		width: 100px;
	}

	.details-container 
	{
		width: 210px;
	}
}


