@charset "utf-8";

/* Map container */
#map-container {

	/* Background colour */
	background: #FEFEE4;

	/* Dimensions */
	width: 240px;
	height: 320px;
	margin-left: auto;
	margin-right: auto;

}

/* Header */
#region-title {

	/* Font */
	font-size: 1em;
	font-weight: normal;

	/* Overlay the header on the map */
	position: absolute;

	/* Set borders */
  border-bottom: 1px solid #E3D0AF;
  border-top: 1px solid #E3D0AF;
    
	/* Vertically centre and spread out the upper and lower borders */
  margin: 7px 0 0;
  padding: 4px 0;

	/* Centre (use width too because absolute positioning willl prevent the use of margin: auto */
  text-align: center;
  width: 240px;

	background: none;
}