/* Forever In Film - Cascading Style Sheet */

BODY    /* Body */
	{
	/* background-image: url(../images/Jittermugs_Gradient.jpg); */
	background-attachment: fixed; /*fixed, scroll*/
	background-repeat: repeat-y; /*repeat-x, repeat-y, norepeat*/
	font-size:12pt;
	font-family:"ARIAL", "TIMES NEW ROMAN", serif;
	color:#000000; /* black */
	}


P       /* Paragraph */ 
	{
	font-size:12pt;
	font-family:"ARIAL", "TIMES NEW ROMAN", serif;
	color:#000000; /* black */
	}

.small  /* a CSS Class to produce large text */
	{
	font-size:10pt;
	font-family:"ARIAL", "TIMES NEW ROMAN", serif;
	color:#000000; /* black */
	}

H1      /* Heading Level 1 */
	{
	font-size:20pt;
	font-weight:bold;
	font-family:"ARIAL", "TIMES NEW ROMAN", serif;
	color:#000000; /* black */
	text-align:center;
	/* background-image:url("../images/BG_Co43.gif"); */
	}

H2      /* Heading Level 2 */
	{
	font-size:18pt;
	font-weight:bold;
	font-family:"ARIAL", "TIMES NEW ROMAN", serif;
	color:#000000; /* black */
	text-align:center;
	/* background-image:url("../images/BG_Co43.gif"); */
	}

.companyname /* Format the Company Name */ 
	{
	font-size: 28pt;
	font-family: "ARIAL", "TIMES NEW ROMAN", serif;
	font-weight:bold;
	color:#000000; /* black */
	}


.companytext /* Format the Company Name */ 
	{
	font-size: 12pt;
	font-family: "ARIAL", "TIMES NEW ROMAN", serif;
	font-weight:bold;
	color:#000000; /* black */
	}


P:first-letter /* NOT SUPPORTED YET */
	{
	/* color:#FF0000; */
	}

TR TD   /* Table Row, Table Def */
	{
	text-align:center;
	font-size:12pt;
	font-family:"ARIAL", "TIMES NEW ROMAN", serif;
	color:#000000; /* black */
	}

TH      /* Table Header */
	{
	text-align:center;
	font-size:12pt;
	font-weight:bold;
	font-family:"ARIAL", "TIMES NEW ROMAN", serif;
	color:#000000; /* black */
	}

UL LI   /* Unordered List, Line Item */
	{
	list-style-type:square;
	/* font-family:ARIAL, "TIMES NEW ROMAN", serif; */
	/* color:#000000; /* black */
	/* font-size:12pt; */
	/* border:#000000 solid 1px; */
	}

A:HOVER /* Hover buttons... affects link text onmouseover */   
	{
	/* color:#0033FF; */
	font-weight:bolder;
	font-size:100%;
	/* font-style:italic; */
	/* text-decoration:underline; */
	/* text-transform:uppercase; */
	/* background-color:RED; */
	}

.monotext /* a CSS class for mono-spaced text */
	{
	color:#000000; /* black */
	font-family:COURIER, monospace;
	border:#FF3300 solid 2px;
	}	

.text
	{
	color:#000000; /* black */
	font-family:COURIER, monospace;
	border:#FF3300 solid 2px;
	}


B       /* Bold */
	{
	font-style: bold;
	color: black;
	/* font-size: 12pt */
	}
  
.bold
	{
	font-weight:bold;
	}

.huge   /* a CSS Class to produce large text */
	{
	font-size: 24pt; 
	color: black
	}

#IDsmall
	{font-size: 8pt}

.kern
	{letter-spacing: 1em}

.double /* double space lines of text */
	{line-height: 2}

.lineplushalf /* line space of one and one-half lines */
	{
	line-height: 1.5;
	font-size:10pt;
	}

.aligncenter
	{text-align: center}

.alignright
	{text-align: right}

.alignleft
	{text-align: left}

.paraindent
	{text-indent: 2em}

.caps   
	{text-transform: capitalize}

.upper  /* convert all to uppercase */ 
	{text-transform: uppercase}

.lower  /* convert all to lowercase */
	{text-transform: lowercase}

.under
	{text-decoration: underline}

.linethru
	{text-decoration: line-through}

.dropcap	
	{
	text-transform: uppercase;
	font-style: bold;
	font-size: 200%;
	color:#000000;
	float: left;
	position: relative;
	top: -3px;
	margin: 0px;
	padding: 0px;
	}

.shadow /* drop-shadow... z-index supported in Netscape 4+ only */
	{
	position: relative;
	z-index: -1;
	color: #616161;
	top: -1em;
	left: -.1em;
	font-style: bold;
	}

IMG.right
	{
	float:right
	}

IMG.left
	{
	float:left
	}

