/* *****************************************************************
   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, H1{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 110%; color: black; font-weight: bold; text-align: left;}

/* $name='Sub Heading' */ 
.SubHeading, H2{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 75%; color: black; font-weight: bold; text-align: left;}

/* $name='Sub Heading Purple' */ 
.SubHeadingPurple{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 75%; color: #990099; font-weight: bold; text-align: left;}

/* $name='Sub Heading Lite' */ 
.SubHeadingLite, H3{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 70%; color: black; font-weight: bold; text-align: left;}

/* $name='Sub Heading Lite White' */ 
.SubHeadingLiteWhite{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 70%; color: white; font-weight: bold; text-align: left;}

/* $name='Sub Heading Lite Purple' */ 
.SubHeadingLitePurple{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 70%; color: #990099; 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; color: black; text-align: left; font-size: 70%;}

/* $name='Body Text'*/
/* Normal text white - the class name will be used in the dialogues... */
.NormalWhite{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; color: white; text-align: left;}

/* $name='Blue Text' */
.BlueText{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; color: #333399; text-align: left;}

/* Bulleted List Style */
/* $name='Bulleted List' */
LI{list-style-image: url(../../images/tewkesburybc/common/bullet.gif); font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; color: #000000; text-align : justify; font-size: 70%;}

/** TABLES **/
/* table styles - added by Mark Evans 17/12/2004 to standardise look of tables */
/* $default $name='Table Style whitelines' */ 
.tableborderwhite
{ 
border: 1px solid #ffffff;
background-color: #ffffff; 
border-collapse: collapse; 
}
/* $default $name='Cell Style whitelines' */ 
.cellborderwhite
{ 
border: 1px solid #ffffff;
font-size: 70%; 
padding : 5px 5px 5px 5px;
}
/* $default $name='Table Style bluelines' */ 
.tableborder
{ 
border: 1px solid #4a5a8d;
background-color: #ffffff; 
border-collapse: collapse; 
}
/* $default $name='Cell Style bluelines' */ 
.cellborder
{ 
border: 1px solid #4a5a8d;
font-size: 70%; 
padding : 5px 5px 5px 5px;
}
/* $default $name='Cell Style - blue background' */ 
.cellborderbluebg
{ 
border: 1px solid #4a5a8d;
background-color : #4a5a8d;
color: #ffffff;
font-size: 70%; 
padding : 5px 5px 5px 5px;
}


