@import url("/text-layered.css");
/* This file gives both a fixed-position logo, and also the style info
 * in text-layered.css
 */
/* Pages using this need a <div id="logobox"> to activate the logo          */
/* It needs a <div id="contents"> wrapping the text 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 */
	/* and overwrides background in prior css file, I hope */
	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;
	}


