@charset "UTF-8";


/* the outside of the map */
#googleMapOuter {
	position: relative;
	margin: 0 auto;
	padding: 0;
	display: block;
	width: 100%; 
	height: 400px;
}

/* the map itself */
#googleMap {
	z-index: 1;
	position: absolute;
	left: 0; top: 0;
	margin: 0; padding: 0;
	border: solid 1px black;
	width: 99.5%;
	height: 100% !important;
	height: /* */402px;
}



#googleMap.showingDirections {
  /*width: 67%;*/
width: 100%;
}



/* the driving directions section */
#gDrivingDirections {
	display: none;
	/*position: absolute;*/
	position: relative;
	/*right: 0;
	top: 0;*/
	/*width: 30%;*/
	width: 100%;
	height: 390px;
	z-index: 10;
	padding: 5px;
	overflow: auto;	
	background-color: #eff4f8;
	border: solid 1px black;
}

#gDrivingDirections p.titleline {
	font-weight: bold;
	font-size: 1.2em;
	border: solid 1px black;
	padding: 10px;
	background-color:#69C;
	color: #FFF;
}

/* this class is added when the driving directions are being 'shown' */
#gDrivingDirections.activated {
	display: block;
}

/* override some bad styling in the google generated driving directions */
div.googledir * {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin: 0;
	border: none;
}






/* the marker overlay/a.k.a. location popup window */
div.locationPopup, div.locationPopup p, div.locationPopup form {
	margin: 0px; padding: 0px;
}
div.locationPopup h1 {
	margin-top: 0px;
	margin-bottom: 0.5em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000;
}
div.locationPopup p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
div.locationPopup p.name { font-weight: bold; }
div.locationPopup p.directions {
	margin-top: 1em;
	margin-bottom: 0.3em;
}
div.locationPopup .small { font-size: 10px; }
div.locationPopup .grey  { color: #999999; }
div.locationPopup input.address { width: 175px; }
.floatClearer { clear: both; height: 0px; overflow: hidden; border: none; }







/* styling the error box when something goes wrong */
#gMapsError {
	border: solid 1px black;
	padding: 10px 15px;
	margin: 1em;
	background-color: #EEEEEE;
}
#gMapsError p.error {
	margin: 0px; padding: 0px;
	color: red;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 1.2em;
}
#gMapsError p.title {
	margin-bottom: 0.5em;
	font-size: 1.4em;
	border-bottom: solid 1px purple;
	color: purple;
}