/* *****************************************************************
   Example Default CSS Style Sheet for Article Body text.
   
   Supports these options:
		font-family
		font-size (pt or %)
		color (#XXXXXX or the 16 basic colour names)
		font-weight: bold
		text-align (left, right, center)
		font-style: italic

	Additional parameters that should be provided in 
	slash/star comments, prefixed with $

	pageColour	- sets the editor background colour.
	name		- sets a 'friendly name' which the editor
	              uses in it's dialogue boxes for the next
				  class definition it comes to.

	default     - used preceeding name to set that style
	              to be the default for any new paras/tables
				  /cells.

	TABLE STYLES: There are two types of styles used to
	specifically control the appearance of tables. 
	
	tableBorder - sets the table's border colour
	tableCell   - sets a cell's colour

	The Flash Editor identifies these by checking if the first 
	part of a given style name starts with these words. So an
	actual example of this type of definition might look like 
	this:


	NOTE that to ensure any text appears correctly inside
	tables when you are using PERCENTAGE font sizes on your
	site, you should specify   font-size: 100%;  for each
	tableCell definition. Here is an example of this:


	EXAMPLES of all the above appear in this sample stylesheet.

	PT 18-6-2003
 ***************************************************************** */

/*Change this if your page backgound isn't white.. */
/* $pageColour = #FFFFFF  */

/** TEXT STYLES **/

/* $name='Heading' */ 
.Heading{font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 130%; font-weight: bold; text-align: left;}

/* $name='Sub Heading A' */ 
.SubHeadingA{font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 120%; color: black; font-weight: bold; text-align: left;}

/* $default $name='Body Text'*/
/* Normal text - the class name will be used in the dialogues... */
.Normal{font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 95%; color: black; text-align: left;}
/* $name='White Text'*/
.WhiteText{font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 95%; color: #FFFFFF; text-align: left;}

/* Bulleted List Style */
/* $name='Bulleted List' */
LI{font-family: Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 100%; color: Black; text-align: justify; }

/** TABLES **/

/* $default $name='Default Border Colour' */ .tableBorderDefault{ background-color: #006633; font-size: 100%;}
/* $name='Staff Border Colour' */ .tableBorderStaff{ background-color: #666666; font-size: 100%;}
/* $name='Council Border Colour' */ .tableBorderCouncil{ background-color: #009999; font-size: 100%;}
/* $name='Your Views Border Colour' */ .tableBorderYourViews{ background-color: #CC3366; font-size: 100%;}
/* $name='Business Border Colour' */ .tableBorderBusiness{ background-color: #66CC33; font-size: 100%;}
/* $name='Enjoying Border Colour' */ .tableBorderEnjoying{ background-color: #FF6633; font-size: 100%;}
/* $name='Living Border Colour' */ .tableBorderLiving{ background-color: #006699; font-size: 100%;}
/* $name='Visiting Border Colour' */ .tableBorderVisiting{ background-color: #993399; font-size: 100%;}

/* $name='Default Cell Colour 1' */ .tableCellDefault1{ background-color: #006633; font-size: 100%;}
/* $default $name='Default Cell Colour 2' */ .tableCellDefault2{ background-color: #CCFFCC; font-size: 100%;}
/* $name='Default Cell Colour 3' */ .tableCellDefault3{ background-color: #FFFFFF; font-size: 100%;}
/* $name='Staff Cell Colour 1' */ .tableCellCouncil1{ background-color: #666666; font-size: 100%;}
/* $name='Staff Cell Colour 2' */ .tableCellCouncil2{ background-color: #CCCCCC; font-size: 100%;}
/* $name='Council Cell Colour 1' */ .tableCellCouncil1{ background-color: #009999; font-size: 100%;}
/* $name='Council Cell Colour 2' */ .tableCellCouncil2{ background-color: #99CCCC; font-size: 100%;}
/* $name='Your Views Cell Colour 1' */ .tableCellYourViews1{ background-color: #CC3366; font-size: 100%;}
/* $name='Your Views Cell Colour 2' */ .tableCellYourViews2{ background-color: #FFCCCC; font-size: 100%;}
/* $name='Business Cell Colour 1' */ .tableCellBusiness1{ background-color: #66CC33; font-size: 100%;}
/* $name='Business Cell Colour 2' */ .tableCellBusiness2{ background-color: #CCFFCC; font-size: 100%;}
/* $name='Enjoying Cell Colour 1' */ .tableCellEnjoying1{ background-color: #FF6633; font-size: 100%;}
/* $name='Enjoying Cell Colour 2' */ .tableCellEnjoying2{ background-color: #FFCCCC; font-size: 100%;}
/* $name='Living Cell Colour 1' */ .tableCellLiving1{ background-color: #006699; font-size: 100%;}
/* $name='Living Cell Colour 2' */ .tableCellLiving2{ background-color: #99CCCC; font-size: 100%;}
/* $name='Visiting Cell Colour 1' */ .tableCellVisiting1{ background-color: #993399; font-size: 100%;}
/* $name='Visiting Cell Colour 2' */ .tableCellVisiting2{ background-color: #FFCCFF; font-size: 100%;}

/* Set the TH tags to work with the wysiwyg in the editor */
TH{font-weight: normal;}

