
/* Leed table
        Style from PDF is a blue title row, a column heading row, content grid, and a footnote.
        Within the content grid, the borders are on the internal cell. The outside of the table has no border.
        Started using relative font sizes for heading, but the font sizes on the page are in px, 
            so some of the fonts here needed px. 
		RapidFloor needed fonts in each cell, because the main td style is overriding tds that just inherit as a descendent.
*/
.Leed {                     /* Table. Used a class intead of id, so the classes below would override .Leed TD as needed. */
    background-color: #C3E0DB;
    width: 600px;
}
.Leed td {                  /* All cells in the table, unless overridden. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: xx-small;
    padding: 10px;
    vertical-align: top;
    border-top: 1px solid black;
    border-right: 1px solid black;
}
.Leed td p {                  /* Because contribute adds p tags */
	font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: xx-small;
}
.Leed td.continue {
    border-right: none;
}
.Leed td.last {
    border-right: none;
}
td.LeedHeading {
    padding: 10px;
    text-align: center;
    background-color: #2B499F;
    font-style: italic;
    font-weight: bold;
    color: #FFFFFF;
    border: none;
}
.LeedTitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: medium;
    color: #FFFFFF;
}
.LeedSubtitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: small;
    color: #FFFFFF;
}
tr.LeedColHeading td {
    font-size: 12px;
    border-top: none;
}
tr.LeedFootnote {
    background-color: #FFFFFF;
}
tr.LeedFootnote td {
    border-top: none;
    border-right: none;
}
.bgblend {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 6px;
	color: #A7C0DC;
}

/* Mouse trail (ImageTrail script) */
div.MouseTrailText
{
    background-color: #FFFFC0;
    border: 1px solid #03539C;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
    padding:4px;
    text-align: center;
    width: 160px;
}

td.postit
{
	background-image: url('/images/postit_green.jpg');
	background-position: center center;
	background-repeat: no-repeat; 
	text-align: center;
}
td.postit p
{
	font-size: 1em;
	margin-top: 0px;
}
td.postit a
{
	color: #000000;
}
td.postit a:hover
{
	color: #000000;
}

