body	{ background-color: white }

.clickme {
	cursor: pointer;
	/* must be grAy and not grEy for IE */
	background-color: gray;
	padding: 0.25em 0.5em 0.25em 0.5em;
}
.dontclickme {
	cursor: default;
}
.tabs {
	margin: 1em 1em 0em 1em;
}

.tab	{ display: none }

.bigbox {
	background-color: #D3D3D3;
	padding: 0.25em 1em 0.25em 1em;
	margin: 0em 1em 1em 1em;
}

.leftimg {
	float: left;
	margin-left: 0;
	margin-right: 2em;
}

.rightimg {
	float: right;
	margin-left: 2em;
	margin-right: 0;
}

.review {
	text-align:right;
}

.gradad {
	max-width: 15em;
	padding: 0.5em 0.5em 0.5em 0.5em;
	background-color: yellow;
	position: absolute;
	right: 1em;
	top: 1em;
	/* IE doesn't grok max-width */
	/* this is from http://www.svendtofte.com/code/max_width_in_ie/ */
	width: expression(document.body.clientWidth > (500/12) * 
		parseInt(document.body.currentStyle.fontSize)?
			"15em":
			"auto" );
}

#alltoggle {
	cursor: pointer;
	font-size: small;
	font-weight: normal;
	background-color: yellow;
	position: relative;
	left: 1em;
}

