/** For tables inside the contents of the page **/
/** Change colors to coordinate with entire site's color scheme **/

.contents td{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	border-right: solid #6699CC 1px;
	text-align: center;
}

/* Used to align the contents of a cell to the left */
.contents td#left{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	border-right: solid #6699CC 1px;
	text-align: left;
}

/* Header row - reverses to white text on color background */
.contents th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #6699CC;
	border-right: solid #FFFFFF 1px;
	text-align: center;
}
/* Need to add border to the last element in the header or it looks a pixel off */
.contents th#last
{
	border-right: solid #6699CC 1px;
}

/* Use this on alternating rows to create greenbar effect */
.greenbar {
	background-color: #DDEEFF;
	text-align: center;
}

/* Moves lists a little away from navigation menu */
.contents ul
{
	padding-left: 10px;
}
/* Moves nested lists so they look nested */
.contents ul ul
{
	padding-left: 35px;
}

/* Moves lists a little away from navigation menu */
.contents ol
{
	padding-left: 20px;
}


/** Used for a plain table, no decorations **/
/*.plain td{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #000000;
	text-align: center;
	border-right: none;
	border-left: none;
	border-bottom: none;
}

.plain th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 24px;
	color: #FFFFFF;
	background-color: #6699CC;
}*/