/**********************
 *
 * All font sizing in ems.
 * Funny thing happens at 75% and lower. opera goes to a nice small size, but moz and ie pc
 * change almost not at all. seems 76% is as small as you can go and stay the same across browsers.
 * :(
 */

/***********************
 *
 * These setting 'level ' the playing field so that all browsers start with the same defaults
 */

/* Removes margin and padding from every element. */
* {
	margin:0; 
	padding:0
}

html {
	height:100%; 
	font-size:100.01%
}

/*
min-height:
	Sets the minimum page height to greater than the window height to force Netscape & 
	Firefox to display vertical scrollbars, thereby preventing content jumping on fixed width pages.
	IE doesn't understand min-height and totally ignores this setting.
font:
	Set font-size to a percentage preventing a Windows IE "extreme font re-sizing" bug.
	Set font-size slightly larger than 100% to repair Opera rounding errors.
	Set less than 101% to prevent Safari errors.
	The line-height setting gives nice, clear and easy-read spacing.
text-align: center
	Added to the body element to force IE to centre all content
*/
body { 
	text-align: left;
	min-height: 101%;
	font:100.01% Times New Roman, Georgia, serif; 
	background: #FFFFFF;
	width: 100%; 
	margin: 0 auto;
	font-size: 0.81em;
	color: #000000;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
table td {
	text-align: center;
	vertical-align: middle;
}
table td {
	text-align: left;
	vertical-align: baseline;
}
/* moz 1.0/1.1/1.2.1, net 7.0/7.01 make this way too small, but i'm not going to go larger because
 monospace tends to run you into overflow pretty quick. prior moz and net are okay.
 */
pre {
	font-family: monospace;
	font-size: 1.0em;
}

strong, b {
	font-weight: bold;
}

/* general use */
img.printOnly { display: inline; }
span.printOnly { display: inline; }
div.printOnly { display: block; }
img.screenOnly { display: none; }
span.screenOnly { display: none; }
div.screenOnly { display: none; }

/* no borders for image links */
a img {
	border: 0;
}
.hideVisited a:visited,
.hideVisited a:active,
a.hideVisited:visited,
a.hideVisited:active {
	color: blue;
}

img.quickPick {
	width: 14px;
	height: 14px;
	position: relative; top: 6px;
}

/*******************
 *
 * Project specific common stuff starts here
 */

/*******************
 * header nav
 */
div.banner img.school {
	display: none;
}
div.banner h1 {
	display: none;
}
div.banner img.ptomgr {
	display: none;
}
div.header {
	display: none;
}
table.level1Tab {
	display: none;
}
table.level2Tab {
	display: none;
}
/*******************
 * print header nav - only shown on the screen
 */
@media screen {
	div.headerPrint {
		background: #ECF2D9;
		border-top: 1px solid #D6D3CE;
		border-bottom: 1px solid #D6D3CE;
		padding: 0.1em 0.6em;
		color: #545454;
	}
	div.headerPrint a:link,
	div.headerPrint a:visited {
		text-decoration: none;
		color: #545454;
	}
	div.headerPrint a:hover,
	div.headerPrint a:active {
		color: #999999;
	}
	div.headerPrint div.nav {
		float: right;
		font-weight: bold;
	}
}
@media print {
	div.headerPrint {
		display: none;
	}
}

/*******************
 *
 * mainPage layout
 */
table.mainPage {
	width: 100%;
}
table.mainPage td#leftPanel {
	width: 0px;
	display: none;
}
table.mainPage td#page {
	vertical-align: top;
}
table.mainPage td#rightPanel {
	width: 230px;
	vertical-align: top;
}

/*******************
 *
 * rightPanel design
 * only uses line elements of content
 */
table.mainPage td#rightPanel {
	font-size: 0.95em;
	color: #000000;
	padding-right: 10px;
}
table.mainPage td#rightPanel p {
	margin-top: 0.8em;
	margin-bottom: 0.8em;
}
table.mainPage td#rightPanel input.button {
	text-align: center;
	font-weight: bold;
	font-size: 0.9em;
	color: #000000;
	padding: 0.05em 0.4em;
	margin: 1.0em 0em 1.0em 0em;
}
table.mainPage td#rightPanel div {
	border: 1px solid #000000;
	padding-left: 16px;
	padding-right: 20px;
}
table.mainPage td#rightPanel div.signIn {
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 14px;
}
table.mainPage td#rightPanel div.signIn h1 {
	text-align: center;
	padding: 0.8em 0;
}
table.mainPage td#rightPanel div.body {
	background: white;
	border: 0;
}
table.mainPage td#rightPanel div.forms {
	background: white;
	border: 0;
	padding: 0;
}
table.mainPage td#rightPanel div.box {
	border-top: 1px solid white;
}

/*******************
 *
 * default design
 */
h1 {
	margin-top: 0.0em;
	margin-bottom: 0.5em;
	font-size: 1.12em;
	font-weight: bold;
	color: #000000;
	text-align: center;
}
h1 em {
	font-size: 1.25em;
	font-style: normal;
	color: blue;
}
h2 {
	margin-top: 0.5em;
	font-size: 1.09em;
	font-weight: bold;
	color: #000000;
}
h3 {
	margin-top: 0.5em;
	font-size: 1.05em;
	font-weight: bold;
	color: #000000;
}
hr {
	color: black;
	background-color: black;
	height: 1px;
	width: 80%;
	margin: 0 auto;
}
p {
	margin-top: 0.4em;
	margin-bottom: 0.4em;
}
strong, b {
	font-weight: bold;
}
big {
	font-size: 1.2em;
}
small {
	font-size: 0.8em;
}
ul {
	margin-left: 1.4em; 
	margin-top: 0.4em;
	margin-bottom: 0.4em;
}
ol {
	margin-left: 2.0em; 
	margin-top: 0.4em;
	margin-bottom: 0.4em;
}
span.copyImage img {
	float: left;
	margin-right: 0.5em;
}
/* display tables design
 */
table.summary {
	color: #000000;
	font-weight: bold;
	font-size: 1.05em;
	text-align: center;
}
table.summary td {
	padding: 0.8em 3.0em;
	border: 1px solid #000000;
}
table.summary td.number {
	text-align: right;
}
table.summary td.line {
	text-align: left;
}

/*******************
 *
 * footer desgin
 */
div#footer {
	display:none;
	text-align: center;
	padding-top: 1.5em;
	padding-bottom: 0.5em;
}
div#footer hr {
	color: black;
	background-color: black;
	height: 1px;
	width: 50%;
	margin: 0 auto;
}

/**************************
 *
 * confirmaton
 * styles for the confirmation pages
 */
.confirmation {
	margin-top: 5em;
	margin-bottom: 5em;
	margin-left: 20%;
	margin-right: 20%;
	_margin-left: 14%;
	_margin-right: 14%;
}
.confirmation h1 {
	text-align: center;
	padding: 0.3em;
}
.confirmation h2 {
	text-align: center;
	padding: 0.3em;
}
