/*--css reset --*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* -- css for map page -- */
bodyXX {
  // background: url(/img/layout_grid.gif);
  background: url(/img/background.jpg);
  margin:0;
  padding:0;
  overflow:none;
  overflow-x:hidden;
  overflow-y:hidden;
}
#wrapperXX {
  // background: rgba(255, 255, 255, 0.6);
  margin:0;
  padding:0;
  width:2060px; /* size depends on how many "sections" you want across */
  overflow:hidden;
}
#content {
  margin:50px 0 0 0;
}
#nav {
  position:fixed;
  background: rgba(0,0,0,0.5);
  width:960px;
  margin:10px auto;
  padding:8px 10px;
  z-index:10;
}
#nav ul li {
  float:left;
  margin-right:20px;
}

#content .section { /* use ".section" class for the size of each "page" */
   position:relative;
   float:left;
   width:1024px;     /* width of your "page" */
   height:768px;    /* height of your "page" */
   border:1px solid green;  /* just here so you can see the separate pages */
}

.sectionhead {
	padding: 14px;
	margin: 64px;
	background: white;
	width: 200px;
	height: 28px;
	font-size: 24px;
}

