
/* This file is JUST to determine how I do the bolthole logo           */
/* 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: white 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;
	}

#contents {
	margin: 10px 10px 10px 90px;
	}


