/*
 ** nreg.css
 ** Copyright(c) 2006-2021 by Graham Doig
  */

/* Some possible colors
 *	#00BFFF DeepSkyBlue
 *	#66BFFF lighter blue
 *	#FFFF00	Yellow
 *	#FFFF88 lighter yellow
 *	#FF0000	Red
 *	#00FF00	Green
 *	#00FFFF	Aqua
 */

/* This should work, but it doesn't, at least in firefox 1.0.8 */
/******
* { background-color: green; }
******/

.privedpurple { background-color: #FFDDFF; }	/* light purple */
.privedpink { background-color: #FF9999; }	/* darker pink */
.prived { background-color: #99FFFF; }	/* light blue */

body.blue { background-color: #33CCFF; }

table.yellow { background-color: #FFFF66; }

ul.buttons {
	/* float: left; */
	width: 100%;
	padding: 0;
	margin: 0;
	list-style-type: none;
	border-radius: 5px;
	-moz-border-radius: 5px; /* firefox 2.0.0.20, 3.6.18 */
	-webkit-border-radius: 5px;
}

li.buttons {
	font-weight: bold;
	float: left;
	color: white;
	background: blue;
	padding: 0.2em 0.2em;
	border: 1px solid white;
	border-radius: 5px;
	-moz-border-radius: 5px; /* firefox 2.0.0.20, 3.6.18 */
	-webkit-border-radius: 5px;
}

span.buttons {
	font-weight: bold;
	color: white;
	background: blue;
	padding: 0.0em 0.2em;
	border: 1px solid white;
	border-radius: 5px;
	-moz-border-radius: 5px; /* firefox 2.0.0.20, 3.6.18 */
	-webkit-border-radius: 5px;
}

div.buttons {
	font-weight: bold;
	float: left;
	color: white;
	background: blue;
	padding: 0.2em 0.5em;
	border: 1px solid white;
	border-radius: 5px;
	-moz-border-radius: 5px; /* firefox 2.0.0.20, 3.6.18 */
	-webkit-border-radius: 5px;
}

div.msgoverlay {
	padding: 1.0em 1.0em;
	background: #FFFFFF;
	color: black;
	opacity: 1.0; /* standard CSS3 */
	filter: alpha(opacity=100); /* MS IE */
	position: fixed; top: 25%; left: 25%;
	width: 25%; height: 25%;
	text-align: center;
	overflow: auto;
	z-index: 1000;
	border: 1px solid black;
	border-radius: 10px;
	box-shadow: #666 0px 2px 3px; /* firefox 2.0.0.20, 3.6.18 */
	-moz-border-radius: 10px; /* firefox 2.0.0.20, 3.6.18 */
	-moz-box-shadow: #666 0px 2px 3px; /* firefox 2.0.0.20, 3.6.18 */
	-webkit-border-radius: 10px;
	-webkit-box-shadow: #666 0px 2px 3px;
}

div.msgoverlay_nosize_nocenter {
	padding: 1.0em 1.0em;
	background: #FFFFFF;
	color: black;
	opacity: 1.0; /* standard CSS3 */
	filter: alpha(opacity=100); /* MS IE */
	position: fixed; top: 0%; left: 0%;
	overflow: auto;
	z-index: 1000;
	border: 1px solid black;
	border-radius: 10px;
	box-shadow: #666 0px 2px 3px; /* firefox 2.0.0.20, 3.6.18 */
	-moz-border-radius: 10px; /* firefox 2.0.0.20, 3.6.18 */
	-moz-box-shadow: #666 0px 2px 3px; /* firefox 2.0.0.20, 3.6.18 */
	-webkit-border-radius: 10px;
	-webkit-box-shadow: #666 0px 2px 3px;
}

