/* Development Notes - NOT FOR PRODUCTION */

.devNotes {
	background-color: #f00;
	color: #fff;
	display: block;
	height: 0;
	left: 10px;
	max-width: 750px;
	padding: 20px;
	position: fixed;
	top: 10px;
	width: 0;
	z-index: 100000000;
}

.devNotes:hover {
	background-color: #87b925;
	height: auto;
	width: auto;
}

.devNotes ol {
	display: none;
}

.devNotes ol li {
	margin: 0 0 1em 1.5em;
}

.devNotes:hover ol {
	display: block;
	list-style: decimal outside;
}

.devNotes ol li blockquote {
	background-color: rgba(255,255,255,0.4);
	margin: 1em 0;
	padding: 0.5em;
}