/**
 * Style definition file for the help box. 
 * All styles defined here must be prefixed with the ".help" class selector.
 * All measures used must be in "em" or percent (%), not in pixel (px)
 *
 * @example
<code>
.help .example {
	font-family: Courier;
	font-size: 120%;
	color: gray;
}
</code>
 */
 .help {
 	padding: 0.2em 0.4em;
 	text-align: center;
 	background: black;
 	opacity: 0.7;
 	color: white;
 	font-weight: bold;
 	border: #000000 solid .3em;
 	font: 220% Arial;
 	bottom: 10%;
 	left: 36%;
 	top: 66%;
 	right: 29%;
 }

 .help .example {
 	font-family: Courier;
 	font-size: 120%;
 	color: yellow;
 	background-color: black;
 }
