A:link { color: #0B07AA }

A:visited { color: #0B07AA }

A:active { color: #0B07AA }

A:hover { color: #D40106 }

/* This stylesheet uses pt's for font sizing for demonstration purposes. However, the problem with pt's is that their size is fixed, which means it cannot be changed with a user's browser. They also are extremely small for some Mac's. When using this stylesheet, it is recommended that pt's be replaced with em's (or percentages). For example, 7.8pt on a PC is, roughly, the equivalent of .7em for PC's and .8 or .9 em for Mac's. */



td {font-family: verdana, geneva, sans-serif; font-size: 7.8pt; color: #000000}


.white8 {font-family: verdana, geneva, sans-serif; font-size: 8pt; color: #ffffff}


.red8 {font-family: verdana, geneva, sans-serif; font-size: 8pt; color: #830A0A}








b.large {font-size:120%}



/* BEGIN MENU CSS CODE */
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckerdiv ul{
margin: 0;
padding: 0;
list-style-type: none;
width: 125px; /* Width of Menu Items */
border-bottom: 1px solid #ccc;
}
	
.suckerdiv ul li{
position: relative;
}
	
/*Sub level menu items */
.suckerdiv ul li ul{
position: absolute;
width: 125px; /*sub menu width*/
top: 0;
background: #fff;
visibility: hidden;
}

/* Sub level menu links style */
.suckerdiv ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: black;
text-decoration: none;
background: #E0DBD5;
padding: 1px 5px;
border: 1px solid #ccc;
border-bottom: 0;
}

.suckerdiv ul li a:visited{
color: #830A0A;
}

.suckerdiv ul li a:hover{
background-color: #C9E3FE;
}

.suckerdiv .subfolderstyle{
background: url(images/arrow-list.gif) no-repeat center right #E0DBD5;
}

	
/* Holly Hack for IE \*/
* html .suckerdiv ul li { float: left; height: 1%; }
* html .suckerdiv ul li a { height: 1%; }
/* End MENU CSS CODE */


/* BEGIN THUMBNAIL VIEWER CSS CODE */
#thumbBox{ /*Outermost DIV for thumbnail viewer*/
position: absolute;
left: 0;
top: 0;
width: auto;
padding: 10px;
padding-bottom: 0;
background: #313131;
visibility: hidden;
z-index: 10;
cursor: hand;
cursor: pointer;
}

#thumbBox .footerbar{ /*Footer DIV of thumbbox that contains "close" link */
font: bold 16px Tahoma;
letter-spacing: 5px;
line-height: 1.1em;
color: white;
padding: 5px 0;
text-align: right;
}


#thumbBox #thumbImage{ /*DIV within thumbbox that holds the enlarged image */
background-color: white;
}

#thumbLoading{ /*DIV for showing "loading" status while thumbbox is being generated*/
position: absolute;
visibility: hidden;
border: 1px solid black;
background-color: #EFEFEF;
padding: 5px;
z-index: 5;
}
/* END THUMBNAIL VIEWER CSS CODE */