/*
 * Filename:		common.css
 * written by:		jeff@emetric.net  19 Jun 2003
 * last modified:	jeff@emetric.net  24 Jul 2003
 * ----------------------------------------------
 * This stylesheet is to be included in all eMetric's hypertext markup involved
 * in web applications for eMetric's clients. The stylesheet standardizes
 * some basic format requirements for all pages, such as page width, background
 * color, fonts, etc. All eMetric's hypertext markup should link this
 * stylesheet FIRST:
 *
 *		<head>
 *			<title>...</title>
 *			<meta ... />
 *			// other META elements
 *			<link href=[URL of common.css] rel="stylesheet" type="text/css" />
 *			// State-specific stylesheet links, if any
 *			// Report-type stylesheet links
 *			// other elements
 *		</head>
 *
 * This stylesheet should always be PERSISTENT, as defined at:
 *	http://www.w3.org/TR/html4/present/styles.html#h-14.3
 */


/*
 * Infrastructural Parameters
 */

body 
{
	text-align: center;
	background-color: #ffffff;
	font-size: 8pt;
	font-family: Arial, Sans-Serif;
	color: #000000;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 10px;
	margin-bottom: 0px;
	}
.fixedSkeleton {		/* Skeleton of the page. Keeps the page at 700px wide. */
	width: 720px;		/* HTML structure should look like this:			   */
	padding: 0px;		/* <body><div class="skeleton">...page...</div></body> */
	margin: 0px;
}
.varSkeleton {			/* Skeleton of the page that stretches.				   */
	margin: 0px;		/* HTML structure should look like this:			   */
	padding: 0px;		/* <body><div class="skeleton">...page...</div></body> */
}

/*
 * Generic Hyperlink Parameters
 */
	
a:link, a:visited {
	font-weight: normal;
	text-decoration: none;
	color: #000080;
	}
a:hover, a:focus {
	font-weight: normal;
	/* text-decoration: underline; */
	color: #000080;
	}
	
/*
 * Generic Table Parameters
 */

table {
	margin: 0px;
	padding: 0px;
/*	border-width: 0px;
	border-collapse: separate;
	border-spacing: 0px;
*/	table-layout: fixed;
	}
td, th {
	margin: 0px;
	padding: 0px;
/*	border-width: 0px;*/
	}
	
caption {
	caption-side: top;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	padding-top: 0px;
	}

/*
 * Settings for "rptTopTable"
 * --------------------------
 * This table belongs at the top of every score report, and provides layout for
 * button functions on the left and "Powered by eMetric.net" on the right.
 */

table#rptTopTable tr {
	vertical-align: bottom;
	}
td#rptTopTableButtonsCell {
	text-align: left;
	}
td#rptTopTablePoweredCell {
	text-align: right;
	}

/*
 * Useful Text Formatting Parameters
 */

.small {			/* Normally used for footers, but can be used for any */
	font-size: 8pt;	/* small paragraph of text intended as a side note.	  */
	}
.title1 {
	font-size: 18pt;
	font-weight: bold;
	}
.title2 {
	font-size: 14pt;
	font-weight: bolder;
	}
.title3 {
	font-size: 12pt;
	font-weight: bold;
	}

.errorMessage 
{
	color: Red;
	font-weight:bold;
	font-size:medium;
}
.left
{
	text-align: left;
}
.center
{
	text-align: center;
}
.right
{
	text-align: right;
}
.top
{
	vertical-align: top;
}
.middle
{
	vertical-align: middle;
}
.bottom
{
	vertical-align: bottom;
}
.baseline
{
	vertical-align: baseline;
}
.bold
{
	font-weight: bold;
}
.italic
{
	font-style: italic;
}
.nobreak
{
	white-space:nowrap;
}
.hidden
{
	display:none;
}
/*
 * Misc. Parameters
 */
	
input.button {
	background-color: #2266ff;
	font-size: 8pt;
	font-weight: bold;
	color: #ffffff;
	border-width: 1px;
	border-style: dotted;
	border-color: #0000ff;
	}
@media print
{
	.noprint 
	{
		display: none;	
	}	
}