@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #DBDBDB;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #434343;
}
.oneColFixCtr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.oneColFixCtr #journalBox {
	background: #C7D0DB;
	color:#333333;
}

.oneColFixCtr #journalEntry {
	border: solid, thin;
	border-color:#333333;
}

/* set all links to be standard */

a:link {
	color: #006699;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #006699;
}
a:hover {
	text-decoration: underline;
	color: #006699;
}
a:active {
	text-decoration: none;
	color: #006699;
}

/* Text Formatting */
.footerText {
	font-size: 10px;
}

/* For the top rows of a table, like the field names, etc. */
.tableHeader {
	font-size: 14px;
	color:#333333;
	font-weight: bold;
}

/* For the title of a table */
.tableTitle {
	font-size: 24px;
	color:#333333;
	font-weight: bold;
}

/* For tables with lists of records, ie the edit records table, set the text to be smaller */
.tableSmText {
	font-size: 10px;
	color:#333333;
}