.mapmark_canvas{
	position:relative;	
}

.mapmark_canvas .mark{
  width:8px;
  height:8px;
  position:absolute;
  cursor:pointer;
  z-index:100;
  background: #ffffff;
  -webkit-border-radius:5px;
  -moz-border-radius:5px;
  border-radius:5px;
}

.mapmark_canvas .mark_glow{
	width: 40px;
	height: 40px;
	position: relative;
	top: -16px;
	left: -16px;
	border: 3px solid #ffffff;
	opacity: 0;
	z-index:0;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-animation-name: 'mapmark_blip';
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
}




@-webkit-keyframes 'mapmark_blip'
{		
	0% {
		-webkit-transform: scale(.1);	
		opacity: 0;
	}
	1% {
		-webkit-transform: scale(.1);	
		opacity: .6;
	}
	60% {
		opacity: 0;
		-webkit-transform: scale(1);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
	}
}

/*
 * theme black
 */
.mapmark_theme_black .popout .arrow{
	background-image:url("arrow_black.png");
}

.mapmark_theme_black .popout .inner{
	background:#000;
	opacity:0.8;
	color:#FFF;
}
