/* 
 * Copyright (c) 2014 Binary Space Pty Ltd
 * Author: Saxon Druce 
 */

/* Additional styles for the editor page. */

/* The container for the editor elements (google maps and the flash object). */
#editor-container
{
	/* 
	 * Set up relative positioning so we can position the children with 
	 * absolute positioning.
	 */
	position: relative; 
	width: 1024px; 
	height: 600px;
	margin-bottom: 5px;
}

/* The div that will contain the select Google map. */
#select-map-canvas
{
	position: absolute;
	top: 0px;
	width: 1024px; 
	height: 600px; 
}

/* The div that will contain the main Google map. */
#main-map-canvas
{
	position: absolute;
	left: 254px;
	top: 54px;
	width: 770px; 
	height: 546px; 
}

/* The div that will contain the mini Google map. */
#mini-map-canvas
{
	position: absolute;
	left: 0px;
	top: 350px;
	width: 250px; 
	height: 250px; 
}

/* The div that contains the Flash object. */
#editor-flash-container
{
	position: absolute;
}

/*
 * Hide the copyrights section on the minimap, as it's just duplicating what's
 * on the main map.
 * This is a bit of a hack, see here for the source of this:
 * http://stackoverflow.com/questions/12499886/how-to-hide-or-disable-the-google-logo-footer-copyright-on-google-maps-javascr
 */
#mini-map-canvas .gm-style-cc 
{ 
	display: none;
}
