.site-container {
	padding: 0 25px;
}
/* Clearing floats */

.row {
	clear: both;
	margin-bottom: 20px;
}

.row:after {
	content: '';
	clear: both;
	display: block;
	font-size: 0;
	visibility: hidden;
	height: 0;
}

/* Draggable tiles */

.tile {
	width: 75px;
	height: 75px;
	border: 2px solid #666;
	float: left;
	margin: 0 10px 10px 0;
	text-align: center;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
	color: #333;
	font-size: 0.9em;
}



/* Select for elements with the "draggable" attribute" and add styles so user cannot select text/other elements within draggable element */

[draggable] {
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	
	-webkit-user-drag: element; /* older Safari */
	cursor: move;
}

/* Canvas styles */

#main-canvas {
	border: 1px solid #999;
}

/* This style will get applied when the dragged element has entered the drop zone (main-canvas) */
#main-canvas.over {
	border: 4px dashed #093;
}
#main-canvas {
	background-image: url(../images/canvas_background.gif);
	background-repeat: no-repeat;
}