@charset "utf-8";
/* CSS Document */

/* Page Body Elements Control */
body {
	background-color: #7A8FFC;
	background-image: url(../graphics/back.png);
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}

/* General Image Control */
img {
	border: none;
}

/* USA Table Cell Background Image Control */
.usa {
	background-image: url(../graphics/usa.png);
	background-repeat: no-repeat;
}


/* Shapefile Info Control */
.download-text {
	font-family: Arial, Helvetica, sans-serif;
 	font-size: 12px;
	font-weight: bold;
	color: #000;
    background-color: transparent;
    text-decoration: none;
}

.download:link {
	font-family: Arial, Helvetica, sans-serif;
 	font-size: 12px;
	font-weight: bold;
	color: #FFF;
    background-color: transparent;
    text-decoration: none;
}

.download:hover {
    color: #FFF;
    background-color: transparent;
    text-decoration: underline;
}

.download:active {
    color: #FFF;
    background-color: transparent;
    text-decoration: underline;
}

/* State Text Links Control */
.states-text {
	font-family: Arial, Helvetica, sans-serif;
 	font-size: 12px;
	font-weight: bold;
	color: #FFF;
    background-color: transparent;
    text-decoration: none;
}

.states:link {
	font-family: Arial, Helvetica, sans-serif;
 	font-size: 12px;
	font-weight: bold;
	color: #FFF;
    background-color: transparent;
    text-decoration: none;
}

.states:hover {
    color: #000;
    background-color: transparent;
    text-decoration: none;
}

.states:active {
    color: #000;
    background-color: transparent;
    text-decoration: none;
}

.states:visited {
    color: #000;
    background-color: transparent;
    text-decoration: none;
}

/* Info Box Links Control */
.website:link {
	font-weight: bold;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-size: 14px;
    color: #7F0606;
    background-color: transparent;
    text-decoration: none;
}

.website:hover {
    color: #000;
    background-color: transparent;
    text-decoration: none;
}

.website:active {
    color: #000;
    background-color: transparent;
    text-decoration: none;
}

/* Info Box Text Control */
.boxhead {
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-size: 36px;
	font-weight: bold;
}

.boxsubhead {
	font-size: 16px;
	font-weight: bold;
}

.boxsubhead2 {
	font-size: 12px;
	font-weight: bold;
}

.boxlead {
	font-size: 13px;
	font-weight: bold;
}

.boxtext {
	font-size: 13px;
}

/* Info Box Parameters Control */
.box {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.box:target {
	opacity: 1.0;
	pointer-events: auto;
}

.box > div {
	width: 450px;
	position: relative;
	margin: 10% auto;
	padding: 10px 20px 13px 20px;
	border-radius: 10px;
	background: #7A8FFC;
	background: -moz-linear-gradient(#7A8FFC, #FFF);
	background: -webkit-linear-gradient(#7A8FFC, #FFF);
	background: -o-linear-gradient(#7A8FFC, #FFF);
}

.close {
	background: #3C3A35;
	font-size: 17px;
	color: #FFF;
	line-height: 25px;
	position: absolute;
	right: 8px;
	text-align: center;
	top: 8px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover {background: #000;
	color: #FFF;
}