BODY
{
    BACKGROUND-COLOR: #ffffff
}
TABLE.Top
{
    BORDER-BOTTOM: #000000 1px;
    BORDER-LEFT: #000000 1px solid;
    BORDER-RIGHT: #000000 1px solid;
    BORDER-TOP: #000000 1px solid
}
TABLE.Middle
{
    BORDER-BOTTOM: #000000 1px;
    BORDER-LEFT: #000000 1px solid;
    BORDER-RIGHT: #000000 1px solid;
    BORDER-TOP: #000000 1px
}
TABLE.Topbar
{
    BACKGROUND-COLOR: #809fe3
}
P
{
    COLOR: #3357b3;
    FONT-FAMILY: Tahoma;
    FONT-SIZE: 11px;
    MARGIN-BOTTOM: 4px;
    MARGIN-TOP: 4px
}
.NoBreakBeforeAfter
{
    MARGIN-BOTTOM: 0px;
    MARGIN-TOP: 0px
}
.NoBreakBefore
{
    MARGIN-TOP: 0px
}
.NoBreakAfter
{
    MARGIN-BOTTOM: 0px
}
P.Indented12
{
    COLOR: #0000F4;
    FONT-FAMILY: arial;
    FONT-SIZE: 15px;
    MARGIN-LEFT:12PX;
    MARGIN-BOTTOM: 5px;
    MARGIN-TOP: 12px
  }
P.Indented1
{
    MARGIN-LEFT: 12px
}
TABLE.Bottom
{
    BORDER-BOTTOM: #000000 1px solid;
    BORDER-LEFT: #000000 1px solid;
    BORDER-RIGHT: #000000 1px solid;
    BORDER-TOP: #000000 1px
}
TD.Main
{
    BACKGROUND-COLOR: #e8eefc
}
P.Title
{
    FONT-WEIGHT: bold
}
.Bordered
{
    BORDER-BOTTOM: #000000 1px solid;
    BORDER-LEFT: #000000 1px solid;
    BORDER-RIGHT: #000000 1px solid;
    BORDER-TOP: #000000 1px solid
}
TABLE
{
    COLOR: #3357b3;
    FONT-FAMILY: Tahoma;
    FONT-SIZE: 11px
}
INPUT
{
    COLOR: #3357b3;
    FONT-FAMILY: Tahoma;
    FONT-SIZE: 11px
}
.Width150
{
    WIDTH: 150px
}
P.Indented2
{
    MARGIN-LEFT: 12px;
    MARGIN-RIGHT: 12px
}
A
{
    TEXT-DECORATION: none
}

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -50px;
left: 5px; /*position where enlarged image should offset horizontally */

}