@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.
*
* This style sheet is a simplified version of the CanvasMap.css file to just include the mapping elements
* and a few others as most of the controls have been hidden.
*/

/* The class for the div containing the title and tools */
.CM_MapContainer {
	position:absolute;
	left:0px;
	top:0px; /* where is this positioning controlled CM_ALERT */
	right:0px;
	bottom:0px; 
	
	overflow: hidden; /* hides any overflow so the map does not flicker */
	/* 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;
}

/* sets the styles for the elements inside the layer list popup */
.CM_LayerListPopupMenuItem {
	cursor:pointer;
	padding:0px 0px 0px 7px;
	color: #FFF;
	background-color:#000000;
	opacity:1;
	box-shadow: 1px 1px 5px #999999;
	border-radius: 3px;
}

.CM_CanvasContainer
{
	position:absolute;
	left:0px;
	top:0px; /* where is this positioning controlled CM_ALERT */
	right:0px;
	bottom:0px; 
}

.CM_Canvas
{
	position:absolute;
	left:0px;
	top:0px;
}
/******************************************************/
/* Stules specific to the miniamal resizeable example */
.CM_CoordinateBox
{
	position:fixed;
	width:180px;
	height:18px;
	bottom:10px;
	right:10px;
	
	border:solid black 1px;
	background-color:white;
	border-radius:6px;
	box-shadow:0px 0px 10px rgb(0,0,0);
	padding:6px;
	font:14px arial,serif;
	text-align:center;
}
/* Opens the layer list */
.CM_InfoBox
{
	position:fixed;
	width:34px;
	height:26px;
	top:20px;
	right:20px;
	
	border:solid black 1px;
	background-color:white;
	border-radius:6px;
	box-shadow:0px 0px 10px rgb(0,0,0);
	padding:6px;
	font:14px arial,serif;
}
/* legend that appears with layers */
.CM_Legend
{
	position:fixed;
	width:200px;
	height:200px;
	top:20px;
	right:20px;
	
	border:solid black 1px;
	background-color:white;
	border-radius:6px;
	box-shadow:0px 0px 10px rgb(0,0,0);
	padding:6px;
	font:14px arial,serif;
}
		
.CM_AttributeHeadingList
{
	border:solid black 1px;
	background-color:white;
	border-radius:6px;
	box-shadow:0px 0px 10px rgb(0,0,0);
	padding:6px;
	font:14px arial,serif;
}
/* Class for the HTML Canvas element that contains the north arrow */
.CM_NorthArrow
{
	position:absolute;
	left:20px;
	top:20px;
	width:200px;
	height:200px;
	pointer-events: none;
}

/* Class for the HTML Canvas element that contains the scale bar */
.CM_ScaleBar
{
	position:absolute;
	left:20px;
	bottom:20px;
	width:200px;
	height:40px;
	pointer-events: none;
	
	border:solid black 1px;
	background-color:white;
	border-radius:6px;
	box-shadow:0px 0px 10px rgb(0,0,0);
}