@charset "utf-8";
/*
* These are styles for the elements of a CanvasMap.
* Change these as you desire to change the appearance of the elements in the CanvasMap
*/

/* The class for the div containing the title and tools */
.CM_MapContainer {
	position:relative;
	left:0px;
	top:0px; /* where is this positioning controlled CM_ALERT */
	width:700px;
	height:430px; 
	border:solid 1px black;
	/* The .noselect css styles are used to prevent selectable text within the CM_MapContainer */
 
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.CM_CanvasContainer
{
	position:absolute;
	left:0px;
	top:0px; /* where is this positioning controlled CM_ALERT */
	width:700px;
	height:430px;
}

.CM_Canvas
{
	position:absolute;
	left:0px;
	top:0px;
}


 