html{
	width: 100%;
	height: 100%;
}
body{
	margin: 0;
	font-size: 22px;
	font-weight: 100;
	line-height: 1.7em;
	font-family: Helvetica, Arial, sans-serif;
	width: 100%;
	height: 100%;
}
pre{
	font-size: 15px;
	line-height: 1.2em;
}

#content{
	overflow: hidden;
}
#container{
	width: 1000px;
	height: 500px;
	background: #fff;
	border: 2px solid #ddd;
	margin: 20px auto;
}
#player{
	width:500px;
	height:500px;
	float:left;
	position: relative;
}
#editor{
	width:500px;
	height:500px;
	float:left;
	background: #eee;

	overflow-x: hidden;
	overflow-y: scroll;
}
#editor hr{
	border: none;
	border-bottom: 2px dashed #ccc;
	margin: 1.5em 0;
}
#footer{
	width: 920px;
	height: 105px;
	margin: 20px auto;
}
#more-shtuff{
	width: 320px;
    float: left;
    font-size: 14px;
    line-height: 1.5em;
}
#demos{
	overflow: hidden;
    width: 600px;
	text-align: center;
    float: right;
}
#demos a{
	display: inline-block;
	position: relative;
	margin: 0 5px;
}
#demos a img{
	width:100px; height:100px;
	border: 2px solid #ddd;
}
#demos a span{
	position: absolute;
	top:0; left:0;
	display: none;
	width:100%; height:100%;
	background: rgba(0,0,0,0.7);
	color: #fff;
	text-decoration: none;
	line-height: 100px;
}
#demos a:hover span{
	display: block;
}