#current_user_id {
    display:none;
}
.near-me-wrapper {
    background: #f9f9f9;
}
.near-me-wrapper .map-canvas {
    width: 100%;
    height: 325px;
}

/* this element is used by JS only. */
#fallback-coordinates {
    display: none;
}

.user-coords .infowindow-content,
.near-me-wrapper #my-marker {
    display: none;
}

/* Style info window contents. */
.user-infowindow a {
    float:left;
    margin-right: 10px;
}
.user-infowindow a img {
    float: left;
}

.user-infowindow span.label {
    color: #999999;
    margin-right: 5px;
}

.user-infowindow img {
    max-width: 75px;
    max-height:75px;
}

/* infowindow Styling */

.gm-style-iw {
    width: 250px !important;
}

input#define_my_location {
    width: 250px;
}

/* pulsating position marker. */
@-moz-keyframes pulse {
	from {
		-moz-transform: scale(0.25);
		opacity: 1.0;
	}
	95% {
		-moz-transform: scale(1.3);
		opacity: 0;
	}
	to {
		-moz-transform: scale(0.3);
		opacity: 0;
	}
}
@-webkit-keyframes pulse {
	from {
		-webkit-transform: scale(0.25);
		opacity: 1.0;
	}
	95% {
		-webkit-transform: scale(1.3);
		opacity: 0;
	}
	to {
		-webkit-transform: scale(0.3);
		opacity: 0;
	}
}

/* get the container that's just outside the marker image,
	which just happens to have our Marker title in it */
.map-canvas div.gmnoprint[title="My Position"] {
	-moz-animation: pulse 1.5s ease-in-out infinite;
	-webkit-animation: pulse 1.5s ease-in-out infinite;
	border:1pt solid #fff;
	/* make a circle */
	-moz-border-radius:51px;
	-webkit-border-radius:51px;
	border-radius:51px;
	/* multiply the shadows, inside and outside the circle */
	-moz-box-shadow:inset 0 0 5px #06f, inset 0 0 5px #06f, inset 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f;
	-webkit-box-shadow:inset 0 0 5px #06f, inset 0 0 5px #06f, inset 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f;
	box-shadow:inset 0 0 5px #06f, inset 0 0 5px #06f, inset 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f, 0 0 5px #06f;

	/* set the ring's new dimension and re-center it */
	height:51px!important;
	margin:-18px 0 0 -18px;
	width:51px!important;
}
/* hide the superfluous marker image since it would expand and shrink with its containing element */
.map-canvas div.gmnoprint[title="My Position"] img {
	display:none;
}
/* compensate for iPhone and Android devices with high DPI, add iPad media query */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (device-width: 768px) {
	.map-canvas div.gmnoprint[title="My Position"] {
		margin:-10px 0 0 -10px;
	}
}