/* *****************************************************************
   Example Default CSS Style Sheet for Article Body text.
   
   This style sheet should be a cut down version of the main website
   style sheet, including just those styles useful to a CONTROLSITE
   user.
   
   Class definitions should all take one of the following formats :
   
 	 	 .ClassName { ... style definition... }
		 ClassName { ... style definition... }

	Both the Flash and the ActiveX editor only expect the one name 
	preceding any class definition.	

   FOR THE FLASH EDITOR
   ------------------------------------
   
   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 
				  following  class definition. PLEASE keep this 
				  name as short as possible, especially if
				  running CONTROLSITE using a low
				  screen resolution - long names may push
				  any tool bar buttons located after the editor's
				  style drop-down list out of reach. Some of
				  the names present within this sample style
				  sheet may be inappropriate in your setup
				  for this reason.

	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:

	.tableBorderGrey{ background-color: #808080; }

	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:

	.tableBorderGrey{ background-color: #808080; font-size: 100%;}

	EXAMPLES of all the above appear in this sample stylesheet.
	

	NOTE ON SPECIAL FLASH STYLE DEFINITIONS
	--------------------------------------------------------------------
	
	LI { ...style definition... }
		- this is required as part of the implementation for bulleted lists
		within the Flash Editor.
		
	TH { ...style definition... }
		- this is required to get table headers to function correctly within
		the Flash Editor.
		
	NOTE that neither of the above are required by the FCK ActiveX editor
	and should ideally NOT be included if the Flash Editor is never
	being used. If both editors are being used, the presence of these styles
	will result in lists and table headings appearing pre-styled within the
	ActiveX editor. Applying styles in the normal manner should override
	this behaviour.
	

	FOR THE FCK ACTIVEX EDITOR 
	----------------------------------------------
	
	Additional parameters that should be provided in 
	slash/star comments, prefixed with $

	name='Class Name' 
		- sets a 'friendly name' which the editor
	      uses in it's dialogue boxes for the next
		  class definition it comes to.

	default
		 - not currently supported for the FCK ActiveX editor.
		 - ignored if present.
		 - new tags will be created without any class attribute
		 by default.
		 
	pageColour	
		- not supported for the FCK ActiveX editor.		 

	TABLE STYLES: 
	
	FCK ActiveX table styles must occur after any Flash Editor styles.
	
	This stylesheet must also define any table styles that are to be made a
	vailable within the FCK ActiveX editor via the Table Autoformat facility. 
	Insert the following parameters in a slash/star comment	to declare a table style :

	style='Style 1' value='ts1' 
		- style is the user-friendly style name that will be used within
		the editor's dialogues.
		- value specifies the identifier that is used as the prefix for
		the individual class definitions making up the table style.
		
	The following class definitions should be provided for each table style 
	that is declared using the above parameters - a value of ts1 has been 
	assumed and hence has been used as the prefix for each of the class 
	definitions to show how the two tie up.  :
	
	.ts1general { ...style definition... }
	.ts1topleft { ...style definition... }
	.ts1topcenter { ...style definition... }
	.ts1topright { ...style definition... }
	.ts1middleleft { ...style definition... }
	.ts1middlecenter { ...style definition... }
	.ts1middleright { ...style definition... }
	.ts1bottomleft { ...style definition... }
	.ts1bottomcenter { ...style definition... }
	.ts1bottomright { ...style definition... }

    and optionally :
	
	.ts1odd { ...style definition... }
	.ts1even { ...style definition... }
		
	Note that a name parameter MUST be placed in front of each
	table class definition so that they appear within the editor's
	styles drop-down and, more importantly, so that modifying a
	cell's properties after it has been auto-formatted. does not
	lose the table style previously assigned to it.
	
	The 'general' class definition gets assigned to the table itself.
	
 ***************************************************************** */

/*Change this if your page backgound isn't white.. */
/* $pageColour = #FFFFFF  */

/* 
	By placing the 'body', 'textarea', 'input', 'option', 'table' and 'select' tags 
	in this style sheet instead of the main style sheet allows 
	the text in the editor to display as it would in the web page
 */
 
BODY, body
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; 
	margin: 0px 8px 0px 8px; 
	text-indent: 0px;
	font-weight : normal; 
	font-size: 1em;
	color : #000000;
	background-color : #E7EBF1;
	background-image : url(../../images/acas/common/newgfx/bg_fade.png);
	background-repeat : repeat-x;
}

/* 
	For 'textarea', 'input', 'option', 'table' and 'select' tags 
	the font family is not inherited from the <body> tag and so has to be re-stated.
	
	IE doesn't inherit the font size from the body class for these tags.
	100% will set the font size of IE's form items to the font size in the BODY tag 
*/

TEXTAREA, textarea, INPUT, input, SELECT, select, option, OPTION, table, TABLE
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	font-size: 1em;
}

.printonly{display : none;}
/** TEXT STYLES **/

/* $name='Heading' */ 
h1, H1, .heading{font-family : Arial, Helvetica, Geneva, sans-serif; font-size: 20px; color: #053C52; font-weight: bold; text-align: left; margin: 0 0 8px 0; padding: 0;}

/* $name='Sub Heading' */ 
h2, H2, .subheading{font-family : Arial, Helvetica, Geneva, sans-serif; font-size: 16px; color: #004e92; font-weight: bold; text-align: left;}

/* $name='Sub Heading Lite' */ 
h3, H3, .subheadinglite{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; color: #054571; font-weight: bold; font-size: 12px; margin: 5px 0 5px 0;}

/* $name='Alternative Sub Heading 1 - Priority Services 1' */ 
.subheadingpriority1a{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 95%; color: #990099; font-weight: bold;}

/* $name='Alternative Sub Heading 2 - Priority Services 1' */ 
.subheadingpriority1b{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-size: 95%; color: #FFFFFF; font-weight: bold;}

/* $name='Alternative Sub Heading Lite 1 - Priority Services 1' */ 
.subheadinglitepriority1a{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; color: #990099; font-weight: bold;}

/* $name='Alternative Sub Heading Lite 2 - Priority Services 1' */
.subheadinglitepriority1b{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; color: #FFFFFF; font-weight: bold;}

/* $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: #000000; text-align: left;}

/* $name='Alternative Body Text - Priority Services 1'*/
.normalpriority1{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; color: #FFFFFF; text-align: left;}

/* $name='Blue Text' */
.bluetext{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; color: #333399; text-align: left;}

/* $name='Blue Tint' */
.bluetint{background-color: #EFF4F8; padding: 5px 10px; margin: 0 20px;}
li.bluetint{ padding:3px 10px 3px 5px; list-style-position:inside;}


/* Bulleted List Style  - NOTE This is only required if using the Flash editor. */
/* $name='Bulleted List' */
li, LI{font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; color: #000000; text-align : left;}


/** TABLES **/

/* $default $name='Border' */ .tableBorder{ background-color: #9999CC; font-size: 100%;}

/* $default $name='Cell White' */ .tableCellWhite{ background-color: #FFFFFF; font-size: 100%;}
/* $name='Cell Mid Blue' */ .tableCellMdBlue{ background-color: #6666CC; font-size: 100%;}
/* $name='Cell Dark Blue' */ .tableCellDkBlue{ background-color: #003399; font-size: 100%;}
/* $name='Cell Grey' */ .tableCellGrey{ background-color: #F0F0F0; font-size: 100%;}

/** FCKEditor Table Automatic Format Styles **/

/* $style='Basic Heading' $value='ts1' */

/* $name='Table Style Basic Heading - General' */
.ts1general{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal; color: #000000;
}

/* $name='Table Style Basic Heading - Top Left' */
.ts1topleft{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #660099; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Basic Heading - Top Centre' */
.ts1topcenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #660099; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Basic Heading - Top Right' */
.ts1topright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #660099; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Basic Heading - Middle Left' */
.ts1middleleft
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Basic Heading - Middle Centre' */
.ts1middlecenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Basic Heading - Middle Right' */
.ts1middleright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Basic Heading - Bottom Left' */
.ts1bottomleft
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Basic Heading - Top Left' */
.ts1bottomcenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Basic Heading - Top Left' */
.ts1bottomright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Basic Heading - Odd' */
.ts1odd
{
	background-color: #eeeeee;
}

/* $name='Table Style Basic Heading - Even' */
.ts1even
{
	background-color: #eeeeee;
}

/* $style='Heading - with stripe' $value='ts2' */

/* $name='Table Style Heading - with stripe - General' */
.ts2general{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal; color: #000000;
}

/* $name='Table Style Heading - with stripe - Top Left' */
.ts2topleft{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #660099; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading - with stripe - Top Centre' */
.ts2topcenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #660099; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading - with stripe - Top Right' */
.ts2topright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #660099; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading - with stripe - Middle Left' */
.ts2middleleft
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Heading - with stripe - Middle Centre' */
.ts2middlecenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Heading - with stripe - Middle Right' */
.ts2middleright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Heading - with stripe - Bottom Left' */
.ts2bottomleft
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Heading - with stripe - Top Left' */
.ts2bottomcenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Heading - with stripe - Top Left' */
.ts2bottomright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Heading - with stripe - Odd' */
.ts2odd
{
	background-color: #ffffff;
}

/* $name='Table Style Heading - with stripe - Even' */
.ts2even
{
	background-color: #eeeeee;
}


/* $style='Heading and Side - with stripe' $value='ts3' */

/* $name='Table Style Heading and Side - with stripe - General' */
.ts3general{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal; color: #000000;
}

/* $name='Table Style Heading and Side - with stripe - Top Left' */
.ts3topleft{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #660099; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading and Side - with stripe - Top Centre' */
.ts3topcenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #9966cc; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading and Side - with stripe - Top Right' */
.ts3topright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #9966cc; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading and Side - with stripe - Middle Left' */
.ts3middleleft
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
	background-color: #eeeade; font-weight: bold; color: #000000; padding: 5px;
}

/* $name='Table Style Heading and Side - with stripe - Middle Centre' */
.ts3middlecenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Heading and Side - with stripe - Middle Right' */
.ts3middleright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Heading and Side - with stripe - Bottom Left' */
.ts3bottomleft
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
	background-color: #eeeade; font-weight: bold; color: #000000; padding: 5px;
}

/* $name='Table Style Heading and Side - with stripe - Top Left' */
.ts3bottomcenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Heading and Side - with stripe - Top Left' */
.ts3bottomright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Heading and Side - with stripe - Odd' */
.ts3odd
{
	background-color: #ffffff;
}

/* $name='Table Style Heading and Side - with stripe- Even' */
.ts3even
{
	background-color: #eeeeee;
}

/* $style='Heading and side with totals' $value='ts4' */

/* $name='Table Style Heading and side with totals - General' */
.ts4general{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal; color: #000000;
}

/* $name='Table Style Heading and side with totals - Top Left' */
.ts4topleft{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #660099; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading and side with totals - Top Centre' */
.ts4topcenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #ffffcc; font-weight: bold; color: #000000; padding: 5px;
}

/* $name='Table Style Heading and side with totals - Top Right' */
.ts4topright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color: #eeeade; font-weight: bold; color: #000000; padding: 5px;
}

/* $name='Table Style Heading and side with totals - Middle Left' */
.ts4middleleft
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
	background-color: #9966cc; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading and side with totals - Middle Centre' */
.ts4middlecenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
}

/* $name='Table Style Heading and side with totals - Middle Right' */
.ts4middleright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
	background-color: #cccccc; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading and side with totals - Bottom Left' */
.ts4bottomleft
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
	background-color: #666666; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading and side with totals - Top Left' */
.ts4bottomcenter
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
	background-color: #666666; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading and side with totals - Top Left' */
.ts4bottomright
{
	font-family : Verdana, Arial, Helvetica, Geneva, sans-serif; font-weight: normal;
	background-color: #666666; font-weight: bold; color: #ffffff; padding: 5px;
}

/* $name='Table Style Heading and side with totals - Odd' */
.ts4odd
{
	background-color: #ffffff;
}

/* $name='Table Style Heading and side with totals - Even' */
.ts4even
{
	background-color: #ffffff;
}

/* $style='General 1' $value='tg1' */

/* $name='Table Style General 1 - General' */
.tg1general
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 1 - Top Left' */
.tg1topleft
{
	background-color: #FFEEBA;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #004A84;
	padding: 5px;
	font-weight: bold;
}

/* $name='Table Style General 1 - Top Centre' */
.tg1topcenter
{
	background-color: #FFEEBA;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #004A84;
	padding: 5px;
	font-weight: bold;
}

/* $name='Table Style General 1 - Top Right' */
.tg1topright
{
	background-color: #FFEEBA;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #004A84;
	padding: 5px;
	font-weight: bold;
}

/* $name='Table Style General 1 - Middle Left' */
.tg1middleleft
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 1 - Middle Centre' */
.tg1middlecenter
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 1 - Middle Right' */
.tg1middleright
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 1 - Bottom Left' */
.tg1bottomleft
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 1 - Top Left' */
.tg1bottomcenter
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 1 - Top Left' */
.tg1bottomright
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 1 - Odd' */
.tg1odd
{
	background-color: #F6F6F6;
}

/* $name='Table Style General 1 - Even' */
.tg1even
{
	background-color: #F6F6F6;
}

/* $style='General 2' $value='tg2' */

/* $name='Table Style General 2 - General' */
.tg2general
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 2 - Top Left' */
.tg2topleft
{
	background-color: #FFEEBA;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #004A84;
	padding: 5px;
	font-weight: bold;
}

/* $name='Table Style General 2 - Top Centre' */
.tg2topcenter
{
	background-color: #FFEEBA;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #004A84;
	padding: 5px;
	font-weight: bold;
	text-align: right;
}

/* $name='Table Style General 2 - Top Right' */
.tg2topright
{
	background-color: #FFEEBA;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #004A84;
	padding: 5px;
	font-weight: bold;
	text-align: right;
}

/* $name='Table Style General 2 - Middle Left' */
.tg2middleleft
{
	background-color: #FFFBED;
	color: #004A84;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
}

/* $name='Table Style General 2 - Middle Centre' */
.tg2middlecenter
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	text-align: right;
}

/* $name='Table Style General 2 - Middle Right' */
.tg2middleright
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	text-align: right;
}

/* $name='Table Style General 2 - Bottom Left' */
.tg2bottomleft
{
	background-color: #FFFBED;
	color: #004A84;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
}

/* $name='Table Style General 2 - Bottom Centre' */
.tg2bottomcenter
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	text-align: right;
}

/* $name='Table Style General 2 - Bottom Right' */
.tg2bottomright
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	text-align: right;
}

/* $name='Table Style General 2 - Odd' */
.tg2odd
{
	background-color: #F6F6F6;
}

/* $name='Table Style General 2 - Even' */
.tg2even
{
	background-color: #F6F6F6;
}

/* $style='General 3' $value='tg3' */

/* $name='Table Style General 3 - General' */
.tg3general
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 3 - Top Left' */
.tg3topleft
{
	background-color: #FFEEBA;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #004A84;
	padding: 5px;
	font-weight: bold;
}

/* $name='Table Style General 3 - Top Centre' */
.tg3topcenter
{
	background-color: #FFEEBA;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #004A84;
	padding: 5px;
	font-weight: bold;
}

/* $name='Table Style General 3 - Top Right' */
.tg3topright
{
	background-color: #FFEEBA;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #004A84;
	padding: 5px;
	font-weight: bold;
}

/* $name='Table Style General 3 - Middle Left' */
.tg3middleleft
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 3 - Middle Centre' */
.tg3middlecenter
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 3 - Middle Right' */
.tg3middleright
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 3 - Bottom Left' */
.tg3bottomleft
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 3 - Bottom Centre' */
.tg3bottomcenter
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 3 - Bottom Right' */
.tg3bottomright
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 3 - Odd' */
.tg3odd
{
	background-color: #F6F6F6;
}

/* $name='Table Style General 3 - Even' */
.tg3even
{
	background-color: #FFFFFF;
}

/* $style='General 4' $value='tg4' */

/* $name='Table Style General 4 - General' */
.tg4general
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* $name='Table Style General 4 - Top Left' */
.tg4topleft
{
	background-color: #3D66B5;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	padding: 5px;
	font-weight: bold;
}

/* $name='Table Style General 4 - Top Centre' */
.tg4topcenter
{
	background-color: #3D66B5;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	padding: 5px;
	font-weight: bold;
	text-align: center;
}

/* $name='Table Style General 4 - Top Right' */
.tg4topright
{
	background-color: #3D66B5;
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	padding: 5px;
	font-weight: bold;
	text-align: center;
}

/* $name='Table Style General 4 - Middle Left' */
.tg4middleleft
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	background-color: #E9EEF4;
	color: #004A84;
	font-weight: bold;
}

/* $name='Table Style General 4 - Middle Centre' */
.tg4middlecenter
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	background-color: #E9EEF4;
	color: #004A84;
	text-align: center;
}

/* $name='Table Style General 4 - Middle Right' */
.tg4middleright
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	background-color: #E9EEF4;
	color: #004A84;
	text-align: center;
}

/* $name='Table Style General 4 - Bottom Left' */
.tg4bottomleft
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	background-color: #E9EEF4;
	color: #004A84;
	font-weight: bold;
}

/* $name='Table Style General 4 - Bottom Centre' */
.tg4bottomcenter
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	background-color: #E9EEF4;
	color: #004A84;
	text-align: center;
}

/* $name='Table Style General 4 - Bottom Right' */
.tg4bottomright
{
	font: 11px Verdana, Geneva, Arial, Helvetica, sans-serif;
	background-color: #E9EEF4;
	color: #004A84;
	text-align: center;
}
