/* 
jQuery Plugin: 
WorkshopBirdseyeView 

Created by Lee Elmore.
*/

.birdseyeview {
	text-shadow: none;
	
	background: #111;
	
	margin: 10px auto 10px auto;
	
	border: 4px solid white;
	
	box-shadow: 0 0 10px rgba(0,0,0,0.8);
	
	position: relative;
	
	overflow: hidden;
	
	image-rendering: pixelated;
}

.birdseyeview .area ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.birdseyeview .area ul li {
	list-style: none;
	padding: 0;
	margin: 0;
}

.birdseyeview .title {
	position: absolute;
	
	bottom: 5px;
	left: 5px;
	right: 5px;
	
	background: rgba(0,0,0,0.8);
	color: white;
	
	text-align: center;
	
	font-weight: bold;
	padding: 0 5px;
	
	font-size: 0.8em;
}

.birdseyeview .title.no {
	display: none;
}

.birdseyeview .area {
	background: #666;
	
	margin: 5px;
	
	position: relative;
	
	overflow: hidden;
}

.birdseyeview .area ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.birdseyeview .area li {
	position: absolute;
	
	list-style: none;
	margin: 0;
	padding: 0;
	
	width: 16px;
	height: 16px;
	
	background-repeat: no-repeat;
	background-size: cover;
	image-rendering: pixelated;
}


.birdseyeview.allowswarp {
	cursor: pointer;
}

.birdseyeview.allowswarp:hover {
	border: 4px solid cyan;
}

.birdseyeview.allowswarp:hover .title {
	color: cyan;
}