/*
purpose:	versera client module style sheet
author:		nms 2006dec29
tips:			font-style: normal | italic
					font-weight: normal | bold
					font-variant: small-caps
					list-style-type: disc|circle|square
notes:		9/9/2009		major cleanup and divergence from the admin module css. not the same/interchangeable anymore.
*/

/* body stuff */
html, body {
	margin: 0;
	padding: 0;
	background: white;
}

/* have some margins */
.WeeMargins {
	margin: 5px;
}

/* this is the default style for all documents */
.Default {
	margin: 0 0 5px 0;
	padding: 0;
	color: black;
	background: white;
	direction: ltr;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	line-height: 120%;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	word-spacing: 0;
	}

/* right align */
.DefaultRight {
	margin: 0 0 5px 0;
	padding: 0;
	color: black;
	background: white;
	direction: ltr;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	line-height: 120%;
	text-align: right;
	text-decoration: none;
	text-indent: 0;
	word-spacing: 0;
	}

/* center */
.DefaultCenter {
	margin: 0 0 5px 0;
	padding: 0;
	color: black;
	background: white;
	direction: ltr;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	line-height: 120%;
	text-align: center;
	text-decoration: none;
	text-indent: 0;
	word-spacing: 0;
	}

/* left align */
.DefaultLeft {
	margin: 0 0 5px 0;
	padding: 0;
	color: black;
	background: white;
	direction: ltr;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	line-height: 120%;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	word-spacing: 0;
	}

/* left align #2 */
.LeftAndLeading {
	margin: 0 0 5px 0;
	padding: 0;
	color: black;
	background: white;
	direction: ltr;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	line-height: 145%;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	word-spacing: 0;
	}

/* default + bold */
.DefaultBold {
	margin: 0;
	padding: 0;
	color: black;
	background: white;
	direction: ltr;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	line-height: 120%;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	word-spacing: 0;
	}

/* text for help messages */
.DefaultHelp {
	margin: 0 0 5px 0;
	padding: 0;
	color: black;
	background: white;
	direction: ltr;
	font-family: Arial;
	font-size: 8px;
	font-style: normal;
	font-weight: normal;
	line-height: 120%;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	word-spacing: 0;
	}

/* error msg */
.Error {
	margin: 0 0 5px 0;
	padding: 0;
	color: red;
	background: white;
	direction: ltr;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	line-height: 120%;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	word-spacing: 0;
	}

/* confirmation msg */
.Confirmation {
	margin: 0 0 5px 0;
	padding: 0;
	color: blue;
	background: white; /*removed the yellow */
	direction: ltr;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	line-height: 120%;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	word-spacing: 0;
	}

/* table default */
.TableDefault {
	border-collapse: collapse;
	border: 1px single darkgray;
	margin: 0px;
	padding: 0px;
	}
.TableDefault td, .TableDefault th {
	/* text-align: left; */
	border: 1px solid darkgray;
	font: 12px Arial;
	margin: 0px;
	padding: 3px;
	}

/* table transparent */
.TableTransparent {
	border-collapse: collapse;
	border: 1px single white;
	margin: 0px;
	padding: 0px;
	}
.TableTransparent td, .TableTransparent th {
	/* text-align: left; */
	border: 1px solid white;
	font: 12px Arial;
	margin: 0px;
	padding: 3px;
	}

/* table transparent #2 */
.TableTransparent2 {
	border-collapse: collapse;
	border: 1px single white;
	margin: 0px;
	padding: 0px;
	}
.TableTransparent2 td {
	/* text-align: left; */
	border: 1px solid white;
	font-weight: normal;
	font: 11px Arial;
	margin: 0px;
	padding: 2px;
	vertical-align: middle;
	}
.TableTransparent2 th {
	/* text-align: left; */
	border: 1px solid white;
	font-weight: bold;
	font: 11px Arial;
	margin: 0px;
	padding: 2px;
	vertical-align: top;
	}

/* table smallfont */
.TableSmallFont {
	border-collapse: collapse;
	border: 1px single white;
	margin: 0px;
	padding: 0px;
	}
.TableSmallFont td, .TableSmallFont th {
	/* text-align: left; */
	border: 1px solid white;
	font: 10px Arial;
	margin: 0px;
	padding: 3px;
	}

/* border around the form */
.TheFieldset {
	width: 750px;
	border: 1px single darkgray;
	margin-top: 50px;
	padding: 10px;
	}

/* border around the form - extra wide for history */
.TheHistoryFieldset {
	width: 850px;
	border: 1px single darkgray;
	margin-top: 50px;
	padding: 10px;
	}

	/* border around the form - less space on top */
.TheAsmntFieldset {
	width: 700px;
	border: 1px single darkgray;
	margin-top: 20px;
	padding: 10px;
	}

/* title of border around the form */
.TheLegend {
	font: bold 12px Arial;
	color: black;
	background-color: white;
}

/* footer */
.Footer {
	background-color: #ffffff;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-top: 1px solid #0066CC;
	color: #000000;
	font: 10px Verdana;
	margin: 0px;
	padding: 0px;
	width: 100%;
}

/* header */
.Header {
	background-color: #ffffff;
	border-left: none;
	border-right: none;
	border-top: none;
	border-bottom: 1px solid #0066CC;
	color: #000000;
	font: 10px Verdana;
	margin: 0px;
	padding: 0px;
	width: 100%;
}

/* finally - my kinda bullets, careful on that left margin! */
.MyAsmntBullitt {
	font-family: Arial;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	line-height: 120%;
	list-style-type: disk;
	margin-left: 3px;
	padding-left: 10px;
}

/* the pseudo-graphic tables */
.GfxBarTable {
	border: 1px single darkgray;
	border-collapse: collapse;
	}
.GfxBarTable td, .GfxBarTable th, .GfxBarTable tr {
	height: 8pt;
	padding: 0px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
}

/* time for some new school stuff */

/* faq title */
.pFaqTitle {
	border-bottom-color: black; /* #4682B4 */
	border-bottom-style: solid;
	border-bottom-width: 2px;
	color: black; /* #4682B4 */
	font-family: Arial;
	font-size: 20px;
	font-variant: small-caps;
	font-weight: bold;
	margin: 10px 0px 20px 0px;
	padding: 0px 0px 2px 4px;
	text-align: left;
	width: 400px;
}

/* faq question */
.pFaqQuestion {
	color: #4682B4;
	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 12px 0px 0px 0px;
	text-align: left;
	width: 400px;
}

/* faq answer */
.pFaqAnswer {
	color: black;
	font-family: Arial;
	font-size: 12px;
	font-weight: normal;
	margin: 0px;
	padding: 0px 0px 10px 20px;
	text-align: left;
	width: 400px;
}

/* banner reminding asmnt takers to print the report page */
.pPrintThisPage {
	margin: 15px 0px 0px 25px;
	padding: 10px;
	color: red;
	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	width: 500px;
	border: 3px double red;
}

/* [eof] */
