/* comment lines are declared like this */

/* body is the default - if nothing is declared for the rest then the body definition is the one used */
BODY
{
    MARGIN: -5px;								/* if only a single value is specified then it applies to all margins */
    BACKGROUND-IMAGE: none;          /* can also be a url - url (../images/backgroundimage.jpg) */
    BACKGROUND-REPEAT: repeat;		/* other values no-repeat, repeat-x (horizontal), repeat-y (vertical)*/
	BACKGROUND-ATTACHMENT: fixed;  /* other value scroll */
	BACKGROUND-POSITION: 0% 0%;		/* values can be a percentage or a fixed length or one of top centre bottom/left centre right */
    BACKGROUND-COLOR: white;	/* background colour should be specified even with an image incase the image doesn't load other value is transparent */
	Width: auto;
}
/* definition of a paragraph */
P
{
	FONT-FAMILY: Tahoma,; /* tahoma is the font family and sans-serif is a generic family */
	FONT-STYLE: normal;                    /* other values are italic and oblique */
	FONT-VARIANT: normal;               /* other values are small-caps */
	FONT-WEIGHT: normal;                 /* other values are  bold, bolder, lighter, 100, 200, 300, 400, 500, 600, 700, 800, 900  */
	FONT-SIZE: 10pt;                         /* absolute (xx-small, x-small, small, medium, large, x-large), relative (large, smaller) length (12pt) and percentage (120%) */
}
/* definition for all cells */
TD
{
	FONT-FAMILY: Tahoma; /* tahoma is the font family and sans-serif is a generic family */
	FONT-STYLE: normal;                    /* other values are italic and oblique */
	FONT-VARIANT: normal;               /* other values are small-caps */
	FONT-WEIGHT: normal;                 /* other values are  bold, bolder, lighter, 100, 200, 300, 400, 500, 600, 700, 800, 900  */
	FONT-SIZE: 10pt;
	COLOR: black;																		/* or colour name, red, blue, black, white, etc */
	TEXT-DECORATION: none;														/* other values are underline, overline, line-through, blink */
	VERTICAL-ALIGN: top;					/* other possible values are baseline, sub, super, text-top, middle, bottom, text-bottom or a percentage */ 
	TEXT-TRANSFORM: none;				/* other values are capitalize, uppercase, lowercase */
	TEXT-INDENT: 0;							/* values are <length> or <percentage> indent before text begins*/
	LINE-HEIGHT: normal;					/* other values number (e.g. 1.2), length (1.2.em), percentage (120%) */
}
H1
{
	Font-Size: 10pt;
	font-family: tahoma, san-serif;
	color: Black;
}
/* definition of image format  with uneven border and relative padding */
IMG
{
	BORDER: 0;
	Padding: 0px;
}
.padded
{
	border: 3px;
	border-style: solid;
	border-color: white;
	width: 200px;

}
/* list item decalration - bullet points*/
LI
{ 
	DISPLAY: list-item;			/* other values are block, inline, none */
	WHITE-SPACE: normal;		/* other values are  pre, nowrap */
	LIST-STYLE-TYPE: disc;		/* other values are circle, square, decimal, lower-roman, upper-roman, lower-alpha, upper-alpha, none */
	LIST-STYLE-IMAGE: none;	/* other values are the image url */
	LIST-STYLE-POSITION: outside; /* other value is inside */
	
}
A:
{
    FONT-WEIGHT: bold;
    FONT-SIZE: 10pt;
	FONT-VARIANT: small-caps;
    COLOR: black;
    FONT-FAMILY: Tahoma, San-serif;
    TEXT-DECORATION: underline;
}
#page A:
{
    FONT-WEIGHT: bold;
    FONT-SIZE: 10ptl;
	FONT-VARIANT: small-caps;
    COLOR: black;
    FONT-FAMILY: Tahoma, San-serif;
    TEXT-DECORATION: underline;
}
}#spider A:
{
    FONT-WEIGHT: bold;
    FONT-SIZE: 8pt;
	FONT-VARIANT: small-caps;
    COLOR: black;
    FONT-FAMILY: Tahoma, San-serif;
    TEXT-DECORATION: underline;
}
/* declaration of a user defined class */
.background
{
	BACKGROUND: transparent none no-repeat fixed 0% 0%   /*  in order of background-color, background-image, background-repeat, background-attachment, background-position */
}
.footer
{
	font-weight: bold;
	font-size: 8pt;
}
/* using extra word and line spaces */
.spaced
{
	WORD-SPACING: normal;		/* other value is addition to normal space between each word e.g. 2em adds 2em to the normal space */
	LETTER-SPACING: 0.2em;		/* other value is addition to normal space between characters e.g. 1em adds 1em to normal letter spacing */
	font-weight: bolder;
	font-variant: small-caps;
	color: black;
	font-style: italic;
	font-size: 10pt;
	font-family: tahoma, san-serif;
}


/* These relative units are supported:

H1 { margin: 0.5em }       ems, the height of the element's font  e.g. if font is 12pt then this margin is 6pt
H1 { margin: 1ex }         x-height, ~ the height of the letter 'x' 
P  { font-size: 12px }     pixels, relative to canvas 

Absolute length units are only useful when the physical properties of the output medium are known. These absolute units are supported:

H1 { margin: 0.5in }       inches, 1in = 2.54cm 
H2 { line-height: 3cm }    centimeters 
H3 { word-spacing: 4mm }   millimeters 
H4 { font-size: 12pt }     points, 1pt = 1/72 in 
H4 { font-size: 1pc }      picas, 1pc = 12pt 

*/


