	*{ 
		box-sizing: border-box; 
		margin: 0; 
		padding: 0 
	}
	body {
		color: #eee;
		text-shadow: 0 -1px 0 rgba( 0, 0, 0, .6 );
		font-family: 'Open Sans', sans-serif;
		font-size: 13px;
		line-height: 16px;
		overflow: hidden;
	}
	#viewport {
		-webkit-perspective: 1000; 
		-moz-perspective: 1000px; 
		-o-perspective: 1000; 
		perspective: 1000px;
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		overflow: hidden;
		background-image: linear-gradient(bottom, rgb(69,132,180) 28%, rgb(31,71,120) 64%);
		background-image: -o-linear-gradient(bottom, rgb(69,132,180) 28%, rgb(31,71,120) 64%);
		background-image: -moz-linear-gradient(bottom, rgb(69,132,180) 28%, rgb(31,71,120) 64%);
		background-image: -webkit-linear-gradient(bottom, rgb(69,132,180) 28%, rgb(31,71,120) 64%);
		background-image: -ms-linear-gradient(bottom, rgb(69,132,180) 28%, rgb(31,71,120) 64%);

		background-image: -webkit-gradient(
			linear,
			left bottom,
			left top,
			color-stop(0.28, rgb(69,132,180)),
			color-stop(0.64, rgb(31,71,120))
		);
	}

	#world {
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -256px;
		margin-top: -256px;
		height: 512px;
		width: 512px;
		/* border: 1px solid rgb( 255, 0, 0 );*/
		-webkit-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
		-o-transform-style: preserve-3d;
		transform-style: preserve-3d;
		pointer-events: none;
	}
	
	#world div {
		-webkit-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;	
		-o-transform-style: preserve-3d;	
		transform-style: preserve-3d;
	}
	
	.cloudBase {
		/* border: 1px solid #ff00ff; */
		position: absolute;
		left: 256px;
		top: 256px;
		width: 20px;
		height: 20px;
		margin-left: -10px;
		margin-top: -10px;
	}
	
	.cloudLayer {
		position: absolute;
		left: 50%;
		top: 50%;
		width: 256px;
		height: 256px;
		margin-left: -128px;
		margin-top: -128px;
		-webkit-transition: opacity .5s ease-out;
		-moz-transition: opacity .5s ease-out;
		-o-transition: opacity .5s ease-out;
		transition: opacity .5s ease-out;
	}
	
	#options {
		position: absolute;
		left: 0;
		top: 0;
		margin: 10px;
		padding: 20px;
		width: 400px;
		background-color: rgba( 0, 0, 0, .4 );
		border-radius: 5px;
	}
	
	#optionsContent{
		margin-top: 20px;
		-webkit-transition: all 1s ease-out;
		-moz-transition: all 1s ease-out;
		-o-transition: all 1s ease-out;
		transition: all 1s ease-out;
	}
	
	h1{
		font-family: 'Lato', sans-serif;
	}
	
	h2{
		font-family: 'Lato', sans-serif;
		margin-bottom: 10px
	}
	
	p{
		margin-bottom: 20px;
	}
	
	.actions{
		margin-bottom: 20px;
	}
	
	#textureList li{
		clear: both;
		list-style-type: none;
		position: relative;
		height: 35px;
		padding-top: 10px;
	}
	
	#textureList li span {
		text-transform: capitalize;
	}
	
	#textureList div{
		position: absolute;
		right: 0;
		top: 0;
	}
	
	#textureList li a{
		float: left;
	}
	
	a {
		color: inherit;
	}
	
	#textureControls {
		display: none;
	}
	
	#closeBtn {
		position: absolute; 
		right: 15px;
		top: 10px;
	}
	
	.presets{
	}
	
	.presets a{
		float: left;
	}

	.nope{
		text-decoration: line-through;
	}

	div.dew img {
		position: absolute;
		opacity: 0.5;
		border:1px solid black;
		background-color: green;
		width: 400px;
    		top: 50%;
    		left: 50%;
    		margin-right: -50%;
    		transform: translate(-50%, -50%) 
	}	
	
	:-moz-full-screen #options{ display: none }
	:-webkit-full-screen #options{ display: none }
	:full-screen #options{ display: none }
	
