BODY {  
font-family: Arial, Helvetica, sans-serif;
 font-size: 8pt;
 font-style: normal;
 line-height: 14pt;
 font-weight: normal;
 color: #333333;
}

P   {
font: 12px/15px Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
}

P.bottom_banner   {
font: 11px/15px Arial, Helvetica, sans-serif;
font-weight:normal;
color: #585858;
}

.p20px
{
font: 20px/24px Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
}
.p18px
{
font: 18px/22px Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
}
.p16px
{
font: 16px/19px Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
}
.p14px
{
font: 14px/17px Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
}
.p12px
{
font: 12px/14px Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
}
.p10px
{
font: 10px/12px Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
}
.p9px
{
font: 9px/10px Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
}
.p8px
{
font: 8px/9px Verdana, Arial, Helvetica, sans-serif;
font-weight:normal;
}

.p800  {
color: #770000;
font: 16px Verdana, Arial, Helvetica, sans-serif;
font-weight:bold;
}

.highlight  {
color: Red;
background-color : White;
font-weight:bold;
}

H1   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:14px;
}

H1.recip   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:14px;
}

H2   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:14px;
}

H2.recip   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:12px;
}

H3   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:14px;
}

H4   {
font-family: tahoma, verdana, arial;
font-weight:bold;
font-size:14px;
}

/* ------------------------------- */

A:link {
color: Blue
}     /* unvisited link */

A:visited {
color: Maroon
}  /* visited link */

A:hover    {
color: Blue;
text-decoration:none;
}   /* mouse over link */

A:active {
color: Blue
}   /* selected link */

/* ------------------------------- */

A.dark:link {
color: White
}     /* unvisited link */

A.dark:visited {
color: #CCCCCC}  /* visited link */

A.dark:hover    {
color: White;
text-decoration:none;
}   /* mouse over link */

A.dark:active {
color: White
}   /* selected link */

/* ------------------------------- */

.medium
{
font-size:13px;
}

.small
{
font-size:11px;
}

/* ------------------------------- */
/*  Controlling the Unordered List - UL and LI */
UL {
margin-left: 12px;
padding-left: 5px;
} 

LI   {
margin-bottom: 8px;
}

/*  Controlling the Ordered List - UL and LI */
OL {
margin-left: 12px;
padding-left: 5px;
} 
/* ------------------------------- */

/* Adding Borders to Tables  */

TD.borderleft {  
border-style: solid; 
border-top-width: 0px; 
border-right-width: 0px; 
border-bottom-width: 0px; 
border-left-width: 2px;
}

TD.borderbottom {  
border-style: solid; 
border-top-width: 0px; 
border-right-width: 0px; 
border-bottom-width: 1px; 
border-left-width: 0px;
}

.border_l_r_t {  

border-color: #000000 black black; 
border-style: solid; 
border-top-width: 1px; 
border-right-width: 1px; 
border-bottom-width: 0px; 
border-left-width: 1px
}

/* Gallery */
TABLE.picture {
  background: White;
  border-color: Black;
  border-style: solid;
  border-width: 2px;
}

TABLE.thumb_single {
  background: White;
  border-color: Black;
  border-style: solid;
  border-width: 2px;
}

Table.thumbs_all {
	background: ;
	border-color: White;
	border-style: solid;
	border-width: 1px;
}

/* ------------------------------- */

/*
Notes:
- a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!
- a:active MUST come after a:hover in the CSS definition in order to be effective!!
- Pseudo-class names are not case-sensitive.
- IE 4 and higher supports the anchor pseudo-class. NN 4.5 and Netscape 6 support the anchor pseudo-class only partially.

- font property: (weight, style, size/leading, font family) i.e. 
	font: medium italic 24pt/30pt Georgia, serif;
	Order must be correct
*/