/* h1 is sifr replaced by default but rather than hiding it from view, we display it under the image map */

div#staticcontent {
	position: relative;
	}

h1 {
	position: absolute;
	background-color: #000;
	padding: 10px;
	z-index: 1;
	}
	
div.img_map {
	position: relative; /* set to relative so that wrapper expands with content and abs pos content elements work correctl */
	z-index: 2;
	}
	
/* default links */

#staticcontent a, #staticcontent a:visited {
	color: #000;
	text-decoration: underline;
	}
	
#staticcontent a:active, #staticcontent a:hover, #staticcontent a:focus {
	color: #FFF;
	}
	
/* light links */

#staticcontent .light a, #staticcontent .light a:visited, #staticcontent .light_caps a, #staticcontent .light_caps a:visited {
	color: #FFF;
	}
	
#staticcontent .light a:active, #staticcontent .light a:hover, #staticcontent .light a:focus, 
#staticcontent .light_caps a:active, #staticcontent .light_caps a:hover, #staticcontent .light_caps a:focus {
	color: #000;
	}
	
.caps {
	text-transform: uppercase;
	}

.light {
	color: #FFF;
	}

.light_caps {
	text-transform: uppercase;
	color: #FFF;
	}
	
