/* Only interesting in how it affects the widths used in the category area below */
#map_container {
	width: 660px;
}

/* ---------------------------------- */


/* Set dimensions of the map */
#map_canvas {
	width: 650px;
	height: 500px;
	border:5px solid #c6d3e4;
}

/* ---------------------------------- */

 
/* Category links area */


/* outer container */
#map_categories_block {
	font-size: 12px;
	margin-top: 15px;
}

/* Each group is a form, width and float set to fit 3 per line */
#map_categories_block form {
	display: block;
	float: left;
	width: 330px;
}

/* Invisible <br>s after each form, can be turned on individually */
/* and used to force clean row wrapping */
.map_categories_clear {
	display: none;
}
#map_categories_clear_3 {
	display: block;
	clear: both;
}

/* Category titles */
#map_categories_block h3 {
	font-size: 130%;
	font-weight: bold;
	margin-bottom: 4px;
	margin-left: 26px;
}

/* Div containing the checkbox and label */
.map_category_item {
	clear: both;
	float: none;
	position: relative;
	width: 184px;
}

/* Checkboxes */
.map_category_item input {
	position: absolute;
	left: 1px;
	top: 0px;
}

/* Label / subcategory names */
.map_category_item label {
	display: block;
	margin-left: 26px;
}

/* The first label (view all xyz) */
.map_root_category {
	font-weight: bold;
}

/* ---------------------------------- */

 
/* Popup styles */


/* Main popup container */
.map_popup {

	/* Maximum width - currently set to 80% of map width */
	max-width: 433px;
	width: expression(this.width > 433 ? 433: true);
	
	padding-top: 10px;
	color: #000000;
}

.map_popup img {
	max-width: 100px;
	width: expression(this.width > 100 ? 100: true);
	float: left;
}

/* Main content block */
.map_popup_content {
	max-width: 300px;
	width: expression(this.width > 333 ? 333: true);
	margin-left: 15px;
	margin-right: 15px;
	float: left;
	line-height:1.1em;
}

/* Link */
.map_popup a:link, .map_popup a:hover, .map_popup a:visited, .map_popup a:active {
	color: #512483;
	text-decoration: underline;
}

/* Header text */
#map_popup_header {
	color: #296dc1;
	font-size: 14px;
	font-weight: bold;
}

/* Label */
.map_popup_label {
	color: #679000;
	font-weight: bold;
}
