
/* This file is JUST to determine how I do the bolthole logo           */
/* It needs a <div id="logobox"> to place where the logo goes          */
/* It needs a <div id="contents"> wrapping the contents to work nicely */
/* It also needs a special box to enable the mouseover, until I find   */
/* a clean css way to have mouseover messages                          */
	
body {
	/* This gives the actual logo */
	background: #e0e0e0 url(/tube-small.gif) 0 0 no-repeat fixed;

}
	/* note: px=pixels, pt=points */

#logobox {
	/* This gives us an area that we then use for mouseover */
	/* frame our logo */
	/* border: 1px solid;*/
	/*color: lightgreen;*/
	position: fixed;
	left: 0px;
	top: 0px;
	width: 84px; height: 84px;
	}

h1 {
	margin-left: 90px;
	margin-right: 10px;
	}

/* "id=contents" */

#contents {
	background-color: white;
	position: relative;
	margin-left: 90px;
	margin-right: 10px;
	border-style: solid;
	border-width: 2px;
	padding: 10px 10px 10px 10px;
	}

#footer {
	position: relative;
	margin-left: 90px;
	margin-right: 10px;
	padding: 10px 10px 10px 10px;
	}

