/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/

* { margin: 0; padding: 0; }
body { font: 14px Georgia, serif; }

#page-wrap { 
	width: 960px; 
	margin: 80px auto; 
}

h1 {
	font: 50px Baskerville, Georgia, Serif;
	letter-spacing: -1px;
	text-align: center;
	margin: 0 0 50px 0;
}

.code {
	color: #333;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.code:hover {
	color: red;
}
.code h2 {
	text-align: left;
	color: #999;
	font: 13px monaco, mono-space;
	padding-left: 30px;
}
.code:after {
	content: "Double click to close";
	position: absolute;
	right: 0;
	top: 100%;
	margin-top: 3px;
	color: red;
	font: 10px monaco, mono-space;
}

hr {
	margin: 50px 0 5px 0;
}

body style {
	display: block;
	background: #575d8e; /*#333;*/
	border-radius: 5px;
	padding: 5px;
	color: white;
	white-space: pre;
	font: 11px monaco, mono-space;
	text-align: left;
	padding: 10px;
	margin: 10px 0;
}