/* 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: 0px;				/* 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: no-repeat;	/* other values no-repeat, repeat-x (horizontal), repeat-y (vertical)*/
	BACKGROUND-ATTACHMENT: scroll;  /* other value scroll */
	BACKGROUND-POSITION: 50% 0%;	/* values can be a percentage or a fixed length or one of top centre bottom/left centre right */
    BACKGROUND-COLOR: grey;	/* background colour should be specified even with an image incase the image doesn't load other value is transparent */
}
/* definition of a Heading Level 1 tag */
H1
{
	font-size: medium !important;
	font-size: large; 
	color: #232323;
}
H2
{
	font-size: small !important;
	font-size: medium; 
	color: #232323;
}
/* definition of a paragraph */
P
{
	FONT-FAMILY: "Trebuchet MS", Tahoma, sans-serif; /* trebuchet then 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: small;   /* absolute (xx-small, x-small, small, medium, large, x-large), relative (larger, smaller) length (12pt) and percentage (120%) */
}

/* definition for all cells */
TD
{
	background-color: transparent;
	FONT-FAMILY: "Trebuchet MS", Tahoma, sans-serif; /* tahoma is the font family and sans-serif is a generic family */
	FONT-SIZE: small !important;	 /* Using the notation to signify for Firefox to ingnore subsequent decalrations */
	font-size: small;				 /* IE will always use the last declaration it finds - hence cascading */
	COLOR: #232323;					 /* 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-ALIGN: left;				 /* other values are right, center, justify */
	TEXT-INDENT: 0;					 /* values are <length> or <percentage> indent before text begins*/
	LINE-HEIGHT: normal;			 /* other values number (e.g. 1.2), length (1.2em), percentage (120%) */
}

/* definition of image format with uneven border and relative padding */
IMG
{
	BORDER:0;

}

/* 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 */
	
}
/* link style definitions */
A {
  text-decoration: none;
  font-weight: bold;
}
A:link
{
    color: #899560;
}

A:visited
{
	color: #C9C9C9;
	}
	
A:hover, A:focus
{
    color: #566c9e;
}

A:active
{
	color: #566c9e;
}

/* menu link style definitions */
#menu A {
  text-decoration: none;
  font-weight: normal;
}
#menu A:link
{
    color: white;
}

#menu A:visited
{
	color: #566c9e;
	}
	
#menu A:hover, A:focus
{
    color: #566c9e;
}

#menu A:active
{
	color: #566c9e;
}
/* footer link style definitions */
#footer A {
  text-decoration: none;
  font-weight: bold;
  font-size: xx-small !important;
  font-size: xx-small;
}
#footer A:link
{
    color: #899560;
}

#footer A:visited
{
	color: #899560;
	}
	
#footer A:hover, A:focus
{
    color: #566c9e;
}

#footer A:active
{
	color: #899560;
}
.padded
{
	padding-left: 15px;
	padding-right: 15px;
	background-color: #FFFFFF;
}
.heading
{
	color: #899560;
	font-weight: bold;
	font-size: medium !important;
	font-size: medium;
	text-align: center;
	line-height: 200%;
}

.menu
{
	background-image: url(../hypnotherapy-images/menu-background.jpg);
	background-repeat: repeat-x;
	background-color: transparent;
}
/* declaration of a user defined class */
.background
{
	BACKGROUND: white none no-repeat fixed 0% 0%   /*  in order of background-color, background-image, background-repeat, background-attachment, background-position */
}
/* definition of a class with borders set all round to thin */
.footer
{
	font-size: xx-small !important;
	font-size: xx-small;
	color: #666666;
	font-weight: bold;
	text-align: center;
	background-color: white;
}

.withborders
{
	border-width: 1px;
	border-style: solid;
	border-color: #999999;
	background-color:#CCCCCC;
}

/* 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 

*/

