/* threecol.css: credit to bluerobot.com layout reservoir for basic layout */
/*               three columns, center content, left and right menus, */
/*                 header on top. */
/*               modifications by dbt for top box */
/*               markup information is in all.css */

/* All the content boxes belong to the content class. */

.content {
	position:relative;  /* Position is declared "relative" to gain control */
											/* of stacking order (z-index). */
	width:auto;
	min-width:120px;
	top: 10px;
	margin:0px 210px 20px 170px;
	border:1px solid black;
	background-color:white;
	padding:10px;
	z-index:3; /* This allows the content to overlap the right menu in */
             /*  narrow windows in good browsers. */
	}

#header {
  position: absolute;
	width: 800px;
	margin: 10px 0px 10px 0px;
	padding: 10px;
	border: 5px solid #ccc;
	background: #666;
	height: 120px; /* ie5win fudge begins */
	voice-family: "\"}\"";
	voice-family:inherit;
	height: 70px;
	}
html>body #header {
	height: 70px; /* ie5win fudge ends */
	}

#left {
	position:absolute;
	width:150px;
	top:70px;
	left:20px;
	background-image: url(http://drdbthompson.net/images/chalk.jpeg);
	padding:10px;
	z-index:2;
  voice-family: "\"}\"";
	voice-family:inherit;
	width:128px;
	}
body>#left {width:128px;}
		
#right {
	position:absolute;
	width:190px;
	top:70px;
	right:20px;
	background-image: url(http://drdbthompson.net/images/chalk.jpeg);
	padding:10px;
	z-index:1;
	voice-family: "\"}\"";      /* ie52in hack begins. */
	voice-family:inherit;
	width:168px;
	}
body>#right {width:168px;}    /* ie5win hack ends, be nice to Opera 5. */

/* eof */