/* CSS Document */

		/*----------- HTML ELEMENTS ---------------*/
html {
	min-height: 100%;
	position: relative;
}
body {
	height: 100%;
}
body::after {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	z-index: -1;
	content: url('/media/static/images/modal-close.svg') url('/media/static/images/modal-close-hover.svg');
}
/*----------- FILTERS (SITE TYPES) ---------------*/
		
#mapFilters {
	text-align: center;
	color: #FFF;
	padding: 6px 0 2px 0;
	background: #3A2316;
	position: fixed;
	bottom: 0;
	width: 100%;
	border-top: 1px solid #FFF;
}
#mapFilters a {
	display: inline-block;
	float: left;
	margin: 0 4px 0 4px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#mapFilters a:hover {
	-webkit-transform: scale(.90);
	-moz-transform: scale(.90);
	-ms-transform: scale(.90);
	-o-transform: scale(.90);
	transform: scale(.90);
}
#mapFilters img {
	width: 36px;
	height: 36px;
}
.filterOff {
	opacity: 0.3;
	filter: alpha(opacity=3);
}
/*----------- MAP ---------------*/
		
#map {
	position: absolute;
	top: 50px;
	bottom: 48px;
	left: 0;
	right: 0;
	overflow: hidden;
}
.mapMarker {
	overflow: hidden;
	width: 160px;
}
.mapMarker a em {
	color: #3A2316;
	font-size: .8rem;
}
.mapMarker a:hover {
	text-decoration: none;
}
/*----------- MODAL / LEGEND ---------------*/
		
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}
#modal1-open {
	cursor: pointer;
}
.modal-content {
	z-index: 2001;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	background: #FFF;
	margin: 5% auto;
	padding: 32px;
	border: 1px solid #3A2316;
	width: 70%;
	max-width: 950px;
}
h1 {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	font-size: 2.4rem;
	line-height: 2.6rem;
}
.intro {
	border: none;
	font-size: 1.2rem;
	line-height: 1.5rem;
	margin: 0 0 24px 0;
	padding: 0 0 0 0;
}
.legendItems {
	border-top: 1px solid rgba(59, 35, 20, .2);
	border-right: 1px solid rgba(59, 35, 20, .2);
	margin-bottom: 24px;
}
.legendItems td {
	border-bottom: 1px solid rgba(59, 35, 20, .2);
	vertical-align: top;
	padding: 18px 6px 18px 6px;
}
.colIcon {
	background: #E6E4E1;
	text-align: center;
	padding-left: 12px;
	padding-right: 12px;
}
.colText {
	padding-left: 12px;
}
.legendItems img {
	width: 50px;
	height: 50px;
}
.legendItems h2 {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	font-size: 1.2rem;
	line-height: 1.4rem;
}
.legendItems p {
	margin: 2px 0 0 0;
	padding: 0 0 0 0;
	font-size: .9rem;
	line-height: 1.1rem;
}
.modal-hgroup {
	overflow: hidden;
	margin-bottom: 18px;
	padding-bottom: 6px;
	border-bottom: 1px solid #DC5D34;
}
.modal h1 {
	width: 90%;
	float: left;
}
.exx {
	background-image: url('/media/static/images/modal-close.svg');
	background-position: center;
	background-repeat: no-repeat;
	float: right;
	width: 10%;
}
.exx:hover, .exx:focus {
	background-image: url('/media/static/images/modal-close-hover.svg');
	cursor: pointer;
}
a.bigBtn {
	background: #3A2316;
	padding: 12px 36px 12px 36px;
	margin: 12px 0 12px 0;
	display: inline-block;
	color: #FFF;
	font-size: 1.2rem;
	line-height: 1.2rem;
	border: 1px solid #FFF;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a:hover.bigBtn {
	background: #F0EDC3;
	color: #3A2316;
	border: 1px solid #3A2316;
	text-decoration: none;
	cursor: pointer;
}

/*----------- MOBILE ---------------*/
		
@media only screen and (max-width: 549px) {
#map {
	top: 40px;
}
}
