
/**
MAP POINT
**/

.mapPoint {
    position: absolute;
    z-index: 3;
	overflow: hidden;
	display: block;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -4px;
    background-image: url(images/mapitems/mapPoint.gif);
	background-repeat: no-repeat;
    cursor: pointer;
}

.mapPoint.droppable {
    width: 13px ! important;
    height: 13px ! important;
    margin-top: -6px ! important;
    margin-left: -6px ! important;
	background-image: url(images/mapitems/dropIndicator.gif);
}

/**
CLUSTER
**/

.cluster {
    position:absolute;
    z-index: 3;
    overflow: visible;
	display: block;
    width: 1px;
    height: 1px;
}

.clusterImage {
    position:absolute;
    z-index: 3;
    overflow: hidden;
	display: block;
    width: 18px;
    height: 18px;
    
    margin-top: -16px;
    margin-left: -6px;
    
    cursor: pointer;
    
    background: url(images/mapitems/cluster.gif); 
}

.clusterBounds {
    position:absolute;
    z-index: 2;
    overflow: hidden;
	display: block;
    width: 18px;
    height: 18px;
    
    margin-top: -9px;
    margin-left: -9px;
    
    border: 1px dashed black;
    
    cursor: pointer;
    
	/* fix for safaris dreadful opacity performance: use png*/
    background: url(images/mapitems/cluster-bg.png); 
	font-size: 9px;
	text-align: center;
	color: #000000;
	vertical-align: 10px;
}

/**
MARKER
**/

.marker {
    position:absolute;
    z-index: 3;
    overflow: visible;
	display: block;
    width: 1px;
    height: 1px;
}

.marker.selected {
    z-index: 4;
}

.markerImage {
    position:absolute;
    z-index: 3;
    overflow: hidden;
	display: block;
    width: 18px;
    height: 18px;
    margin-top: -16px;
    margin-left: -6px;
    cursor: pointer;
    background: url(images/mapitems/marker-empty.gif); 
}

.marker.image .markerImage {
    background: url(images/mapitems/marker-image.gif); 
}

.marker.audio .markerImage {
    background: url(images/mapitems/marker-image.gif); 
}

.marker.video .markerImage {
    background: url(images/mapitems/marker-image.gif); 
}

.marker.post .markerImage {
    background: url(images/mapitems/marker-text.gif); 
}

.marker.selected .markerImage {
    width: 34px;
    height: 34px;
    margin-top: -32px;
    margin-left: -11px;
}

.marker.image.selected .markerImage {
    background: url(images/mapitems/marker-image-selected.gif); 
}

.marker.post.selected .markerImage {
    background: url(images/mapitems/marker-text-selected.gif); 
}

.marker.empty.selected .markerImage {
    background: url(images/mapitems/marker-empty-selected.gif); 
}

.marker.selected .markerNumbers{
	display: none;
}

.marker.lineMarker .markerImage{
	 background: url(images/mapitems/lineMarker.gif); 
}

.marker.droppable .markerImage {
    background: url(images/mapitems/marker-add.gif); 
}

.marker.highlighted .markerImage {
    margin-top: -19px;
    margin-left: -8px;
}

.markerShadow {
    position:absolute;
    visibility: hidden;
    z-index: 2;
    overflow: hidden;
	display: block;
    width: 18px;
    height: 18px;
    
    margin-top: -16px;
    margin-left: -5px;
    
    cursor: pointer;
    
    background: url(images/mapitems/marker-shadow.gif); 
}

.marker.highlighted .markerShadow {
    visibility: visible;
}

.markerNumbers {
    position:absolute;
    z-index: 4;
    overflow: visible;
	display: block;
	bottom: 18px;
	width: 15px;
}

.markerDigit {
	margin-left: -1px;
}

.markerHotspot {
    position:absolute;
    z-index: 1;
	display: block;
    width: 19px;
    height: 19px;
    
    margin-top: -9px;
    margin-left: -9px;

    background: url(images/mapitems/marker-hotspot-2.png);
    
    cursor: pointer;
}

.markerIcons {
	/* TODO */	
}

/**
LINE
**/

.line {
    z-index: 0;
    position: absolute;
}

.linesegment {
    z-index: -9000001;
    position: absolute;
}

.linecolor {
	color: #ebf000;
	background-color: #000000;
}

/**
PIXEL
**/

.linepixel {
    position: absolute;
    z-index: -9000001;
    
    width: 2px;
    height: 2px;
    margin-left: -1px;
    margin-top: -1px;
    
    background-color: #ebf000;
    border: 1px solid #000000;
    
    overflow: hidden;
	display: block;	
}


/* Marker & line buttons */

.markerPanel {
    position:absolute;
    width: 15px;
}

.zoombutton {
    width: 13px;
    height: 13px;
    z-index: 99;
    cursor: pointer;
    background: url(images/mapitems/crosshairs.gif);  
}

.linebutton {
    width: 13px;
    height: 13px;
    z-index: 99;
    margin-top: 3px;
    cursor: pointer;
    background: url(images/mapitems/line.gif);
}

.deletebutton{
	width: 13px;
    height: 13px;
    z-index: 99;
    margin-top: 3px;
    cursor: pointer;
    background: url(images/mapitems/delete.gif);
}

.enlargeWidth,
.enlargeHeight{
    position: absolute;
    cursor: pointer;
}

.enlargeHeight {
	
    right: -20px;
    bottom: -12px;
}

.enlargeHeight:hover {
    background-color: #DDE9F8;
}

.detachmarkerbutton {
    position: absolute;
	width: 13px;
    height: 13px;
    z-index: 99;
    margin-top: 3px;
    cursor: pointer;
    background: url(images/mapitems/detachMarker.gif);
}

.followmarkerbutton {
    position: absolute;
	width: 13px;
    height: 13px;
    z-index: 99;
    margin-top: 3px;
    cursor: pointer;
    background: url(images/mapitems/markerArrowDown.gif);
}

.followmarkerbutton.up {
    background: url(images/mapitems/markerArrowUp.gif);
}
.followmarkerbutton.down {
    background: url(images/mapitems/markerArrowDown.gif);
}
.followmarkerbutton.left {
    background: url(images/mapitems/markerArrowLeft.gif);
}
.followmarkerbutton.right {
    background: url(images/mapitems/markerArrowRight.gif);
}

.followlinebutton {
    position: absolute;
	width: 13px;
    height: 13px;
    z-index: 99;
    margin-top: 3px;
    cursor: pointer;
}

.followlinebutton.up {
    background: url(images/mapitems/lineArrowUp.gif);
}
.followlinebutton.down {
    background: url(images/mapitems/lineArrowDown.gif);
}
.followlinebutton.left {
    background: url(images/mapitems/lineArrowLeft.gif);
}
.followlinebutton.right {
    background: url(images/mapitems/lineArrowRight.gif);
}


.tracelinebutton {
    position: absolute;
	width: 13px;
    height: 13px;
    z-index: 99;
    margin-top: 3px;
    cursor: pointer;
}

.tracelinebutton.up {
    background: url(images/mapitems/lineFollowUp.gif);
}
.tracelinebutton.down {
    background: url(images/mapitems/lineFollowDown.gif);
}
.tracelinebutton.left {
    background: url(images/mapitems/lineFollowLeft.gif);
}
.tracelinebutton.right {
    background: url(images/mapitems/lineFollowRight.gif);
}

.lineHoverButton,
.cornerHoverButton,
.lineDropButton,
.lineHoverNonEditable {
    position: absolute;
    visibility: hidden;
	width: 10px;
    height: 10px;
    z-index: -8999999;
    margin-top: -5px;
    margin-left: -5px;
    cursor: pointer;
    overflow: hidden;
    background: url(images/mapitems/lineMouseOver.png);
    background-repeat: no-repeat;
}

.cornerHoverButton {
    background: url(images/mapitems/cornerMouseOver.gif);
}

.lineHoverNonEditable {
    background: url(images/transparent.gif);
}

.lineDropButton {
	width: 13px;
    height: 13px;
    margin-top: -6px;
    margin-left: -6px;
    background: url(images/mapitems/dropIndicator.gif);
}

.lineCorner,
.lineCornerDelete {
    position: absolute;
    visibility: hidden;
	width: 8px;
    height: 8px;
    z-index: -9000000;
    margin-top: -4px;
    margin-left: -4px;
    overflow: hidden;
    background-image: url(images/mapitems/corner.gif);
    background-repeat: no-repeat;
}

.lineCornerDelete {
    background-image: url(images/mapitems/cornerDelete.gif);
}

.markerInfo {
	position: absolute;
	visibility: hidden;
	top: 0px;
	left: 0px;
	background-color: white;
	padding: 2px;
	width: 240px;
	height: 60px;
	opacity: 0.95;
	font-size: 11px;
	z-index: 99999;
}


.markerInfo .corner {
	position: absolute;
	width: 5px;
	height: 5px;
	background-color: transparent;
	overflow: hidden;
}

.markerInfo #topleft{
	top: -5px;
	left: -5px;
	background-image: url(images/markerInfo/topleft.gif);	
}

.markerInfo #topright{
	top: -5px;
	right: -5px;
	background-image: url(images/markerInfo/topright.gif);	
}

.markerInfo #bottomleft{
	bottom: -5px;
	left: -5px;
	background-image: url(images/markerInfo/bottomleft.gif);	
}

.markerInfo #bottomright{
	bottom: -5px;
	right: -5px;
	background-image: url(images/markerInfo/bottomright.gif);	
}

.markerInfo .border {
	position: absolute;
	width: 5px;
	height: 5px;
	background-color: white;
	overflow: hidden;
}

.markerInfo #top{
	top: -5px;
	left: 0px;
	width: 100%;
}

.markerInfo #left {
	left: -5px;
	top: 0px;
	height: 100%;
}

.markerInfo #right {
	right: -5px;
	top: 0px;
	height: 100%;
}

.markerInfo #bottom{
	bottom: -5px;
	left: 0px;
	width: 100%;
}


.mapArea{
	border: 1px solid #EBF000;
	background-color: #FFF;
	padding: 2px;
	margin: 0px;
	opacity: 0.5;
}

.zoomBoxText{
	color: #FFF;
	position: relative;
	font-size: 11px;
	height: 16px;
	width: 65px;
	margin: auto auto;
	margin-top: 5px;
}




