// Variables //
$fontDefault: "DejaVu Sans", "URW Gothic L", "Helvetica", Helvetica Neue, Arial, "Microsoft Sans Serif", sans-serif;
$white: white;
$black: black;

// Start Imports //
@import "mixins";

// Start styling for CSS //
* {
	@include box-sizing(border-box !important);
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	@include user-select(none);
	cursor:pointer;
}

body {
	font-family:$fontDefault;
	margin:0px !important;
}

// CONTAINER STYLES
#container {
	border:1px #666 solid;
	width:160px;
	height:600px;
	overflow: hidden;
	vertical-align: middle;
	position:relative;

	#scene1 {

	}

	#scene2 {
		
	}

	#scene3 {
		
	}

	#scene4 {
		
	}
	
}


// End Imports //
@import "overrides";

